DeleteInfrastructureConfigurationResponse.fromJson constructor

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

Implementation

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