Struct rusoto_directconnect::ConfirmPrivateVirtualInterfaceRequest[][src]

pub struct ConfirmPrivateVirtualInterfaceRequest {
    pub direct_connect_gateway_id: Option<String>,
    pub virtual_gateway_id: Option<String>,
    pub virtual_interface_id: String,
}

Container for the parameters to the ConfirmPrivateVirtualInterface operation.

Fields

ID of the direct connect gateway that will be attached to the virtual interface.

A direct connect gateway can be managed via the AWS Direct Connect console or the CreateDirectConnectGateway action.

Default: None

ID of the virtual private gateway that will be attached to the virtual interface.

A virtual private gateway can be managed via the Amazon Virtual Private Cloud (VPC) console or the EC2 CreateVpnGateway action.

Default: None

Trait Implementations

impl Default for ConfirmPrivateVirtualInterfaceRequest
[src]

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

impl Debug for ConfirmPrivateVirtualInterfaceRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ConfirmPrivateVirtualInterfaceRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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