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 ==.