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