Struct aws_sdk_ssm::types::OpsMetadata
source · #[non_exhaustive]pub struct OpsMetadata {
pub resource_id: Option<String>,
pub ops_metadata_arn: Option<String>,
pub last_modified_date: Option<DateTime>,
pub last_modified_user: Option<String>,
pub creation_date: Option<DateTime>,
}
Expand description
Operational metadata for an application in Application Manager.
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.resource_id: Option<String>
The ID of the Application Manager application.
ops_metadata_arn: Option<String>
The Amazon Resource Name (ARN) of the OpsMetadata Object or blob.
last_modified_date: Option<DateTime>
The date the OpsMetadata object was last updated.
last_modified_user: Option<String>
The user name who last updated the OpsMetadata object.
creation_date: Option<DateTime>
The date the OpsMetadata objects was created.
Implementations§
source§impl OpsMetadata
impl OpsMetadata
sourcepub fn resource_id(&self) -> Option<&str>
pub fn resource_id(&self) -> Option<&str>
The ID of the Application Manager application.
sourcepub fn ops_metadata_arn(&self) -> Option<&str>
pub fn ops_metadata_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the OpsMetadata Object or blob.
sourcepub fn last_modified_date(&self) -> Option<&DateTime>
pub fn last_modified_date(&self) -> Option<&DateTime>
The date the OpsMetadata object was last updated.
sourcepub fn last_modified_user(&self) -> Option<&str>
pub fn last_modified_user(&self) -> Option<&str>
The user name who last updated the OpsMetadata object.
sourcepub fn creation_date(&self) -> Option<&DateTime>
pub fn creation_date(&self) -> Option<&DateTime>
The date the OpsMetadata objects was created.
source§impl OpsMetadata
impl OpsMetadata
sourcepub fn builder() -> OpsMetadataBuilder
pub fn builder() -> OpsMetadataBuilder
Creates a new builder-style object to manufacture OpsMetadata
.
Trait Implementations§
source§impl Clone for OpsMetadata
impl Clone for OpsMetadata
source§fn clone(&self) -> OpsMetadata
fn clone(&self) -> OpsMetadata
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 Debug for OpsMetadata
impl Debug for OpsMetadata
source§impl PartialEq for OpsMetadata
impl PartialEq for OpsMetadata
source§fn eq(&self, other: &OpsMetadata) -> bool
fn eq(&self, other: &OpsMetadata) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for OpsMetadata
Auto Trait Implementations§
impl Freeze for OpsMetadata
impl RefUnwindSafe for OpsMetadata
impl Send for OpsMetadata
impl Sync for OpsMetadata
impl Unpin for OpsMetadata
impl UnwindSafe for OpsMetadata
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.