CreateCertificateAuthorityResponse.fromJson constructor

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

Implementation

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