CreateSecurityProfileResponse.fromJson constructor

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

Implementation

factory CreateSecurityProfileResponse.fromJson(Map<String, dynamic> json) {
  return CreateSecurityProfileResponse(
    securityProfileArn: json['securityProfileArn'] as String?,
    securityProfileName: json['securityProfileName'] as String?,
  );
}