Struct aws_sdk_waf::operation::list_regex_match_sets::builders::ListRegexMatchSetsInputBuilder
source · #[non_exhaustive]pub struct ListRegexMatchSetsInputBuilder { /* private fields */ }Expand description
A builder for ListRegexMatchSetsInput.
Implementations§
source§impl ListRegexMatchSetsInputBuilder
impl ListRegexMatchSetsInputBuilder
sourcepub fn next_marker(self, input: impl Into<String>) -> Self
pub fn next_marker(self, input: impl Into<String>) -> Self
If you specify a value for Limit and you have more RegexMatchSet objects than the value of Limit, AWS WAF returns a NextMarker value in the response that allows you to list another group of ByteMatchSets. For the second and subsequent ListRegexMatchSets requests, specify the value of NextMarker from the previous response to get information about another batch of RegexMatchSet objects.
sourcepub fn set_next_marker(self, input: Option<String>) -> Self
pub fn set_next_marker(self, input: Option<String>) -> Self
If you specify a value for Limit and you have more RegexMatchSet objects than the value of Limit, AWS WAF returns a NextMarker value in the response that allows you to list another group of ByteMatchSets. For the second and subsequent ListRegexMatchSets requests, specify the value of NextMarker from the previous response to get information about another batch of RegexMatchSet objects.
sourcepub fn get_next_marker(&self) -> &Option<String>
pub fn get_next_marker(&self) -> &Option<String>
If you specify a value for Limit and you have more RegexMatchSet objects than the value of Limit, AWS WAF returns a NextMarker value in the response that allows you to list another group of ByteMatchSets. For the second and subsequent ListRegexMatchSets requests, specify the value of NextMarker from the previous response to get information about another batch of RegexMatchSet objects.
sourcepub fn limit(self, input: i32) -> Self
pub fn limit(self, input: i32) -> Self
Specifies the number of RegexMatchSet objects that you want AWS WAF to return for this request. If you have more RegexMatchSet objects than the number you specify for Limit, the response includes a NextMarker value that you can use to get another batch of RegexMatchSet objects.
sourcepub fn set_limit(self, input: Option<i32>) -> Self
pub fn set_limit(self, input: Option<i32>) -> Self
Specifies the number of RegexMatchSet objects that you want AWS WAF to return for this request. If you have more RegexMatchSet objects than the number you specify for Limit, the response includes a NextMarker value that you can use to get another batch of RegexMatchSet objects.
sourcepub fn get_limit(&self) -> &Option<i32>
pub fn get_limit(&self) -> &Option<i32>
Specifies the number of RegexMatchSet objects that you want AWS WAF to return for this request. If you have more RegexMatchSet objects than the number you specify for Limit, the response includes a NextMarker value that you can use to get another batch of RegexMatchSet objects.
sourcepub fn build(self) -> Result<ListRegexMatchSetsInput, BuildError>
pub fn build(self) -> Result<ListRegexMatchSetsInput, BuildError>
Consumes the builder and constructs a ListRegexMatchSetsInput.
source§impl ListRegexMatchSetsInputBuilder
impl ListRegexMatchSetsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListRegexMatchSetsOutput, SdkError<ListRegexMatchSetsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListRegexMatchSetsOutput, SdkError<ListRegexMatchSetsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListRegexMatchSetsInputBuilder
impl Clone for ListRegexMatchSetsInputBuilder
source§fn clone(&self) -> ListRegexMatchSetsInputBuilder
fn clone(&self) -> ListRegexMatchSetsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ListRegexMatchSetsInputBuilder
impl Default for ListRegexMatchSetsInputBuilder
source§fn default() -> ListRegexMatchSetsInputBuilder
fn default() -> ListRegexMatchSetsInputBuilder
source§impl PartialEq for ListRegexMatchSetsInputBuilder
impl PartialEq for ListRegexMatchSetsInputBuilder
source§fn eq(&self, other: &ListRegexMatchSetsInputBuilder) -> bool
fn eq(&self, other: &ListRegexMatchSetsInputBuilder) -> bool
self and other values to be equal, and is used
by ==.