#[non_exhaustive]pub struct ListRulesPackagesInput {
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>You can use this parameter when paginating results. Set the value of this parameter to null on your first call to the ListRulesPackages action. Subsequent calls to the action fill nextToken in the request with the value of NextToken from the previous response to continue listing data.
max_results: Option<i32>You can use this parameter to indicate the maximum number of items you want in the response. The default value is 10. The maximum value is 500.
Implementations§
source§impl ListRulesPackagesInput
impl ListRulesPackagesInput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
You can use this parameter when paginating results. Set the value of this parameter to null on your first call to the ListRulesPackages action. Subsequent calls to the action fill nextToken in the request with the value of NextToken from the previous response to continue listing data.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
You can use this parameter to indicate the maximum number of items you want in the response. The default value is 10. The maximum value is 500.
source§impl ListRulesPackagesInput
impl ListRulesPackagesInput
sourcepub fn builder() -> ListRulesPackagesInputBuilder
pub fn builder() -> ListRulesPackagesInputBuilder
Creates a new builder-style object to manufacture ListRulesPackagesInput.
Trait Implementations§
source§impl Clone for ListRulesPackagesInput
impl Clone for ListRulesPackagesInput
source§fn clone(&self) -> ListRulesPackagesInput
fn clone(&self) -> ListRulesPackagesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListRulesPackagesInput
impl Debug for ListRulesPackagesInput
source§impl PartialEq for ListRulesPackagesInput
impl PartialEq for ListRulesPackagesInput
source§fn eq(&self, other: &ListRulesPackagesInput) -> bool
fn eq(&self, other: &ListRulesPackagesInput) -> bool
self and other values to be equal, and is used
by ==.