Struct rusoto_ec2::VpnConnectionOptionsSpecification[][src]

pub struct VpnConnectionOptionsSpecification {
    pub static_routes_only: Option<bool>,
    pub tunnel_options: Option<Vec<VpnTunnelOptionsSpecification>>,
}

Describes VPN connection options.

Fields

Indicate whether the VPN connection uses static routes only. If you are creating a VPN connection for a device that does not support BGP, you must specify true. Use CreateVpnConnectionRoute to create a static route.

Default: false

The tunnel options for the VPN connection.

Trait Implementations

impl Default for VpnConnectionOptionsSpecification
[src]

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

impl Debug for VpnConnectionOptionsSpecification
[src]

Formats the value using the given formatter. Read more

impl Clone for VpnConnectionOptionsSpecification
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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