Struct aws_sdk_route53resolver::operation::list_resolver_endpoints::ListResolverEndpointsInput
source · #[non_exhaustive]pub struct ListResolverEndpointsInput {
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub filters: Option<Vec<Filter>>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.max_results: Option<i32>
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.
next_token: Option<String>
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.
filters: Option<Vec<Filter>>
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.
Implementations§
source§impl ListResolverEndpointsInput
impl ListResolverEndpointsInput
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
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) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
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) -> &[Filter]
pub fn filters(&self) -> &[Filter]
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.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .filters.is_none()
.
source§impl ListResolverEndpointsInput
impl ListResolverEndpointsInput
sourcepub fn builder() -> ListResolverEndpointsInputBuilder
pub fn builder() -> ListResolverEndpointsInputBuilder
Creates a new builder-style object to manufacture ListResolverEndpointsInput
.
Trait Implementations§
source§impl Clone for ListResolverEndpointsInput
impl Clone for ListResolverEndpointsInput
source§fn clone(&self) -> ListResolverEndpointsInput
fn clone(&self) -> ListResolverEndpointsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListResolverEndpointsInput
impl Debug for ListResolverEndpointsInput
source§impl PartialEq for ListResolverEndpointsInput
impl PartialEq for ListResolverEndpointsInput
source§fn eq(&self, other: &ListResolverEndpointsInput) -> bool
fn eq(&self, other: &ListResolverEndpointsInput) -> bool
self
and other
values to be equal, and is used
by ==
.