Struct rusoto_autoscaling::PutNotificationConfigurationType[][src]

pub struct PutNotificationConfigurationType {
    pub auto_scaling_group_name: String,
    pub notification_types: Vec<String>,
    pub topic_arn: String,
}

Fields

The name of the Auto Scaling group.

The type of event that will cause the notification to be sent. For details about notification types supported by Auto Scaling, see DescribeAutoScalingNotificationTypes.

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

Trait Implementations

impl Default for PutNotificationConfigurationType
[src]

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

impl Debug for PutNotificationConfigurationType
[src]

Formats the value using the given formatter. Read more

impl Clone for PutNotificationConfigurationType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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