CancelRotateSecretResponse.fromJson constructor

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

Implementation

factory CancelRotateSecretResponse.fromJson(Map<String, dynamic> json) {
  return CancelRotateSecretResponse(
    arn: json['ARN'] as String?,
    name: json['Name'] as String?,
    versionId: json['VersionId'] as String?,
  );
}