Struct rusoto_ec2::VpcEndpointConnection[][src]

pub struct VpcEndpointConnection {
    pub creation_timestamp: Option<String>,
    pub service_id: Option<String>,
    pub vpc_endpoint_id: Option<String>,
    pub vpc_endpoint_owner: Option<String>,
    pub vpc_endpoint_state: Option<String>,
}

Describes a VPC endpoint connection to a service.

Fields

The date and time the VPC endpoint was created.

The ID of the service to which the endpoint is connected.

The ID of the VPC endpoint.

The AWS account ID of the owner of the VPC endpoint.

The state of the VPC endpoint.

Trait Implementations

impl Default for VpcEndpointConnection
[src]

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

impl Debug for VpcEndpointConnection
[src]

Formats the value using the given formatter. Read more

impl Clone for VpcEndpointConnection
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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