aws_sdk_wafregional/client/list_subscribed_rule_groups.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListSubscribedRuleGroups`](crate::operation::list_subscribed_rule_groups::builders::ListSubscribedRuleGroupsFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`next_marker(impl Into<String>)`](crate::operation::list_subscribed_rule_groups::builders::ListSubscribedRuleGroupsFluentBuilder::next_marker) / [`set_next_marker(Option<String>)`](crate::operation::list_subscribed_rule_groups::builders::ListSubscribedRuleGroupsFluentBuilder::set_next_marker):<br>required: **false**<br><p>If you specify a value for <code>Limit</code> and you have more <code>ByteMatchSets</code>subscribed rule groups than the value of <code>Limit</code>, AWS WAF returns a <code>NextMarker</code> value in the response that allows you to list another group of subscribed rule groups. For the second and subsequent <code>ListSubscribedRuleGroupsRequest</code> requests, specify the value of <code>NextMarker</code> from the previous response to get information about another batch of subscribed rule groups.</p><br>
/// - [`limit(i32)`](crate::operation::list_subscribed_rule_groups::builders::ListSubscribedRuleGroupsFluentBuilder::limit) / [`set_limit(Option<i32>)`](crate::operation::list_subscribed_rule_groups::builders::ListSubscribedRuleGroupsFluentBuilder::set_limit):<br>required: **false**<br><p>Specifies the number of subscribed rule groups that you want AWS WAF to return for this request. If you have more objects than the number you specify for <code>Limit</code>, the response includes a <code>NextMarker</code> value that you can use to get another batch of objects.</p><br>
/// - On success, responds with [`ListSubscribedRuleGroupsOutput`](crate::operation::list_subscribed_rule_groups::ListSubscribedRuleGroupsOutput) with field(s):
/// - [`next_marker(Option<String>)`](crate::operation::list_subscribed_rule_groups::ListSubscribedRuleGroupsOutput::next_marker): <p>If you have more objects than the number that you specified for <code>Limit</code> in the request, the response includes a <code>NextMarker</code> value. To list more objects, submit another <code>ListSubscribedRuleGroups</code> request, and specify the <code>NextMarker</code> value from the response in the <code>NextMarker</code> value in the next request.</p>
/// - [`rule_groups(Option<Vec::<SubscribedRuleGroupSummary>>)`](crate::operation::list_subscribed_rule_groups::ListSubscribedRuleGroupsOutput::rule_groups): <p>An array of <code>RuleGroup</code> objects.</p>
/// - On failure, responds with [`SdkError<ListSubscribedRuleGroupsError>`](crate::operation::list_subscribed_rule_groups::ListSubscribedRuleGroupsError)
pub fn list_subscribed_rule_groups(&self) -> crate::operation::list_subscribed_rule_groups::builders::ListSubscribedRuleGroupsFluentBuilder {
crate::operation::list_subscribed_rule_groups::builders::ListSubscribedRuleGroupsFluentBuilder::new(self.handle.clone())
}
}