CreateSecurityConfigurationOutput.fromJson constructor
Implementation
factory CreateSecurityConfigurationOutput.fromJson(
Map<String, dynamic> json) {
return CreateSecurityConfigurationOutput(
creationDateTime:
nonNullableTimeStampFromJson(json['CreationDateTime'] as Object),
name: json['Name'] as String,
);
}