Struct aws_sdk_amp::types::RuleGroupsNamespaceDescription
source · #[non_exhaustive]pub struct RuleGroupsNamespaceDescription {
pub arn: Option<String>,
pub name: Option<String>,
pub status: Option<RuleGroupsNamespaceStatus>,
pub data: Option<Blob>,
pub created_at: Option<DateTime>,
pub modified_at: Option<DateTime>,
pub tags: Option<HashMap<String, String>>,
}
Expand description
Represents a description of the rule groups namespace.
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.arn: Option<String>
The Amazon Resource Name (ARN) of this rule groups namespace.
name: Option<String>
The rule groups namespace name.
status: Option<RuleGroupsNamespaceStatus>
The status of rule groups namespace.
data: Option<Blob>
The rule groups namespace data.
created_at: Option<DateTime>
The time when the rule groups namespace was created.
modified_at: Option<DateTime>
The time when the rule groups namespace was modified.
The tags of this rule groups namespace.
Implementations§
source§impl RuleGroupsNamespaceDescription
impl RuleGroupsNamespaceDescription
sourcepub fn arn(&self) -> Option<&str>
pub fn arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of this rule groups namespace.
sourcepub fn status(&self) -> Option<&RuleGroupsNamespaceStatus>
pub fn status(&self) -> Option<&RuleGroupsNamespaceStatus>
The status of rule groups namespace.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The time when the rule groups namespace was created.
sourcepub fn modified_at(&self) -> Option<&DateTime>
pub fn modified_at(&self) -> Option<&DateTime>
The time when the rule groups namespace was modified.
The tags of this rule groups namespace.
source§impl RuleGroupsNamespaceDescription
impl RuleGroupsNamespaceDescription
sourcepub fn builder() -> RuleGroupsNamespaceDescriptionBuilder
pub fn builder() -> RuleGroupsNamespaceDescriptionBuilder
Creates a new builder-style object to manufacture RuleGroupsNamespaceDescription
.
Trait Implementations§
source§impl Clone for RuleGroupsNamespaceDescription
impl Clone for RuleGroupsNamespaceDescription
source§fn clone(&self) -> RuleGroupsNamespaceDescription
fn clone(&self) -> RuleGroupsNamespaceDescription
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<RuleGroupsNamespaceDescription> for RuleGroupsNamespaceDescription
impl PartialEq<RuleGroupsNamespaceDescription> for RuleGroupsNamespaceDescription
source§fn eq(&self, other: &RuleGroupsNamespaceDescription) -> bool
fn eq(&self, other: &RuleGroupsNamespaceDescription) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RuleGroupsNamespaceDescription
Auto Trait Implementations§
impl RefUnwindSafe for RuleGroupsNamespaceDescription
impl Send for RuleGroupsNamespaceDescription
impl Sync for RuleGroupsNamespaceDescription
impl Unpin for RuleGroupsNamespaceDescription
impl UnwindSafe for RuleGroupsNamespaceDescription
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