1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListDevEndpoints`](crate::operation::list_dev_endpoints::builders::ListDevEndpointsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_dev_endpoints::builders::ListDevEndpointsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`next_token(impl Into<String>)`](crate::operation::list_dev_endpoints::builders::ListDevEndpointsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_dev_endpoints::builders::ListDevEndpointsFluentBuilder::set_next_token): <p>A continuation token, if this is a continuation request.</p>
/// - [`max_results(i32)`](crate::operation::list_dev_endpoints::builders::ListDevEndpointsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_dev_endpoints::builders::ListDevEndpointsFluentBuilder::set_max_results): <p>The maximum size of a list to return.</p>
/// - [`tags(HashMap<String, String>)`](crate::operation::list_dev_endpoints::builders::ListDevEndpointsFluentBuilder::tags) / [`set_tags(Option<HashMap<String, String>>)`](crate::operation::list_dev_endpoints::builders::ListDevEndpointsFluentBuilder::set_tags): <p>Specifies to return only these tagged resources.</p>
/// - On success, responds with [`ListDevEndpointsOutput`](crate::operation::list_dev_endpoints::ListDevEndpointsOutput) with field(s):
/// - [`dev_endpoint_names(Option<Vec<String>>)`](crate::operation::list_dev_endpoints::ListDevEndpointsOutput::dev_endpoint_names): <p>The names of all the <code>DevEndpoint</code>s in the account, or the <code>DevEndpoint</code>s with the specified tags.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_dev_endpoints::ListDevEndpointsOutput::next_token): <p>A continuation token, if the returned list does not contain the last metric available.</p>
/// - On failure, responds with [`SdkError<ListDevEndpointsError>`](crate::operation::list_dev_endpoints::ListDevEndpointsError)
pub fn list_dev_endpoints(
&self,
) -> crate::operation::list_dev_endpoints::builders::ListDevEndpointsFluentBuilder {
crate::operation::list_dev_endpoints::builders::ListDevEndpointsFluentBuilder::new(
self.handle.clone(),
)
}
}