CreateInfrastructureConfigurationResponse.fromJson constructor
Implementation
factory CreateInfrastructureConfigurationResponse.fromJson(
Map<String, dynamic> json) {
return CreateInfrastructureConfigurationResponse(
clientToken: json['clientToken'] as String?,
infrastructureConfigurationArn:
json['infrastructureConfigurationArn'] as String?,
requestId: json['requestId'] as String?,
);
}