Struct aws_sdk_route53resolver::operation::list_resolver_rules::builders::ListResolverRulesFluentBuilder
source · pub struct ListResolverRulesFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to ListResolverRules.
Lists the Resolver rules that were created using the current Amazon Web Services account.
Implementations§
source§impl ListResolverRulesFluentBuilder
impl ListResolverRulesFluentBuilder
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<ListResolverRules, AwsResponseRetryClassifier>, SdkError<ListResolverRulesError>>
pub async fn customize( self ) -> Result<CustomizableOperation<ListResolverRules, AwsResponseRetryClassifier>, SdkError<ListResolverRulesError>>
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<ListResolverRulesOutput, SdkError<ListResolverRulesError>>
pub async fn send( self ) -> Result<ListResolverRulesOutput, SdkError<ListResolverRulesError>>
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) -> ListResolverRulesPaginator
pub fn into_paginator(self) -> ListResolverRulesPaginator
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 rules that you want to return in the response to a ListResolverRules request. If you don't specify a value for MaxResults, Resolver returns up to 100 Resolver rules.
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 rules that you want to return in the response to a ListResolverRules request. If you don't specify a value for MaxResults, Resolver returns up to 100 Resolver rules.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
For the first ListResolverRules request, omit this value.
If you have more than MaxResults Resolver rules, you can submit another ListResolverRules request to get the next group of Resolver rules. 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 ListResolverRules request, omit this value.
If you have more than MaxResults Resolver rules, you can submit another ListResolverRules request to get the next group of Resolver rules. 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 rules, such as all Resolver rules that are associated with the same Resolver endpoint.
If you submit a second or subsequent ListResolverRules 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 rules, such as all Resolver rules that are associated with the same Resolver endpoint.
If you submit a second or subsequent ListResolverRules 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 ListResolverRulesFluentBuilder
impl Clone for ListResolverRulesFluentBuilder
source§fn clone(&self) -> ListResolverRulesFluentBuilder
fn clone(&self) -> ListResolverRulesFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more