pub struct AuditNotificationTarget {
pub enabled: Option<bool>,
pub role_arn: Option<String>,
pub target_arn: Option<String>,
}Expand description
Information about the targets to which audit notifications are sent.
Fields§
§enabled: Option<bool>True if notifications to the target are enabled.
role_arn: Option<String>The ARN of the role that grants permission to send notifications to the target.
target_arn: Option<String>The ARN of the target (SNS topic) to which audit notifications are sent.
Trait Implementations§
Source§impl Clone for AuditNotificationTarget
impl Clone for AuditNotificationTarget
Source§fn clone(&self) -> AuditNotificationTarget
fn clone(&self) -> AuditNotificationTarget
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 AuditNotificationTarget
impl Debug for AuditNotificationTarget
Source§impl Default for AuditNotificationTarget
impl Default for AuditNotificationTarget
Source§fn default() -> AuditNotificationTarget
fn default() -> AuditNotificationTarget
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuditNotificationTarget
impl<'de> Deserialize<'de> for AuditNotificationTarget
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 AuditNotificationTarget
impl PartialEq for AuditNotificationTarget
Source§impl Serialize for AuditNotificationTarget
impl Serialize for AuditNotificationTarget
impl StructuralPartialEq for AuditNotificationTarget
Auto Trait Implementations§
impl Freeze for AuditNotificationTarget
impl RefUnwindSafe for AuditNotificationTarget
impl Send for AuditNotificationTarget
impl Sync for AuditNotificationTarget
impl Unpin for AuditNotificationTarget
impl UnwindSafe for AuditNotificationTarget
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