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 ==
.impl StructuralPartialEq for ListConfigurationPoliciesInput
Auto Trait Implementations§
impl Freeze for ListConfigurationPoliciesInput
impl RefUnwindSafe for ListConfigurationPoliciesInput
impl Send for ListConfigurationPoliciesInput
impl Sync for ListConfigurationPoliciesInput
impl Unpin for ListConfigurationPoliciesInput
impl UnwindSafe for ListConfigurationPoliciesInput
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