Struct rusoto_glacier::VaultNotificationConfig[][src]

pub struct VaultNotificationConfig {
    pub events: Option<Vec<String>>,
    pub sns_topic: Option<String>,
}

Represents a vault's notification configuration.

Fields

A list of one or more events for which Amazon Glacier will send a notification to the specified Amazon SNS topic.

The Amazon Simple Notification Service (Amazon SNS) topic Amazon Resource Name (ARN).

Trait Implementations

impl Default for VaultNotificationConfig
[src]

Returns the "default value" for a type. Read more

impl Debug for VaultNotificationConfig
[src]

Formats the value using the given formatter. Read more

impl Clone for VaultNotificationConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for VaultNotificationConfig
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations