CreateVpnConnectionRequest
public struct CreateVpnConnectionRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The ID of the customer gateway.
Declaration
Swift
public let customerGatewayId: String
-
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.
Declaration
Swift
public let dryRun: Bool?
-
The options for the VPN connection.
Declaration
Swift
public let options: VpnConnectionOptionsSpecification?
-
The tags to apply to the VPN connection.
Declaration
Swift
public let tagSpecifications: [TagSpecification]?
-
The ID of the transit gateway. If you specify a transit gateway, you cannot specify a virtual private gateway.
Declaration
Swift
public let transitGatewayId: String?
-
The type of VPN connection (ipsec.1).
Declaration
Swift
public let type: String
-
The ID of the virtual private gateway. If you specify a virtual private gateway, you cannot specify a transit gateway.
Declaration
Swift
public let vpnGatewayId: String?
-
Undocumented
Declaration
Swift
public init(customerGatewayId: String, dryRun: Bool? = nil, options: VpnConnectionOptionsSpecification? = nil, tagSpecifications: [TagSpecification]? = nil, transitGatewayId: String? = nil, type: String, vpnGatewayId: String? = nil)