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
impl StructuralPartialEq for OpsItemRelatedItemSummary
Auto Trait Implementations§
impl Freeze for OpsItemRelatedItemSummary
impl RefUnwindSafe for OpsItemRelatedItemSummary
impl Send for OpsItemRelatedItemSummary
impl Sync for OpsItemRelatedItemSummary
impl Unpin for OpsItemRelatedItemSummary
impl UnwindSafe for OpsItemRelatedItemSummary
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more