aws_sdk_apigateway/client/get_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 [`GetIntegrationResponse`](crate::operation::get_integration_response::builders::GetIntegrationResponseFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`rest_api_id(impl Into<String>)`](crate::operation::get_integration_response::builders::GetIntegrationResponseFluentBuilder::rest_api_id) / [`set_rest_api_id(Option<String>)`](crate::operation::get_integration_response::builders::GetIntegrationResponseFluentBuilder::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::get_integration_response::builders::GetIntegrationResponseFluentBuilder::resource_id) / [`set_resource_id(Option<String>)`](crate::operation::get_integration_response::builders::GetIntegrationResponseFluentBuilder::set_resource_id):<br>required: **true**<br><p>Specifies a get integration response request's resource identifier.</p><br>
8 /// - [`http_method(impl Into<String>)`](crate::operation::get_integration_response::builders::GetIntegrationResponseFluentBuilder::http_method) / [`set_http_method(Option<String>)`](crate::operation::get_integration_response::builders::GetIntegrationResponseFluentBuilder::set_http_method):<br>required: **true**<br><p>Specifies a get integration response request's HTTP method.</p><br>
9 /// - [`status_code(impl Into<String>)`](crate::operation::get_integration_response::builders::GetIntegrationResponseFluentBuilder::status_code) / [`set_status_code(Option<String>)`](crate::operation::get_integration_response::builders::GetIntegrationResponseFluentBuilder::set_status_code):<br>required: **true**<br><p>Specifies a get integration response request's status code.</p><br>
10 /// - On success, responds with [`GetIntegrationResponseOutput`](crate::operation::get_integration_response::GetIntegrationResponseOutput) with field(s):
11 /// - [`status_code(Option<String>)`](crate::operation::get_integration_response::GetIntegrationResponseOutput::status_code): <p>Specifies the status code that is used to map the integration response to an existing MethodResponse.</p>
12 /// - [`selection_pattern(Option<String>)`](crate::operation::get_integration_response::GetIntegrationResponseOutput::selection_pattern): <p>Specifies the regular expression (regex) pattern used to choose an integration response based on the response from the back end. For example, if the success response returns nothing and the error response returns some string, you could use the <code>.+</code> regex to match error response. However, make sure that the error response does not contain any newline (<code>\n</code>) character in such cases. If the back end is an Lambda function, the Lambda function error header is matched. For all other HTTP and Amazon Web Services back ends, the HTTP status code is matched.</p>
13 /// - [`response_parameters(Option<HashMap::<String, String>>)`](crate::operation::get_integration_response::GetIntegrationResponseOutput::response_parameters): <p>A key-value map specifying response parameters that are passed to the method response from the back end. The key is a method response header parameter name and the mapped value is an integration response header value, a static value enclosed within a pair of single quotes, or a JSON expression from the integration response body. The mapping key must match the pattern of <code>method.response.header.{name}</code>, where <code>name</code> is a valid and unique header name. The mapped non-static value must match the pattern of <code>integration.response.header.{name}</code> or <code>integration.response.body.{JSON-expression}</code>, where <code>name</code> is a valid and unique response header name and <code>JSON-expression</code> is a valid JSON expression without the <code>$</code> prefix.</p>
14 /// - [`response_templates(Option<HashMap::<String, String>>)`](crate::operation::get_integration_response::GetIntegrationResponseOutput::response_templates): <p>Specifies the templates used to transform the integration response body. Response templates are represented as a key/value map, with a content-type as the key and a template as the value.</p>
15 /// - [`content_handling(Option<ContentHandlingStrategy>)`](crate::operation::get_integration_response::GetIntegrationResponseOutput::content_handling): <p>Specifies how to handle response payload content type conversions. Supported values are <code>CONVERT_TO_BINARY</code> and <code>CONVERT_TO_TEXT</code>, with the following behaviors:</p> <p>If this property is not defined, the response payload will be passed through from the integration response to the method response without modification.</p>
16 /// - On failure, responds with [`SdkError<GetIntegrationResponseError>`](crate::operation::get_integration_response::GetIntegrationResponseError)
17 pub fn get_integration_response(&self) -> crate::operation::get_integration_response::builders::GetIntegrationResponseFluentBuilder {
18 crate::operation::get_integration_response::builders::GetIntegrationResponseFluentBuilder::new(self.handle.clone())
19 }
20}