Struct aws_sdk_amp::input::ListRuleGroupsNamespacesInput
source · [−]#[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
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListRuleGroupsNamespaces, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListRuleGroupsNamespaces, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListRuleGroupsNamespaces
>
Creates a new builder-style object to manufacture ListRuleGroupsNamespacesInput
The ID of the workspace.
Optional filter for rule groups namespace name. Only the rule groups namespace that begin with this value will be returned.
Pagination token to request the next page in a paginated list. This token is obtained from the output of the previous ListRuleGroupsNamespaces request.
Maximum results to return in response (default=100, maximum=1000).
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for ListRuleGroupsNamespacesInput
impl Sync for ListRuleGroupsNamespacesInput
impl Unpin for ListRuleGroupsNamespacesInput
impl UnwindSafe for ListRuleGroupsNamespacesInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more