Struct aws_sdk_amp::operation::create_rule_groups_namespace::CreateRuleGroupsNamespaceOutput
source · #[non_exhaustive]pub struct CreateRuleGroupsNamespaceOutput {
pub name: Option<String>,
pub arn: Option<String>,
pub status: Option<RuleGroupsNamespaceStatus>,
pub tags: Option<HashMap<String, String>>,
/* private fields */
}
Expand description
Represents the output of a CreateRuleGroupsNamespace 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.name: Option<String>
The rule groups namespace name.
arn: Option<String>
The Amazon Resource Name (ARN) of this rule groups namespace.
status: Option<RuleGroupsNamespaceStatus>
The status of rule groups namespace.
The tags of this rule groups namespace.
Implementations§
source§impl CreateRuleGroupsNamespaceOutput
impl CreateRuleGroupsNamespaceOutput
source§impl CreateRuleGroupsNamespaceOutput
impl CreateRuleGroupsNamespaceOutput
sourcepub fn builder() -> CreateRuleGroupsNamespaceOutputBuilder
pub fn builder() -> CreateRuleGroupsNamespaceOutputBuilder
Creates a new builder-style object to manufacture CreateRuleGroupsNamespaceOutput
.
Trait Implementations§
source§impl Clone for CreateRuleGroupsNamespaceOutput
impl Clone for CreateRuleGroupsNamespaceOutput
source§fn clone(&self) -> CreateRuleGroupsNamespaceOutput
fn clone(&self) -> CreateRuleGroupsNamespaceOutput
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<CreateRuleGroupsNamespaceOutput> for CreateRuleGroupsNamespaceOutput
impl PartialEq<CreateRuleGroupsNamespaceOutput> for CreateRuleGroupsNamespaceOutput
source§fn eq(&self, other: &CreateRuleGroupsNamespaceOutput) -> bool
fn eq(&self, other: &CreateRuleGroupsNamespaceOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateRuleGroupsNamespaceOutput
impl RequestId for CreateRuleGroupsNamespaceOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for CreateRuleGroupsNamespaceOutput
Auto Trait Implementations§
impl RefUnwindSafe for CreateRuleGroupsNamespaceOutput
impl Send for CreateRuleGroupsNamespaceOutput
impl Sync for CreateRuleGroupsNamespaceOutput
impl Unpin for CreateRuleGroupsNamespaceOutput
impl UnwindSafe for CreateRuleGroupsNamespaceOutput
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