Struct rusoto_ec2::CreateVpnGatewayRequest[][src]

pub struct CreateVpnGatewayRequest {
    pub amazon_side_asn: Option<i64>,
    pub availability_zone: Option<String>,
    pub dry_run: Option<bool>,
    pub type_: String,
}

Contains the parameters for CreateVpnGateway.

Fields

A private Autonomous System Number (ASN) for the Amazon side of a BGP session. If you're using a 16-bit ASN, it must be in the 64512 to 65534 range. If you're using a 32-bit ASN, it must be in the 4200000000 to 4294967294 range.

Default: 64512

The Availability Zone for the virtual private gateway.

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

The type of VPN connection this virtual private gateway supports.

Trait Implementations

impl Default for CreateVpnGatewayRequest
[src]

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

impl Debug for CreateVpnGatewayRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateVpnGatewayRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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