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