CancelChangeSetResponse.fromJson constructor

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

Implementation

factory CancelChangeSetResponse.fromJson(Map<String, dynamic> json) {
  return CancelChangeSetResponse(
    changeSetArn: json['ChangeSetArn'] as String?,
    changeSetId: json['ChangeSetId'] as String?,
  );
}