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