CreateRouteRequest
public struct CreateRouteRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The ID of the carrier gateway. You can only use this option when the VPC contains a subnet which is associated with a Wavelength Zone.
Declaration
Swift
public let carrierGatewayId: String?
-
The IPv4 CIDR address block used for the destination match. Routing decisions are based on the most specific match. We modify the specified CIDR block to its canonical form; for example, if you specify 100.68.0.18/18, we modify it to 100.68.0.0/18.
Declaration
Swift
public let destinationCidrBlock: String?
-
The IPv6 CIDR block used for the destination match. Routing decisions are based on the most specific match.
Declaration
Swift
public let destinationIpv6CidrBlock: String?
-
The ID of a prefix list used for the destination match.
Declaration
Swift
public let destinationPrefixListId: 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?
-
[IPv6 traffic only] The ID of an egress-only internet gateway.
Declaration
Swift
public let egressOnlyInternetGatewayId: String?
-
The ID of an internet gateway or virtual private gateway attached to your VPC.
Declaration
Swift
public let gatewayId: String?
-
The ID of a NAT instance in your VPC. The operation fails if you specify an instance ID unless exactly one network interface is attached.
Declaration
Swift
public let instanceId: String?
-
The ID of the local gateway.
Declaration
Swift
public let localGatewayId: String?
-
[IPv4 traffic only] The ID of a NAT gateway.
Declaration
Swift
public let natGatewayId: String?
-
The ID of a network interface.
Declaration
Swift
public let networkInterfaceId: String?
-
The ID of the route table for the route.
Declaration
Swift
public let routeTableId: String
-
The ID of a transit gateway.
Declaration
Swift
public let transitGatewayId: String?
-
The ID of a VPC peering connection.
Declaration
Swift
public let vpcPeeringConnectionId: String?
-
init(carrierGatewayId:destinationCidrBlock:destinationIpv6CidrBlock:destinationPrefixListId:dryRun:egressOnlyInternetGatewayId:gatewayId:instanceId:localGatewayId:natGatewayId:networkInterfaceId:routeTableId:transitGatewayId:vpcPeeringConnectionId:)
Undocumented
Declaration
Swift
public init(carrierGatewayId: String? = nil, destinationCidrBlock: String? = nil, destinationIpv6CidrBlock: String? = nil, destinationPrefixListId: String? = nil, dryRun: Bool? = nil, egressOnlyInternetGatewayId: String? = nil, gatewayId: String? = nil, instanceId: String? = nil, localGatewayId: String? = nil, natGatewayId: String? = nil, networkInterfaceId: String? = nil, routeTableId: String, transitGatewayId: String? = nil, vpcPeeringConnectionId: String? = nil)