CreateInfrastructureConfigurationResponse.fromJson constructor

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

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?,
  );
}