Struct aws_sdk_securityhub::operation::list_configuration_policy_associations::ListConfigurationPolicyAssociationsInput
source · #[non_exhaustive]pub struct ListConfigurationPolicyAssociationsInput {
pub next_token: Option<String>,
pub max_results: Option<i32>,
pub filters: Option<AssociationFilters>,
}
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>
The NextToken
value that's returned from a previous paginated ListConfigurationPolicyAssociations
request where MaxResults
was used but the results exceeded the value of that parameter. Pagination continues from the end of the previous response that returned the NextToken
value. This value is null
when there are no more results to return.
max_results: Option<i32>
The maximum number of results that's returned by ListConfigurationPolicies
in each page of the response. When this parameter is used, ListConfigurationPolicyAssociations
returns the specified number of results in a single page and a NextToken
response element. You can see the remaining results of the initial request by sending another ListConfigurationPolicyAssociations
request with the returned NextToken
value. A valid range for MaxResults
is between 1 and 100.
filters: Option<AssociationFilters>
Options for filtering the ListConfigurationPolicyAssociations
response. You can filter by the Amazon Resource Name (ARN) or universally unique identifier (UUID) of a configuration, AssociationType
, or AssociationStatus
.
Implementations§
source§impl ListConfigurationPolicyAssociationsInput
impl ListConfigurationPolicyAssociationsInput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The NextToken
value that's returned from a previous paginated ListConfigurationPolicyAssociations
request where MaxResults
was used but the results exceeded the value of that parameter. Pagination continues from the end of the previous response that returned the NextToken
value. This value is null
when there are no more results to return.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results that's returned by ListConfigurationPolicies
in each page of the response. When this parameter is used, ListConfigurationPolicyAssociations
returns the specified number of results in a single page and a NextToken
response element. You can see the remaining results of the initial request by sending another ListConfigurationPolicyAssociations
request with the returned NextToken
value. A valid range for MaxResults
is between 1 and 100.
sourcepub fn filters(&self) -> Option<&AssociationFilters>
pub fn filters(&self) -> Option<&AssociationFilters>
Options for filtering the ListConfigurationPolicyAssociations
response. You can filter by the Amazon Resource Name (ARN) or universally unique identifier (UUID) of a configuration, AssociationType
, or AssociationStatus
.
source§impl ListConfigurationPolicyAssociationsInput
impl ListConfigurationPolicyAssociationsInput
sourcepub fn builder() -> ListConfigurationPolicyAssociationsInputBuilder
pub fn builder() -> ListConfigurationPolicyAssociationsInputBuilder
Creates a new builder-style object to manufacture ListConfigurationPolicyAssociationsInput
.
Trait Implementations§
source§impl Clone for ListConfigurationPolicyAssociationsInput
impl Clone for ListConfigurationPolicyAssociationsInput
source§fn clone(&self) -> ListConfigurationPolicyAssociationsInput
fn clone(&self) -> ListConfigurationPolicyAssociationsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for ListConfigurationPolicyAssociationsInput
impl PartialEq for ListConfigurationPolicyAssociationsInput
source§fn eq(&self, other: &ListConfigurationPolicyAssociationsInput) -> bool
fn eq(&self, other: &ListConfigurationPolicyAssociationsInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListConfigurationPolicyAssociationsInput
Auto Trait Implementations§
impl Freeze for ListConfigurationPolicyAssociationsInput
impl RefUnwindSafe for ListConfigurationPolicyAssociationsInput
impl Send for ListConfigurationPolicyAssociationsInput
impl Sync for ListConfigurationPolicyAssociationsInput
impl Unpin for ListConfigurationPolicyAssociationsInput
impl UnwindSafe for ListConfigurationPolicyAssociationsInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more