AuditNotificationTarget.fromJson constructor

AuditNotificationTarget.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory AuditNotificationTarget.fromJson(Map<String, dynamic> json) {
  return AuditNotificationTarget(
    enabled: json['enabled'] as bool?,
    roleArn: json['roleArn'] as String?,
    targetArn: json['targetArn'] as String?,
  );
}