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