#[non_exhaustive]pub struct ListRateBasedRulesInput {
pub next_marker: Option<String>,
pub limit: 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_marker: Option<String>If you specify a value for Limit and you have more Rules than the value of Limit, AWS WAF returns a NextMarker value in the response that allows you to list another group of Rules. For the second and subsequent ListRateBasedRules requests, specify the value of NextMarker from the previous response to get information about another batch of Rules.
limit: Option<i32>Specifies the number of Rules that you want AWS WAF to return for this request. If you have more Rules than the number that you specify for Limit, the response includes a NextMarker value that you can use to get another batch of Rules.
Implementations§
source§impl ListRateBasedRulesInput
impl ListRateBasedRulesInput
sourcepub fn next_marker(&self) -> Option<&str>
pub fn next_marker(&self) -> Option<&str>
If you specify a value for Limit and you have more Rules than the value of Limit, AWS WAF returns a NextMarker value in the response that allows you to list another group of Rules. For the second and subsequent ListRateBasedRules requests, specify the value of NextMarker from the previous response to get information about another batch of Rules.
source§impl ListRateBasedRulesInput
impl ListRateBasedRulesInput
sourcepub fn builder() -> ListRateBasedRulesInputBuilder
pub fn builder() -> ListRateBasedRulesInputBuilder
Creates a new builder-style object to manufacture ListRateBasedRulesInput.
Trait Implementations§
source§impl Clone for ListRateBasedRulesInput
impl Clone for ListRateBasedRulesInput
source§fn clone(&self) -> ListRateBasedRulesInput
fn clone(&self) -> ListRateBasedRulesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListRateBasedRulesInput
impl Debug for ListRateBasedRulesInput
source§impl PartialEq for ListRateBasedRulesInput
impl PartialEq for ListRateBasedRulesInput
source§fn eq(&self, other: &ListRateBasedRulesInput) -> bool
fn eq(&self, other: &ListRateBasedRulesInput) -> bool
self and other values to be equal, and is used
by ==.