CreateCloudFormationChangeSetResponse.fromJson constructor

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

Implementation

factory CreateCloudFormationChangeSetResponse.fromJson(
    Map<String, dynamic> json) {
  return CreateCloudFormationChangeSetResponse(
    applicationId: json['applicationId'] as String?,
    changeSetId: json['changeSetId'] as String?,
    semanticVersion: json['semanticVersion'] as String?,
    stackId: json['stackId'] as String?,
  );
}