#[non_exhaustive]pub struct ListResolverRulesOutput {
pub next_token: Option<String>,
pub max_results: Option<i32>,
pub resolver_rules: Option<Vec<ResolverRule>>,
/* private fields */
}
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.next_token: Option<String>
If more than MaxResults
Resolver rules match the specified criteria, you can submit another ListResolverRules
request to get the next group of results. In the next request, specify the value of NextToken
from the previous response.
max_results: Option<i32>
The value that you specified for MaxResults
in the request.
resolver_rules: Option<Vec<ResolverRule>>
The Resolver rules that were created using the current Amazon Web Services account and that match the specified filters, if any.
Implementations§
source§impl ListResolverRulesOutput
impl ListResolverRulesOutput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If more than MaxResults
Resolver rules match the specified criteria, you can submit another ListResolverRules
request to get the next group of results. In the next request, specify the value of NextToken
from the previous response.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The value that you specified for MaxResults
in the request.
sourcepub fn resolver_rules(&self) -> &[ResolverRule]
pub fn resolver_rules(&self) -> &[ResolverRule]
The Resolver rules that were created using the current Amazon Web Services account and that match the specified filters, if any.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .resolver_rules.is_none()
.
source§impl ListResolverRulesOutput
impl ListResolverRulesOutput
sourcepub fn builder() -> ListResolverRulesOutputBuilder
pub fn builder() -> ListResolverRulesOutputBuilder
Creates a new builder-style object to manufacture ListResolverRulesOutput
.
Trait Implementations§
source§impl Clone for ListResolverRulesOutput
impl Clone for ListResolverRulesOutput
source§fn clone(&self) -> ListResolverRulesOutput
fn clone(&self) -> ListResolverRulesOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListResolverRulesOutput
impl Debug for ListResolverRulesOutput
source§impl PartialEq for ListResolverRulesOutput
impl PartialEq for ListResolverRulesOutput
source§fn eq(&self, other: &ListResolverRulesOutput) -> bool
fn eq(&self, other: &ListResolverRulesOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ListResolverRulesOutput
impl RequestId for ListResolverRulesOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.