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