pub struct NotificationConfiguration {
pub topic_arn: Option<String>,
pub topic_status: Option<String>,
}
Expand description
Describes a notification topic and its status. Notification topics are used for publishing ElastiCache events to subscribers using Amazon Simple Notification Service (SNS).
Fields§
§topic_arn: Option<String>
The Amazon Resource Name (ARN) that identifies the topic.
topic_status: Option<String>
The current state of the topic.
Trait Implementations§
Source§impl Clone for NotificationConfiguration
impl Clone for NotificationConfiguration
Source§fn clone(&self) -> NotificationConfiguration
fn clone(&self) -> NotificationConfiguration
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 NotificationConfiguration
impl Debug for NotificationConfiguration
Source§impl Default for NotificationConfiguration
impl Default for NotificationConfiguration
Source§fn default() -> NotificationConfiguration
fn default() -> NotificationConfiguration
Returns the “default value” for a type. Read more
impl StructuralPartialEq for NotificationConfiguration
Auto Trait Implementations§
impl Freeze for NotificationConfiguration
impl RefUnwindSafe for NotificationConfiguration
impl Send for NotificationConfiguration
impl Sync for NotificationConfiguration
impl Unpin for NotificationConfiguration
impl UnwindSafe for NotificationConfiguration
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