Struct aws_sdk_ssm::types::OpsItemNotification
source · #[non_exhaustive]pub struct OpsItemNotification {
pub arn: Option<String>,
}
Expand description
A notification about the OpsItem.
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 an Amazon Simple Notification Service (Amazon SNS) topic where notifications are sent when this OpsItem is edited or changed.
Implementations§
source§impl OpsItemNotification
impl OpsItemNotification
sourcepub fn builder() -> OpsItemNotificationBuilder
pub fn builder() -> OpsItemNotificationBuilder
Creates a new builder-style object to manufacture OpsItemNotification
.
Trait Implementations§
source§impl Clone for OpsItemNotification
impl Clone for OpsItemNotification
source§fn clone(&self) -> OpsItemNotification
fn clone(&self) -> OpsItemNotification
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 OpsItemNotification
impl Debug for OpsItemNotification
source§impl PartialEq<OpsItemNotification> for OpsItemNotification
impl PartialEq<OpsItemNotification> for OpsItemNotification
source§fn eq(&self, other: &OpsItemNotification) -> bool
fn eq(&self, other: &OpsItemNotification) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for OpsItemNotification
Auto Trait Implementations§
impl RefUnwindSafe for OpsItemNotification
impl Send for OpsItemNotification
impl Sync for OpsItemNotification
impl Unpin for OpsItemNotification
impl UnwindSafe for OpsItemNotification
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