Creates an internet gateway for use with a VPC. After creating the
internet gateway, you attach it to a VPC using
attach_internet_gateway
.
For more information about your VPC and internet gateway, see the Amazon Virtual Private Cloud User Guide.
ec2_create_internet_gateway(TagSpecifications, DryRun)
A list with the following syntax:
list(
InternetGateway = list(
Attachments = list(
list(
State = "attaching"|"attached"|"detaching"|"detached",
VpcId = "string"
)
),
InternetGatewayId = "string",
OwnerId = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
)
The tags to assign to the internet 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
.
svc$create_internet_gateway(
TagSpecifications = list(
list(
ResourceType = "client-vpn-endpoint"|"customer-gateway"|"dedicated-host"|"dhcp-options"|"egress-only-internet-gateway"|"elastic-ip"|"elastic-gpu"|"export-image-task"|"export-instance-task"|"fleet"|"fpga-image"|"host-reservation"|"image"|"import-image-task"|"import-snapshot-task"|"instance"|"internet-gateway"|"key-pair"|"launch-template"|"local-gateway-route-table-vpc-association"|"natgateway"|"network-acl"|"network-interface"|"network-insights-analysis"|"network-insights-path"|"placement-group"|"reserved-instances"|"route-table"|"security-group"|"snapshot"|"spot-fleet-request"|"spot-instances-request"|"subnet"|"traffic-mirror-filter"|"traffic-mirror-session"|"traffic-mirror-target"|"transit-gateway"|"transit-gateway-attachment"|"transit-gateway-connect-peer"|"transit-gateway-multicast-domain"|"transit-gateway-route-table"|"volume"|"vpc"|"vpc-peering-connection"|"vpn-connection"|"vpn-gateway"|"vpc-flow-log",
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
),
DryRun = TRUE|FALSE
)
if (FALSE) {
# This example creates an Internet gateway.
svc$create_internet_gateway()
}
Run the code above in your browser using DataLab