aws-sdk-ec2 1.369.0 → 1.370.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/client.rb +140 -136
- data/lib/aws-sdk-ec2/client_api.rb +2 -0
- data/lib/aws-sdk-ec2/image.rb +6 -6
- data/lib/aws-sdk-ec2/instance.rb +11 -11
- data/lib/aws-sdk-ec2/nat_gateway.rb +7 -7
- data/lib/aws-sdk-ec2/resource.rb +23 -23
- data/lib/aws-sdk-ec2/subnet.rb +2 -2
- data/lib/aws-sdk-ec2/types.rb +284 -271
- data/lib/aws-sdk-ec2/volume.rb +5 -5
- data/lib/aws-sdk-ec2/vpc.rb +8 -8
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -384,11 +384,11 @@ module Aws::EC2
|
|
384
384
|
# The Elastic IP address you are accepting for transfer.
|
385
385
|
#
|
386
386
|
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
387
|
-
# `tag
|
388
|
-
#
|
389
|
-
#
|
390
|
-
#
|
391
|
-
#
|
387
|
+
# `tag`:<key> - The key/value combination of a tag assigned to the
|
388
|
+
# resource. Use the tag key in the filter name and the tag value as the
|
389
|
+
# filter value. For example, to find all resources that have a tag with
|
390
|
+
# the key `Owner` and the value `TeamA`, specify `tag:Owner` for the
|
391
|
+
# filter name and `TeamA` for the filter value.
|
392
392
|
#
|
393
393
|
# @option params [Boolean] :dry_run
|
394
394
|
# Checks whether you have the required permissions for the action,
|
@@ -5931,7 +5931,7 @@ module Aws::EC2
|
|
5931
5931
|
# another Region, specify `region.compute.internal` (for example,
|
5932
5932
|
# `ap-northeast-1.compute.internal`). Otherwise, specify a domain name
|
5933
5933
|
# (for example, `ExampleCompany.com`). This value is used to complete
|
5934
|
-
# unqualified DNS hostnames. **Important
|
5934
|
+
# unqualified DNS hostnames. **Important**: Some Linux operating
|
5935
5935
|
# systems accept multiple domain names separated by spaces. However,
|
5936
5936
|
# Windows and other Linux operating systems treat the value as a
|
5937
5937
|
# single domain, which results in unexpected behavior. If your DHCP
|
@@ -6207,12 +6207,12 @@ module Aws::EC2
|
|
6207
6207
|
#
|
6208
6208
|
# @option params [Time,DateTime,Date,Integer,String] :valid_from
|
6209
6209
|
# The start date and time of the request, in UTC format (for example,
|
6210
|
-
# *YYYY*-*MM*-*DD*T*HH
|
6211
|
-
#
|
6210
|
+
# *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z). The default is to start fulfilling
|
6211
|
+
# the request immediately.
|
6212
6212
|
#
|
6213
6213
|
# @option params [Time,DateTime,Date,Integer,String] :valid_until
|
6214
6214
|
# The end date and time of the request, in UTC format (for example,
|
6215
|
-
# *YYYY*-*MM*-*DD*T*HH
|
6215
|
+
# *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z). At this point, no new EC2 Fleet
|
6216
6216
|
# requests are placed or able to fulfill the request. If no value is
|
6217
6217
|
# specified, the request remains until you cancel it.
|
6218
6218
|
#
|
@@ -6598,7 +6598,7 @@ module Aws::EC2
|
|
6598
6598
|
# * If the destination type is `cloud-watch-logs`, specify the ARN of a
|
6599
6599
|
# CloudWatch Logs log group. For example:
|
6600
6600
|
#
|
6601
|
-
# arn:aws:logs:*region
|
6601
|
+
# arn:aws:logs:*region*:*account\_id*:log-group:*my\_group*
|
6602
6602
|
#
|
6603
6603
|
# Alternatively, use the `LogGroupName` parameter.
|
6604
6604
|
#
|
@@ -6613,7 +6613,7 @@ module Aws::EC2
|
|
6613
6613
|
# * If the destination type is `kinesis-data-firehose`, specify the ARN
|
6614
6614
|
# of a Kinesis Data Firehose delivery stream. For example:
|
6615
6615
|
#
|
6616
|
-
# arn:aws:firehose:*region
|
6616
|
+
# arn:aws:firehose:*region*:*account\_id*:deliverystream:*my\_stream*
|
6617
6617
|
#
|
6618
6618
|
# @option params [String] :log_format
|
6619
6619
|
# The fields to include in the flow log record. List the fields in the
|
@@ -11737,13 +11737,13 @@ module Aws::EC2
|
|
11737
11737
|
#
|
11738
11738
|
# The following are valid values:
|
11739
11739
|
#
|
11740
|
-
# * `prefix
|
11740
|
+
# * `prefix`: The Amazon EC2 Prefix Delegation feature assigns the IP
|
11741
11741
|
# addresses to network interfaces that are associated with an
|
11742
11742
|
# instance. For information about Prefix Delegation, see [Prefix
|
11743
11743
|
# Delegation for Amazon EC2 network interfaces][1] in the *Amazon
|
11744
11744
|
# Elastic Compute Cloud User Guide*.
|
11745
11745
|
#
|
11746
|
-
# * `explicit
|
11746
|
+
# * `explicit`: You manually assign the IP addresses to resources that
|
11747
11747
|
# reside in your subnet.
|
11748
11748
|
#
|
11749
11749
|
#
|
@@ -13658,11 +13658,11 @@ module Aws::EC2
|
|
13658
13658
|
#
|
13659
13659
|
# The following are the supported values for each volume type:
|
13660
13660
|
#
|
13661
|
-
# * `gp3
|
13661
|
+
# * `gp3`: 3,000-16,000 IOPS
|
13662
13662
|
#
|
13663
|
-
# * `io1
|
13663
|
+
# * `io1`: 100-64,000 IOPS
|
13664
13664
|
#
|
13665
|
-
# * `io2
|
13665
|
+
# * `io2`: 100-64,000 IOPS
|
13666
13666
|
#
|
13667
13667
|
# `io1` and `io2` volumes support up to 64,000 IOPS only on [Instances
|
13668
13668
|
# built on the Nitro System][1]. Other instance families support
|
@@ -13709,13 +13709,13 @@ module Aws::EC2
|
|
13709
13709
|
#
|
13710
13710
|
# The following are the supported volumes sizes for each volume type:
|
13711
13711
|
#
|
13712
|
-
# * `gp2` and `gp3
|
13712
|
+
# * `gp2` and `gp3`: 1-16,384
|
13713
13713
|
#
|
13714
|
-
# * `io1` and `io2
|
13714
|
+
# * `io1` and `io2`: 4-16,384
|
13715
13715
|
#
|
13716
|
-
# * `st1` and `sc1
|
13716
|
+
# * `st1` and `sc1`: 125-16,384
|
13717
13717
|
#
|
13718
|
-
# * `standard
|
13718
|
+
# * `standard`: 1-1,024
|
13719
13719
|
#
|
13720
13720
|
# @option params [String] :snapshot_id
|
13721
13721
|
# The snapshot from which to create the volume. You must specify either
|
@@ -14199,8 +14199,8 @@ module Aws::EC2
|
|
14199
14199
|
# generated by the VPC endpoint service.
|
14200
14200
|
#
|
14201
14201
|
# To use a private hosted zone, you must set the following VPC
|
14202
|
-
# attributes to `true
|
14203
|
-
#
|
14202
|
+
# attributes to `true`: `enableDnsHostnames` and `enableDnsSupport`. Use
|
14203
|
+
# ModifyVpcAttribute to set the VPC attributes.
|
14204
14204
|
#
|
14205
14205
|
# Default: `true`
|
14206
14206
|
#
|
@@ -14226,6 +14226,7 @@ module Aws::EC2
|
|
14226
14226
|
# ip_address_type: "ipv4", # accepts ipv4, dualstack, ipv6
|
14227
14227
|
# dns_options: {
|
14228
14228
|
# dns_record_ip_type: "ipv4", # accepts ipv4, dualstack, ipv6, service-defined
|
14229
|
+
# private_dns_only_for_inbound_resolver_endpoint: false,
|
14229
14230
|
# },
|
14230
14231
|
# client_token: "String",
|
14231
14232
|
# private_dns_enabled: false,
|
@@ -14259,6 +14260,7 @@ module Aws::EC2
|
|
14259
14260
|
# resp.vpc_endpoint.groups[0].group_name #=> String
|
14260
14261
|
# resp.vpc_endpoint.ip_address_type #=> String, one of "ipv4", "dualstack", "ipv6"
|
14261
14262
|
# resp.vpc_endpoint.dns_options.dns_record_ip_type #=> String, one of "ipv4", "dualstack", "ipv6", "service-defined"
|
14263
|
+
# resp.vpc_endpoint.dns_options.private_dns_only_for_inbound_resolver_endpoint #=> Boolean
|
14262
14264
|
# resp.vpc_endpoint.private_dns_enabled #=> Boolean
|
14263
14265
|
# resp.vpc_endpoint.requester_managed #=> Boolean
|
14264
14266
|
# resp.vpc_endpoint.network_interface_ids #=> Array
|
@@ -18766,24 +18768,24 @@ module Aws::EC2
|
|
18766
18768
|
# Describes attributes of your Amazon Web Services account. The
|
18767
18769
|
# following are the supported account attributes:
|
18768
18770
|
#
|
18769
|
-
# * `supported-platforms
|
18771
|
+
# * `supported-platforms`: Indicates whether your account can launch
|
18770
18772
|
# instances into EC2-Classic and EC2-VPC, or only into EC2-VPC.
|
18771
18773
|
#
|
18772
|
-
# * `default-vpc
|
18774
|
+
# * `default-vpc`: The ID of the default VPC for your account, or
|
18773
18775
|
# `none`.
|
18774
18776
|
#
|
18775
|
-
# * `max-instances
|
18776
|
-
#
|
18777
|
-
#
|
18778
|
-
#
|
18777
|
+
# * `max-instances`: This attribute is no longer supported. The returned
|
18778
|
+
# value does not reflect your actual vCPU limit for running On-Demand
|
18779
|
+
# Instances. For more information, see [On-Demand Instance Limits][1]
|
18780
|
+
# in the *Amazon Elastic Compute Cloud User Guide*.
|
18779
18781
|
#
|
18780
|
-
# * `vpc-max-security-groups-per-interface
|
18782
|
+
# * `vpc-max-security-groups-per-interface`: The maximum number of
|
18781
18783
|
# security groups that you can assign to a network interface.
|
18782
18784
|
#
|
18783
|
-
# * `max-elastic-ips
|
18785
|
+
# * `max-elastic-ips`: The maximum number of Elastic IP addresses that
|
18784
18786
|
# you can allocate for use with EC2-Classic.
|
18785
18787
|
#
|
18786
|
-
# * `vpc-max-elastic-ips
|
18788
|
+
# * `vpc-max-elastic-ips`: The maximum number of Elastic IP addresses
|
18787
18789
|
# that you can allocate for use with EC2-VPC.
|
18788
18790
|
#
|
18789
18791
|
# <note markdown="1"> We are retiring EC2-Classic on August 15, 2022. We recommend that you
|
@@ -19033,7 +19035,7 @@ module Aws::EC2
|
|
19033
19035
|
#
|
19034
19036
|
# * `public-ip` - The Elastic IP address, or the carrier IP address.
|
19035
19037
|
#
|
19036
|
-
# * `tag
|
19038
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
19037
19039
|
# the resource. Use the tag key in the filter name and the tag value
|
19038
19040
|
# as the filter value. For example, to find all resources that have a
|
19039
19041
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -19959,7 +19961,7 @@ module Aws::EC2
|
|
19959
19961
|
# * `owner-id` - The Amazon Web Services account ID of the owner of the
|
19960
19962
|
# carrier gateway.
|
19961
19963
|
#
|
19962
|
-
# * `tag
|
19964
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
19963
19965
|
# the resource. Use the tag key in the filter name and the tag value
|
19964
19966
|
# as the filter value. For example, to find all resources that have a
|
19965
19967
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -20052,7 +20054,7 @@ module Aws::EC2
|
|
20052
20054
|
#
|
20053
20055
|
# * `instance-id` - The ID of the instance.
|
20054
20056
|
#
|
20055
|
-
# * `tag
|
20057
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
20056
20058
|
# the resource. Use the tag key in the filter name and the tag value
|
20057
20059
|
# as the filter value. For example, to find all resources that have a
|
20058
20060
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -20730,7 +20732,7 @@ module Aws::EC2
|
|
20730
20732
|
# * `type` - The type of customer gateway. Currently, the only supported
|
20731
20733
|
# type is `ipsec.1`.
|
20732
20734
|
#
|
20733
|
-
# * `tag
|
20735
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
20734
20736
|
# the resource. Use the tag key in the filter name and the tag value
|
20735
20737
|
# as the filter value. For example, to find all resources that have a
|
20736
20738
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -20841,7 +20843,7 @@ module Aws::EC2
|
|
20841
20843
|
# * `owner-id` - The ID of the Amazon Web Services account that owns the
|
20842
20844
|
# DHCP options set.
|
20843
20845
|
#
|
20844
|
-
# * `tag
|
20846
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
20845
20847
|
# the resource. Use the tag key in the filter name and the tag value
|
20846
20848
|
# as the filter value. For example, to find all resources that have a
|
20847
20849
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -20975,7 +20977,7 @@ module Aws::EC2
|
|
20975
20977
|
# @option params [Array<Types::Filter>] :filters
|
20976
20978
|
# One or more filters.
|
20977
20979
|
#
|
20978
|
-
# * `tag
|
20980
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
20979
20981
|
# the resource. Use the tag key in the filter name and the tag value
|
20980
20982
|
# as the filter value. For example, to find all resources that have a
|
20981
20983
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -21331,14 +21333,14 @@ module Aws::EC2
|
|
21331
21333
|
# @option params [Array<Types::Filter>] :filters
|
21332
21334
|
# The filters. The possible values are:
|
21333
21335
|
#
|
21334
|
-
# * `availability-zone
|
21336
|
+
# * `availability-zone`: The Availability Zone of the snapshot.
|
21335
21337
|
#
|
21336
|
-
# * `owner-id
|
21338
|
+
# * `owner-id`: The ID of the Amazon Web Services account that enabled
|
21337
21339
|
# fast snapshot restore on the snapshot.
|
21338
21340
|
#
|
21339
|
-
# * `snapshot-id
|
21341
|
+
# * `snapshot-id`: The ID of the snapshot.
|
21340
21342
|
#
|
21341
|
-
# * `state
|
21343
|
+
# * `state`: The state of fast snapshot restores for the snapshot
|
21342
21344
|
# (`enabling` \| `optimizing` \| `enabled` \| `disabling` \|
|
21343
21345
|
# `disabled`).
|
21344
21346
|
#
|
@@ -21449,7 +21451,7 @@ module Aws::EC2
|
|
21449
21451
|
#
|
21450
21452
|
# @option params [required, Time,DateTime,Date,Integer,String] :start_time
|
21451
21453
|
# The start date and time for the events, in UTC format (for example,
|
21452
|
-
# *YYYY*-*MM*-*DD*T*HH
|
21454
|
+
# *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z).
|
21453
21455
|
#
|
21454
21456
|
# @return [Types::DescribeFleetHistoryResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
21455
21457
|
#
|
@@ -21893,7 +21895,7 @@ module Aws::EC2
|
|
21893
21895
|
# * `traffic-type` - The type of traffic (`ACCEPT` \| `REJECT` \|
|
21894
21896
|
# `ALL`).
|
21895
21897
|
#
|
21896
|
-
# * `tag
|
21898
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
21897
21899
|
# the resource. Use the tag key in the filter name and the tag value
|
21898
21900
|
# as the filter value. For example, to find all resources that have a
|
21899
21901
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -22065,7 +22067,7 @@ module Aws::EC2
|
|
22065
22067
|
# * `state` - The state of the AFI (`pending` \| `failed` \| `available`
|
22066
22068
|
# \| `unavailable`).
|
22067
22069
|
#
|
22068
|
-
# * `tag
|
22070
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
22069
22071
|
# the resource. Use the tag key in the filter name and the tag value
|
22070
22072
|
# as the filter value. For example, to find all resources that have a
|
22071
22073
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -22679,10 +22681,10 @@ module Aws::EC2
|
|
22679
22681
|
# @option params [required, String] :attribute
|
22680
22682
|
# The AMI attribute.
|
22681
22683
|
#
|
22682
|
-
# **Note
|
22683
|
-
#
|
22684
|
-
#
|
22685
|
-
#
|
22684
|
+
# **Note**: The `blockDeviceMapping` attribute is deprecated. Using this
|
22685
|
+
# attribute returns the `Client.AuthFailure` error. To get information
|
22686
|
+
# about the block device mappings for an AMI, use the DescribeImages
|
22687
|
+
# action.
|
22686
22688
|
#
|
22687
22689
|
# @option params [required, String] :image_id
|
22688
22690
|
# The ID of the AMI.
|
@@ -22895,7 +22897,7 @@ module Aws::EC2
|
|
22895
22897
|
# * `sriov-net-support` - A value of `simple` indicates that enhanced
|
22896
22898
|
# networking with the Intel 82599 VF interface is enabled.
|
22897
22899
|
#
|
22898
|
-
# * `tag
|
22900
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
22899
22901
|
# the resource. Use the tag key in the filter name and the tag value
|
22900
22902
|
# as the filter value. For example, to find all resources that have a
|
22901
22903
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -24869,7 +24871,7 @@ module Aws::EC2
|
|
24869
24871
|
# * `owner-id` - The ID of the Amazon Web Services account that owns the
|
24870
24872
|
# internet gateway.
|
24871
24873
|
#
|
24872
|
-
# * `tag
|
24874
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
24873
24875
|
# the resource. Use the tag key in the filter name and the tag value
|
24874
24876
|
# as the filter value. For example, to find all resources that have a
|
24875
24877
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -25399,7 +25401,7 @@ module Aws::EC2
|
|
25399
25401
|
# @option params [Array<Types::Filter>] :filters
|
25400
25402
|
# One or more filters.
|
25401
25403
|
#
|
25402
|
-
# * `tag
|
25404
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
25403
25405
|
# the resource. Use the tag key in the filter name and the tag value
|
25404
25406
|
# as the filter value. For example, to find all resources that have a
|
25405
25407
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -25474,7 +25476,7 @@ module Aws::EC2
|
|
25474
25476
|
# filter to find all resources assigned a tag with a specific key,
|
25475
25477
|
# regardless of the tag value.
|
25476
25478
|
#
|
25477
|
-
# * `tag
|
25479
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
25478
25480
|
# the resource. Use the tag key in the filter name and the tag value
|
25479
25481
|
# as the filter value. For example, to find all resources that have a
|
25480
25482
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -25949,7 +25951,7 @@ module Aws::EC2
|
|
25949
25951
|
#
|
25950
25952
|
# * `launch-template-name` - The name of the launch template.
|
25951
25953
|
#
|
25952
|
-
# * `tag
|
25954
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
25953
25955
|
# the resource. Use the tag key in the filter name and the tag value
|
25954
25956
|
# as the filter value. For example, to find all resources that have a
|
25955
25957
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -26728,7 +26730,7 @@ module Aws::EC2
|
|
26728
26730
|
#
|
26729
26731
|
# * `subnet-id` - The ID of the subnet in which the NAT gateway resides.
|
26730
26732
|
#
|
26731
|
-
# * `tag
|
26733
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
26732
26734
|
# the resource. Use the tag key in the filter name and the tag value
|
26733
26735
|
# as the filter value. For example, to find all resources that have a
|
26734
26736
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -26916,7 +26918,7 @@ module Aws::EC2
|
|
26916
26918
|
# * `owner-id` - The ID of the Amazon Web Services account that owns the
|
26917
26919
|
# network ACL.
|
26918
26920
|
#
|
26919
|
-
# * `tag
|
26921
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
26920
26922
|
# the resource. Use the tag key in the filter name and the tag value
|
26921
26923
|
# as the filter value. For example, to find all resources that have a
|
26922
26924
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -28327,7 +28329,7 @@ module Aws::EC2
|
|
28327
28329
|
#
|
28328
28330
|
# * `subnet-id` - The ID of the subnet for the network interface.
|
28329
28331
|
#
|
28330
|
-
# * `tag
|
28332
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
28331
28333
|
# the resource. Use the tag key in the filter name and the tag value
|
28332
28334
|
# as the filter value. For example, to find all resources that have a
|
28333
28335
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -28634,9 +28636,9 @@ module Aws::EC2
|
|
28634
28636
|
# @option params [Array<Types::Filter>] :filters
|
28635
28637
|
# One or more filters.
|
28636
28638
|
#
|
28637
|
-
# * `prefix-list-id
|
28639
|
+
# * `prefix-list-id`: The ID of a prefix list.
|
28638
28640
|
#
|
28639
|
-
# * `prefix-list-name
|
28641
|
+
# * `prefix-list-name`: The name of a prefix list.
|
28640
28642
|
#
|
28641
28643
|
# @option params [Integer] :max_results
|
28642
28644
|
# The maximum number of results to return with a single call. To
|
@@ -28787,7 +28789,7 @@ module Aws::EC2
|
|
28787
28789
|
# @option params [Array<Types::Filter>] :filters
|
28788
28790
|
# One or more filters.
|
28789
28791
|
#
|
28790
|
-
# * `tag
|
28792
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
28791
28793
|
# the resource. Use the tag key in the filter name and the tag value
|
28792
28794
|
# as the filter value. For example, to find all resources that have a
|
28793
28795
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -29676,7 +29678,7 @@ module Aws::EC2
|
|
29676
29678
|
# * `route.vpc-peering-connection-id` - The ID of a VPC peering
|
29677
29679
|
# connection specified in a route in the table.
|
29678
29680
|
#
|
29679
|
-
# * `tag
|
29681
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
29680
29682
|
# the resource. Use the tag key in the filter name and the tag value
|
29681
29683
|
# as the filter value. For example, to find all resources that have a
|
29682
29684
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -30199,7 +30201,7 @@ module Aws::EC2
|
|
30199
30201
|
#
|
30200
30202
|
# * `security-group-rule-id` - The ID of the security group rule.
|
30201
30203
|
#
|
30202
|
-
# * `tag
|
30204
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
30203
30205
|
# the resource. Use the tag key in the filter name and the tag value
|
30204
30206
|
# as the filter value. For example, to find all resources that have a
|
30205
30207
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -30376,7 +30378,7 @@ module Aws::EC2
|
|
30376
30378
|
# * `owner-id` - The Amazon Web Services account ID of the owner of the
|
30377
30379
|
# security group.
|
30378
30380
|
#
|
30379
|
-
# * `tag
|
30381
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
30380
30382
|
# the resource. Use the tag key in the filter name and the tag value
|
30381
30383
|
# as the filter value. For example, to find all resources that have a
|
30382
30384
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -30717,15 +30719,15 @@ module Aws::EC2
|
|
30717
30719
|
#
|
30718
30720
|
# The create volume permissions fall into the following categories:
|
30719
30721
|
#
|
30720
|
-
# * *public
|
30722
|
+
# * *public*: The owner of the snapshot granted create volume
|
30721
30723
|
# permissions for the snapshot to the `all` group. All Amazon Web
|
30722
30724
|
# Services accounts have create volume permissions for these
|
30723
30725
|
# snapshots.
|
30724
30726
|
#
|
30725
|
-
# * *explicit
|
30727
|
+
# * *explicit*: The owner of the snapshot granted create volume
|
30726
30728
|
# permissions to a specific Amazon Web Services account.
|
30727
30729
|
#
|
30728
|
-
# * *implicit
|
30730
|
+
# * *implicit*: An Amazon Web Services account has implicit create
|
30729
30731
|
# volume permissions for all snapshots it owns.
|
30730
30732
|
#
|
30731
30733
|
# The list of snapshots returned can be filtered by specifying snapshot
|
@@ -30794,7 +30796,7 @@ module Aws::EC2
|
|
30794
30796
|
# * `storage-tier` - The storage tier of the snapshot (`archive` \|
|
30795
30797
|
# `standard`).
|
30796
30798
|
#
|
30797
|
-
# * `tag
|
30799
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
30798
30800
|
# the resource. Use the tag key in the filter name and the tag value
|
30799
30801
|
# as the filter value. For example, to find all resources that have a
|
30800
30802
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -31151,7 +31153,7 @@ module Aws::EC2
|
|
31151
31153
|
#
|
31152
31154
|
# @option params [required, Time,DateTime,Date,Integer,String] :start_time
|
31153
31155
|
# The starting date and time for the events, in UTC format (for example,
|
31154
|
-
# *YYYY*-*MM*-*DD*T*HH
|
31156
|
+
# *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z).
|
31155
31157
|
#
|
31156
31158
|
# @return [Types::DescribeSpotFleetRequestHistoryResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
31157
31159
|
#
|
@@ -31925,9 +31927,9 @@ module Aws::EC2
|
|
31925
31927
|
# wildcards; greater than or less than comparison is not supported).
|
31926
31928
|
#
|
31927
31929
|
# * `timestamp` - The time stamp of the Spot price history, in UTC
|
31928
|
-
# format (for example, *YYYY*-*MM*-*DD*T*HH
|
31929
|
-
#
|
31930
|
-
#
|
31930
|
+
# format (for example, *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z). You can use
|
31931
|
+
# wildcards (* and ?). Greater than or less than comparison is not
|
31932
|
+
# supported.
|
31931
31933
|
#
|
31932
31934
|
# @option params [String] :availability_zone
|
31933
31935
|
# Filters the results by the specified Availability Zone.
|
@@ -31941,7 +31943,7 @@ module Aws::EC2
|
|
31941
31943
|
# @option params [Time,DateTime,Date,Integer,String] :end_time
|
31942
31944
|
# The date and time, up to the current date, from which to stop
|
31943
31945
|
# retrieving the price history data, in UTC format (for example,
|
31944
|
-
# *YYYY*-*MM*-*DD*T*HH
|
31946
|
+
# *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z).
|
31945
31947
|
#
|
31946
31948
|
# @option params [Array<String>] :instance_types
|
31947
31949
|
# Filters the results by the specified instance types.
|
@@ -31965,7 +31967,7 @@ module Aws::EC2
|
|
31965
31967
|
# @option params [Time,DateTime,Date,Integer,String] :start_time
|
31966
31968
|
# The date and time, up to the past 90 days, from which to start
|
31967
31969
|
# retrieving the price history data, in UTC format (for example,
|
31968
|
-
# *YYYY*-*MM*-*DD*T*HH
|
31970
|
+
# *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z).
|
31969
31971
|
#
|
31970
31972
|
# @return [Types::DescribeSpotPriceHistoryResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
31971
31973
|
#
|
@@ -32331,7 +32333,7 @@ module Aws::EC2
|
|
32331
32333
|
#
|
32332
32334
|
# * `subnet-id` - The ID of the subnet.
|
32333
32335
|
#
|
32334
|
-
# * `tag
|
32336
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
32335
32337
|
# the resource. Use the tag key in the filter name and the tag value
|
32336
32338
|
# as the filter value. For example, to find all resources that have a
|
32337
32339
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -32502,7 +32504,7 @@ module Aws::EC2
|
|
32502
32504
|
# `vpc-endpoint-service` \| `vpc-peering-connection` \|
|
32503
32505
|
# `vpn-connection` \| `vpn-gateway`).
|
32504
32506
|
#
|
32505
|
-
# * `tag
|
32507
|
+
# * `tag`:<key> - The key/value combination of the tag. For
|
32506
32508
|
# example, specify "tag:Owner" for the filter name and "TeamA" for
|
32507
32509
|
# the filter value to find resources with the tag "Owner=TeamA".
|
32508
32510
|
#
|
@@ -32609,9 +32611,9 @@ module Aws::EC2
|
|
32609
32611
|
# @option params [Array<Types::Filter>] :filters
|
32610
32612
|
# One or more filters. The possible values are:
|
32611
32613
|
#
|
32612
|
-
# * `description
|
32614
|
+
# * `description`: The Traffic Mirror filter description.
|
32613
32615
|
#
|
32614
|
-
# * `traffic-mirror-filter-id
|
32616
|
+
# * `traffic-mirror-filter-id`: The ID of the Traffic Mirror filter.
|
32615
32617
|
#
|
32616
32618
|
# @option params [Integer] :max_results
|
32617
32619
|
# The maximum number of results to return with a single call. To
|
@@ -32708,25 +32710,25 @@ module Aws::EC2
|
|
32708
32710
|
# @option params [Array<Types::Filter>] :filters
|
32709
32711
|
# One or more filters. The possible values are:
|
32710
32712
|
#
|
32711
|
-
# * `description
|
32713
|
+
# * `description`: The Traffic Mirror session description.
|
32712
32714
|
#
|
32713
|
-
# * `network-interface-id
|
32714
|
-
#
|
32715
|
+
# * `network-interface-id`: The ID of the Traffic Mirror session network
|
32716
|
+
# interface.
|
32715
32717
|
#
|
32716
|
-
# * `owner-id
|
32718
|
+
# * `owner-id`: The ID of the account that owns the Traffic Mirror
|
32717
32719
|
# session.
|
32718
32720
|
#
|
32719
|
-
# * `packet-length
|
32721
|
+
# * `packet-length`: The assigned number of packets to mirror.
|
32720
32722
|
#
|
32721
|
-
# * `session-number
|
32723
|
+
# * `session-number`: The assigned session number.
|
32722
32724
|
#
|
32723
|
-
# * `traffic-mirror-filter-id
|
32725
|
+
# * `traffic-mirror-filter-id`: The ID of the Traffic Mirror filter.
|
32724
32726
|
#
|
32725
|
-
# * `traffic-mirror-session-id
|
32727
|
+
# * `traffic-mirror-session-id`: The ID of the Traffic Mirror session.
|
32726
32728
|
#
|
32727
|
-
# * `traffic-mirror-target-id
|
32729
|
+
# * `traffic-mirror-target-id`: The ID of the Traffic Mirror target.
|
32728
32730
|
#
|
32729
|
-
# * `virtual-network-id
|
32731
|
+
# * `virtual-network-id`: The virtual network ID of the Traffic Mirror
|
32730
32732
|
# session.
|
32731
32733
|
#
|
32732
32734
|
# @option params [Integer] :max_results
|
@@ -32799,18 +32801,18 @@ module Aws::EC2
|
|
32799
32801
|
# @option params [Array<Types::Filter>] :filters
|
32800
32802
|
# One or more filters. The possible values are:
|
32801
32803
|
#
|
32802
|
-
# * `description
|
32804
|
+
# * `description`: The Traffic Mirror target description.
|
32803
32805
|
#
|
32804
|
-
# * `network-interface-id
|
32805
|
-
#
|
32806
|
+
# * `network-interface-id`: The ID of the Traffic Mirror session network
|
32807
|
+
# interface.
|
32806
32808
|
#
|
32807
|
-
# * `network-load-balancer-arn
|
32809
|
+
# * `network-load-balancer-arn`: The Amazon Resource Name (ARN) of the
|
32808
32810
|
# Network Load Balancer that is associated with the session.
|
32809
32811
|
#
|
32810
|
-
# * `owner-id
|
32812
|
+
# * `owner-id`: The ID of the account that owns the Traffic Mirror
|
32811
32813
|
# session.
|
32812
32814
|
#
|
32813
|
-
# * `traffic-mirror-target-id
|
32815
|
+
# * `traffic-mirror-target-id`: The ID of the Traffic Mirror target.
|
32814
32816
|
#
|
32815
32817
|
# @option params [Integer] :max_results
|
32816
32818
|
# The maximum number of results to return with a single call. To
|
@@ -33229,7 +33231,7 @@ module Aws::EC2
|
|
33229
33231
|
# `initiatingRequest` \| `modifying` \| `pendingAcceptance` \|
|
33230
33232
|
# `pending` \| `rollingBack` \| `rejected` \| `rejecting`).
|
33231
33233
|
#
|
33232
|
-
# * `tag
|
33234
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
33233
33235
|
# the resource. Use the tag key in the filter name and the tag value
|
33234
33236
|
# as the filter value. For example, to find all resources that have a
|
33235
33237
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -34278,7 +34280,7 @@ module Aws::EC2
|
|
34278
34280
|
# The `DescribeVolumeStatus` operation provides the following
|
34279
34281
|
# information about the specified volumes:
|
34280
34282
|
#
|
34281
|
-
# *Status
|
34283
|
+
# *Status*: Reflects the current status of the volume. The possible
|
34282
34284
|
# values are `ok`, `impaired` , `warning`, or `insufficient-data`. If
|
34283
34285
|
# all checks pass, the overall status of the volume is `ok`. If the
|
34284
34286
|
# check fails, the overall status is `impaired`. If the status is
|
@@ -34287,14 +34289,14 @@ module Aws::EC2
|
|
34287
34289
|
# more information about volume status, see [Monitor the status of your
|
34288
34290
|
# volumes][1] in the *Amazon Elastic Compute Cloud User Guide*.
|
34289
34291
|
#
|
34290
|
-
# *Events
|
34292
|
+
# *Events*: Reflect the cause of a volume status and might require you
|
34291
34293
|
# to take action. For example, if your volume returns an `impaired`
|
34292
34294
|
# status, then the volume event might be `potential-data-inconsistency`.
|
34293
34295
|
# This means that your volume has been affected by an issue with the
|
34294
34296
|
# underlying host, has all I/O operations disabled, and might have
|
34295
34297
|
# inconsistent data.
|
34296
34298
|
#
|
34297
|
-
# *Actions
|
34299
|
+
# *Actions*: Reflect the actions you might have to take in response to
|
34298
34300
|
# an event. For example, if the status of the volume is `impaired` and
|
34299
34301
|
# the volume event shows `potential-data-inconsistency`, then the action
|
34300
34302
|
# shows `enable-volume-io`. This means that you may want to enable the
|
@@ -34326,8 +34328,8 @@ module Aws::EC2
|
|
34326
34328
|
#
|
34327
34329
|
# * `event.event-id` - The event ID.
|
34328
34330
|
#
|
34329
|
-
# * `event.event-type` - The event type (for `io-enabled
|
34330
|
-
# `failed`; for `io-performance
|
34331
|
+
# * `event.event-type` - The event type (for `io-enabled`: `passed` \|
|
34332
|
+
# `failed`; for `io-performance`: `io-performance:degraded` \|
|
34331
34333
|
# `io-performance:severely-degraded` \| `io-performance:stalled`).
|
34332
34334
|
#
|
34333
34335
|
# * `event.not-after` - The latest end time for the event.
|
@@ -34338,8 +34340,8 @@ module Aws::EC2
|
|
34338
34340
|
# (`io-enabled` \| `io-performance`).
|
34339
34341
|
#
|
34340
34342
|
# * `volume-status.details-status` - The status of
|
34341
|
-
# `volume-status.details-name` (for `io-enabled
|
34342
|
-
# `failed`; for `io-performance
|
34343
|
+
# `volume-status.details-name` (for `io-enabled`: `passed` \|
|
34344
|
+
# `failed`; for `io-performance`: `normal` \| `degraded` \|
|
34343
34345
|
# `severely-degraded` \| `stalled`).
|
34344
34346
|
#
|
34345
34347
|
# * `volume-status.status` - The status of the volume (`ok` \|
|
@@ -34545,7 +34547,7 @@ module Aws::EC2
|
|
34545
34547
|
# * `status` - The state of the volume (`creating` \| `available` \|
|
34546
34548
|
# `in-use` \| `deleting` \| `deleted` \| `error`).
|
34547
34549
|
#
|
34548
|
-
# * `tag
|
34550
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
34549
34551
|
# the resource. Use the tag key in the filter name and the tag value
|
34550
34552
|
# as the filter value. For example, to find all resources that have a
|
34551
34553
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -34958,7 +34960,7 @@ module Aws::EC2
|
|
34958
34960
|
# * `is-classic-link-enabled` - Whether the VPC is enabled for
|
34959
34961
|
# ClassicLink (`true` \| `false`).
|
34960
34962
|
#
|
34961
|
-
# * `tag
|
34963
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
34962
34964
|
# the resource. Use the tag key in the filter name and the tag value
|
34963
34965
|
# as the filter value. For example, to find all resources that have a
|
34964
34966
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -35273,7 +35275,7 @@ module Aws::EC2
|
|
35273
35275
|
# * `supported-ip-address-types` - The IP address type (`ipv4` \|
|
35274
35276
|
# `ipv6`).
|
35275
35277
|
#
|
35276
|
-
# * `tag
|
35278
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
35277
35279
|
# the resource. Use the tag key in the filter name and the tag value
|
35278
35280
|
# as the filter value. For example, to find all resources that have a
|
35279
35281
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -35461,7 +35463,7 @@ module Aws::EC2
|
|
35461
35463
|
# * `supported-ip-address-types` - The IP address type (`ipv4` \|
|
35462
35464
|
# `ipv6`).
|
35463
35465
|
#
|
35464
|
-
# * `tag
|
35466
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
35465
35467
|
# the resource. Use the tag key in the filter name and the tag value
|
35466
35468
|
# as the filter value. For example, to find all resources that have a
|
35467
35469
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -35560,7 +35562,7 @@ module Aws::EC2
|
|
35560
35562
|
#
|
35561
35563
|
# * `service-name` - The name of the service.
|
35562
35564
|
#
|
35563
|
-
# * `tag
|
35565
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
35564
35566
|
# the resource. Use the tag key in the filter name and the tag value
|
35565
35567
|
# as the filter value. For example, to find all resources that have a
|
35566
35568
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -35633,6 +35635,7 @@ module Aws::EC2
|
|
35633
35635
|
# resp.vpc_endpoints[0].groups[0].group_name #=> String
|
35634
35636
|
# resp.vpc_endpoints[0].ip_address_type #=> String, one of "ipv4", "dualstack", "ipv6"
|
35635
35637
|
# resp.vpc_endpoints[0].dns_options.dns_record_ip_type #=> String, one of "ipv4", "dualstack", "ipv6", "service-defined"
|
35638
|
+
# resp.vpc_endpoints[0].dns_options.private_dns_only_for_inbound_resolver_endpoint #=> Boolean
|
35636
35639
|
# resp.vpc_endpoints[0].private_dns_enabled #=> Boolean
|
35637
35640
|
# resp.vpc_endpoints[0].requester_managed #=> Boolean
|
35638
35641
|
# resp.vpc_endpoints[0].network_interface_ids #=> Array
|
@@ -35689,7 +35692,7 @@ module Aws::EC2
|
|
35689
35692
|
# * `status-message` - A message that provides more information about
|
35690
35693
|
# the status of the VPC peering connection, if applicable.
|
35691
35694
|
#
|
35692
|
-
# * `tag
|
35695
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
35693
35696
|
# the resource. Use the tag key in the filter name and the tag value
|
35694
35697
|
# as the filter value. For example, to find all resources that have a
|
35695
35698
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -35836,7 +35839,7 @@ module Aws::EC2
|
|
35836
35839
|
#
|
35837
35840
|
# * `state` - The state of the VPC (`pending` \| `available`).
|
35838
35841
|
#
|
35839
|
-
# * `tag
|
35842
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
35840
35843
|
# the resource. Use the tag key in the filter name and the tag value
|
35841
35844
|
# as the filter value. For example, to find all resources that have a
|
35842
35845
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -35998,7 +36001,7 @@ module Aws::EC2
|
|
35998
36001
|
# * `bgp-asn` - The BGP Autonomous System Number (ASN) associated with a
|
35999
36002
|
# BGP device.
|
36000
36003
|
#
|
36001
|
-
# * `tag
|
36004
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
36002
36005
|
# the resource. Use the tag key in the filter name and the tag value
|
36003
36006
|
# as the filter value. For example, to find all resources that have a
|
36004
36007
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -36157,7 +36160,7 @@ module Aws::EC2
|
|
36157
36160
|
# * `state` - The state of the virtual private gateway (`pending` \|
|
36158
36161
|
# `available` \| `deleting` \| `deleted`).
|
36159
36162
|
#
|
36160
|
-
# * `tag
|
36163
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
36161
36164
|
# the resource. Use the tag key in the filter name and the tag value
|
36162
36165
|
# as the filter value. For example, to find all resources that have a
|
36163
36166
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -38268,7 +38271,7 @@ module Aws::EC2
|
|
38268
38271
|
#
|
38269
38272
|
# @option params [required, Time,DateTime,Date,Integer,String] :deprecate_at
|
38270
38273
|
# The date and time to deprecate the AMI, in UTC, in the following
|
38271
|
-
# format: *YYYY*-*MM*-*DD*T*HH
|
38274
|
+
# format: *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z. If you specify a value for
|
38272
38275
|
# seconds, Amazon EC2 rounds the seconds to the nearest minute.
|
38273
38276
|
#
|
38274
38277
|
# You can’t specify a date in the past. The upper limit for
|
@@ -41469,7 +41472,7 @@ module Aws::EC2
|
|
41469
41472
|
#
|
41470
41473
|
# * `subnet-id` - The ID of the subnet.
|
41471
41474
|
#
|
41472
|
-
# * `tag
|
41475
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
41473
41476
|
# the resource. Use the tag key in the filter name and the tag value
|
41474
41477
|
# as the filter value. For example, to find all resources that have a
|
41475
41478
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -42368,19 +42371,19 @@ module Aws::EC2
|
|
42368
42371
|
# followed by the Region of the key, the Amazon Web Services account
|
42369
42372
|
# ID of the key owner, the `alias` namespace, and then the key alias.
|
42370
42373
|
# For example,
|
42371
|
-
# arn:aws:kms:*us-east-1
|
42374
|
+
# arn:aws:kms:*us-east-1*:*012345678910*:alias/*ExampleAlias*.
|
42372
42375
|
#
|
42373
42376
|
# * ARN using key ID. The ID ARN contains the `arn:aws:kms` namespace,
|
42374
42377
|
# followed by the Region of the key, the Amazon Web Services account
|
42375
42378
|
# ID of the key owner, the `key` namespace, and then the key ID. For
|
42376
42379
|
# example,
|
42377
|
-
# arn:aws:kms:*us-east-1
|
42380
|
+
# arn:aws:kms:*us-east-1*:*012345678910*:key/*abcd1234-a123-456a-a12b-a123b4cd56ef*.
|
42378
42381
|
#
|
42379
42382
|
# * ARN using key alias. The alias ARN contains the `arn:aws:kms`
|
42380
42383
|
# namespace, followed by the Region of the key, the Amazon Web
|
42381
42384
|
# Services account ID of the key owner, the `alias` namespace, and
|
42382
42385
|
# then the key alias. For example,
|
42383
|
-
# arn:aws:kms:*us-east-1
|
42386
|
+
# arn:aws:kms:*us-east-1*:*012345678910*:alias/*ExampleAlias*.
|
42384
42387
|
#
|
42385
42388
|
# Amazon Web Services parses `KmsKeyId` asynchronously, meaning that the
|
42386
42389
|
# action you call may appear to complete even though you provided an
|
@@ -42809,19 +42812,19 @@ module Aws::EC2
|
|
42809
42812
|
# followed by the Region of the key, the Amazon Web Services account
|
42810
42813
|
# ID of the key owner, the `alias` namespace, and then the key alias.
|
42811
42814
|
# For example,
|
42812
|
-
# arn:aws:kms:*us-east-1
|
42815
|
+
# arn:aws:kms:*us-east-1*:*012345678910*:alias/*ExampleAlias*.
|
42813
42816
|
#
|
42814
42817
|
# * ARN using key ID. The ID ARN contains the `arn:aws:kms` namespace,
|
42815
42818
|
# followed by the Region of the key, the Amazon Web Services account
|
42816
42819
|
# ID of the key owner, the `key` namespace, and then the key ID. For
|
42817
42820
|
# example,
|
42818
|
-
# arn:aws:kms:*us-east-1
|
42821
|
+
# arn:aws:kms:*us-east-1*:*012345678910*:key/*abcd1234-a123-456a-a12b-a123b4cd56ef*.
|
42819
42822
|
#
|
42820
42823
|
# * ARN using key alias. The alias ARN contains the `arn:aws:kms`
|
42821
42824
|
# namespace, followed by the Region of the key, the Amazon Web
|
42822
42825
|
# Services account ID of the key owner, the `alias` namespace, and
|
42823
42826
|
# then the key alias. For example,
|
42824
|
-
# arn:aws:kms:*us-east-1
|
42827
|
+
# arn:aws:kms:*us-east-1*:*012345678910*:alias/*ExampleAlias*.
|
42825
42828
|
#
|
42826
42829
|
# Amazon Web Services parses `KmsKeyId` asynchronously, meaning that the
|
42827
42830
|
# action you call may appear to complete even though you provided an
|
@@ -47606,13 +47609,13 @@ module Aws::EC2
|
|
47606
47609
|
#
|
47607
47610
|
# The following are the supported volumes sizes for each volume type:
|
47608
47611
|
#
|
47609
|
-
# * `gp2` and `gp3
|
47612
|
+
# * `gp2` and `gp3`: 1-16,384
|
47610
47613
|
#
|
47611
|
-
# * `io1` and `io2
|
47614
|
+
# * `io1` and `io2`: 4-16,384
|
47612
47615
|
#
|
47613
|
-
# * `st1` and `sc1
|
47616
|
+
# * `st1` and `sc1`: 125-16,384
|
47614
47617
|
#
|
47615
|
-
# * `standard
|
47618
|
+
# * `standard`: 1-1,024
|
47616
47619
|
#
|
47617
47620
|
# Default: The existing size is retained.
|
47618
47621
|
#
|
@@ -47633,11 +47636,11 @@ module Aws::EC2
|
|
47633
47636
|
#
|
47634
47637
|
# The following are the supported values for each volume type:
|
47635
47638
|
#
|
47636
|
-
# * `gp3
|
47639
|
+
# * `gp3`: 3,000-16,000 IOPS
|
47637
47640
|
#
|
47638
|
-
# * `io1
|
47641
|
+
# * `io1`: 100-64,000 IOPS
|
47639
47642
|
#
|
47640
|
-
# * `io2
|
47643
|
+
# * `io2`: 100-64,000 IOPS
|
47641
47644
|
#
|
47642
47645
|
# Default: The existing value is retained if you keep the same volume
|
47643
47646
|
# type. If you change the volume type to `io1`, `io2`, or `gp3`, the
|
@@ -47936,6 +47939,7 @@ module Aws::EC2
|
|
47936
47939
|
# ip_address_type: "ipv4", # accepts ipv4, dualstack, ipv6
|
47937
47940
|
# dns_options: {
|
47938
47941
|
# dns_record_ip_type: "ipv4", # accepts ipv4, dualstack, ipv6, service-defined
|
47942
|
+
# private_dns_only_for_inbound_resolver_endpoint: false,
|
47939
47943
|
# },
|
47940
47944
|
# private_dns_enabled: false,
|
47941
47945
|
# })
|
@@ -49444,7 +49448,7 @@ module Aws::EC2
|
|
49444
49448
|
#
|
49445
49449
|
# @option params [Time,DateTime,Date,Integer,String] :purchase_time
|
49446
49450
|
# The time at which to purchase the Reserved Instance, in UTC format
|
49447
|
-
# (for example, *YYYY*-*MM*-*DD*T*HH
|
49451
|
+
# (for example, *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z).
|
49448
49452
|
#
|
49449
49453
|
# @return [Types::PurchaseReservedInstancesOfferingResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
49450
49454
|
#
|
@@ -51023,30 +51027,30 @@ module Aws::EC2
|
|
51023
51027
|
# @option params [required, Array<String>] :reason_codes
|
51024
51028
|
# The reason codes that describe the health state of your instance.
|
51025
51029
|
#
|
51026
|
-
# * `instance-stuck-in-state
|
51030
|
+
# * `instance-stuck-in-state`: My instance is stuck in a state.
|
51027
51031
|
#
|
51028
|
-
# * `unresponsive
|
51032
|
+
# * `unresponsive`: My instance is unresponsive.
|
51029
51033
|
#
|
51030
|
-
# * `not-accepting-credentials
|
51034
|
+
# * `not-accepting-credentials`: My instance is not accepting my
|
51031
51035
|
# credentials.
|
51032
51036
|
#
|
51033
|
-
# * `password-not-available
|
51037
|
+
# * `password-not-available`: A password is not available for my
|
51034
51038
|
# instance.
|
51035
51039
|
#
|
51036
|
-
# * `performance-network
|
51040
|
+
# * `performance-network`: My instance is experiencing performance
|
51037
51041
|
# problems that I believe are network related.
|
51038
51042
|
#
|
51039
|
-
# * `performance-instance-store
|
51043
|
+
# * `performance-instance-store`: My instance is experiencing
|
51040
51044
|
# performance problems that I believe are related to the instance
|
51041
51045
|
# stores.
|
51042
51046
|
#
|
51043
|
-
# * `performance-ebs-volume
|
51047
|
+
# * `performance-ebs-volume`: My instance is experiencing performance
|
51044
51048
|
# problems that I believe are related to an EBS volume.
|
51045
51049
|
#
|
51046
|
-
# * `performance-other
|
51050
|
+
# * `performance-other`: My instance is experiencing performance
|
51047
51051
|
# problems.
|
51048
51052
|
#
|
51049
|
-
# * `other
|
51053
|
+
# * `other`: \[explain using the description parameter\]
|
51050
51054
|
#
|
51051
51055
|
# @option params [Time,DateTime,Date,Integer,String] :start_time
|
51052
51056
|
# The time at which the reported instance health state began.
|
@@ -51686,7 +51690,7 @@ module Aws::EC2
|
|
51686
51690
|
#
|
51687
51691
|
# @option params [Time,DateTime,Date,Integer,String] :valid_until
|
51688
51692
|
# The end date of the request, in UTC format
|
51689
|
-
# (*YYYY*-*MM*-*DD*T*HH
|
51693
|
+
# (*YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z).
|
51690
51694
|
#
|
51691
51695
|
# * For a persistent request, the request remains active until the
|
51692
51696
|
# `ValidUntil` date and time is reached. Otherwise, the request
|
@@ -56108,7 +56112,7 @@ module Aws::EC2
|
|
56108
56112
|
params: params,
|
56109
56113
|
config: config)
|
56110
56114
|
context[:gem_name] = 'aws-sdk-ec2'
|
56111
|
-
context[:gem_version] = '1.
|
56115
|
+
context[:gem_version] = '1.370.0'
|
56112
56116
|
Seahorse::Client::Request.new(handlers, context)
|
56113
56117
|
end
|
56114
56118
|
|