Struct aws_sdk_ssm::types::OpsItemRelatedItemSummary
source · #[non_exhaustive]pub struct OpsItemRelatedItemSummary {
pub ops_item_id: Option<String>,
pub association_id: Option<String>,
pub resource_type: Option<String>,
pub association_type: Option<String>,
pub resource_uri: Option<String>,
pub created_by: Option<OpsItemIdentity>,
pub created_time: Option<DateTime>,
pub last_modified_by: Option<OpsItemIdentity>,
pub last_modified_time: Option<DateTime>,
}
Expand description
Summary information about related-item resources for an OpsItem.
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.ops_item_id: Option<String>
The OpsItem ID.
association_id: Option<String>
The association ID.
resource_type: Option<String>
The resource type.
association_type: Option<String>
The association type.
resource_uri: Option<String>
The Amazon Resource Name (ARN) of the related-item resource.
created_by: Option<OpsItemIdentity>
Information about the user or resource that created an OpsItem event.
created_time: Option<DateTime>
The time the related-item association was created.
last_modified_by: Option<OpsItemIdentity>
Information about the user or resource that created an OpsItem event.
last_modified_time: Option<DateTime>
The time the related-item association was last updated.
Implementations§
source§impl OpsItemRelatedItemSummary
impl OpsItemRelatedItemSummary
sourcepub fn ops_item_id(&self) -> Option<&str>
pub fn ops_item_id(&self) -> Option<&str>
The OpsItem ID.
sourcepub fn association_id(&self) -> Option<&str>
pub fn association_id(&self) -> Option<&str>
The association ID.
sourcepub fn resource_type(&self) -> Option<&str>
pub fn resource_type(&self) -> Option<&str>
The resource type.
sourcepub fn association_type(&self) -> Option<&str>
pub fn association_type(&self) -> Option<&str>
The association type.
sourcepub fn resource_uri(&self) -> Option<&str>
pub fn resource_uri(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the related-item resource.
sourcepub fn created_by(&self) -> Option<&OpsItemIdentity>
pub fn created_by(&self) -> Option<&OpsItemIdentity>
Information about the user or resource that created an OpsItem event.
sourcepub fn created_time(&self) -> Option<&DateTime>
pub fn created_time(&self) -> Option<&DateTime>
The time the related-item association was created.
sourcepub fn last_modified_by(&self) -> Option<&OpsItemIdentity>
pub fn last_modified_by(&self) -> Option<&OpsItemIdentity>
Information about the user or resource that created an OpsItem event.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
The time the related-item association was last updated.
source§impl OpsItemRelatedItemSummary
impl OpsItemRelatedItemSummary
sourcepub fn builder() -> OpsItemRelatedItemSummaryBuilder
pub fn builder() -> OpsItemRelatedItemSummaryBuilder
Creates a new builder-style object to manufacture OpsItemRelatedItemSummary
.
Trait Implementations§
source§impl Clone for OpsItemRelatedItemSummary
impl Clone for OpsItemRelatedItemSummary
source§fn clone(&self) -> OpsItemRelatedItemSummary
fn clone(&self) -> OpsItemRelatedItemSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for OpsItemRelatedItemSummary
impl Debug for OpsItemRelatedItemSummary
source§impl PartialEq<OpsItemRelatedItemSummary> for OpsItemRelatedItemSummary
impl PartialEq<OpsItemRelatedItemSummary> for OpsItemRelatedItemSummary
source§fn eq(&self, other: &OpsItemRelatedItemSummary) -> bool
fn eq(&self, other: &OpsItemRelatedItemSummary) -> bool
self
and other
values to be equal, and is used
by ==
.