pub struct AlertTarget {
pub alert_target_arn: String,
pub role_arn: String,
}Expand description
A structure containing the alert target ARN and the role ARN.
Fields§
§alert_target_arn: StringThe ARN of the notification target to which alerts are sent.
role_arn: StringThe ARN of the role that grants permission to send alerts to the notification target.
Trait Implementations§
Source§impl Clone for AlertTarget
impl Clone for AlertTarget
Source§fn clone(&self) -> AlertTarget
fn clone(&self) -> AlertTarget
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 AlertTarget
impl Debug for AlertTarget
Source§impl Default for AlertTarget
impl Default for AlertTarget
Source§fn default() -> AlertTarget
fn default() -> AlertTarget
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AlertTarget
impl<'de> Deserialize<'de> for AlertTarget
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 AlertTarget
impl PartialEq for AlertTarget
Source§impl Serialize for AlertTarget
impl Serialize for AlertTarget
impl StructuralPartialEq for AlertTarget
Auto Trait Implementations§
impl Freeze for AlertTarget
impl RefUnwindSafe for AlertTarget
impl Send for AlertTarget
impl Sync for AlertTarget
impl Unpin for AlertTarget
impl UnwindSafe for AlertTarget
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