[][src]Struct rusoto_ec2::ConnectionNotification

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

connection_events: Option<Vec<String>>

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

connection_notification_arn: Option<String>

The ARN of the SNS topic for the notification.

connection_notification_id: Option<String>

The ID of the notification.

connection_notification_state: Option<String>

The state of the notification.

connection_notification_type: Option<String>

The type of notification.

service_id: Option<String>

The ID of the endpoint service.

vpc_endpoint_id: Option<String>

The ID of the VPC endpoint.

Trait Implementations

impl Clone for ConnectionNotification[src]

impl Debug for ConnectionNotification[src]

impl Default for ConnectionNotification[src]

impl PartialEq<ConnectionNotification> for ConnectionNotification[src]

impl StructuralPartialEq for ConnectionNotification[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.