aws-sdk-ec2 1.245.0 → 1.246.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2.rb +1 -1
- data/lib/aws-sdk-ec2/client.rb +165 -135
- data/lib/aws-sdk-ec2/client_api.rb +5 -0
- data/lib/aws-sdk-ec2/instance.rb +6 -5
- data/lib/aws-sdk-ec2/placement_group.rb +4 -4
- data/lib/aws-sdk-ec2/resource.rb +30 -28
- data/lib/aws-sdk-ec2/snapshot.rb +1 -1
- data/lib/aws-sdk-ec2/subnet.rb +16 -14
- data/lib/aws-sdk-ec2/types.rb +222 -162
- data/lib/aws-sdk-ec2/volume.rb +1 -1
- data/lib/aws-sdk-ec2/vpc.rb +9 -9
- metadata +2 -2
@@ -3364,6 +3364,7 @@ module Aws::EC2
|
|
3364
3364
|
CreateFleetRequest.add_member(:valid_until, Shapes::ShapeRef.new(shape: DateTime, location_name: "ValidUntil"))
|
3365
3365
|
CreateFleetRequest.add_member(:replace_unhealthy_instances, Shapes::ShapeRef.new(shape: Boolean, location_name: "ReplaceUnhealthyInstances"))
|
3366
3366
|
CreateFleetRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
|
3367
|
+
CreateFleetRequest.add_member(:context, Shapes::ShapeRef.new(shape: String, location_name: "Context"))
|
3367
3368
|
CreateFleetRequest.struct_class = Types::CreateFleetRequest
|
3368
3369
|
|
3369
3370
|
CreateFleetResult.add_member(:fleet_id, Shapes::ShapeRef.new(shape: FleetId, location_name: "fleetId"))
|
@@ -6374,6 +6375,7 @@ module Aws::EC2
|
|
6374
6375
|
FleetData.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
6375
6376
|
FleetData.add_member(:errors, Shapes::ShapeRef.new(shape: DescribeFleetsErrorSet, location_name: "errorSet"))
|
6376
6377
|
FleetData.add_member(:instances, Shapes::ShapeRef.new(shape: DescribeFleetsInstancesSet, location_name: "fleetInstanceSet"))
|
6378
|
+
FleetData.add_member(:context, Shapes::ShapeRef.new(shape: String, location_name: "context"))
|
6377
6379
|
FleetData.struct_class = Types::FleetData
|
6378
6380
|
|
6379
6381
|
FleetIdSet.member = Shapes::ShapeRef.new(shape: FleetId)
|
@@ -8011,6 +8013,7 @@ module Aws::EC2
|
|
8011
8013
|
ModifyFleetRequest.add_member(:launch_template_configs, Shapes::ShapeRef.new(shape: FleetLaunchTemplateConfigListRequest, location_name: "LaunchTemplateConfig"))
|
8012
8014
|
ModifyFleetRequest.add_member(:fleet_id, Shapes::ShapeRef.new(shape: FleetId, required: true, location_name: "FleetId"))
|
8013
8015
|
ModifyFleetRequest.add_member(:target_capacity_specification, Shapes::ShapeRef.new(shape: TargetCapacitySpecificationRequest, location_name: "TargetCapacitySpecification"))
|
8016
|
+
ModifyFleetRequest.add_member(:context, Shapes::ShapeRef.new(shape: String, location_name: "Context"))
|
8014
8017
|
ModifyFleetRequest.struct_class = Types::ModifyFleetRequest
|
8015
8018
|
|
8016
8019
|
ModifyFleetResult.add_member(:return, Shapes::ShapeRef.new(shape: Boolean, location_name: "return"))
|
@@ -8181,6 +8184,7 @@ module Aws::EC2
|
|
8181
8184
|
ModifySpotFleetRequestRequest.add_member(:spot_fleet_request_id, Shapes::ShapeRef.new(shape: SpotFleetRequestId, required: true, location_name: "spotFleetRequestId"))
|
8182
8185
|
ModifySpotFleetRequestRequest.add_member(:target_capacity, Shapes::ShapeRef.new(shape: Integer, location_name: "targetCapacity"))
|
8183
8186
|
ModifySpotFleetRequestRequest.add_member(:on_demand_target_capacity, Shapes::ShapeRef.new(shape: Integer, location_name: "OnDemandTargetCapacity"))
|
8187
|
+
ModifySpotFleetRequestRequest.add_member(:context, Shapes::ShapeRef.new(shape: String, location_name: "Context"))
|
8184
8188
|
ModifySpotFleetRequestRequest.struct_class = Types::ModifySpotFleetRequestRequest
|
8185
8189
|
|
8186
8190
|
ModifySpotFleetRequestResponse.add_member(:return, Shapes::ShapeRef.new(shape: Boolean, location_name: "return"))
|
@@ -10040,6 +10044,7 @@ module Aws::EC2
|
|
10040
10044
|
SpotFleetRequestConfigData.add_member(:instance_interruption_behavior, Shapes::ShapeRef.new(shape: InstanceInterruptionBehavior, location_name: "instanceInterruptionBehavior"))
|
10041
10045
|
SpotFleetRequestConfigData.add_member(:load_balancers_config, Shapes::ShapeRef.new(shape: LoadBalancersConfig, location_name: "loadBalancersConfig"))
|
10042
10046
|
SpotFleetRequestConfigData.add_member(:instance_pools_to_use_count, Shapes::ShapeRef.new(shape: Integer, location_name: "instancePoolsToUseCount"))
|
10047
|
+
SpotFleetRequestConfigData.add_member(:context, Shapes::ShapeRef.new(shape: String, location_name: "context"))
|
10043
10048
|
SpotFleetRequestConfigData.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
|
10044
10049
|
SpotFleetRequestConfigData.struct_class = Types::SpotFleetRequestConfigData
|
10045
10050
|
|
data/lib/aws-sdk-ec2/instance.rb
CHANGED
@@ -331,7 +331,8 @@ module Aws::EC2
|
|
331
331
|
data[:metadata_options]
|
332
332
|
end
|
333
333
|
|
334
|
-
# Indicates whether the instance is enabled for
|
334
|
+
# Indicates whether the instance is enabled for Amazon Web Services
|
335
|
+
# Nitro Enclaves.
|
335
336
|
# @return [Types::EnclaveOptions]
|
336
337
|
def enclave_options
|
337
338
|
data[:enclave_options]
|
@@ -668,7 +669,7 @@ module Aws::EC2
|
|
668
669
|
# no_reboot: false,
|
669
670
|
# tag_specifications: [
|
670
671
|
# {
|
671
|
-
# 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, 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
|
672
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
672
673
|
# tags: [
|
673
674
|
# {
|
674
675
|
# key: "String",
|
@@ -1017,9 +1018,9 @@ module Aws::EC2
|
|
1017
1018
|
# option with a PV instance can make it unreachable.
|
1018
1019
|
# @option options [Types::BlobAttributeValue] :user_data
|
1019
1020
|
# Changes the instance's user data to the specified value. If you are
|
1020
|
-
# using an
|
1021
|
-
# for you, and you can load the text from a file.
|
1022
|
-
# provide base64-encoded text.
|
1021
|
+
# using an Amazon Web Services SDK or command line tool, base64-encoding
|
1022
|
+
# is performed for you, and you can load the text from a file.
|
1023
|
+
# Otherwise, you must provide base64-encoded text.
|
1023
1024
|
# @option options [String] :value
|
1024
1025
|
# A new value for the attribute. Use only with the `kernel`, `ramdisk`,
|
1025
1026
|
# `userData`, `disableApiTermination`, or
|
@@ -413,7 +413,7 @@ module Aws::EC2
|
|
413
413
|
# interface.
|
414
414
|
#
|
415
415
|
# * `network-interface.requester-managed` - Indicates whether the
|
416
|
-
# network interface is being managed by
|
416
|
+
# network interface is being managed by Amazon Web Services.
|
417
417
|
#
|
418
418
|
# * `network-interface.status` - The status of the network interface
|
419
419
|
# (`available`) \| `in-use`).
|
@@ -432,7 +432,7 @@ module Aws::EC2
|
|
432
432
|
#
|
433
433
|
# * `outpost-arn` - The Amazon Resource Name (ARN) of the Outpost.
|
434
434
|
#
|
435
|
-
# * `owner-id` - The
|
435
|
+
# * `owner-id` - The account ID of the instance owner.
|
436
436
|
#
|
437
437
|
# * `placement-group-name` - The name of the placement group for the
|
438
438
|
# instance.
|
@@ -460,8 +460,8 @@ module Aws::EC2
|
|
460
460
|
# terminate the instance). Similar to the state-reason-code filter.
|
461
461
|
#
|
462
462
|
# * `requester-id` - The ID of the entity that launched the instance on
|
463
|
-
# your behalf (for example,
|
464
|
-
#
|
463
|
+
# your behalf (for example, Management Console, Auto Scaling, and so
|
464
|
+
# on).
|
465
465
|
#
|
466
466
|
# * `reservation-id` - The ID of the instance's reservation. A
|
467
467
|
# reservation ID is created any time you launch an instance. A
|
data/lib/aws-sdk-ec2/resource.rb
CHANGED
@@ -46,7 +46,7 @@ module Aws::EC2
|
|
46
46
|
# ],
|
47
47
|
# tag_specifications: [
|
48
48
|
# {
|
49
|
-
# 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, 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
|
49
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
50
50
|
# tags: [
|
51
51
|
# {
|
52
52
|
# key: "String",
|
@@ -180,7 +180,7 @@ module Aws::EC2
|
|
180
180
|
# ],
|
181
181
|
# tag_specifications: [
|
182
182
|
# {
|
183
|
-
# 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, 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
|
183
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
184
184
|
# tags: [
|
185
185
|
# {
|
186
186
|
# key: "String",
|
@@ -326,7 +326,8 @@ module Aws::EC2
|
|
326
326
|
# The ID of the RAM disk to select. Some kernels require additional
|
327
327
|
# drivers at launch. Check the kernel requirements for information about
|
328
328
|
# whether you need to specify a RAM disk. To find kernel requirements,
|
329
|
-
# go to the
|
329
|
+
# go to the Amazon Web Services Resource Center and search for the
|
330
|
+
# kernel ID.
|
330
331
|
#
|
331
332
|
# We recommend that you use PV-GRUB instead of kernels and RAM disks.
|
332
333
|
# For more information, see [ PV-GRUB][1] in the *Amazon EC2 User
|
@@ -504,8 +505,8 @@ module Aws::EC2
|
|
504
505
|
# information, see [Hibernate your instance][1] in the *Amazon EC2 User
|
505
506
|
# Guide*.
|
506
507
|
#
|
507
|
-
# You can't enable hibernation and
|
508
|
-
# instance.
|
508
|
+
# You can't enable hibernation and Amazon Web Services Nitro Enclaves
|
509
|
+
# on the same instance.
|
509
510
|
#
|
510
511
|
#
|
511
512
|
#
|
@@ -520,12 +521,13 @@ module Aws::EC2
|
|
520
521
|
#
|
521
522
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html
|
522
523
|
# @option options [Types::EnclaveOptionsRequest] :enclave_options
|
523
|
-
# Indicates whether the instance is enabled for
|
524
|
-
# more information, see [ What is
|
525
|
-
# Nitro Enclaves
|
524
|
+
# Indicates whether the instance is enabled for Amazon Web Services
|
525
|
+
# Nitro Enclaves. For more information, see [ What is Amazon Web
|
526
|
+
# Services Nitro Enclaves?][1] in the *Amazon Web Services Nitro
|
527
|
+
# Enclaves User Guide*.
|
526
528
|
#
|
527
|
-
# You can't enable
|
528
|
-
# instance.
|
529
|
+
# You can't enable Amazon Web Services Nitro Enclaves and hibernation
|
530
|
+
# on the same instance.
|
529
531
|
#
|
530
532
|
#
|
531
533
|
#
|
@@ -549,7 +551,7 @@ module Aws::EC2
|
|
549
551
|
# internetgateway = ec2.create_internet_gateway({
|
550
552
|
# tag_specifications: [
|
551
553
|
# {
|
552
|
-
# 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, 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
|
554
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
553
555
|
# tags: [
|
554
556
|
# {
|
555
557
|
# key: "String",
|
@@ -585,7 +587,7 @@ module Aws::EC2
|
|
585
587
|
# dry_run: false,
|
586
588
|
# tag_specifications: [
|
587
589
|
# {
|
588
|
-
# 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, 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
|
590
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
589
591
|
# tags: [
|
590
592
|
# {
|
591
593
|
# key: "String",
|
@@ -626,7 +628,7 @@ module Aws::EC2
|
|
626
628
|
# subnet_id: "SubnetId", # required
|
627
629
|
# tag_specifications: [
|
628
630
|
# {
|
629
|
-
# 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, 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
|
631
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
630
632
|
# tags: [
|
631
633
|
# {
|
632
634
|
# key: "String",
|
@@ -683,7 +685,7 @@ module Aws::EC2
|
|
683
685
|
# vpc_id: "VpcId", # required
|
684
686
|
# tag_specifications: [
|
685
687
|
# {
|
686
|
-
# 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, 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
|
688
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
687
689
|
# tags: [
|
688
690
|
# {
|
689
691
|
# key: "String",
|
@@ -737,7 +739,7 @@ module Aws::EC2
|
|
737
739
|
# subnet_id: "SubnetId", # required
|
738
740
|
# tag_specifications: [
|
739
741
|
# {
|
740
|
-
# 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, 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
|
742
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
741
743
|
# tags: [
|
742
744
|
# {
|
743
745
|
# key: "String",
|
@@ -834,7 +836,7 @@ module Aws::EC2
|
|
834
836
|
# partition_count: 1,
|
835
837
|
# tag_specifications: [
|
836
838
|
# {
|
837
|
-
# 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, 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
|
839
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
838
840
|
# tags: [
|
839
841
|
# {
|
840
842
|
# key: "String",
|
@@ -878,7 +880,7 @@ module Aws::EC2
|
|
878
880
|
# vpc_id: "VpcId", # required
|
879
881
|
# tag_specifications: [
|
880
882
|
# {
|
881
|
-
# 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, 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
|
883
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
882
884
|
# tags: [
|
883
885
|
# {
|
884
886
|
# key: "String",
|
@@ -916,7 +918,7 @@ module Aws::EC2
|
|
916
918
|
# vpc_id: "VpcId",
|
917
919
|
# tag_specifications: [
|
918
920
|
# {
|
919
|
-
# 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, 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
|
921
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
920
922
|
# tags: [
|
921
923
|
# {
|
922
924
|
# key: "String",
|
@@ -972,7 +974,7 @@ module Aws::EC2
|
|
972
974
|
# volume_id: "VolumeId", # required
|
973
975
|
# tag_specifications: [
|
974
976
|
# {
|
975
|
-
# 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, 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
|
977
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
976
978
|
# tags: [
|
977
979
|
# {
|
978
980
|
# key: "String",
|
@@ -1031,7 +1033,7 @@ module Aws::EC2
|
|
1031
1033
|
# subnet = ec2.create_subnet({
|
1032
1034
|
# tag_specifications: [
|
1033
1035
|
# {
|
1034
|
-
# 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, 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
|
1036
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
1035
1037
|
# tags: [
|
1036
1038
|
# {
|
1037
1039
|
# key: "String",
|
@@ -1186,7 +1188,7 @@ module Aws::EC2
|
|
1186
1188
|
# dry_run: false,
|
1187
1189
|
# tag_specifications: [
|
1188
1190
|
# {
|
1189
|
-
# 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, 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
|
1191
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
1190
1192
|
# tags: [
|
1191
1193
|
# {
|
1192
1194
|
# key: "String",
|
@@ -1353,7 +1355,7 @@ module Aws::EC2
|
|
1353
1355
|
# ipv_6_cidr_block_network_border_group: "String",
|
1354
1356
|
# tag_specifications: [
|
1355
1357
|
# {
|
1356
|
-
# 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, 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
|
1358
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
1357
1359
|
# tags: [
|
1358
1360
|
# {
|
1359
1361
|
# key: "String",
|
@@ -1426,7 +1428,7 @@ module Aws::EC2
|
|
1426
1428
|
# peer_region: "String",
|
1427
1429
|
# tag_specifications: [
|
1428
1430
|
# {
|
1429
|
-
# 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, 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
|
1431
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
1430
1432
|
# tags: [
|
1431
1433
|
# {
|
1432
1434
|
# key: "String",
|
@@ -1498,7 +1500,7 @@ module Aws::EC2
|
|
1498
1500
|
# public_key_material: "data", # required
|
1499
1501
|
# tag_specifications: [
|
1500
1502
|
# {
|
1501
|
-
# 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, 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
|
1503
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
1502
1504
|
# tags: [
|
1503
1505
|
# {
|
1504
1506
|
# key: "String",
|
@@ -2173,7 +2175,7 @@ module Aws::EC2
|
|
2173
2175
|
# interface.
|
2174
2176
|
#
|
2175
2177
|
# * `network-interface.requester-managed` - Indicates whether the
|
2176
|
-
# network interface is being managed by
|
2178
|
+
# network interface is being managed by Amazon Web Services.
|
2177
2179
|
#
|
2178
2180
|
# * `network-interface.status` - The status of the network interface
|
2179
2181
|
# (`available`) \| `in-use`).
|
@@ -2192,7 +2194,7 @@ module Aws::EC2
|
|
2192
2194
|
#
|
2193
2195
|
# * `outpost-arn` - The Amazon Resource Name (ARN) of the Outpost.
|
2194
2196
|
#
|
2195
|
-
# * `owner-id` - The
|
2197
|
+
# * `owner-id` - The account ID of the instance owner.
|
2196
2198
|
#
|
2197
2199
|
# * `placement-group-name` - The name of the placement group for the
|
2198
2200
|
# instance.
|
@@ -2220,8 +2222,8 @@ module Aws::EC2
|
|
2220
2222
|
# terminate the instance). Similar to the state-reason-code filter.
|
2221
2223
|
#
|
2222
2224
|
# * `requester-id` - The ID of the entity that launched the instance on
|
2223
|
-
# your behalf (for example,
|
2224
|
-
#
|
2225
|
+
# your behalf (for example, Management Console, Auto Scaling, and so
|
2226
|
+
# on).
|
2225
2227
|
#
|
2226
2228
|
# * `reservation-id` - The ID of the instance's reservation. A
|
2227
2229
|
# reservation ID is created any time you launch an instance. A
|
data/lib/aws-sdk-ec2/snapshot.rb
CHANGED
@@ -305,7 +305,7 @@ module Aws::EC2
|
|
305
305
|
# source_region: "String", # required
|
306
306
|
# tag_specifications: [
|
307
307
|
# {
|
308
|
-
# 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, 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
|
308
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
309
309
|
# tags: [
|
310
310
|
# {
|
311
311
|
# key: "String",
|
data/lib/aws-sdk-ec2/subnet.rb
CHANGED
@@ -374,7 +374,7 @@ module Aws::EC2
|
|
374
374
|
# ],
|
375
375
|
# tag_specifications: [
|
376
376
|
# {
|
377
|
-
# 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, 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
|
377
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
378
378
|
# tags: [
|
379
379
|
# {
|
380
380
|
# key: "String",
|
@@ -520,7 +520,8 @@ module Aws::EC2
|
|
520
520
|
# The ID of the RAM disk to select. Some kernels require additional
|
521
521
|
# drivers at launch. Check the kernel requirements for information about
|
522
522
|
# whether you need to specify a RAM disk. To find kernel requirements,
|
523
|
-
# go to the
|
523
|
+
# go to the Amazon Web Services Resource Center and search for the
|
524
|
+
# kernel ID.
|
524
525
|
#
|
525
526
|
# We recommend that you use PV-GRUB instead of kernels and RAM disks.
|
526
527
|
# For more information, see [ PV-GRUB][1] in the *Amazon EC2 User
|
@@ -693,8 +694,8 @@ module Aws::EC2
|
|
693
694
|
# information, see [Hibernate your instance][1] in the *Amazon EC2 User
|
694
695
|
# Guide*.
|
695
696
|
#
|
696
|
-
# You can't enable hibernation and
|
697
|
-
# instance.
|
697
|
+
# You can't enable hibernation and Amazon Web Services Nitro Enclaves
|
698
|
+
# on the same instance.
|
698
699
|
#
|
699
700
|
#
|
700
701
|
#
|
@@ -709,12 +710,13 @@ module Aws::EC2
|
|
709
710
|
#
|
710
711
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html
|
711
712
|
# @option options [Types::EnclaveOptionsRequest] :enclave_options
|
712
|
-
# Indicates whether the instance is enabled for
|
713
|
-
# more information, see [ What is
|
714
|
-
# Nitro Enclaves
|
713
|
+
# Indicates whether the instance is enabled for Amazon Web Services
|
714
|
+
# Nitro Enclaves. For more information, see [ What is Amazon Web
|
715
|
+
# Services Nitro Enclaves?][1] in the *Amazon Web Services Nitro
|
716
|
+
# Enclaves User Guide*.
|
715
717
|
#
|
716
|
-
# You can't enable
|
717
|
-
# instance.
|
718
|
+
# You can't enable Amazon Web Services Nitro Enclaves and hibernation
|
719
|
+
# on the same instance.
|
718
720
|
#
|
719
721
|
#
|
720
722
|
#
|
@@ -757,7 +759,7 @@ module Aws::EC2
|
|
757
759
|
# interface_type: "efa", # accepts efa, branch, trunk
|
758
760
|
# tag_specifications: [
|
759
761
|
# {
|
760
|
-
# 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, 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
|
762
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
761
763
|
# tags: [
|
762
764
|
# {
|
763
765
|
# key: "String",
|
@@ -1137,7 +1139,7 @@ module Aws::EC2
|
|
1137
1139
|
# interface.
|
1138
1140
|
#
|
1139
1141
|
# * `network-interface.requester-managed` - Indicates whether the
|
1140
|
-
# network interface is being managed by
|
1142
|
+
# network interface is being managed by Amazon Web Services.
|
1141
1143
|
#
|
1142
1144
|
# * `network-interface.status` - The status of the network interface
|
1143
1145
|
# (`available`) \| `in-use`).
|
@@ -1156,7 +1158,7 @@ module Aws::EC2
|
|
1156
1158
|
#
|
1157
1159
|
# * `outpost-arn` - The Amazon Resource Name (ARN) of the Outpost.
|
1158
1160
|
#
|
1159
|
-
# * `owner-id` - The
|
1161
|
+
# * `owner-id` - The account ID of the instance owner.
|
1160
1162
|
#
|
1161
1163
|
# * `placement-group-name` - The name of the placement group for the
|
1162
1164
|
# instance.
|
@@ -1184,8 +1186,8 @@ module Aws::EC2
|
|
1184
1186
|
# terminate the instance). Similar to the state-reason-code filter.
|
1185
1187
|
#
|
1186
1188
|
# * `requester-id` - The ID of the entity that launched the instance on
|
1187
|
-
# your behalf (for example,
|
1188
|
-
#
|
1189
|
+
# your behalf (for example, Management Console, Auto Scaling, and so
|
1190
|
+
# on).
|
1189
1191
|
#
|
1190
1192
|
# * `reservation-id` - The ID of the instance's reservation. A
|
1191
1193
|
# reservation ID is created any time you launch an instance. A
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -550,7 +550,7 @@ module Aws::EC2
|
|
550
550
|
# dry_run: false,
|
551
551
|
# tag_specifications: [
|
552
552
|
# {
|
553
|
-
# 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, 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
|
553
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
554
554
|
# tags: [
|
555
555
|
# {
|
556
556
|
# key: "String",
|
@@ -699,7 +699,7 @@ module Aws::EC2
|
|
699
699
|
# quantity: 1, # required
|
700
700
|
# tag_specifications: [
|
701
701
|
# {
|
702
|
-
# 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, 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
|
702
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
703
703
|
# tags: [
|
704
704
|
# {
|
705
705
|
# key: "String",
|
@@ -3544,7 +3544,7 @@ module Aws::EC2
|
|
3544
3544
|
# @return [String]
|
3545
3545
|
#
|
3546
3546
|
# @!attribute [rw] owner_id
|
3547
|
-
# The ID of the
|
3547
|
+
# The ID of the account that owns the Capacity Reservation.
|
3548
3548
|
# @return [String]
|
3549
3549
|
#
|
3550
3550
|
# @!attribute [rw] capacity_reservation_arn
|
@@ -3574,10 +3574,10 @@ module Aws::EC2
|
|
3574
3574
|
# Reservation can have one of the following tenancy settings:
|
3575
3575
|
#
|
3576
3576
|
# * `default` - The Capacity Reservation is created on hardware that
|
3577
|
-
# is shared with other
|
3577
|
+
# is shared with other accounts.
|
3578
3578
|
#
|
3579
3579
|
# * `dedicated` - The Capacity Reservation is created on single-tenant
|
3580
|
-
# hardware that is dedicated to a single
|
3580
|
+
# hardware that is dedicated to a single account.
|
3581
3581
|
# @return [String]
|
3582
3582
|
#
|
3583
3583
|
# @!attribute [rw] total_instance_count
|
@@ -3715,7 +3715,7 @@ module Aws::EC2
|
|
3715
3715
|
# @return [String]
|
3716
3716
|
#
|
3717
3717
|
# @!attribute [rw] owner_id
|
3718
|
-
# The ID of the
|
3718
|
+
# The ID of the account that owns the resource group.
|
3719
3719
|
# @return [String]
|
3720
3720
|
#
|
3721
3721
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CapacityReservationGroup AWS API Documentation
|
@@ -4846,8 +4846,8 @@ module Aws::EC2
|
|
4846
4846
|
end
|
4847
4847
|
|
4848
4848
|
# @!attribute [rw] owner_id
|
4849
|
-
# The
|
4850
|
-
#
|
4849
|
+
# The account ID of the instance owner. This is only present if the
|
4850
|
+
# product code is attached to the instance.
|
4851
4851
|
# @return [String]
|
4852
4852
|
#
|
4853
4853
|
# @!attribute [rw] return
|
@@ -5243,7 +5243,7 @@ module Aws::EC2
|
|
5243
5243
|
# source_snapshot_id: "String", # required
|
5244
5244
|
# tag_specifications: [
|
5245
5245
|
# {
|
5246
|
-
# 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, 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
|
5246
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
5247
5247
|
# tags: [
|
5248
5248
|
# {
|
5249
5249
|
# key: "String",
|
@@ -5468,7 +5468,7 @@ module Aws::EC2
|
|
5468
5468
|
# instance_match_criteria: "open", # accepts open, targeted
|
5469
5469
|
# tag_specifications: [
|
5470
5470
|
# {
|
5471
|
-
# 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, 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
|
5471
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
5472
5472
|
# tags: [
|
5473
5473
|
# {
|
5474
5474
|
# key: "String",
|
@@ -5518,10 +5518,10 @@ module Aws::EC2
|
|
5518
5518
|
# Reservation can have one of the following tenancy settings:
|
5519
5519
|
#
|
5520
5520
|
# * `default` - The Capacity Reservation is created on hardware that
|
5521
|
-
# is shared with other
|
5521
|
+
# is shared with other accounts.
|
5522
5522
|
#
|
5523
5523
|
# * `dedicated` - The Capacity Reservation is created on single-tenant
|
5524
|
-
# hardware that is dedicated to a single
|
5524
|
+
# hardware that is dedicated to a single account.
|
5525
5525
|
# @return [String]
|
5526
5526
|
#
|
5527
5527
|
# @!attribute [rw] instance_count
|
@@ -5647,7 +5647,7 @@ module Aws::EC2
|
|
5647
5647
|
# vpc_id: "VpcId", # required
|
5648
5648
|
# tag_specifications: [
|
5649
5649
|
# {
|
5650
|
-
# 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, 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
|
5650
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
5651
5651
|
# tags: [
|
5652
5652
|
# {
|
5653
5653
|
# key: "String",
|
@@ -5746,7 +5746,7 @@ module Aws::EC2
|
|
5746
5746
|
# client_token: "String",
|
5747
5747
|
# tag_specifications: [
|
5748
5748
|
# {
|
5749
|
-
# 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, 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
|
5749
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
5750
5750
|
# tags: [
|
5751
5751
|
# {
|
5752
5752
|
# key: "String",
|
@@ -6039,7 +6039,7 @@ module Aws::EC2
|
|
6039
6039
|
# type: "ipsec.1", # required, accepts ipsec.1
|
6040
6040
|
# tag_specifications: [
|
6041
6041
|
# {
|
6042
|
-
# 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, 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
|
6042
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
6043
6043
|
# tags: [
|
6044
6044
|
# {
|
6045
6045
|
# key: "String",
|
@@ -6203,7 +6203,7 @@ module Aws::EC2
|
|
6203
6203
|
# ],
|
6204
6204
|
# tag_specifications: [
|
6205
6205
|
# {
|
6206
|
-
# 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, 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
|
6206
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
6207
6207
|
# tags: [
|
6208
6208
|
# {
|
6209
6209
|
# key: "String",
|
@@ -6261,7 +6261,7 @@ module Aws::EC2
|
|
6261
6261
|
# vpc_id: "VpcId", # required
|
6262
6262
|
# tag_specifications: [
|
6263
6263
|
# {
|
6264
|
-
# 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, 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
|
6264
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
6265
6265
|
# tags: [
|
6266
6266
|
# {
|
6267
6267
|
# key: "String",
|
@@ -6482,7 +6482,7 @@ module Aws::EC2
|
|
6482
6482
|
# replace_unhealthy_instances: false,
|
6483
6483
|
# tag_specifications: [
|
6484
6484
|
# {
|
6485
|
-
# 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, 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
|
6485
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
6486
6486
|
# tags: [
|
6487
6487
|
# {
|
6488
6488
|
# key: "String",
|
@@ -6491,6 +6491,7 @@ module Aws::EC2
|
|
6491
6491
|
# ],
|
6492
6492
|
# },
|
6493
6493
|
# ],
|
6494
|
+
# context: "String",
|
6494
6495
|
# }
|
6495
6496
|
#
|
6496
6497
|
# @!attribute [rw] dry_run
|
@@ -6538,7 +6539,7 @@ module Aws::EC2
|
|
6538
6539
|
# @return [Boolean]
|
6539
6540
|
#
|
6540
6541
|
# @!attribute [rw] type
|
6541
|
-
# The type
|
6542
|
+
# The fleet type. The default value is `maintain`.
|
6542
6543
|
#
|
6543
6544
|
# * `maintain` - The EC2 Fleet places an asynchronous request for your
|
6544
6545
|
# desired capacity, and continues to maintain your desired Spot
|
@@ -6586,17 +6587,26 @@ module Aws::EC2
|
|
6586
6587
|
#
|
6587
6588
|
# @!attribute [rw] tag_specifications
|
6588
6589
|
# The key-value pair for tagging the EC2 Fleet request on creation.
|
6589
|
-
#
|
6590
|
-
# request fails. To tag instances at launch, specify the tags in the
|
6591
|
-
# [launch template][1]. For information about tagging after launch,
|
6592
|
-
# see [Tagging your resources][2].
|
6590
|
+
# For more information, see [Tagging your resources][1].
|
6593
6591
|
#
|
6592
|
+
# If the fleet type is `instant`, specify a resource type of `fleet`
|
6593
|
+
# to tag the fleet or `instance` to tag the instances at launch.
|
6594
6594
|
#
|
6595
|
+
# If the fleet type is `maintain` or `request`, specify a resource
|
6596
|
+
# type of `fleet` to tag the fleet. You cannot specify a resource type
|
6597
|
+
# of `instance`. To tag instances at launch, specify the tags in a
|
6598
|
+
# [launch template][2].
|
6595
6599
|
#
|
6596
|
-
#
|
6597
|
-
#
|
6600
|
+
#
|
6601
|
+
#
|
6602
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#tag-resources
|
6603
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-templates.html#create-launch-template
|
6598
6604
|
# @return [Array<Types::TagSpecification>]
|
6599
6605
|
#
|
6606
|
+
# @!attribute [rw] context
|
6607
|
+
# Reserved.
|
6608
|
+
# @return [String]
|
6609
|
+
#
|
6600
6610
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateFleetRequest AWS API Documentation
|
6601
6611
|
#
|
6602
6612
|
class CreateFleetRequest < Struct.new(
|
@@ -6612,7 +6622,8 @@ module Aws::EC2
|
|
6612
6622
|
:valid_from,
|
6613
6623
|
:valid_until,
|
6614
6624
|
:replace_unhealthy_instances,
|
6615
|
-
:tag_specifications
|
6625
|
+
:tag_specifications,
|
6626
|
+
:context)
|
6616
6627
|
SENSITIVE = []
|
6617
6628
|
include Aws::Structure
|
6618
6629
|
end
|
@@ -6623,12 +6634,12 @@ module Aws::EC2
|
|
6623
6634
|
#
|
6624
6635
|
# @!attribute [rw] errors
|
6625
6636
|
# Information about the instances that could not be launched by the
|
6626
|
-
# fleet.
|
6637
|
+
# fleet. Supported only for fleets of type `instant`.
|
6627
6638
|
# @return [Array<Types::CreateFleetError>]
|
6628
6639
|
#
|
6629
6640
|
# @!attribute [rw] instances
|
6630
6641
|
# Information about the instances that were launched by the fleet.
|
6631
|
-
#
|
6642
|
+
# Supported only for fleets of type `instant`.
|
6632
6643
|
# @return [Array<Types::CreateFleetInstance>]
|
6633
6644
|
#
|
6634
6645
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateFleetResult AWS API Documentation
|
@@ -6657,7 +6668,7 @@ module Aws::EC2
|
|
6657
6668
|
# log_format: "String",
|
6658
6669
|
# tag_specifications: [
|
6659
6670
|
# {
|
6660
|
-
# 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, 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
|
6671
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
6661
6672
|
# tags: [
|
6662
6673
|
# {
|
6663
6674
|
# key: "String",
|
@@ -6851,7 +6862,7 @@ module Aws::EC2
|
|
6851
6862
|
# client_token: "String",
|
6852
6863
|
# tag_specifications: [
|
6853
6864
|
# {
|
6854
|
-
# 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, 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
|
6865
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
6855
6866
|
# tags: [
|
6856
6867
|
# {
|
6857
6868
|
# key: "String",
|
@@ -6960,7 +6971,7 @@ module Aws::EC2
|
|
6960
6971
|
# no_reboot: false,
|
6961
6972
|
# tag_specifications: [
|
6962
6973
|
# {
|
6963
|
-
# 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, 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
|
6974
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
6964
6975
|
# tags: [
|
6965
6976
|
# {
|
6966
6977
|
# key: "String",
|
@@ -7070,7 +7081,7 @@ module Aws::EC2
|
|
7070
7081
|
# target_environment: "citrix", # required, accepts citrix, vmware, microsoft
|
7071
7082
|
# tag_specifications: [
|
7072
7083
|
# {
|
7073
|
-
# 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, 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
|
7084
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
7074
7085
|
# tags: [
|
7075
7086
|
# {
|
7076
7087
|
# key: "String",
|
@@ -7132,7 +7143,7 @@ module Aws::EC2
|
|
7132
7143
|
# {
|
7133
7144
|
# tag_specifications: [
|
7134
7145
|
# {
|
7135
|
-
# 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, 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
|
7146
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
7136
7147
|
# tags: [
|
7137
7148
|
# {
|
7138
7149
|
# key: "String",
|
@@ -7184,7 +7195,7 @@ module Aws::EC2
|
|
7184
7195
|
# dry_run: false,
|
7185
7196
|
# tag_specifications: [
|
7186
7197
|
# {
|
7187
|
-
# 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, 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
|
7198
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
7188
7199
|
# tags: [
|
7189
7200
|
# {
|
7190
7201
|
# key: "String",
|
@@ -7304,7 +7315,7 @@ module Aws::EC2
|
|
7304
7315
|
# user_data: "String",
|
7305
7316
|
# tag_specifications: [
|
7306
7317
|
# {
|
7307
|
-
# 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, 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
|
7318
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
7308
7319
|
# tags: [
|
7309
7320
|
# {
|
7310
7321
|
# key: "String",
|
@@ -7369,7 +7380,7 @@ module Aws::EC2
|
|
7369
7380
|
# },
|
7370
7381
|
# tag_specifications: [
|
7371
7382
|
# {
|
7372
|
-
# 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, 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
|
7383
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
7373
7384
|
# tags: [
|
7374
7385
|
# {
|
7375
7386
|
# key: "String",
|
@@ -7531,7 +7542,7 @@ module Aws::EC2
|
|
7531
7542
|
# user_data: "String",
|
7532
7543
|
# tag_specifications: [
|
7533
7544
|
# {
|
7534
|
-
# 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, 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
|
7545
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
7535
7546
|
# tags: [
|
7536
7547
|
# {
|
7537
7548
|
# key: "String",
|
@@ -7736,7 +7747,7 @@ module Aws::EC2
|
|
7736
7747
|
# vpc_id: "VpcId", # required
|
7737
7748
|
# tag_specifications: [
|
7738
7749
|
# {
|
7739
|
-
# 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, 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
|
7750
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
7740
7751
|
# tags: [
|
7741
7752
|
# {
|
7742
7753
|
# key: "String",
|
@@ -7805,7 +7816,7 @@ module Aws::EC2
|
|
7805
7816
|
# max_entries: 1, # required
|
7806
7817
|
# tag_specifications: [
|
7807
7818
|
# {
|
7808
|
-
# 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, 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
|
7819
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
7809
7820
|
# tags: [
|
7810
7821
|
# {
|
7811
7822
|
# key: "String",
|
@@ -7901,7 +7912,7 @@ module Aws::EC2
|
|
7901
7912
|
# subnet_id: "SubnetId", # required
|
7902
7913
|
# tag_specifications: [
|
7903
7914
|
# {
|
7904
|
-
# 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, 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
|
7915
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
7905
7916
|
# tags: [
|
7906
7917
|
# {
|
7907
7918
|
# key: "String",
|
@@ -8098,7 +8109,7 @@ module Aws::EC2
|
|
8098
8109
|
# vpc_id: "VpcId", # required
|
8099
8110
|
# tag_specifications: [
|
8100
8111
|
# {
|
8101
|
-
# 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, 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
|
8112
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
8102
8113
|
# tags: [
|
8103
8114
|
# {
|
8104
8115
|
# key: "String",
|
@@ -8158,7 +8169,7 @@ module Aws::EC2
|
|
8158
8169
|
# destination_port: 1,
|
8159
8170
|
# tag_specifications: [
|
8160
8171
|
# {
|
8161
|
-
# 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, 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
|
8172
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
8162
8173
|
# tags: [
|
8163
8174
|
# {
|
8164
8175
|
# key: "String",
|
@@ -8337,7 +8348,7 @@ module Aws::EC2
|
|
8337
8348
|
# subnet_id: "SubnetId", # required
|
8338
8349
|
# tag_specifications: [
|
8339
8350
|
# {
|
8340
|
-
# 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, 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
|
8351
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
8341
8352
|
# tags: [
|
8342
8353
|
# {
|
8343
8354
|
# key: "String",
|
@@ -8492,7 +8503,7 @@ module Aws::EC2
|
|
8492
8503
|
# partition_count: 1,
|
8493
8504
|
# tag_specifications: [
|
8494
8505
|
# {
|
8495
|
-
# 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, 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
|
8506
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
8496
8507
|
# tags: [
|
8497
8508
|
# {
|
8498
8509
|
# key: "String",
|
@@ -8564,7 +8575,7 @@ module Aws::EC2
|
|
8564
8575
|
# dry_run: false,
|
8565
8576
|
# tag_specifications: [
|
8566
8577
|
# {
|
8567
|
-
# 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, 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
|
8578
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
8568
8579
|
# tags: [
|
8569
8580
|
# {
|
8570
8581
|
# key: "String",
|
@@ -8712,7 +8723,7 @@ module Aws::EC2
|
|
8712
8723
|
# name: "String",
|
8713
8724
|
# tag_specifications: [
|
8714
8725
|
# {
|
8715
|
-
# 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, 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
|
8726
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
8716
8727
|
# tags: [
|
8717
8728
|
# {
|
8718
8729
|
# key: "String",
|
@@ -8918,7 +8929,7 @@ module Aws::EC2
|
|
8918
8929
|
# vpc_id: "VpcId", # required
|
8919
8930
|
# tag_specifications: [
|
8920
8931
|
# {
|
8921
|
-
# 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, 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
|
8932
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
8922
8933
|
# tags: [
|
8923
8934
|
# {
|
8924
8935
|
# key: "String",
|
@@ -8975,7 +8986,7 @@ module Aws::EC2
|
|
8975
8986
|
# vpc_id: "VpcId",
|
8976
8987
|
# tag_specifications: [
|
8977
8988
|
# {
|
8978
|
-
# 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, 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
|
8989
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
8979
8990
|
# tags: [
|
8980
8991
|
# {
|
8981
8992
|
# key: "String",
|
@@ -9063,7 +9074,7 @@ module Aws::EC2
|
|
9063
9074
|
# volume_id: "VolumeId", # required
|
9064
9075
|
# tag_specifications: [
|
9065
9076
|
# {
|
9066
|
-
# 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, 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
|
9077
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
9067
9078
|
# tags: [
|
9068
9079
|
# {
|
9069
9080
|
# key: "String",
|
@@ -9142,7 +9153,7 @@ module Aws::EC2
|
|
9142
9153
|
# outpost_arn: "String",
|
9143
9154
|
# tag_specifications: [
|
9144
9155
|
# {
|
9145
|
-
# 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, 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
|
9156
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
9146
9157
|
# tags: [
|
9147
9158
|
# {
|
9148
9159
|
# key: "String",
|
@@ -9354,7 +9365,7 @@ module Aws::EC2
|
|
9354
9365
|
# {
|
9355
9366
|
# tag_specifications: [
|
9356
9367
|
# {
|
9357
|
-
# 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, 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
|
9368
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
9358
9369
|
# tags: [
|
9359
9370
|
# {
|
9360
9371
|
# key: "String",
|
@@ -9507,7 +9518,7 @@ module Aws::EC2
|
|
9507
9518
|
# description: "String",
|
9508
9519
|
# tag_specifications: [
|
9509
9520
|
# {
|
9510
|
-
# 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, 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
|
9521
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
9511
9522
|
# tags: [
|
9512
9523
|
# {
|
9513
9524
|
# key: "String",
|
@@ -9730,7 +9741,7 @@ module Aws::EC2
|
|
9730
9741
|
# description: "String",
|
9731
9742
|
# tag_specifications: [
|
9732
9743
|
# {
|
9733
|
-
# 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, 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
|
9744
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
9734
9745
|
# tags: [
|
9735
9746
|
# {
|
9736
9747
|
# key: "String",
|
@@ -9863,7 +9874,7 @@ module Aws::EC2
|
|
9863
9874
|
# description: "String",
|
9864
9875
|
# tag_specifications: [
|
9865
9876
|
# {
|
9866
|
-
# 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, 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
|
9877
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
9867
9878
|
# tags: [
|
9868
9879
|
# {
|
9869
9880
|
# key: "String",
|
@@ -9962,7 +9973,7 @@ module Aws::EC2
|
|
9962
9973
|
# inside_cidr_blocks: ["String"], # required
|
9963
9974
|
# tag_specifications: [
|
9964
9975
|
# {
|
9965
|
-
# 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, 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
|
9976
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
9966
9977
|
# tags: [
|
9967
9978
|
# {
|
9968
9979
|
# key: "String",
|
@@ -10049,7 +10060,7 @@ module Aws::EC2
|
|
10049
10060
|
# },
|
10050
10061
|
# tag_specifications: [
|
10051
10062
|
# {
|
10052
|
-
# 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, 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
|
10063
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
10053
10064
|
# tags: [
|
10054
10065
|
# {
|
10055
10066
|
# key: "String",
|
@@ -10137,7 +10148,7 @@ module Aws::EC2
|
|
10137
10148
|
# },
|
10138
10149
|
# tag_specifications: [
|
10139
10150
|
# {
|
10140
|
-
# 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, 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
|
10151
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
10141
10152
|
# tags: [
|
10142
10153
|
# {
|
10143
10154
|
# key: "String",
|
@@ -10238,7 +10249,7 @@ module Aws::EC2
|
|
10238
10249
|
# peer_region: "String", # required
|
10239
10250
|
# tag_specifications: [
|
10240
10251
|
# {
|
10241
|
-
# 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, 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
|
10252
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
10242
10253
|
# tags: [
|
10243
10254
|
# {
|
10244
10255
|
# key: "String",
|
@@ -10378,7 +10389,7 @@ module Aws::EC2
|
|
10378
10389
|
# },
|
10379
10390
|
# tag_specifications: [
|
10380
10391
|
# {
|
10381
|
-
# 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, 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
|
10392
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
10382
10393
|
# tags: [
|
10383
10394
|
# {
|
10384
10395
|
# key: "String",
|
@@ -10498,7 +10509,7 @@ module Aws::EC2
|
|
10498
10509
|
# transit_gateway_id: "TransitGatewayId", # required
|
10499
10510
|
# tag_specifications: [
|
10500
10511
|
# {
|
10501
|
-
# 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, 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
|
10512
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
10502
10513
|
# tags: [
|
10503
10514
|
# {
|
10504
10515
|
# key: "String",
|
@@ -10561,7 +10572,7 @@ module Aws::EC2
|
|
10561
10572
|
# },
|
10562
10573
|
# tag_specifications: [
|
10563
10574
|
# {
|
10564
|
-
# 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, 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
|
10575
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
10565
10576
|
# tags: [
|
10566
10577
|
# {
|
10567
10578
|
# key: "String",
|
@@ -10745,7 +10756,7 @@ module Aws::EC2
|
|
10745
10756
|
# dry_run: false,
|
10746
10757
|
# tag_specifications: [
|
10747
10758
|
# {
|
10748
|
-
# 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, 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
|
10759
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
10749
10760
|
# tags: [
|
10750
10761
|
# {
|
10751
10762
|
# key: "String",
|
@@ -11028,7 +11039,7 @@ module Aws::EC2
|
|
11028
11039
|
# private_dns_enabled: false,
|
11029
11040
|
# tag_specifications: [
|
11030
11041
|
# {
|
11031
|
-
# 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, 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
|
11042
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
11032
11043
|
# tags: [
|
11033
11044
|
# {
|
11034
11045
|
# key: "String",
|
@@ -11165,7 +11176,7 @@ module Aws::EC2
|
|
11165
11176
|
# client_token: "String",
|
11166
11177
|
# tag_specifications: [
|
11167
11178
|
# {
|
11168
|
-
# 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, 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
|
11179
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
11169
11180
|
# tags: [
|
11170
11181
|
# {
|
11171
11182
|
# key: "String",
|
@@ -11261,7 +11272,7 @@ module Aws::EC2
|
|
11261
11272
|
# peer_region: "String",
|
11262
11273
|
# tag_specifications: [
|
11263
11274
|
# {
|
11264
|
-
# 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, 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
|
11275
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
11265
11276
|
# tags: [
|
11266
11277
|
# {
|
11267
11278
|
# key: "String",
|
@@ -11344,7 +11355,7 @@ module Aws::EC2
|
|
11344
11355
|
# ipv_6_cidr_block_network_border_group: "String",
|
11345
11356
|
# tag_specifications: [
|
11346
11357
|
# {
|
11347
|
-
# 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, 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
|
11358
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
11348
11359
|
# tags: [
|
11349
11360
|
# {
|
11350
11361
|
# key: "String",
|
@@ -11513,7 +11524,7 @@ module Aws::EC2
|
|
11513
11524
|
# },
|
11514
11525
|
# tag_specifications: [
|
11515
11526
|
# {
|
11516
|
-
# 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, 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
|
11527
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
11517
11528
|
# tags: [
|
11518
11529
|
# {
|
11519
11530
|
# key: "String",
|
@@ -11623,7 +11634,7 @@ module Aws::EC2
|
|
11623
11634
|
# type: "ipsec.1", # required, accepts ipsec.1
|
11624
11635
|
# tag_specifications: [
|
11625
11636
|
# {
|
11626
|
-
# 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, 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
|
11637
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
11627
11638
|
# tags: [
|
11628
11639
|
# {
|
11629
11640
|
# key: "String",
|
@@ -14785,7 +14796,7 @@ module Aws::EC2
|
|
14785
14796
|
# * `instance-type` - The type of instance for which the Capacity
|
14786
14797
|
# Reservation reserves capacity.
|
14787
14798
|
#
|
14788
|
-
# * `owner-id` - The ID of the
|
14799
|
+
# * `owner-id` - The ID of the account that owns the Capacity
|
14789
14800
|
# Reservation.
|
14790
14801
|
#
|
14791
14802
|
# * `availability-zone-id` - The Availability Zone ID of the Capacity
|
@@ -14802,11 +14813,10 @@ module Aws::EC2
|
|
14802
14813
|
# settings:
|
14803
14814
|
#
|
14804
14815
|
# * `default` - The Capacity Reservation is created on hardware that
|
14805
|
-
# is shared with other
|
14816
|
+
# is shared with other accounts.
|
14806
14817
|
#
|
14807
14818
|
# * `dedicated` - The Capacity Reservation is created on
|
14808
|
-
# single-tenant hardware that is dedicated to a single
|
14809
|
-
# account.
|
14819
|
+
# single-tenant hardware that is dedicated to a single account.
|
14810
14820
|
#
|
14811
14821
|
# * `outpost-arn` - The Amazon Resource Name (ARN) of the Outpost on
|
14812
14822
|
# which the Capacity Reservation was created.
|
@@ -18376,7 +18386,7 @@ module Aws::EC2
|
|
18376
18386
|
# network interface.
|
18377
18387
|
#
|
18378
18388
|
# * `network-interface.requester-managed` - Indicates whether the
|
18379
|
-
# network interface is being managed by
|
18389
|
+
# network interface is being managed by Amazon Web Services.
|
18380
18390
|
#
|
18381
18391
|
# * `network-interface.status` - The status of the network interface
|
18382
18392
|
# (`available`) \| `in-use`).
|
@@ -18395,7 +18405,7 @@ module Aws::EC2
|
|
18395
18405
|
#
|
18396
18406
|
# * `outpost-arn` - The Amazon Resource Name (ARN) of the Outpost.
|
18397
18407
|
#
|
18398
|
-
# * `owner-id` - The
|
18408
|
+
# * `owner-id` - The account ID of the instance owner.
|
18399
18409
|
#
|
18400
18410
|
# * `placement-group-name` - The name of the placement group for the
|
18401
18411
|
# instance.
|
@@ -18423,8 +18433,8 @@ module Aws::EC2
|
|
18423
18433
|
# terminate the instance). Similar to the state-reason-code filter.
|
18424
18434
|
#
|
18425
18435
|
# * `requester-id` - The ID of the entity that launched the instance
|
18426
|
-
# on your behalf (for example,
|
18427
|
-
#
|
18436
|
+
# on your behalf (for example, Management Console, Auto Scaling, and
|
18437
|
+
# so on).
|
18428
18438
|
#
|
18429
18439
|
# * `reservation-id` - The ID of the instance's reservation. A
|
18430
18440
|
# reservation ID is created any time you launch an instance. A
|
@@ -21018,8 +21028,8 @@ module Aws::EC2
|
|
21018
21028
|
#
|
21019
21029
|
# * `marketplace` - Set to `true` to show only Reserved Instance
|
21020
21030
|
# Marketplace offerings. When this filter is not used, which is the
|
21021
|
-
# default behavior, all offerings from both
|
21022
|
-
# Instance Marketplace are listed.
|
21031
|
+
# default behavior, all offerings from both Amazon Web Services and
|
21032
|
+
# the Reserved Instance Marketplace are listed.
|
21023
21033
|
#
|
21024
21034
|
# * `product-description` - The Reserved Instance product platform
|
21025
21035
|
# description. Instances that include `(Amazon VPC)` in the product
|
@@ -28020,11 +28030,13 @@ module Aws::EC2
|
|
28020
28030
|
include Aws::Structure
|
28021
28031
|
end
|
28022
28032
|
|
28023
|
-
# Indicates whether the instance is enabled for
|
28033
|
+
# Indicates whether the instance is enabled for Amazon Web Services
|
28034
|
+
# Nitro Enclaves.
|
28024
28035
|
#
|
28025
28036
|
# @!attribute [rw] enabled
|
28026
|
-
# If this parameter is set to `true`, the instance is enabled for
|
28027
|
-
# Nitro Enclaves; otherwise, it is not enabled for
|
28037
|
+
# If this parameter is set to `true`, the instance is enabled for
|
28038
|
+
# Amazon Web Services Nitro Enclaves; otherwise, it is not enabled for
|
28039
|
+
# Amazon Web Services Nitro Enclaves.
|
28028
28040
|
# @return [Boolean]
|
28029
28041
|
#
|
28030
28042
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnclaveOptions AWS API Documentation
|
@@ -28035,9 +28047,10 @@ module Aws::EC2
|
|
28035
28047
|
include Aws::Structure
|
28036
28048
|
end
|
28037
28049
|
|
28038
|
-
# Indicates whether the instance is enabled for
|
28039
|
-
# more information, see [ What is
|
28040
|
-
# Nitro Enclaves
|
28050
|
+
# Indicates whether the instance is enabled for Amazon Web Services
|
28051
|
+
# Nitro Enclaves. For more information, see [ What is Amazon Web
|
28052
|
+
# Services Nitro Enclaves?][1] in the *Amazon Web Services Nitro
|
28053
|
+
# Enclaves User Guide*.
|
28041
28054
|
#
|
28042
28055
|
#
|
28043
28056
|
#
|
@@ -28051,8 +28064,8 @@ module Aws::EC2
|
|
28051
28064
|
# }
|
28052
28065
|
#
|
28053
28066
|
# @!attribute [rw] enabled
|
28054
|
-
# To enable the instance for
|
28055
|
-
# `true`.
|
28067
|
+
# To enable the instance for Amazon Web Services Nitro Enclaves, set
|
28068
|
+
# this parameter to `true`.
|
28056
28069
|
# @return [Boolean]
|
28057
28070
|
#
|
28058
28071
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnclaveOptionsRequest AWS API Documentation
|
@@ -28501,7 +28514,7 @@ module Aws::EC2
|
|
28501
28514
|
# role_name: "String",
|
28502
28515
|
# tag_specifications: [
|
28503
28516
|
# {
|
28504
|
-
# 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, 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
|
28517
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
28505
28518
|
# tags: [
|
28506
28519
|
# {
|
28507
28520
|
# key: "String",
|
@@ -29152,6 +29165,10 @@ module Aws::EC2
|
|
29152
29165
|
# Valid only when **Type** is set to `instant`.
|
29153
29166
|
# @return [Array<Types::DescribeFleetsInstances>]
|
29154
29167
|
#
|
29168
|
+
# @!attribute [rw] context
|
29169
|
+
# Reserved.
|
29170
|
+
# @return [String]
|
29171
|
+
#
|
29155
29172
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FleetData AWS API Documentation
|
29156
29173
|
#
|
29157
29174
|
class FleetData < Struct.new(
|
@@ -29174,7 +29191,8 @@ module Aws::EC2
|
|
29174
29191
|
:on_demand_options,
|
29175
29192
|
:tags,
|
29176
29193
|
:errors,
|
29177
|
-
:instances
|
29194
|
+
:instances,
|
29195
|
+
:context)
|
29178
29196
|
SENSITIVE = []
|
29179
29197
|
include Aws::Structure
|
29180
29198
|
end
|
@@ -31660,7 +31678,7 @@ module Aws::EC2
|
|
31660
31678
|
# @return [String]
|
31661
31679
|
#
|
31662
31680
|
# @!attribute [rw] owner_id
|
31663
|
-
# The ID of the
|
31681
|
+
# The ID of the account that owns the Dedicated Host.
|
31664
31682
|
# @return [String]
|
31665
31683
|
#
|
31666
31684
|
# @!attribute [rw] availability_zone_id
|
@@ -31710,7 +31728,7 @@ module Aws::EC2
|
|
31710
31728
|
# @return [String]
|
31711
31729
|
#
|
31712
31730
|
# @!attribute [rw] owner_id
|
31713
|
-
# The ID of the
|
31731
|
+
# The ID of the account that owns the instance.
|
31714
31732
|
# @return [String]
|
31715
31733
|
#
|
31716
31734
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/HostInstance AWS API Documentation
|
@@ -32486,7 +32504,7 @@ module Aws::EC2
|
|
32486
32504
|
# ],
|
32487
32505
|
# tag_specifications: [
|
32488
32506
|
# {
|
32489
|
-
# 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, 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
|
32507
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
32490
32508
|
# tags: [
|
32491
32509
|
# {
|
32492
32510
|
# key: "String",
|
@@ -33092,7 +33110,7 @@ module Aws::EC2
|
|
33092
33110
|
# public_key_material: "data", # required
|
33093
33111
|
# tag_specifications: [
|
33094
33112
|
# {
|
33095
|
-
# 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, 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
|
33113
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
33096
33114
|
# tags: [
|
33097
33115
|
# {
|
33098
33116
|
# key: "String",
|
@@ -33189,7 +33207,7 @@ module Aws::EC2
|
|
33189
33207
|
# role_name: "String",
|
33190
33208
|
# tag_specifications: [
|
33191
33209
|
# {
|
33192
|
-
# 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, 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
|
33210
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
33193
33211
|
# tags: [
|
33194
33212
|
# {
|
33195
33213
|
# key: "String",
|
@@ -33710,7 +33728,8 @@ module Aws::EC2
|
|
33710
33728
|
# @return [Types::InstanceMetadataOptionsResponse]
|
33711
33729
|
#
|
33712
33730
|
# @!attribute [rw] enclave_options
|
33713
|
-
# Indicates whether the instance is enabled for
|
33731
|
+
# Indicates whether the instance is enabled for Amazon Web Services
|
33732
|
+
# Nitro Enclaves.
|
33714
33733
|
# @return [Types::EnclaveOptions]
|
33715
33734
|
#
|
33716
33735
|
# @!attribute [rw] boot_mode
|
@@ -33798,8 +33817,8 @@ module Aws::EC2
|
|
33798
33817
|
# @return [Types::AttributeBooleanValue]
|
33799
33818
|
#
|
33800
33819
|
# @!attribute [rw] enclave_options
|
33801
|
-
# To enable the instance for
|
33802
|
-
# `true`; otherwise, set it to `false`.
|
33820
|
+
# To enable the instance for Amazon Web Services Nitro Enclaves, set
|
33821
|
+
# this parameter to `true`; otherwise, set it to `false`.
|
33803
33822
|
# @return [Types::EnclaveOptions]
|
33804
33823
|
#
|
33805
33824
|
# @!attribute [rw] ebs_optimized
|
@@ -35120,13 +35139,13 @@ module Aws::EC2
|
|
35120
35139
|
# Information about the Capacity Reservation usage.
|
35121
35140
|
#
|
35122
35141
|
# @!attribute [rw] account_id
|
35123
|
-
# The ID of the
|
35142
|
+
# The ID of the account that is making use of the Capacity
|
35124
35143
|
# Reservation.
|
35125
35144
|
# @return [String]
|
35126
35145
|
#
|
35127
35146
|
# @!attribute [rw] used_instance_count
|
35128
|
-
# The number of instances the
|
35129
|
-
#
|
35147
|
+
# The number of instances the account currently has in the Capacity
|
35148
|
+
# Reservation.
|
35130
35149
|
# @return [Integer]
|
35131
35150
|
#
|
35132
35151
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceUsage AWS API Documentation
|
@@ -37160,7 +37179,7 @@ module Aws::EC2
|
|
37160
37179
|
# data as a hash:
|
37161
37180
|
#
|
37162
37181
|
# {
|
37163
|
-
# 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, 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
|
37182
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
37164
37183
|
# tags: [
|
37165
37184
|
# {
|
37166
37185
|
# key: "String",
|
@@ -38306,6 +38325,7 @@ module Aws::EC2
|
|
38306
38325
|
# spot_target_capacity: 1,
|
38307
38326
|
# default_target_capacity_type: "spot", # accepts spot, on-demand
|
38308
38327
|
# },
|
38328
|
+
# context: "String",
|
38309
38329
|
# }
|
38310
38330
|
#
|
38311
38331
|
# @!attribute [rw] dry_run
|
@@ -38333,6 +38353,10 @@ module Aws::EC2
|
|
38333
38353
|
# The size of the EC2 Fleet.
|
38334
38354
|
# @return [Types::TargetCapacitySpecificationRequest]
|
38335
38355
|
#
|
38356
|
+
# @!attribute [rw] context
|
38357
|
+
# Reserved.
|
38358
|
+
# @return [String]
|
38359
|
+
#
|
38336
38360
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyFleetRequest AWS API Documentation
|
38337
38361
|
#
|
38338
38362
|
class ModifyFleetRequest < Struct.new(
|
@@ -38340,7 +38364,8 @@ module Aws::EC2
|
|
38340
38364
|
:excess_capacity_termination_policy,
|
38341
38365
|
:launch_template_configs,
|
38342
38366
|
:fleet_id,
|
38343
|
-
:target_capacity_specification
|
38367
|
+
:target_capacity_specification,
|
38368
|
+
:context)
|
38344
38369
|
SENSITIVE = []
|
38345
38370
|
include Aws::Structure
|
38346
38371
|
end
|
@@ -38887,9 +38912,9 @@ module Aws::EC2
|
|
38887
38912
|
#
|
38888
38913
|
# @!attribute [rw] user_data
|
38889
38914
|
# Changes the instance's user data to the specified value. If you are
|
38890
|
-
# using an
|
38891
|
-
# for you, and you can load the text from
|
38892
|
-
# provide base64-encoded text.
|
38915
|
+
# using an Amazon Web Services SDK or command line tool,
|
38916
|
+
# base64-encoding is performed for you, and you can load the text from
|
38917
|
+
# a file. Otherwise, you must provide base64-encoded text.
|
38893
38918
|
# @return [Types::BlobAttributeValue]
|
38894
38919
|
#
|
38895
38920
|
# @!attribute [rw] value
|
@@ -39626,6 +39651,7 @@ module Aws::EC2
|
|
39626
39651
|
# spot_fleet_request_id: "SpotFleetRequestId", # required
|
39627
39652
|
# target_capacity: 1,
|
39628
39653
|
# on_demand_target_capacity: 1,
|
39654
|
+
# context: "String",
|
39629
39655
|
# }
|
39630
39656
|
#
|
39631
39657
|
# @!attribute [rw] excess_capacity_termination_policy
|
@@ -39653,6 +39679,10 @@ module Aws::EC2
|
|
39653
39679
|
# The number of On-Demand Instances in the fleet.
|
39654
39680
|
# @return [Integer]
|
39655
39681
|
#
|
39682
|
+
# @!attribute [rw] context
|
39683
|
+
# Reserved.
|
39684
|
+
# @return [String]
|
39685
|
+
#
|
39656
39686
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifySpotFleetRequestRequest AWS API Documentation
|
39657
39687
|
#
|
39658
39688
|
class ModifySpotFleetRequestRequest < Struct.new(
|
@@ -39660,7 +39690,8 @@ module Aws::EC2
|
|
39660
39690
|
:launch_template_configs,
|
39661
39691
|
:spot_fleet_request_id,
|
39662
39692
|
:target_capacity,
|
39663
|
-
:on_demand_target_capacity
|
39693
|
+
:on_demand_target_capacity,
|
39694
|
+
:context)
|
39664
39695
|
SENSITIVE = []
|
39665
39696
|
include Aws::Structure
|
39666
39697
|
end
|
@@ -43573,7 +43604,7 @@ module Aws::EC2
|
|
43573
43604
|
# dry_run: false,
|
43574
43605
|
# pool_tag_specifications: [
|
43575
43606
|
# {
|
43576
|
-
# 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, 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
|
43607
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
43577
43608
|
# tags: [
|
43578
43609
|
# {
|
43579
43610
|
# key: "String",
|
@@ -43883,7 +43914,7 @@ module Aws::EC2
|
|
43883
43914
|
# offering_id: "OfferingId", # required
|
43884
43915
|
# tag_specifications: [
|
43885
43916
|
# {
|
43886
|
-
# 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, 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
|
43917
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
43887
43918
|
# tags: [
|
43888
43919
|
# {
|
43889
43920
|
# key: "String",
|
@@ -44071,7 +44102,14 @@ module Aws::EC2
|
|
44071
44102
|
# Contains the output of PurchaseReservedInstancesOffering.
|
44072
44103
|
#
|
44073
44104
|
# @!attribute [rw] reserved_instances_id
|
44074
|
-
# The IDs of the purchased Reserved Instances.
|
44105
|
+
# The IDs of the purchased Reserved Instances. If your purchase
|
44106
|
+
# crosses into a discounted pricing tier, the final Reserved Instances
|
44107
|
+
# IDs might change. For more information, see [Crossing pricing
|
44108
|
+
# tiers][1] in the *Amazon Elastic Compute Cloud User Guide*.
|
44109
|
+
#
|
44110
|
+
#
|
44111
|
+
#
|
44112
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/concepts-reserved-instances-application.html#crossing-pricing-tiers
|
44075
44113
|
# @return [String]
|
44076
44114
|
#
|
44077
44115
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PurchaseReservedInstancesOfferingResult AWS API Documentation
|
@@ -45550,7 +45588,7 @@ module Aws::EC2
|
|
45550
45588
|
# user_data: "String",
|
45551
45589
|
# tag_specifications: [
|
45552
45590
|
# {
|
45553
|
-
# 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, 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
|
45591
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
45554
45592
|
# tags: [
|
45555
45593
|
# {
|
45556
45594
|
# key: "String",
|
@@ -45964,7 +46002,7 @@ module Aws::EC2
|
|
45964
46002
|
# weighted_capacity: 1.0,
|
45965
46003
|
# tag_specifications: [
|
45966
46004
|
# {
|
45967
|
-
# 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, 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
|
46005
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
45968
46006
|
# tags: [
|
45969
46007
|
# {
|
45970
46008
|
# key: "String",
|
@@ -46022,9 +46060,10 @@ module Aws::EC2
|
|
46022
46060
|
# },
|
46023
46061
|
# },
|
46024
46062
|
# instance_pools_to_use_count: 1,
|
46063
|
+
# context: "String",
|
46025
46064
|
# tag_specifications: [
|
46026
46065
|
# {
|
46027
|
-
# 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, 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
|
46066
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
46028
46067
|
# tags: [
|
46029
46068
|
# {
|
46030
46069
|
# key: "String",
|
@@ -46159,7 +46198,7 @@ module Aws::EC2
|
|
46159
46198
|
# valid_until: Time.now,
|
46160
46199
|
# tag_specifications: [
|
46161
46200
|
# {
|
46162
|
-
# 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, 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
|
46201
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
46163
46202
|
# tags: [
|
46164
46203
|
# {
|
46165
46204
|
# key: "String",
|
@@ -46197,22 +46236,7 @@ module Aws::EC2
|
|
46197
46236
|
# @return [String]
|
46198
46237
|
#
|
46199
46238
|
# @!attribute [rw] block_duration_minutes
|
46200
|
-
#
|
46201
|
-
# blocks), in minutes. This value must be a multiple of 60 (60, 120,
|
46202
|
-
# 180, 240, 300, or 360).
|
46203
|
-
#
|
46204
|
-
# The duration period starts as soon as your Spot Instance receives
|
46205
|
-
# its instance ID. At the end of the duration period, Amazon EC2 marks
|
46206
|
-
# the Spot Instance for termination and provides a Spot Instance
|
46207
|
-
# termination notice, which gives the instance a two-minute warning
|
46208
|
-
# before it terminates.
|
46209
|
-
#
|
46210
|
-
# You can't specify an Availability Zone group or a launch group if
|
46211
|
-
# you specify a duration.
|
46212
|
-
#
|
46213
|
-
# New accounts or accounts with no previous billing history with AWS
|
46214
|
-
# are not eligible for Spot Instances with a defined duration (also
|
46215
|
-
# known as Spot blocks).
|
46239
|
+
# Deprecated.
|
46216
46240
|
# @return [Integer]
|
46217
46241
|
#
|
46218
46242
|
# @!attribute [rw] client_token
|
@@ -46535,12 +46559,12 @@ module Aws::EC2
|
|
46535
46559
|
# @return [Array<Types::Instance>]
|
46536
46560
|
#
|
46537
46561
|
# @!attribute [rw] owner_id
|
46538
|
-
# The ID of the
|
46562
|
+
# The ID of the account that owns the reservation.
|
46539
46563
|
# @return [String]
|
46540
46564
|
#
|
46541
46565
|
# @!attribute [rw] requester_id
|
46542
46566
|
# The ID of the requester that launched the instances on your behalf
|
46543
|
-
# (for example,
|
46567
|
+
# (for example, Management Console or Auto Scaling).
|
46544
46568
|
# @return [String]
|
46545
46569
|
#
|
46546
46570
|
# @!attribute [rw] reservation_id
|
@@ -46993,8 +47017,8 @@ module Aws::EC2
|
|
46993
47017
|
#
|
46994
47018
|
# @!attribute [rw] marketplace
|
46995
47019
|
# Indicates whether the offering is available through the Reserved
|
46996
|
-
# Instance Marketplace (resale) or
|
46997
|
-
# Marketplace offering, this is `true`.
|
47020
|
+
# Instance Marketplace (resale) or Amazon Web Services. If it's a
|
47021
|
+
# Reserved Instance Marketplace offering, this is `true`.
|
46998
47022
|
# @return [Boolean]
|
46999
47023
|
#
|
47000
47024
|
# @!attribute [rw] offering_class
|
@@ -48270,7 +48294,7 @@ module Aws::EC2
|
|
48270
48294
|
# ],
|
48271
48295
|
# tag_specifications: [
|
48272
48296
|
# {
|
48273
|
-
# 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, 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
|
48297
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
48274
48298
|
# tags: [
|
48275
48299
|
# {
|
48276
48300
|
# key: "String",
|
@@ -48438,8 +48462,8 @@ module Aws::EC2
|
|
48438
48462
|
# The ID of the RAM disk to select. Some kernels require additional
|
48439
48463
|
# drivers at launch. Check the kernel requirements for information
|
48440
48464
|
# about whether you need to specify a RAM disk. To find kernel
|
48441
|
-
# requirements, go to the
|
48442
|
-
# kernel ID.
|
48465
|
+
# requirements, go to the Amazon Web Services Resource Center and
|
48466
|
+
# search for the kernel ID.
|
48443
48467
|
#
|
48444
48468
|
# We recommend that you use PV-GRUB instead of kernels and RAM disks.
|
48445
48469
|
# For more information, see [ PV-GRUB][1] in the *Amazon EC2 User
|
@@ -48666,8 +48690,8 @@ module Aws::EC2
|
|
48666
48690
|
# information, see [Hibernate your instance][1] in the *Amazon EC2
|
48667
48691
|
# User Guide*.
|
48668
48692
|
#
|
48669
|
-
# You can't enable hibernation and
|
48670
|
-
# instance.
|
48693
|
+
# You can't enable hibernation and Amazon Web Services Nitro Enclaves
|
48694
|
+
# on the same instance.
|
48671
48695
|
#
|
48672
48696
|
#
|
48673
48697
|
#
|
@@ -48688,12 +48712,13 @@ module Aws::EC2
|
|
48688
48712
|
# @return [Types::InstanceMetadataOptionsRequest]
|
48689
48713
|
#
|
48690
48714
|
# @!attribute [rw] enclave_options
|
48691
|
-
# Indicates whether the instance is enabled for
|
48692
|
-
# For more information, see [ What is
|
48693
|
-
#
|
48715
|
+
# Indicates whether the instance is enabled for Amazon Web Services
|
48716
|
+
# Nitro Enclaves. For more information, see [ What is Amazon Web
|
48717
|
+
# Services Nitro Enclaves?][1] in the *Amazon Web Services Nitro
|
48718
|
+
# Enclaves User Guide*.
|
48694
48719
|
#
|
48695
|
-
# You can't enable
|
48696
|
-
# instance.
|
48720
|
+
# You can't enable Amazon Web Services Nitro Enclaves and hibernation
|
48721
|
+
# on the same instance.
|
48697
48722
|
#
|
48698
48723
|
#
|
48699
48724
|
#
|
@@ -50762,7 +50787,7 @@ module Aws::EC2
|
|
50762
50787
|
# @return [Types::SpotInstanceStateFault]
|
50763
50788
|
#
|
50764
50789
|
# @!attribute [rw] owner_id
|
50765
|
-
# The
|
50790
|
+
# The account ID of the account.
|
50766
50791
|
# @return [String]
|
50767
50792
|
#
|
50768
50793
|
# @!attribute [rw] prefix
|
@@ -50876,7 +50901,7 @@ module Aws::EC2
|
|
50876
50901
|
# weighted_capacity: 1.0,
|
50877
50902
|
# tag_specifications: [
|
50878
50903
|
# {
|
50879
|
-
# 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, 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
|
50904
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
50880
50905
|
# tags: [
|
50881
50906
|
# {
|
50882
50907
|
# key: "String",
|
@@ -50965,7 +50990,8 @@ module Aws::EC2
|
|
50965
50990
|
# The ID of the RAM disk. Some kernels require additional drivers at
|
50966
50991
|
# launch. Check the kernel requirements for information about whether
|
50967
50992
|
# you need to specify a RAM disk. To find kernel requirements, refer
|
50968
|
-
# to the
|
50993
|
+
# to the Amazon Web Services Resource Center and search for the kernel
|
50994
|
+
# ID.
|
50969
50995
|
# @return [String]
|
50970
50996
|
#
|
50971
50997
|
# @!attribute [rw] spot_price
|
@@ -51189,7 +51215,7 @@ module Aws::EC2
|
|
51189
51215
|
# weighted_capacity: 1.0,
|
51190
51216
|
# tag_specifications: [
|
51191
51217
|
# {
|
51192
|
-
# 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, 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
|
51218
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
51193
51219
|
# tags: [
|
51194
51220
|
# {
|
51195
51221
|
# key: "String",
|
@@ -51247,9 +51273,10 @@ module Aws::EC2
|
|
51247
51273
|
# },
|
51248
51274
|
# },
|
51249
51275
|
# instance_pools_to_use_count: 1,
|
51276
|
+
# context: "String",
|
51250
51277
|
# tag_specifications: [
|
51251
51278
|
# {
|
51252
|
-
# 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, 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
|
51279
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
51253
51280
|
# tags: [
|
51254
51281
|
# {
|
51255
51282
|
# key: "String",
|
@@ -51328,11 +51355,11 @@ module Aws::EC2
|
|
51328
51355
|
# @return [Float]
|
51329
51356
|
#
|
51330
51357
|
# @!attribute [rw] iam_fleet_role
|
51331
|
-
# The Amazon Resource Name (ARN) of an
|
51332
|
-
#
|
51333
|
-
#
|
51334
|
-
#
|
51335
|
-
#
|
51358
|
+
# The Amazon Resource Name (ARN) of an Identity and Access Management
|
51359
|
+
# (IAM) role that grants the Spot Fleet the permission to request,
|
51360
|
+
# launch, terminate, and tag instances on your behalf. For more
|
51361
|
+
# information, see [Spot Fleet prerequisites][1] in the *Amazon EC2
|
51362
|
+
# User Guide for Linux Instances*. Spot Fleet can terminate Spot
|
51336
51363
|
# Instances on your behalf when you cancel its Spot Fleet request
|
51337
51364
|
# using [CancelSpotFleetRequests][2] or when the Spot Fleet request
|
51338
51365
|
# expires, if you set `TerminateInstancesWithExpiration`.
|
@@ -51460,8 +51487,22 @@ module Aws::EC2
|
|
51460
51487
|
# `lowest-price`. Spot Fleet selects the cheapest Spot pools and
|
51461
51488
|
# evenly allocates your target Spot capacity across the number of Spot
|
51462
51489
|
# pools that you specify.
|
51490
|
+
#
|
51491
|
+
# Note that Spot Fleet attempts to draw Spot Instances from the number
|
51492
|
+
# of pools that you specify on a best effort basis. If a pool runs out
|
51493
|
+
# of Spot capacity before fulfilling your target capacity, Spot Fleet
|
51494
|
+
# will continue to fulfill your request by drawing from the next
|
51495
|
+
# cheapest pool. To ensure that your target capacity is met, you might
|
51496
|
+
# receive Spot Instances from more than the number of pools that you
|
51497
|
+
# specified. Similarly, if most of the pools have no Spot capacity,
|
51498
|
+
# you might receive your full target capacity from fewer than the
|
51499
|
+
# number of pools that you specified.
|
51463
51500
|
# @return [Integer]
|
51464
51501
|
#
|
51502
|
+
# @!attribute [rw] context
|
51503
|
+
# Reserved.
|
51504
|
+
# @return [String]
|
51505
|
+
#
|
51465
51506
|
# @!attribute [rw] tag_specifications
|
51466
51507
|
# The key-value pair for tagging the Spot Fleet request on creation.
|
51467
51508
|
# The value for `ResourceType` must be `spot-fleet-request`, otherwise
|
@@ -51504,6 +51545,7 @@ module Aws::EC2
|
|
51504
51545
|
:instance_interruption_behavior,
|
51505
51546
|
:load_balancers_config,
|
51506
51547
|
:instance_pools_to_use_count,
|
51548
|
+
:context,
|
51507
51549
|
:tag_specifications)
|
51508
51550
|
SENSITIVE = []
|
51509
51551
|
include Aws::Structure
|
@@ -51515,7 +51557,7 @@ module Aws::EC2
|
|
51515
51557
|
# data as a hash:
|
51516
51558
|
#
|
51517
51559
|
# {
|
51518
|
-
# 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, 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
|
51560
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
51519
51561
|
# tags: [
|
51520
51562
|
# {
|
51521
51563
|
# key: "String",
|
@@ -51551,9 +51593,7 @@ module Aws::EC2
|
|
51551
51593
|
# Describes a Spot Instance request.
|
51552
51594
|
#
|
51553
51595
|
# @!attribute [rw] actual_block_hourly_price
|
51554
|
-
#
|
51555
|
-
# fulfilled, this is the fixed hourly price in effect for the Spot
|
51556
|
-
# Instance while it runs.
|
51596
|
+
# Deprecated.
|
51557
51597
|
# @return [String]
|
51558
51598
|
#
|
51559
51599
|
# @!attribute [rw] availability_zone_group
|
@@ -51563,7 +51603,7 @@ module Aws::EC2
|
|
51563
51603
|
# @return [String]
|
51564
51604
|
#
|
51565
51605
|
# @!attribute [rw] block_duration_minutes
|
51566
|
-
#
|
51606
|
+
# Deprecated.
|
51567
51607
|
# @return [Integer]
|
51568
51608
|
#
|
51569
51609
|
# @!attribute [rw] create_time
|
@@ -51795,9 +51835,9 @@ module Aws::EC2
|
|
51795
51835
|
# You can't specify an Availability Zone group or a launch group if
|
51796
51836
|
# you specify a duration.
|
51797
51837
|
#
|
51798
|
-
# New accounts or accounts with no previous billing history with
|
51799
|
-
# are not eligible for Spot Instances with a
|
51800
|
-
# known as Spot blocks).
|
51838
|
+
# New accounts or accounts with no previous billing history with
|
51839
|
+
# Amazon Web Services are not eligible for Spot Instances with a
|
51840
|
+
# defined duration (also known as Spot blocks).
|
51801
51841
|
# @return [Integer]
|
51802
51842
|
#
|
51803
51843
|
# @!attribute [rw] valid_until
|
@@ -51876,6 +51916,16 @@ module Aws::EC2
|
|
51876
51916
|
# `lowest-price`. EC2 Fleet selects the cheapest Spot pools and evenly
|
51877
51917
|
# allocates your target Spot capacity across the number of Spot pools
|
51878
51918
|
# that you specify.
|
51919
|
+
#
|
51920
|
+
# Note that EC2 Fleet attempts to draw Spot Instances from the number
|
51921
|
+
# of pools that you specify on a best effort basis. If a pool runs out
|
51922
|
+
# of Spot capacity before fulfilling your target capacity, EC2 Fleet
|
51923
|
+
# will continue to fulfill your request by drawing from the next
|
51924
|
+
# cheapest pool. To ensure that your target capacity is met, you might
|
51925
|
+
# receive Spot Instances from more than the number of pools that you
|
51926
|
+
# specified. Similarly, if most of the pools have no Spot capacity,
|
51927
|
+
# you might receive your full target capacity from fewer than the
|
51928
|
+
# number of pools that you specified.
|
51879
51929
|
# @return [Integer]
|
51880
51930
|
#
|
51881
51931
|
# @!attribute [rw] single_instance_type
|
@@ -51977,6 +52027,16 @@ module Aws::EC2
|
|
51977
52027
|
# `lowest-price`. EC2 Fleet selects the cheapest Spot pools and evenly
|
51978
52028
|
# allocates your target Spot capacity across the number of Spot pools
|
51979
52029
|
# that you specify.
|
52030
|
+
#
|
52031
|
+
# Note that EC2 Fleet attempts to draw Spot Instances from the number
|
52032
|
+
# of pools that you specify on a best effort basis. If a pool runs out
|
52033
|
+
# of Spot capacity before fulfilling your target capacity, EC2 Fleet
|
52034
|
+
# will continue to fulfill your request by drawing from the next
|
52035
|
+
# cheapest pool. To ensure that your target capacity is met, you might
|
52036
|
+
# receive Spot Instances from more than the number of pools that you
|
52037
|
+
# specified. Similarly, if most of the pools have no Spot capacity,
|
52038
|
+
# you might receive your full target capacity from fewer than the
|
52039
|
+
# number of pools that you specified.
|
51980
52040
|
# @return [Integer]
|
51981
52041
|
#
|
51982
52042
|
# @!attribute [rw] single_instance_type
|
@@ -52233,7 +52293,7 @@ module Aws::EC2
|
|
52233
52293
|
# dry_run: false,
|
52234
52294
|
# tag_specifications: [
|
52235
52295
|
# {
|
52236
|
-
# 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, 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
|
52296
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
52237
52297
|
# tags: [
|
52238
52298
|
# {
|
52239
52299
|
# key: "String",
|
@@ -52832,7 +52892,7 @@ module Aws::EC2
|
|
52832
52892
|
# data as a hash:
|
52833
52893
|
#
|
52834
52894
|
# {
|
52835
|
-
# 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, 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
|
52895
|
+
# 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, network-insights-analysis, network-insights-boundary, 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
|
52836
52896
|
# tags: [
|
52837
52897
|
# {
|
52838
52898
|
# key: "String",
|