aws_sdk_apigatewayv2/client/get_integration_responses.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 [`GetIntegrationResponses`](crate::operation::get_integration_responses::builders::GetIntegrationResponsesFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`api_id(impl Into<String>)`](crate::operation::get_integration_responses::builders::GetIntegrationResponsesFluentBuilder::api_id) / [`set_api_id(Option<String>)`](crate::operation::get_integration_responses::builders::GetIntegrationResponsesFluentBuilder::set_api_id):<br>required: **true**<br><p>The API identifier.</p><br>
7 /// - [`integration_id(impl Into<String>)`](crate::operation::get_integration_responses::builders::GetIntegrationResponsesFluentBuilder::integration_id) / [`set_integration_id(Option<String>)`](crate::operation::get_integration_responses::builders::GetIntegrationResponsesFluentBuilder::set_integration_id):<br>required: **true**<br><p>The integration ID.</p><br>
8 /// - [`max_results(impl Into<String>)`](crate::operation::get_integration_responses::builders::GetIntegrationResponsesFluentBuilder::max_results) / [`set_max_results(Option<String>)`](crate::operation::get_integration_responses::builders::GetIntegrationResponsesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of elements to be returned for this resource.</p><br>
9 /// - [`next_token(impl Into<String>)`](crate::operation::get_integration_responses::builders::GetIntegrationResponsesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::get_integration_responses::builders::GetIntegrationResponsesFluentBuilder::set_next_token):<br>required: **false**<br><p>The next page of elements from this collection. Not valid for the last element of the collection.</p><br>
10 /// - On success, responds with [`GetIntegrationResponsesOutput`](crate::operation::get_integration_responses::GetIntegrationResponsesOutput) with field(s):
11 /// - [`items(Option<Vec::<IntegrationResponse>>)`](crate::operation::get_integration_responses::GetIntegrationResponsesOutput::items): <p>The elements from this collection.</p>
12 /// - [`next_token(Option<String>)`](crate::operation::get_integration_responses::GetIntegrationResponsesOutput::next_token): <p>The next page of elements from this collection. Not valid for the last element of the collection.</p>
13 /// - On failure, responds with [`SdkError<GetIntegrationResponsesError>`](crate::operation::get_integration_responses::GetIntegrationResponsesError)
14 pub fn get_integration_responses(&self) -> crate::operation::get_integration_responses::builders::GetIntegrationResponsesFluentBuilder {
15 crate::operation::get_integration_responses::builders::GetIntegrationResponsesFluentBuilder::new(self.handle.clone())
16 }
17}