aws_sdk_apigateway/client/
delete_integration_response.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`DeleteIntegrationResponse`](crate::operation::delete_integration_response::builders::DeleteIntegrationResponseFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`rest_api_id(impl Into<String>)`](crate::operation::delete_integration_response::builders::DeleteIntegrationResponseFluentBuilder::rest_api_id) / [`set_rest_api_id(Option<String>)`](crate::operation::delete_integration_response::builders::DeleteIntegrationResponseFluentBuilder::set_rest_api_id):<br>required: **true**<br><p>The string identifier of the associated RestApi.</p><br>
7    ///   - [`resource_id(impl Into<String>)`](crate::operation::delete_integration_response::builders::DeleteIntegrationResponseFluentBuilder::resource_id) / [`set_resource_id(Option<String>)`](crate::operation::delete_integration_response::builders::DeleteIntegrationResponseFluentBuilder::set_resource_id):<br>required: **true**<br><p>Specifies a delete integration response request's resource identifier.</p><br>
8    ///   - [`http_method(impl Into<String>)`](crate::operation::delete_integration_response::builders::DeleteIntegrationResponseFluentBuilder::http_method) / [`set_http_method(Option<String>)`](crate::operation::delete_integration_response::builders::DeleteIntegrationResponseFluentBuilder::set_http_method):<br>required: **true**<br><p>Specifies a delete integration response request's HTTP method.</p><br>
9    ///   - [`status_code(impl Into<String>)`](crate::operation::delete_integration_response::builders::DeleteIntegrationResponseFluentBuilder::status_code) / [`set_status_code(Option<String>)`](crate::operation::delete_integration_response::builders::DeleteIntegrationResponseFluentBuilder::set_status_code):<br>required: **true**<br><p>Specifies a delete integration response request's status code.</p><br>
10    /// - On success, responds with [`DeleteIntegrationResponseOutput`](crate::operation::delete_integration_response::DeleteIntegrationResponseOutput)
11    /// - On failure, responds with [`SdkError<DeleteIntegrationResponseError>`](crate::operation::delete_integration_response::DeleteIntegrationResponseError)
12    pub fn delete_integration_response(&self) -> crate::operation::delete_integration_response::builders::DeleteIntegrationResponseFluentBuilder {
13        crate::operation::delete_integration_response::builders::DeleteIntegrationResponseFluentBuilder::new(self.handle.clone())
14    }
15}