Struct aws_sdk_amp::operation::describe_rule_groups_namespace::DescribeRuleGroupsNamespaceInput
source · #[non_exhaustive]pub struct DescribeRuleGroupsNamespaceInput {
pub workspace_id: Option<String>,
pub name: Option<String>,
}
Expand description
Represents the input of a DescribeRuleGroupsNamespace operation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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 to describe.
name: Option<String>
The rule groups namespace.
Implementations§
source§impl DescribeRuleGroupsNamespaceInput
impl DescribeRuleGroupsNamespaceInput
sourcepub fn builder() -> DescribeRuleGroupsNamespaceInputBuilder
pub fn builder() -> DescribeRuleGroupsNamespaceInputBuilder
Creates a new builder-style object to manufacture DescribeRuleGroupsNamespaceInput
.
Trait Implementations§
source§impl Clone for DescribeRuleGroupsNamespaceInput
impl Clone for DescribeRuleGroupsNamespaceInput
source§fn clone(&self) -> DescribeRuleGroupsNamespaceInput
fn clone(&self) -> DescribeRuleGroupsNamespaceInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<DescribeRuleGroupsNamespaceInput> for DescribeRuleGroupsNamespaceInput
impl PartialEq<DescribeRuleGroupsNamespaceInput> for DescribeRuleGroupsNamespaceInput
source§fn eq(&self, other: &DescribeRuleGroupsNamespaceInput) -> bool
fn eq(&self, other: &DescribeRuleGroupsNamespaceInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeRuleGroupsNamespaceInput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeRuleGroupsNamespaceInput
impl Send for DescribeRuleGroupsNamespaceInput
impl Sync for DescribeRuleGroupsNamespaceInput
impl Unpin for DescribeRuleGroupsNamespaceInput
impl UnwindSafe for DescribeRuleGroupsNamespaceInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more