Struct rusoto_ec2::ConnectionNotification[][src]

pub struct ConnectionNotification {
    pub connection_events: Option<Vec<String>>,
    pub connection_notification_arn: Option<String>,
    pub connection_notification_id: Option<String>,
    pub connection_notification_state: Option<String>,
    pub connection_notification_type: Option<String>,
    pub service_id: Option<String>,
    pub vpc_endpoint_id: Option<String>,
}

Describes a connection notification for a VPC endpoint or VPC endpoint service.

Fields

The events for the notification. Valid values are Accept, Connect, Delete, and Reject.

The ARN of the SNS topic for the notification.

The ID of the notification.

The state of the notification.

The type of notification.

The ID of the endpoint service.

The ID of the VPC endpoint.

Trait Implementations

impl Default for ConnectionNotification
[src]

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

impl Debug for ConnectionNotification
[src]

Formats the value using the given formatter. Read more

impl Clone for ConnectionNotification
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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