Struct aws_sdk_route53resolver::operation::list_resolver_endpoints::builders::ListResolverEndpointsFluentBuilder
source · pub struct ListResolverEndpointsFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to ListResolverEndpoints.
Lists all the Resolver endpoints that were created using the current Amazon Web Services account.
Implementations§
source§impl ListResolverEndpointsFluentBuilder
impl ListResolverEndpointsFluentBuilder
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<ListResolverEndpoints, AwsResponseRetryClassifier>, SdkError<ListResolverEndpointsError>>
pub async fn customize( self ) -> Result<CustomizableOperation<ListResolverEndpoints, AwsResponseRetryClassifier>, SdkError<ListResolverEndpointsError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<ListResolverEndpointsOutput, SdkError<ListResolverEndpointsError>>
pub async fn send( self ) -> Result<ListResolverEndpointsOutput, SdkError<ListResolverEndpointsError>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn into_paginator(self) -> ListResolverEndpointsPaginator
pub fn into_paginator(self) -> ListResolverEndpointsPaginator
Create a paginator for this request
Paginators are used by calling send().await which returns a Stream.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of Resolver endpoints that you want to return in the response to a ListResolverEndpoints request. If you don't specify a value for MaxResults, Resolver returns up to 100 Resolver endpoints.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of Resolver endpoints that you want to return in the response to a ListResolverEndpoints request. If you don't specify a value for MaxResults, Resolver returns up to 100 Resolver endpoints.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
For the first ListResolverEndpoints request, omit this value.
If you have more than MaxResults Resolver endpoints, you can submit another ListResolverEndpoints request to get the next group of Resolver endpoints. In the next request, specify the value of NextToken from the previous response.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
For the first ListResolverEndpoints request, omit this value.
If you have more than MaxResults Resolver endpoints, you can submit another ListResolverEndpoints request to get the next group of Resolver endpoints. In the next request, specify the value of NextToken from the previous response.
sourcepub fn filters(self, input: Filter) -> Self
pub fn filters(self, input: Filter) -> Self
Appends an item to Filters.
To override the contents of this collection use set_filters.
An optional specification to return a subset of Resolver endpoints, such as all inbound Resolver endpoints.
If you submit a second or subsequent ListResolverEndpoints request and specify the NextToken parameter, you must use the same values for Filters, if any, as in the previous request.
sourcepub fn set_filters(self, input: Option<Vec<Filter>>) -> Self
pub fn set_filters(self, input: Option<Vec<Filter>>) -> Self
An optional specification to return a subset of Resolver endpoints, such as all inbound Resolver endpoints.
If you submit a second or subsequent ListResolverEndpoints request and specify the NextToken parameter, you must use the same values for Filters, if any, as in the previous request.
Trait Implementations§
source§impl Clone for ListResolverEndpointsFluentBuilder
impl Clone for ListResolverEndpointsFluentBuilder
source§fn clone(&self) -> ListResolverEndpointsFluentBuilder
fn clone(&self) -> ListResolverEndpointsFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more