Struct aws_sdk_securityhub::operation::list_configuration_policies::ListConfigurationPoliciesInput
source · #[non_exhaustive]pub struct ListConfigurationPoliciesInput {
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
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 ListConfigurationPolicies
request where MaxResults
was used but the results exceeded the value of that parameter. Pagination continues from the 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, ListConfigurationPolicies
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 ListConfigurationPolicies
request with the returned NextToken
value. A valid range for MaxResults
is between 1 and 100.
Implementations§
source§impl ListConfigurationPoliciesInput
impl ListConfigurationPoliciesInput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The NextToken value that's returned from a previous paginated ListConfigurationPolicies
request where MaxResults
was used but the results exceeded the value of that parameter. Pagination continues from the 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, ListConfigurationPolicies
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 ListConfigurationPolicies
request with the returned NextToken
value. A valid range for MaxResults
is between 1 and 100.
source§impl ListConfigurationPoliciesInput
impl ListConfigurationPoliciesInput
sourcepub fn builder() -> ListConfigurationPoliciesInputBuilder
pub fn builder() -> ListConfigurationPoliciesInputBuilder
Creates a new builder-style object to manufacture ListConfigurationPoliciesInput
.
Trait Implementations§
source§impl Clone for ListConfigurationPoliciesInput
impl Clone for ListConfigurationPoliciesInput
source§fn clone(&self) -> ListConfigurationPoliciesInput
fn clone(&self) -> ListConfigurationPoliciesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for ListConfigurationPoliciesInput
impl PartialEq for ListConfigurationPoliciesInput
source§fn eq(&self, other: &ListConfigurationPoliciesInput) -> bool
fn eq(&self, other: &ListConfigurationPoliciesInput) -> bool
self
and other
values to be equal, and is used
by ==
.