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.

Default: false

The tunnel options for the VPN connection.

Trait Implementations

impl Default for VpnConnectionOptionsSpecification
[src]

[src]

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

impl Debug for VpnConnectionOptionsSpecification
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for VpnConnectionOptionsSpecification
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations