You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::EC2::Types::CreateVpcRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::CreateVpcRequest
- Defined in:
- (unknown)
Overview
When passing CreateVpcRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
cidr_block: "String", # required
amazon_provided_ipv_6_cidr_block: false,
ipv_6_pool: "Ipv6PoolEc2Id",
ipv_6_cidr_block: "String",
dry_run: false,
instance_tenancy: "default", # accepts default, dedicated, host
ipv_6_cidr_block_network_border_group: "String",
tag_specifications: [
{
resource_type: "client-vpn-endpoint", # accepts 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, 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-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
tags: [
{
key: "String",
value: "String",
},
],
},
],
}
Instance Attribute Summary collapse
-
#amazon_provided_ipv_6_cidr_block ⇒ Boolean
Requests an Amazon-provided IPv6 CIDR block with a /56 prefix length for the VPC.
-
#cidr_block ⇒ String
The IPv4 network range for the VPC, in CIDR notation.
-
#dry_run ⇒ Boolean
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response.
-
#instance_tenancy ⇒ String
The tenancy options for instances launched into the VPC.
-
#ipv_6_cidr_block ⇒ String
The IPv6 CIDR block from the IPv6 address pool.
-
#ipv_6_cidr_block_network_border_group ⇒ String
The name of the location from which we advertise the IPV6 CIDR block.
-
#ipv_6_pool ⇒ String
The ID of an IPv6 address pool from which to allocate the IPv6 CIDR block.
-
#tag_specifications ⇒ Array<Types::TagSpecification>
The tags to assign to the VPC.
Instance Attribute Details
#amazon_provided_ipv_6_cidr_block ⇒ Boolean
Requests an Amazon-provided IPv6 CIDR block with a /56 prefix length for the VPC. You cannot specify the range of IP addresses, or the size of the CIDR block.
#cidr_block ⇒ String
The IPv4 network range for the VPC, in CIDR notation. For example,
10.0.0.0/16
. 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
.
#dry_run ⇒ Boolean
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
.
#instance_tenancy ⇒ String
The tenancy options for instances launched into the VPC. For default
,
instances are launched with shared tenancy by default. You can launch
instances with any tenancy into a shared tenancy VPC. For dedicated
,
instances are launched as dedicated tenancy instances by default. You
can only launch instances with a tenancy of dedicated
or host
into a
dedicated tenancy VPC.
Important: The host
value cannot be used with this parameter. Use
the default
or dedicated
values only.
Default: default
Possible values:
- default
- dedicated
- host
#ipv_6_cidr_block ⇒ String
The IPv6 CIDR block from the IPv6 address pool. You must also specify
Ipv6Pool
in the request.
To let Amazon choose the IPv6 CIDR block for you, omit this parameter.
#ipv_6_cidr_block_network_border_group ⇒ String
The name of the location from which we advertise the IPV6 CIDR block. Use this parameter to limit the address to this location.
You must set AmazonProvidedIpv6CidrBlock
to true
to use this
parameter.
#ipv_6_pool ⇒ String
The ID of an IPv6 address pool from which to allocate the IPv6 CIDR block.
#tag_specifications ⇒ Array<Types::TagSpecification>
The tags to assign to the VPC.