#[non_exhaustive]pub struct ListRuleGroupsNamespacesInput {
pub workspace_id: Option<String>,
pub name: Option<String>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
Expand description
Represents the input of a ListRuleGroupsNamespaces operation.
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.workspace_id: Option<String>
The ID of the workspace.
name: Option<String>
Optional filter for rule groups namespace name. Only the rule groups namespace that begin with this value will be returned.
next_token: Option<String>
Pagination token to request the next page in a paginated list. This token is obtained from the output of the previous ListRuleGroupsNamespaces request.
max_results: Option<i32>
Maximum results to return in response (default=100, maximum=1000).
Implementations§
source§impl ListRuleGroupsNamespacesInput
impl ListRuleGroupsNamespacesInput
sourcepub fn workspace_id(&self) -> Option<&str>
pub fn workspace_id(&self) -> Option<&str>
The ID of the workspace.
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
Optional filter for rule groups namespace name. Only the rule groups namespace that begin with this value will be returned.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
Pagination token to request the next page in a paginated list. This token is obtained from the output of the previous ListRuleGroupsNamespaces request.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
Maximum results to return in response (default=100, maximum=1000).
source§impl ListRuleGroupsNamespacesInput
impl ListRuleGroupsNamespacesInput
sourcepub fn builder() -> ListRuleGroupsNamespacesInputBuilder
pub fn builder() -> ListRuleGroupsNamespacesInputBuilder
Creates a new builder-style object to manufacture ListRuleGroupsNamespacesInput
.
Trait Implementations§
source§impl Clone for ListRuleGroupsNamespacesInput
impl Clone for ListRuleGroupsNamespacesInput
source§fn clone(&self) -> ListRuleGroupsNamespacesInput
fn clone(&self) -> ListRuleGroupsNamespacesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<ListRuleGroupsNamespacesInput> for ListRuleGroupsNamespacesInput
impl PartialEq<ListRuleGroupsNamespacesInput> for ListRuleGroupsNamespacesInput
source§fn eq(&self, other: &ListRuleGroupsNamespacesInput) -> bool
fn eq(&self, other: &ListRuleGroupsNamespacesInput) -> bool
self
and other
values to be equal, and is used
by ==
.