pub struct TriggerConfig {
pub trigger_events: Option<Vec<String>>,
pub trigger_name: Option<String>,
pub trigger_target_arn: Option<String>,
}
Expand description
Information about notification triggers for the deployment group.
Fields§
§trigger_events: Option<Vec<String>>
The event type or types for which notifications are triggered.
trigger_name: Option<String>
The name of the notification trigger.
trigger_target_arn: Option<String>
The Amazon Resource Name (ARN) of the Amazon Simple Notification Service topic through which notifications about deployment or instance events are sent.
Trait Implementations§
Source§impl Clone for TriggerConfig
impl Clone for TriggerConfig
Source§fn clone(&self) -> TriggerConfig
fn clone(&self) -> TriggerConfig
Returns a duplicate 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 TriggerConfig
impl Debug for TriggerConfig
Source§impl Default for TriggerConfig
impl Default for TriggerConfig
Source§fn default() -> TriggerConfig
fn default() -> TriggerConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TriggerConfig
impl<'de> Deserialize<'de> for TriggerConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TriggerConfig
impl PartialEq for TriggerConfig
Source§impl Serialize for TriggerConfig
impl Serialize for TriggerConfig
impl StructuralPartialEq for TriggerConfig
Auto Trait Implementations§
impl Freeze for TriggerConfig
impl RefUnwindSafe for TriggerConfig
impl Send for TriggerConfig
impl Sync for TriggerConfig
impl Unpin for TriggerConfig
impl UnwindSafe for TriggerConfig
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