aws-sdk-ec2 1.128.0 → 1.129.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/lib/aws-sdk-ec2.rb +1 -1
- data/lib/aws-sdk-ec2/client.rb +107 -50
- data/lib/aws-sdk-ec2/client_api.rb +22 -5
- data/lib/aws-sdk-ec2/instance.rb +3 -0
- data/lib/aws-sdk-ec2/key_pair.rb +6 -0
- data/lib/aws-sdk-ec2/key_pair_info.rb +12 -0
- data/lib/aws-sdk-ec2/placement_group.rb +12 -0
- data/lib/aws-sdk-ec2/resource.rb +16 -4
- data/lib/aws-sdk-ec2/snapshot.rb +1 -1
- data/lib/aws-sdk-ec2/subnet.rb +1 -1
- data/lib/aws-sdk-ec2/types.rb +187 -90
- data/lib/aws-sdk-ec2/volume.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bda40051a78f5a123e05d4649b0fe0b978ecac34
|
|
4
|
+
data.tar.gz: cd00082ce8dd8a4974e3ec406be94aa0ccbd6fc1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5dd9100310fc83bf023c0d3fcae7b2f2302db63641759cb06d359a94ee2dc3e452c6985bf60a7aa0af07d825adfd7acbf8271627c0cffdfae95ec210eb9e3800
|
|
7
|
+
data.tar.gz: e3eedf7055d8816a7641e5cb99b55648f000a75bdb4b0248b2b83a74f6aed94372cf2d48f79593bc3737ea8038ef26dd9555be4d530b5f1757f1b6f9ba870ef2
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/lib/aws-sdk-ec2/client.rb
CHANGED
|
@@ -801,7 +801,7 @@ module Aws::EC2
|
|
|
801
801
|
# quantity: 1, # required
|
|
802
802
|
# tag_specifications: [
|
|
803
803
|
# {
|
|
804
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, launch-template, natgateway, network-acl, network-interface, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
804
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
805
805
|
# tags: [
|
|
806
806
|
# {
|
|
807
807
|
# key: "String",
|
|
@@ -1053,6 +1053,9 @@ module Aws::EC2
|
|
|
1053
1053
|
# an instance or network interface that has an existing Elastic IP
|
|
1054
1054
|
# address.
|
|
1055
1055
|
#
|
|
1056
|
+
# You cannot associate an Elastic IP address with an interface in a
|
|
1057
|
+
# different network border group.
|
|
1058
|
+
#
|
|
1056
1059
|
# This is an idempotent operation. If you perform the operation more
|
|
1057
1060
|
# than once, Amazon EC2 doesn't return an error, and you may be charged
|
|
1058
1061
|
# for each time the Elastic IP address is remapped to the same instance.
|
|
@@ -3102,11 +3105,11 @@ module Aws::EC2
|
|
|
3102
3105
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html
|
|
3103
3106
|
#
|
|
3104
3107
|
# @option params [String] :kms_key_id
|
|
3105
|
-
# An identifier for the AWS Key Management Service (AWS KMS)
|
|
3106
|
-
# master key (CMK) to use when creating the encrypted volume.
|
|
3107
|
-
# parameter is only required if you want to use a non-default CMK;
|
|
3108
|
-
# this parameter is not specified, the default CMK for EBS is used.
|
|
3109
|
-
# `KmsKeyId` is specified, the `Encrypted` flag must also be set.
|
|
3108
|
+
# An identifier for the symmetric AWS Key Management Service (AWS KMS)
|
|
3109
|
+
# customer master key (CMK) to use when creating the encrypted volume.
|
|
3110
|
+
# This parameter is only required if you want to use a non-default CMK;
|
|
3111
|
+
# if this parameter is not specified, the default CMK for EBS is used.
|
|
3112
|
+
# If a `KmsKeyId` is specified, the `Encrypted` flag must also be set.
|
|
3110
3113
|
#
|
|
3111
3114
|
# To specify a CMK, use its key ID, Amazon Resource Name (ARN), alias
|
|
3112
3115
|
# name, or alias ARN. When using an alias name, prefix it with
|
|
@@ -3128,6 +3131,8 @@ module Aws::EC2
|
|
|
3128
3131
|
# The specified CMK must exist in the Region that the snapshot is being
|
|
3129
3132
|
# copied to.
|
|
3130
3133
|
#
|
|
3134
|
+
# Amazon EBS does not support asymmetric CMKs.
|
|
3135
|
+
#
|
|
3131
3136
|
# @option params [required, String] :name
|
|
3132
3137
|
# The name of the new AMI in the destination Region.
|
|
3133
3138
|
#
|
|
@@ -3359,7 +3364,7 @@ module Aws::EC2
|
|
|
3359
3364
|
# source_snapshot_id: "String", # required
|
|
3360
3365
|
# tag_specifications: [
|
|
3361
3366
|
# {
|
|
3362
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, launch-template, natgateway, network-acl, network-interface, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
3367
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
3363
3368
|
# tags: [
|
|
3364
3369
|
# {
|
|
3365
3370
|
# key: "String",
|
|
@@ -3547,7 +3552,7 @@ module Aws::EC2
|
|
|
3547
3552
|
# instance_match_criteria: "open", # accepts open, targeted
|
|
3548
3553
|
# tag_specifications: [
|
|
3549
3554
|
# {
|
|
3550
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, launch-template, natgateway, network-acl, network-interface, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
3555
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
3551
3556
|
# tags: [
|
|
3552
3557
|
# {
|
|
3553
3558
|
# key: "String",
|
|
@@ -3715,7 +3720,7 @@ module Aws::EC2
|
|
|
3715
3720
|
# client_token: "String",
|
|
3716
3721
|
# tag_specifications: [
|
|
3717
3722
|
# {
|
|
3718
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, launch-template, natgateway, network-acl, network-interface, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
3723
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
3719
3724
|
# tags: [
|
|
3720
3725
|
# {
|
|
3721
3726
|
# key: "String",
|
|
@@ -4420,7 +4425,7 @@ module Aws::EC2
|
|
|
4420
4425
|
# replace_unhealthy_instances: false,
|
|
4421
4426
|
# tag_specifications: [
|
|
4422
4427
|
# {
|
|
4423
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, launch-template, natgateway, network-acl, network-interface, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
4428
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
4424
4429
|
# tags: [
|
|
4425
4430
|
# {
|
|
4426
4431
|
# key: "String",
|
|
@@ -4698,7 +4703,7 @@ module Aws::EC2
|
|
|
4698
4703
|
# client_token: "String",
|
|
4699
4704
|
# tag_specifications: [
|
|
4700
4705
|
# {
|
|
4701
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, launch-template, natgateway, network-acl, network-interface, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
4706
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
4702
4707
|
# tags: [
|
|
4703
4708
|
# {
|
|
4704
4709
|
# key: "String",
|
|
@@ -4897,6 +4902,9 @@ module Aws::EC2
|
|
|
4897
4902
|
# resp.export_task.instance_export_details.target_environment #=> String, one of "citrix", "vmware", "microsoft"
|
|
4898
4903
|
# resp.export_task.state #=> String, one of "active", "cancelling", "cancelled", "completed"
|
|
4899
4904
|
# resp.export_task.status_message #=> String
|
|
4905
|
+
# resp.export_task.tags #=> Array
|
|
4906
|
+
# resp.export_task.tags[0].key #=> String
|
|
4907
|
+
# resp.export_task.tags[0].value #=> String
|
|
4900
4908
|
#
|
|
4901
4909
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateInstanceExportTask AWS API Documentation
|
|
4902
4910
|
#
|
|
@@ -5007,6 +5015,7 @@ module Aws::EC2
|
|
|
5007
5015
|
# * {Types::KeyPair#key_fingerprint #key_fingerprint} => String
|
|
5008
5016
|
# * {Types::KeyPair#key_material #key_material} => String
|
|
5009
5017
|
# * {Types::KeyPair#key_name #key_name} => String
|
|
5018
|
+
# * {Types::KeyPair#key_pair_id #key_pair_id} => String
|
|
5010
5019
|
#
|
|
5011
5020
|
#
|
|
5012
5021
|
# @example Example: To create a key pair
|
|
@@ -5029,6 +5038,7 @@ module Aws::EC2
|
|
|
5029
5038
|
# resp.key_fingerprint #=> String
|
|
5030
5039
|
# resp.key_material #=> String
|
|
5031
5040
|
# resp.key_name #=> String
|
|
5041
|
+
# resp.key_pair_id #=> String
|
|
5032
5042
|
#
|
|
5033
5043
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateKeyPair AWS API Documentation
|
|
5034
5044
|
#
|
|
@@ -5200,7 +5210,7 @@ module Aws::EC2
|
|
|
5200
5210
|
# user_data: "String",
|
|
5201
5211
|
# tag_specifications: [
|
|
5202
5212
|
# {
|
|
5203
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, launch-template, natgateway, network-acl, network-interface, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
5213
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
5204
5214
|
# tags: [
|
|
5205
5215
|
# {
|
|
5206
5216
|
# key: "String",
|
|
@@ -5256,7 +5266,7 @@ module Aws::EC2
|
|
|
5256
5266
|
# },
|
|
5257
5267
|
# tag_specifications: [
|
|
5258
5268
|
# {
|
|
5259
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, launch-template, natgateway, network-acl, network-interface, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
5269
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
5260
5270
|
# tags: [
|
|
5261
5271
|
# {
|
|
5262
5272
|
# key: "String",
|
|
@@ -5462,7 +5472,7 @@ module Aws::EC2
|
|
|
5462
5472
|
# user_data: "String",
|
|
5463
5473
|
# tag_specifications: [
|
|
5464
5474
|
# {
|
|
5465
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, launch-template, natgateway, network-acl, network-interface, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
5475
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
5466
5476
|
# tags: [
|
|
5467
5477
|
# {
|
|
5468
5478
|
# key: "String",
|
|
@@ -5576,7 +5586,7 @@ module Aws::EC2
|
|
|
5576
5586
|
# resp.launch_template_version.launch_template_data.instance_initiated_shutdown_behavior #=> String, one of "stop", "terminate"
|
|
5577
5587
|
# resp.launch_template_version.launch_template_data.user_data #=> String
|
|
5578
5588
|
# resp.launch_template_version.launch_template_data.tag_specifications #=> Array
|
|
5579
|
-
# resp.launch_template_version.launch_template_data.tag_specifications[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "elastic-ip", "fleet", "fpga-image", "host-reservation", "image", "instance", "internet-gateway", "launch-template", "natgateway", "network-acl", "network-interface", "reserved-instances", "route-table", "security-group", "snapshot", "spot-fleet-request", "spot-instances-request", "subnet", "traffic-mirror-filter", "traffic-mirror-session", "traffic-mirror-target", "transit-gateway", "transit-gateway-attachment", "transit-gateway-multicast-domain", "transit-gateway-route-table", "volume", "vpc", "vpc-peering-connection", "vpn-connection", "vpn-gateway"
|
|
5589
|
+
# resp.launch_template_version.launch_template_data.tag_specifications[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "elastic-ip", "fleet", "fpga-image", "host-reservation", "image", "instance", "internet-gateway", "key-pair", "launch-template", "natgateway", "network-acl", "network-interface", "placement-group", "reserved-instances", "route-table", "security-group", "snapshot", "spot-fleet-request", "spot-instances-request", "subnet", "traffic-mirror-filter", "traffic-mirror-session", "traffic-mirror-target", "transit-gateway", "transit-gateway-attachment", "transit-gateway-multicast-domain", "transit-gateway-route-table", "volume", "vpc", "vpc-peering-connection", "vpn-connection", "vpn-gateway"
|
|
5580
5590
|
# resp.launch_template_version.launch_template_data.tag_specifications[0].tags #=> Array
|
|
5581
5591
|
# resp.launch_template_version.launch_template_data.tag_specifications[0].tags[0].key #=> String
|
|
5582
5592
|
# resp.launch_template_version.launch_template_data.tag_specifications[0].tags[0].value #=> String
|
|
@@ -6898,7 +6908,7 @@ module Aws::EC2
|
|
|
6898
6908
|
# volume_id: "VolumeId", # required
|
|
6899
6909
|
# tag_specifications: [
|
|
6900
6910
|
# {
|
|
6901
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, launch-template, natgateway, network-acl, network-interface, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
6911
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
6902
6912
|
# tags: [
|
|
6903
6913
|
# {
|
|
6904
6914
|
# key: "String",
|
|
@@ -6977,7 +6987,7 @@ module Aws::EC2
|
|
|
6977
6987
|
# },
|
|
6978
6988
|
# tag_specifications: [
|
|
6979
6989
|
# {
|
|
6980
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, launch-template, natgateway, network-acl, network-interface, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
6990
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
6981
6991
|
# tags: [
|
|
6982
6992
|
# {
|
|
6983
6993
|
# key: "String",
|
|
@@ -7357,7 +7367,7 @@ module Aws::EC2
|
|
|
7357
7367
|
# description: "String",
|
|
7358
7368
|
# tag_specifications: [
|
|
7359
7369
|
# {
|
|
7360
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, launch-template, natgateway, network-acl, network-interface, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
7370
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
7361
7371
|
# tags: [
|
|
7362
7372
|
# {
|
|
7363
7373
|
# key: "String",
|
|
@@ -7631,7 +7641,7 @@ module Aws::EC2
|
|
|
7631
7641
|
# description: "String",
|
|
7632
7642
|
# tag_specifications: [
|
|
7633
7643
|
# {
|
|
7634
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, launch-template, natgateway, network-acl, network-interface, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
7644
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
7635
7645
|
# tags: [
|
|
7636
7646
|
# {
|
|
7637
7647
|
# key: "String",
|
|
@@ -7730,7 +7740,7 @@ module Aws::EC2
|
|
|
7730
7740
|
# description: "String",
|
|
7731
7741
|
# tag_specifications: [
|
|
7732
7742
|
# {
|
|
7733
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, launch-template, natgateway, network-acl, network-interface, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
7743
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
7734
7744
|
# tags: [
|
|
7735
7745
|
# {
|
|
7736
7746
|
# key: "String",
|
|
@@ -7823,7 +7833,7 @@ module Aws::EC2
|
|
|
7823
7833
|
# },
|
|
7824
7834
|
# tag_specifications: [
|
|
7825
7835
|
# {
|
|
7826
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, launch-template, natgateway, network-acl, network-interface, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
7836
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
7827
7837
|
# tags: [
|
|
7828
7838
|
# {
|
|
7829
7839
|
# key: "String",
|
|
@@ -7897,7 +7907,7 @@ module Aws::EC2
|
|
|
7897
7907
|
# transit_gateway_id: "String", # required
|
|
7898
7908
|
# tag_specifications: [
|
|
7899
7909
|
# {
|
|
7900
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, launch-template, natgateway, network-acl, network-interface, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
7910
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
7901
7911
|
# tags: [
|
|
7902
7912
|
# {
|
|
7903
7913
|
# key: "String",
|
|
@@ -7971,7 +7981,7 @@ module Aws::EC2
|
|
|
7971
7981
|
# peer_region: "String", # required
|
|
7972
7982
|
# tag_specifications: [
|
|
7973
7983
|
# {
|
|
7974
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, launch-template, natgateway, network-acl, network-interface, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
7984
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
7975
7985
|
# tags: [
|
|
7976
7986
|
# {
|
|
7977
7987
|
# key: "String",
|
|
@@ -8087,7 +8097,7 @@ module Aws::EC2
|
|
|
8087
8097
|
# transit_gateway_id: "String", # required
|
|
8088
8098
|
# tag_specifications: [
|
|
8089
8099
|
# {
|
|
8090
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, launch-template, natgateway, network-acl, network-interface, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
8100
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
8091
8101
|
# tags: [
|
|
8092
8102
|
# {
|
|
8093
8103
|
# key: "String",
|
|
@@ -8169,7 +8179,7 @@ module Aws::EC2
|
|
|
8169
8179
|
# },
|
|
8170
8180
|
# tag_specifications: [
|
|
8171
8181
|
# {
|
|
8172
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, launch-template, natgateway, network-acl, network-interface, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
8182
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
8173
8183
|
# tags: [
|
|
8174
8184
|
# {
|
|
8175
8185
|
# key: "String",
|
|
@@ -8416,7 +8426,7 @@ module Aws::EC2
|
|
|
8416
8426
|
# dry_run: false,
|
|
8417
8427
|
# tag_specifications: [
|
|
8418
8428
|
# {
|
|
8419
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, launch-template, natgateway, network-acl, network-interface, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
8429
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
8420
8430
|
# tags: [
|
|
8421
8431
|
# {
|
|
8422
8432
|
# key: "String",
|
|
@@ -9668,7 +9678,7 @@ module Aws::EC2
|
|
|
9668
9678
|
# @example Request syntax with placeholder values
|
|
9669
9679
|
#
|
|
9670
9680
|
# resp = client.delete_key_pair({
|
|
9671
|
-
# key_name: "
|
|
9681
|
+
# key_name: "KeyPairName", # required
|
|
9672
9682
|
# dry_run: false,
|
|
9673
9683
|
# })
|
|
9674
9684
|
#
|
|
@@ -11717,6 +11727,9 @@ module Aws::EC2
|
|
|
11717
11727
|
# * `instance-id` - The ID of the instance the address is associated
|
|
11718
11728
|
# with, if any.
|
|
11719
11729
|
#
|
|
11730
|
+
# * `network-border-group` - The location from where the IP address is
|
|
11731
|
+
# advertised.
|
|
11732
|
+
#
|
|
11720
11733
|
# * `network-interface-id` - \[EC2-VPC\] The ID of the network interface
|
|
11721
11734
|
# that the address is associated with, if any.
|
|
11722
11735
|
#
|
|
@@ -13332,6 +13345,8 @@ module Aws::EC2
|
|
|
13332
13345
|
# @option params [Array<String>] :export_task_ids
|
|
13333
13346
|
# The export task IDs.
|
|
13334
13347
|
#
|
|
13348
|
+
# @option params [Array<Types::Filter>] :filters
|
|
13349
|
+
#
|
|
13335
13350
|
# @return [Types::DescribeExportTasksResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
13336
13351
|
#
|
|
13337
13352
|
# * {Types::DescribeExportTasksResult#export_tasks #export_tasks} => Array<Types::ExportTask>
|
|
@@ -13340,6 +13355,12 @@ module Aws::EC2
|
|
|
13340
13355
|
#
|
|
13341
13356
|
# resp = client.describe_export_tasks({
|
|
13342
13357
|
# export_task_ids: ["String"],
|
|
13358
|
+
# filters: [
|
|
13359
|
+
# {
|
|
13360
|
+
# name: "String",
|
|
13361
|
+
# values: ["String"],
|
|
13362
|
+
# },
|
|
13363
|
+
# ],
|
|
13343
13364
|
# })
|
|
13344
13365
|
#
|
|
13345
13366
|
# @example Response structure
|
|
@@ -13355,6 +13376,9 @@ module Aws::EC2
|
|
|
13355
13376
|
# resp.export_tasks[0].instance_export_details.target_environment #=> String, one of "citrix", "vmware", "microsoft"
|
|
13356
13377
|
# resp.export_tasks[0].state #=> String, one of "active", "cancelling", "cancelled", "completed"
|
|
13357
13378
|
# resp.export_tasks[0].status_message #=> String
|
|
13379
|
+
# resp.export_tasks[0].tags #=> Array
|
|
13380
|
+
# resp.export_tasks[0].tags[0].key #=> String
|
|
13381
|
+
# resp.export_tasks[0].tags[0].value #=> String
|
|
13358
13382
|
#
|
|
13359
13383
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeExportTasks AWS API Documentation
|
|
13360
13384
|
#
|
|
@@ -14893,6 +14917,9 @@ module Aws::EC2
|
|
|
14893
14917
|
# resp.import_image_tasks[0].snapshot_details[0].user_bucket.s3_key #=> String
|
|
14894
14918
|
# resp.import_image_tasks[0].status #=> String
|
|
14895
14919
|
# resp.import_image_tasks[0].status_message #=> String
|
|
14920
|
+
# resp.import_image_tasks[0].tags #=> Array
|
|
14921
|
+
# resp.import_image_tasks[0].tags[0].key #=> String
|
|
14922
|
+
# resp.import_image_tasks[0].tags[0].value #=> String
|
|
14896
14923
|
# resp.import_image_tasks[0].license_specifications #=> Array
|
|
14897
14924
|
# resp.import_image_tasks[0].license_specifications[0].license_configuration_arn #=> String
|
|
14898
14925
|
# resp.next_token #=> String
|
|
@@ -14965,6 +14992,9 @@ module Aws::EC2
|
|
|
14965
14992
|
# resp.import_snapshot_tasks[0].snapshot_task_detail.url #=> String
|
|
14966
14993
|
# resp.import_snapshot_tasks[0].snapshot_task_detail.user_bucket.s3_bucket #=> String
|
|
14967
14994
|
# resp.import_snapshot_tasks[0].snapshot_task_detail.user_bucket.s3_key #=> String
|
|
14995
|
+
# resp.import_snapshot_tasks[0].tags #=> Array
|
|
14996
|
+
# resp.import_snapshot_tasks[0].tags[0].key #=> String
|
|
14997
|
+
# resp.import_snapshot_tasks[0].tags[0].value #=> String
|
|
14968
14998
|
# resp.next_token #=> String
|
|
14969
14999
|
#
|
|
14970
15000
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeImportSnapshotTasks AWS API Documentation
|
|
@@ -16362,6 +16392,9 @@ module Aws::EC2
|
|
|
16362
16392
|
#
|
|
16363
16393
|
# Default: Describes all your key pairs.
|
|
16364
16394
|
#
|
|
16395
|
+
# @option params [Array<String>] :key_pair_ids
|
|
16396
|
+
# The IDs of the key pairs.
|
|
16397
|
+
#
|
|
16365
16398
|
# @option params [Boolean] :dry_run
|
|
16366
16399
|
# Checks whether you have the required permissions for the action,
|
|
16367
16400
|
# without actually making the request, and provides an error response.
|
|
@@ -16403,14 +16436,19 @@ module Aws::EC2
|
|
|
16403
16436
|
# },
|
|
16404
16437
|
# ],
|
|
16405
16438
|
# key_names: ["String"],
|
|
16439
|
+
# key_pair_ids: ["String"],
|
|
16406
16440
|
# dry_run: false,
|
|
16407
16441
|
# })
|
|
16408
16442
|
#
|
|
16409
16443
|
# @example Response structure
|
|
16410
16444
|
#
|
|
16411
16445
|
# resp.key_pairs #=> Array
|
|
16446
|
+
# resp.key_pairs[0].key_pair_id #=> String
|
|
16412
16447
|
# resp.key_pairs[0].key_fingerprint #=> String
|
|
16413
16448
|
# resp.key_pairs[0].key_name #=> String
|
|
16449
|
+
# resp.key_pairs[0].tags #=> Array
|
|
16450
|
+
# resp.key_pairs[0].tags[0].key #=> String
|
|
16451
|
+
# resp.key_pairs[0].tags[0].value #=> String
|
|
16414
16452
|
#
|
|
16415
16453
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeKeyPairs AWS API Documentation
|
|
16416
16454
|
#
|
|
@@ -16621,7 +16659,7 @@ module Aws::EC2
|
|
|
16621
16659
|
# resp.launch_template_versions[0].launch_template_data.instance_initiated_shutdown_behavior #=> String, one of "stop", "terminate"
|
|
16622
16660
|
# resp.launch_template_versions[0].launch_template_data.user_data #=> String
|
|
16623
16661
|
# resp.launch_template_versions[0].launch_template_data.tag_specifications #=> Array
|
|
16624
|
-
# resp.launch_template_versions[0].launch_template_data.tag_specifications[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "elastic-ip", "fleet", "fpga-image", "host-reservation", "image", "instance", "internet-gateway", "launch-template", "natgateway", "network-acl", "network-interface", "reserved-instances", "route-table", "security-group", "snapshot", "spot-fleet-request", "spot-instances-request", "subnet", "traffic-mirror-filter", "traffic-mirror-session", "traffic-mirror-target", "transit-gateway", "transit-gateway-attachment", "transit-gateway-multicast-domain", "transit-gateway-route-table", "volume", "vpc", "vpc-peering-connection", "vpn-connection", "vpn-gateway"
|
|
16662
|
+
# resp.launch_template_versions[0].launch_template_data.tag_specifications[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "elastic-ip", "fleet", "fpga-image", "host-reservation", "image", "instance", "internet-gateway", "key-pair", "launch-template", "natgateway", "network-acl", "network-interface", "placement-group", "reserved-instances", "route-table", "security-group", "snapshot", "spot-fleet-request", "spot-instances-request", "subnet", "traffic-mirror-filter", "traffic-mirror-session", "traffic-mirror-target", "transit-gateway", "transit-gateway-attachment", "transit-gateway-multicast-domain", "transit-gateway-route-table", "volume", "vpc", "vpc-peering-connection", "vpn-connection", "vpn-gateway"
|
|
16625
16663
|
# resp.launch_template_versions[0].launch_template_data.tag_specifications[0].tags #=> Array
|
|
16626
16664
|
# resp.launch_template_versions[0].launch_template_data.tag_specifications[0].tags[0].key #=> String
|
|
16627
16665
|
# resp.launch_template_versions[0].launch_template_data.tag_specifications[0].tags[0].value #=> String
|
|
@@ -17872,7 +17910,8 @@ module Aws::EC2
|
|
|
17872
17910
|
# @option params [Integer] :max_results
|
|
17873
17911
|
# The maximum number of items to return for this request. The request
|
|
17874
17912
|
# returns a token that you can specify in a subsequent call to get the
|
|
17875
|
-
# next set of results.
|
|
17913
|
+
# next set of results. You cannot specify this parameter and the network
|
|
17914
|
+
# interface IDs parameter in the same request.
|
|
17876
17915
|
#
|
|
17877
17916
|
# @return [Types::DescribeNetworkInterfacesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
17878
17917
|
#
|
|
@@ -18048,6 +18087,9 @@ module Aws::EC2
|
|
|
18048
18087
|
# Default: Describes all your placement groups, or only those otherwise
|
|
18049
18088
|
# specified.
|
|
18050
18089
|
#
|
|
18090
|
+
# @option params [Array<String>] :group_ids
|
|
18091
|
+
# The IDs of the placement groups.
|
|
18092
|
+
#
|
|
18051
18093
|
# @return [Types::DescribePlacementGroupsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
18052
18094
|
#
|
|
18053
18095
|
# * {Types::DescribePlacementGroupsResult#placement_groups #placement_groups} => Array<Types::PlacementGroup>
|
|
@@ -18063,6 +18105,7 @@ module Aws::EC2
|
|
|
18063
18105
|
# ],
|
|
18064
18106
|
# dry_run: false,
|
|
18065
18107
|
# group_names: ["String"],
|
|
18108
|
+
# group_ids: ["String"],
|
|
18066
18109
|
# })
|
|
18067
18110
|
#
|
|
18068
18111
|
# @example Response structure
|
|
@@ -18072,6 +18115,10 @@ module Aws::EC2
|
|
|
18072
18115
|
# resp.placement_groups[0].state #=> String, one of "pending", "available", "deleting", "deleted"
|
|
18073
18116
|
# resp.placement_groups[0].strategy #=> String, one of "cluster", "spread", "partition"
|
|
18074
18117
|
# resp.placement_groups[0].partition_count #=> Integer
|
|
18118
|
+
# resp.placement_groups[0].group_id #=> String
|
|
18119
|
+
# resp.placement_groups[0].tags #=> Array
|
|
18120
|
+
# resp.placement_groups[0].tags[0].key #=> String
|
|
18121
|
+
# resp.placement_groups[0].tags[0].value #=> String
|
|
18075
18122
|
#
|
|
18076
18123
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribePlacementGroups AWS API Documentation
|
|
18077
18124
|
#
|
|
@@ -20498,7 +20545,7 @@ module Aws::EC2
|
|
|
20498
20545
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].user_data #=> String
|
|
20499
20546
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].weighted_capacity #=> Float
|
|
20500
20547
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].tag_specifications #=> Array
|
|
20501
|
-
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].tag_specifications[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "elastic-ip", "fleet", "fpga-image", "host-reservation", "image", "instance", "internet-gateway", "launch-template", "natgateway", "network-acl", "network-interface", "reserved-instances", "route-table", "security-group", "snapshot", "spot-fleet-request", "spot-instances-request", "subnet", "traffic-mirror-filter", "traffic-mirror-session", "traffic-mirror-target", "transit-gateway", "transit-gateway-attachment", "transit-gateway-multicast-domain", "transit-gateway-route-table", "volume", "vpc", "vpc-peering-connection", "vpn-connection", "vpn-gateway"
|
|
20548
|
+
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].tag_specifications[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "elastic-ip", "fleet", "fpga-image", "host-reservation", "image", "instance", "internet-gateway", "key-pair", "launch-template", "natgateway", "network-acl", "network-interface", "placement-group", "reserved-instances", "route-table", "security-group", "snapshot", "spot-fleet-request", "spot-instances-request", "subnet", "traffic-mirror-filter", "traffic-mirror-session", "traffic-mirror-target", "transit-gateway", "transit-gateway-attachment", "transit-gateway-multicast-domain", "transit-gateway-route-table", "volume", "vpc", "vpc-peering-connection", "vpn-connection", "vpn-gateway"
|
|
20502
20549
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].tag_specifications[0].tags #=> Array
|
|
20503
20550
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].tag_specifications[0].tags[0].key #=> String
|
|
20504
20551
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].tag_specifications[0].tags[0].value #=> String
|
|
@@ -21363,7 +21410,7 @@ module Aws::EC2
|
|
|
21363
21410
|
# resp.tags #=> Array
|
|
21364
21411
|
# resp.tags[0].key #=> String
|
|
21365
21412
|
# resp.tags[0].resource_id #=> String
|
|
21366
|
-
# resp.tags[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "elastic-ip", "fleet", "fpga-image", "host-reservation", "image", "instance", "internet-gateway", "launch-template", "natgateway", "network-acl", "network-interface", "reserved-instances", "route-table", "security-group", "snapshot", "spot-fleet-request", "spot-instances-request", "subnet", "traffic-mirror-filter", "traffic-mirror-session", "traffic-mirror-target", "transit-gateway", "transit-gateway-attachment", "transit-gateway-multicast-domain", "transit-gateway-route-table", "volume", "vpc", "vpc-peering-connection", "vpn-connection", "vpn-gateway"
|
|
21413
|
+
# resp.tags[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "elastic-ip", "fleet", "fpga-image", "host-reservation", "image", "instance", "internet-gateway", "key-pair", "launch-template", "natgateway", "network-acl", "network-interface", "placement-group", "reserved-instances", "route-table", "security-group", "snapshot", "spot-fleet-request", "spot-instances-request", "subnet", "traffic-mirror-filter", "traffic-mirror-session", "traffic-mirror-target", "transit-gateway", "transit-gateway-attachment", "transit-gateway-multicast-domain", "transit-gateway-route-table", "volume", "vpc", "vpc-peering-connection", "vpn-connection", "vpn-gateway"
|
|
21367
21414
|
# resp.tags[0].value #=> String
|
|
21368
21415
|
#
|
|
21369
21416
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeTags AWS API Documentation
|
|
@@ -25920,7 +25967,7 @@ module Aws::EC2
|
|
|
25920
25967
|
# @example Request syntax with placeholder values
|
|
25921
25968
|
#
|
|
25922
25969
|
# resp = client.get_host_reservation_purchase_preview({
|
|
25923
|
-
# host_id_set: ["
|
|
25970
|
+
# host_id_set: ["DedicatedHostId"], # required
|
|
25924
25971
|
# offering_id: "OfferingId", # required
|
|
25925
25972
|
# })
|
|
25926
25973
|
#
|
|
@@ -26085,7 +26132,7 @@ module Aws::EC2
|
|
|
26085
26132
|
# resp.launch_template_data.instance_initiated_shutdown_behavior #=> String, one of "stop", "terminate"
|
|
26086
26133
|
# resp.launch_template_data.user_data #=> String
|
|
26087
26134
|
# resp.launch_template_data.tag_specifications #=> Array
|
|
26088
|
-
# resp.launch_template_data.tag_specifications[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "elastic-ip", "fleet", "fpga-image", "host-reservation", "image", "instance", "internet-gateway", "launch-template", "natgateway", "network-acl", "network-interface", "reserved-instances", "route-table", "security-group", "snapshot", "spot-fleet-request", "spot-instances-request", "subnet", "traffic-mirror-filter", "traffic-mirror-session", "traffic-mirror-target", "transit-gateway", "transit-gateway-attachment", "transit-gateway-multicast-domain", "transit-gateway-route-table", "volume", "vpc", "vpc-peering-connection", "vpn-connection", "vpn-gateway"
|
|
26135
|
+
# resp.launch_template_data.tag_specifications[0].resource_type #=> String, one of "client-vpn-endpoint", "customer-gateway", "dedicated-host", "dhcp-options", "elastic-ip", "fleet", "fpga-image", "host-reservation", "image", "instance", "internet-gateway", "key-pair", "launch-template", "natgateway", "network-acl", "network-interface", "placement-group", "reserved-instances", "route-table", "security-group", "snapshot", "spot-fleet-request", "spot-instances-request", "subnet", "traffic-mirror-filter", "traffic-mirror-session", "traffic-mirror-target", "transit-gateway", "transit-gateway-attachment", "transit-gateway-multicast-domain", "transit-gateway-route-table", "volume", "vpc", "vpc-peering-connection", "vpn-connection", "vpn-gateway"
|
|
26089
26136
|
# resp.launch_template_data.tag_specifications[0].tags #=> Array
|
|
26090
26137
|
# resp.launch_template_data.tag_specifications[0].tags[0].key #=> String
|
|
26091
26138
|
# resp.launch_template_data.tag_specifications[0].tags[0].value #=> String
|
|
@@ -26637,8 +26684,8 @@ module Aws::EC2
|
|
|
26637
26684
|
# Valid values: `xen`
|
|
26638
26685
|
#
|
|
26639
26686
|
# @option params [String] :kms_key_id
|
|
26640
|
-
# An identifier for the AWS Key Management Service (AWS KMS)
|
|
26641
|
-
# master key (CMK) to use when creating the encrypted AMI. This
|
|
26687
|
+
# An identifier for the symmetric AWS Key Management Service (AWS KMS)
|
|
26688
|
+
# customer master key (CMK) to use when creating the encrypted AMI. This
|
|
26642
26689
|
# parameter is only required if you want to use a non-default CMK; if
|
|
26643
26690
|
# this parameter is not specified, the default CMK for EBS is used. If a
|
|
26644
26691
|
# `KmsKeyId` is specified, the `Encrypted` flag must also be set.
|
|
@@ -26670,6 +26717,8 @@ module Aws::EC2
|
|
|
26670
26717
|
# The specified CMK must exist in the Region that the AMI is being
|
|
26671
26718
|
# copied to.
|
|
26672
26719
|
#
|
|
26720
|
+
# Amazon EBS does not support asymmetric CMKs.
|
|
26721
|
+
#
|
|
26673
26722
|
# @option params [String] :license_type
|
|
26674
26723
|
# The license type to be used for the Amazon Machine Image (AMI) after
|
|
26675
26724
|
# importing.
|
|
@@ -26953,7 +27002,7 @@ module Aws::EC2
|
|
|
26953
27002
|
#
|
|
26954
27003
|
# resp = client.import_key_pair({
|
|
26955
27004
|
# dry_run: false,
|
|
26956
|
-
# key_name: "
|
|
27005
|
+
# key_name: "KeyPairName", # required
|
|
26957
27006
|
# public_key_material: "data", # required
|
|
26958
27007
|
# })
|
|
26959
27008
|
#
|
|
@@ -27003,11 +27052,11 @@ module Aws::EC2
|
|
|
27003
27052
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html
|
|
27004
27053
|
#
|
|
27005
27054
|
# @option params [String] :kms_key_id
|
|
27006
|
-
# An identifier for the AWS Key Management Service (AWS KMS)
|
|
27007
|
-
# master key (CMK) to use when creating the encrypted snapshot.
|
|
27008
|
-
# parameter is only required if you want to use a non-default CMK;
|
|
27009
|
-
# this parameter is not specified, the default CMK for EBS is used.
|
|
27010
|
-
# `KmsKeyId` is specified, the `Encrypted` flag must also be set.
|
|
27055
|
+
# An identifier for the symmetric AWS Key Management Service (AWS KMS)
|
|
27056
|
+
# customer master key (CMK) to use when creating the encrypted snapshot.
|
|
27057
|
+
# This parameter is only required if you want to use a non-default CMK;
|
|
27058
|
+
# if this parameter is not specified, the default CMK for EBS is used.
|
|
27059
|
+
# If a `KmsKeyId` is specified, the `Encrypted` flag must also be set.
|
|
27011
27060
|
#
|
|
27012
27061
|
# The CMK identifier may be provided in any of the following formats:
|
|
27013
27062
|
#
|
|
@@ -27036,6 +27085,8 @@ module Aws::EC2
|
|
|
27036
27085
|
# The specified CMK must exist in the Region that the snapshot is being
|
|
27037
27086
|
# copied to.
|
|
27038
27087
|
#
|
|
27088
|
+
# Amazon EBS does not support asymmetric CMKs.
|
|
27089
|
+
#
|
|
27039
27090
|
# @option params [String] :role_name
|
|
27040
27091
|
# The name of the role to use when not using the default role,
|
|
27041
27092
|
# 'vmimport'.
|
|
@@ -27417,10 +27468,10 @@ module Aws::EC2
|
|
|
27417
27468
|
# default for your account in this Region.
|
|
27418
27469
|
#
|
|
27419
27470
|
# AWS creates a unique AWS managed CMK in each Region for use with
|
|
27420
|
-
# encryption by default. If you change the default CMK to a
|
|
27421
|
-
# managed CMK, it is used instead of the AWS managed CMK. To
|
|
27422
|
-
# default CMK to the AWS managed CMK for EBS, use
|
|
27423
|
-
# ResetEbsDefaultKmsKeyId.
|
|
27471
|
+
# encryption by default. If you change the default CMK to a symmetric
|
|
27472
|
+
# customer managed CMK, it is used instead of the AWS managed CMK. To
|
|
27473
|
+
# reset the default CMK to the AWS managed CMK for EBS, use
|
|
27474
|
+
# ResetEbsDefaultKmsKeyId. Amazon EBS does not support asymmetric CMKs.
|
|
27424
27475
|
#
|
|
27425
27476
|
# If you delete or disable the customer managed CMK that you specified
|
|
27426
27477
|
# for use with encryption by default, your instances will fail to
|
|
@@ -27455,6 +27506,8 @@ module Aws::EC2
|
|
|
27455
27506
|
# ID, alias, or ARN that is not valid, the action can appear to
|
|
27456
27507
|
# complete, but eventually fails.
|
|
27457
27508
|
#
|
|
27509
|
+
# Amazon EBS does not support asymmetric CMKs.
|
|
27510
|
+
#
|
|
27458
27511
|
# @option params [Boolean] :dry_run
|
|
27459
27512
|
# Checks whether you have the required permissions for the action,
|
|
27460
27513
|
# without actually making the request, and provides an error response.
|
|
@@ -28543,7 +28596,7 @@ module Aws::EC2
|
|
|
28543
28596
|
# resp = client.modify_instance_placement({
|
|
28544
28597
|
# affinity: "default", # accepts default, host
|
|
28545
28598
|
# group_name: "PlacementGroupName",
|
|
28546
|
-
# host_id: "
|
|
28599
|
+
# host_id: "DedicatedHostId",
|
|
28547
28600
|
# instance_id: "InstanceId", # required
|
|
28548
28601
|
# tenancy: "dedicated", # accepts dedicated, host
|
|
28549
28602
|
# partition_number: 1,
|
|
@@ -29403,6 +29456,10 @@ module Aws::EC2
|
|
|
29403
29456
|
# @option params [Types::ModifyTransitGatewayVpcAttachmentRequestOptions] :options
|
|
29404
29457
|
# The new VPC attachment options.
|
|
29405
29458
|
#
|
|
29459
|
+
# <note markdown="1"> You cannot modify the IPv6 options.
|
|
29460
|
+
#
|
|
29461
|
+
# </note>
|
|
29462
|
+
#
|
|
29406
29463
|
# @option params [Boolean] :dry_run
|
|
29407
29464
|
# Checks whether you have the required permissions for the action,
|
|
29408
29465
|
# without actually making the request, and provides an error response.
|
|
@@ -30682,7 +30739,7 @@ module Aws::EC2
|
|
|
30682
30739
|
# resp = client.purchase_host_reservation({
|
|
30683
30740
|
# client_token: "String",
|
|
30684
30741
|
# currency_code: "USD", # accepts USD
|
|
30685
|
-
# host_id_set: ["
|
|
30742
|
+
# host_id_set: ["DedicatedHostId"], # required
|
|
30686
30743
|
# limit_price: "String",
|
|
30687
30744
|
# offering_id: "OfferingId", # required
|
|
30688
30745
|
# })
|
|
@@ -32385,7 +32442,7 @@ module Aws::EC2
|
|
|
32385
32442
|
# weighted_capacity: 1.0,
|
|
32386
32443
|
# tag_specifications: [
|
|
32387
32444
|
# {
|
|
32388
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, launch-template, natgateway, network-acl, network-interface, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
32445
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
32389
32446
|
# tags: [
|
|
32390
32447
|
# {
|
|
32391
32448
|
# key: "String",
|
|
@@ -33956,7 +34013,7 @@ module Aws::EC2
|
|
|
33956
34013
|
# ],
|
|
33957
34014
|
# tag_specifications: [
|
|
33958
34015
|
# {
|
|
33959
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, launch-template, natgateway, network-acl, network-interface, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
34016
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, host-reservation, image, instance, internet-gateway, key-pair, launch-template, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
|
33960
34017
|
# tags: [
|
|
33961
34018
|
# {
|
|
33962
34019
|
# key: "String",
|
|
@@ -35440,7 +35497,7 @@ module Aws::EC2
|
|
|
35440
35497
|
params: params,
|
|
35441
35498
|
config: config)
|
|
35442
35499
|
context[:gem_name] = 'aws-sdk-ec2'
|
|
35443
|
-
context[:gem_version] = '1.
|
|
35500
|
+
context[:gem_version] = '1.129.0'
|
|
35444
35501
|
Seahorse::Client::Request.new(handlers, context)
|
|
35445
35502
|
end
|
|
35446
35503
|
|