Struct rusoto_autoscaling::NotificationConfiguration[][src]

pub struct NotificationConfiguration {
    pub auto_scaling_group_name: Option<String>,
    pub notification_type: Option<String>,
    pub topic_arn: Option<String>,
}

Describes a notification.

Fields

The name of the Auto Scaling group.

One of the following event notification types:

  • autoscaling:EC2INSTANCELAUNCH

  • autoscaling:EC2INSTANCELAUNCHERROR

  • autoscaling:EC2INSTANCETERMINATE

  • autoscaling:EC2INSTANCETERMINATEERROR

  • autoscaling:TEST_NOTIFICATION

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

Trait Implementations

impl Default for NotificationConfiguration
[src]

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

impl Debug for NotificationConfiguration
[src]

Formats the value using the given formatter. Read more

impl Clone for NotificationConfiguration
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for NotificationConfiguration
[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