aws-sdk-ec2 1.469.0 → 1.470.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 +61 -48
- data/lib/aws-sdk-ec2/client_api.rb +15 -0
- data/lib/aws-sdk-ec2/types.rb +86 -24
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/types.rbs +14 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 39bd34046575aa57d5faab789228e06ddb9d6cfdc7809a224ae0ff346e2bc519
|
4
|
+
data.tar.gz: a98ab574763d23253d4f68586f00161214c9bf47e9c6f02c7e40db18349a70c7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4c5c2246a54e6377f80f8d67e37f54d47449082d4532e7f2d9a7acd008e1f3109895452280ee59c5a089cd4c0b576489749ac825f4fb52d97b9b8642c1ba933e
|
7
|
+
data.tar.gz: d7fefb60386b8eaa866c3b574a80ee9d6d6c2433a2278fa1e7c5129ac8da66320f1ccd5cb5be9f9d990ff889a4b97bfd150a1097ef1f0e479bbbd3bfd36d5d1f
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.470.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -4482,36 +4482,28 @@ module Aws::EC2
|
|
4482
4482
|
req.send_request(options)
|
4483
4483
|
end
|
4484
4484
|
|
4485
|
-
# Initiates
|
4486
|
-
# another, or from a Region to an Outpost. You can't copy an AMI
|
4487
|
-
# an Outpost to a Region, from one Outpost to another, or within
|
4488
|
-
# same Outpost. To copy an AMI to another partition, see
|
4485
|
+
# Initiates an AMI copy operation. You can copy an AMI from one Region
|
4486
|
+
# to another, or from a Region to an Outpost. You can't copy an AMI
|
4487
|
+
# from an Outpost to a Region, from one Outpost to another, or within
|
4488
|
+
# the same Outpost. To copy an AMI to another partition, see
|
4489
4489
|
# [CreateStoreImageTask][1].
|
4490
4490
|
#
|
4491
|
-
#
|
4492
|
-
#
|
4493
|
-
# Region using its endpoint. Copies of encrypted backing snapshots for
|
4494
|
-
# the AMI are encrypted. Copies of unencrypted backing snapshots remain
|
4495
|
-
# unencrypted, unless you set `Encrypted` during the copy operation. You
|
4496
|
-
# cannot create an unencrypted copy of an encrypted backing snapshot.
|
4491
|
+
# When you copy an AMI from one Region to another, the destination
|
4492
|
+
# Region is the current Region.
|
4497
4493
|
#
|
4498
|
-
#
|
4499
|
-
#
|
4500
|
-
#
|
4501
|
-
#
|
4502
|
-
#
|
4503
|
-
# the request using **KmsKeyId**. Outposts do not support unencrypted
|
4504
|
-
# snapshots. For more information, [ Amazon EBS local snapshots on
|
4505
|
-
# Outposts][2] in the *Amazon EBS User Guide*.
|
4494
|
+
# When you copy an AMI from a Region to an Outpost, specify the ARN of
|
4495
|
+
# the Outpost as the destination. Backing snapshots copied to an Outpost
|
4496
|
+
# are encrypted by default using the default encryption key for the
|
4497
|
+
# Region or the key that you specify. Outposts do not support
|
4498
|
+
# unencrypted snapshots.
|
4506
4499
|
#
|
4507
|
-
# For
|
4508
|
-
# an AMI
|
4500
|
+
# For information about the prerequisites when copying an AMI, see [Copy
|
4501
|
+
# an AMI][2] in the *Amazon EC2 User Guide*.
|
4509
4502
|
#
|
4510
4503
|
#
|
4511
4504
|
#
|
4512
4505
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateStoreImageTask.html
|
4513
|
-
# [2]: https://docs.aws.amazon.com/
|
4514
|
-
# [3]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/CopyingAMIs.html
|
4506
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/CopyingAMIs.html
|
4515
4507
|
#
|
4516
4508
|
# @option params [String] :client_token
|
4517
4509
|
# Unique, case-sensitive identifier you provide to ensure idempotency of
|
@@ -4531,12 +4523,12 @@ module Aws::EC2
|
|
4531
4523
|
# you cannot create an unencrypted copy of an encrypted snapshot. The
|
4532
4524
|
# default KMS key for Amazon EBS is used unless you specify a
|
4533
4525
|
# non-default Key Management Service (KMS) KMS key using `KmsKeyId`. For
|
4534
|
-
# more information, see [
|
4535
|
-
# User Guide*.
|
4526
|
+
# more information, see [Use encryption with EBS-backed AMIs][1] in the
|
4527
|
+
# *Amazon EC2 User Guide*.
|
4536
4528
|
#
|
4537
4529
|
#
|
4538
4530
|
#
|
4539
|
-
# [1]: https://docs.aws.amazon.com/
|
4531
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/AMIEncryption.html
|
4540
4532
|
#
|
4541
4533
|
# @option params [String] :kms_key_id
|
4542
4534
|
# The identifier of the symmetric Key Management Service (KMS) KMS key
|
@@ -17739,7 +17731,7 @@ module Aws::EC2
|
|
17739
17731
|
#
|
17740
17732
|
# If you attempt to delete a security group that is associated with an
|
17741
17733
|
# instance or network interface or is referenced by another security
|
17742
|
-
# group, the operation fails with `DependencyViolation`.
|
17734
|
+
# group in the same VPC, the operation fails with `DependencyViolation`.
|
17743
17735
|
#
|
17744
17736
|
# @option params [String] :group_id
|
17745
17737
|
# The ID of the security group.
|
@@ -24923,6 +24915,10 @@ module Aws::EC2
|
|
24923
24915
|
# `impaired` \| `initializing` \| `insufficient-data` \|
|
24924
24916
|
# `not-applicable`).
|
24925
24917
|
#
|
24918
|
+
# * `attached-ebs-status.status` - The status of the attached EBS volume
|
24919
|
+
# for the instance (`ok` \| `impaired` \| `initializing` \|
|
24920
|
+
# `insufficient-data` \| `not-applicable`).
|
24921
|
+
#
|
24926
24922
|
# @option params [Array<String>] :instance_ids
|
24927
24923
|
# The instance IDs.
|
24928
24924
|
#
|
@@ -25049,6 +25045,11 @@ module Aws::EC2
|
|
25049
25045
|
# resp.instance_statuses[0].system_status.details[0].name #=> String, one of "reachability"
|
25050
25046
|
# resp.instance_statuses[0].system_status.details[0].status #=> String, one of "passed", "failed", "insufficient-data", "initializing"
|
25051
25047
|
# resp.instance_statuses[0].system_status.status #=> String, one of "ok", "impaired", "insufficient-data", "not-applicable", "initializing"
|
25048
|
+
# resp.instance_statuses[0].attached_ebs_status.details #=> Array
|
25049
|
+
# resp.instance_statuses[0].attached_ebs_status.details[0].impaired_since #=> Time
|
25050
|
+
# resp.instance_statuses[0].attached_ebs_status.details[0].name #=> String, one of "reachability"
|
25051
|
+
# resp.instance_statuses[0].attached_ebs_status.details[0].status #=> String, one of "passed", "failed", "insufficient-data", "initializing"
|
25052
|
+
# resp.instance_statuses[0].attached_ebs_status.status #=> String, one of "ok", "impaired", "insufficient-data", "not-applicable", "initializing"
|
25052
25053
|
# resp.next_token #=> String
|
25053
25054
|
#
|
25054
25055
|
#
|
@@ -34060,9 +34061,9 @@ module Aws::EC2
|
|
34060
34061
|
|
34061
34062
|
# Describes the stale security group rules for security groups in a
|
34062
34063
|
# specified VPC. Rules are stale when they reference a deleted security
|
34063
|
-
# group in
|
34064
|
-
#
|
34065
|
-
#
|
34064
|
+
# group in a peered VPC. Rules can also be stale if they reference a
|
34065
|
+
# security group in a peer VPC for which the VPC peering connection has
|
34066
|
+
# been deleted.
|
34066
34067
|
#
|
34067
34068
|
# @option params [Boolean] :dry_run
|
34068
34069
|
# Checks whether you have the required permissions for the action,
|
@@ -39308,10 +39309,15 @@ module Aws::EC2
|
|
39308
39309
|
# disable block public access for snapshots in a Region, users can
|
39309
39310
|
# publicly share snapshots in that Region.
|
39310
39311
|
#
|
39311
|
-
#
|
39312
|
-
#
|
39313
|
-
# publicly shared
|
39314
|
-
# publicly accessible
|
39312
|
+
# Enabling block public access for snapshots in *block-all-sharing* mode
|
39313
|
+
# does not change the permissions for snapshots that are already
|
39314
|
+
# publicly shared. Instead, it prevents these snapshots from be publicly
|
39315
|
+
# visible and publicly accessible. Therefore, the attributes for these
|
39316
|
+
# snapshots still indicate that they are publicly shared, even though
|
39317
|
+
# they are not publicly available.
|
39318
|
+
#
|
39319
|
+
# If you disable block public access , these snapshots will become
|
39320
|
+
# publicly available again.
|
39315
39321
|
#
|
39316
39322
|
# For more information, see [ Block public access for snapshots][1] in
|
39317
39323
|
# the *Amazon EBS User Guide* .
|
@@ -40946,10 +40952,15 @@ module Aws::EC2
|
|
40946
40952
|
# that are already publicly shared are either treated as private or they
|
40947
40953
|
# remain publicly shared, depending on the **State** that you specify.
|
40948
40954
|
#
|
40949
|
-
#
|
40950
|
-
# change the
|
40951
|
-
#
|
40952
|
-
#
|
40955
|
+
# Enabling block public access for snapshots in *block all sharing* mode
|
40956
|
+
# does not change the permissions for snapshots that are already
|
40957
|
+
# publicly shared. Instead, it prevents these snapshots from be publicly
|
40958
|
+
# visible and publicly accessible. Therefore, the attributes for these
|
40959
|
+
# snapshots still indicate that they are publicly shared, even though
|
40960
|
+
# they are not publicly available.
|
40961
|
+
#
|
40962
|
+
# If you later disable block public access or change the mode to *block
|
40963
|
+
# new sharing*, these snapshots will become publicly available again.
|
40953
40964
|
#
|
40954
40965
|
# For more information, see [ Block public access for snapshots][1] in
|
40955
40966
|
# the *Amazon EBS User Guide*.
|
@@ -40968,16 +40979,6 @@ module Aws::EC2
|
|
40968
40979
|
# publicly shared are treated as private and they are no longer
|
40969
40980
|
# publicly available.
|
40970
40981
|
#
|
40971
|
-
# <note markdown="1"> If you enable block public access for snapshots in
|
40972
|
-
# `block-all-sharing` mode, it does not change the permissions for
|
40973
|
-
# snapshots that are already publicly shared. Instead, it prevents
|
40974
|
-
# these snapshots from be publicly visible and publicly accessible.
|
40975
|
-
# Therefore, the attributes for these snapshots still indicate that
|
40976
|
-
# they are publicly shared, even though they are not publicly
|
40977
|
-
# available.
|
40978
|
-
#
|
40979
|
-
# </note>
|
40980
|
-
#
|
40981
40982
|
# * `block-new-sharing` - Prevents only new public sharing of snapshots
|
40982
40983
|
# in the Region. Users in the account will no longer be able to
|
40983
40984
|
# request new public sharing. However, snapshots that are already
|
@@ -49896,6 +49897,18 @@ module Aws::EC2
|
|
49896
49897
|
# in this subnet should return synthetic IPv6 addresses for IPv4-only
|
49897
49898
|
# destinations.
|
49898
49899
|
#
|
49900
|
+
# <note markdown="1"> You must first configure a NAT gateway in a public subnet (separate
|
49901
|
+
# from the subnet containing the IPv6-only workloads). For example, the
|
49902
|
+
# subnet containing the NAT gateway should have a `0.0.0.0/0` route
|
49903
|
+
# pointing to the internet gateway. For more information, see [Configure
|
49904
|
+
# DNS64 and NAT64][1] in the *Amazon VPC User Guide*.
|
49905
|
+
#
|
49906
|
+
# </note>
|
49907
|
+
#
|
49908
|
+
#
|
49909
|
+
#
|
49910
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-nat64-dns64.html#nat-gateway-nat64-dns64-walkthrough
|
49911
|
+
#
|
49899
49912
|
# @option params [String] :private_dns_hostname_type_on_launch
|
49900
49913
|
# The type of hostname to assign to instances in the subnet at launch.
|
49901
49914
|
# For IPv4-only and dual-stack (IPv4 and IPv6) subnets, an instance DNS
|
@@ -60090,7 +60103,7 @@ module Aws::EC2
|
|
60090
60103
|
params: params,
|
60091
60104
|
config: config)
|
60092
60105
|
context[:gem_name] = 'aws-sdk-ec2'
|
60093
|
-
context[:gem_version] = '1.
|
60106
|
+
context[:gem_version] = '1.470.0'
|
60094
60107
|
Seahorse::Client::Request.new(handlers, context)
|
60095
60108
|
end
|
60096
60109
|
|
@@ -1255,6 +1255,9 @@ module Aws::EC2
|
|
1255
1255
|
EbsNvmeSupport = Shapes::StringShape.new(name: 'EbsNvmeSupport')
|
1256
1256
|
EbsOptimizedInfo = Shapes::StructureShape.new(name: 'EbsOptimizedInfo')
|
1257
1257
|
EbsOptimizedSupport = Shapes::StringShape.new(name: 'EbsOptimizedSupport')
|
1258
|
+
EbsStatusDetails = Shapes::StructureShape.new(name: 'EbsStatusDetails')
|
1259
|
+
EbsStatusDetailsList = Shapes::ListShape.new(name: 'EbsStatusDetailsList')
|
1260
|
+
EbsStatusSummary = Shapes::StructureShape.new(name: 'EbsStatusSummary')
|
1258
1261
|
Ec2InstanceConnectEndpoint = Shapes::StructureShape.new(name: 'Ec2InstanceConnectEndpoint')
|
1259
1262
|
Ec2InstanceConnectEndpointState = Shapes::StringShape.new(name: 'Ec2InstanceConnectEndpointState')
|
1260
1263
|
EfaInfo = Shapes::StructureShape.new(name: 'EfaInfo')
|
@@ -8367,6 +8370,17 @@ module Aws::EC2
|
|
8367
8370
|
EbsOptimizedInfo.add_member(:maximum_iops, Shapes::ShapeRef.new(shape: MaximumIops, location_name: "maximumIops"))
|
8368
8371
|
EbsOptimizedInfo.struct_class = Types::EbsOptimizedInfo
|
8369
8372
|
|
8373
|
+
EbsStatusDetails.add_member(:impaired_since, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "impairedSince"))
|
8374
|
+
EbsStatusDetails.add_member(:name, Shapes::ShapeRef.new(shape: StatusName, location_name: "name"))
|
8375
|
+
EbsStatusDetails.add_member(:status, Shapes::ShapeRef.new(shape: StatusType, location_name: "status"))
|
8376
|
+
EbsStatusDetails.struct_class = Types::EbsStatusDetails
|
8377
|
+
|
8378
|
+
EbsStatusDetailsList.member = Shapes::ShapeRef.new(shape: EbsStatusDetails, location_name: "item")
|
8379
|
+
|
8380
|
+
EbsStatusSummary.add_member(:details, Shapes::ShapeRef.new(shape: EbsStatusDetailsList, location_name: "details"))
|
8381
|
+
EbsStatusSummary.add_member(:status, Shapes::ShapeRef.new(shape: SummaryStatus, location_name: "status"))
|
8382
|
+
EbsStatusSummary.struct_class = Types::EbsStatusSummary
|
8383
|
+
|
8370
8384
|
Ec2InstanceConnectEndpoint.add_member(:owner_id, Shapes::ShapeRef.new(shape: String, location_name: "ownerId"))
|
8371
8385
|
Ec2InstanceConnectEndpoint.add_member(:instance_connect_endpoint_id, Shapes::ShapeRef.new(shape: InstanceConnectEndpointId, location_name: "instanceConnectEndpointId"))
|
8372
8386
|
Ec2InstanceConnectEndpoint.add_member(:instance_connect_endpoint_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "instanceConnectEndpointArn"))
|
@@ -10376,6 +10390,7 @@ module Aws::EC2
|
|
10376
10390
|
InstanceStatus.add_member(:instance_state, Shapes::ShapeRef.new(shape: InstanceState, location_name: "instanceState"))
|
10377
10391
|
InstanceStatus.add_member(:instance_status, Shapes::ShapeRef.new(shape: InstanceStatusSummary, location_name: "instanceStatus"))
|
10378
10392
|
InstanceStatus.add_member(:system_status, Shapes::ShapeRef.new(shape: InstanceStatusSummary, location_name: "systemStatus"))
|
10393
|
+
InstanceStatus.add_member(:attached_ebs_status, Shapes::ShapeRef.new(shape: EbsStatusSummary, location_name: "attachedEbsStatus"))
|
10379
10394
|
InstanceStatus.struct_class = Types::InstanceStatus
|
10380
10395
|
|
10381
10396
|
InstanceStatusDetails.add_member(:impaired_since, Shapes::ShapeRef.new(shape: DateTime, location_name: "impairedSince"))
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -6364,12 +6364,12 @@ module Aws::EC2
|
|
6364
6364
|
# snapshot, but you cannot create an unencrypted copy of an encrypted
|
6365
6365
|
# snapshot. The default KMS key for Amazon EBS is used unless you
|
6366
6366
|
# specify a non-default Key Management Service (KMS) KMS key using
|
6367
|
-
# `KmsKeyId`. For more information, see [
|
6368
|
-
# the *Amazon
|
6367
|
+
# `KmsKeyId`. For more information, see [Use encryption with
|
6368
|
+
# EBS-backed AMIs][1] in the *Amazon EC2 User Guide*.
|
6369
6369
|
#
|
6370
6370
|
#
|
6371
6371
|
#
|
6372
|
-
# [1]: https://docs.aws.amazon.com/
|
6372
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/AMIEncryption.html
|
6373
6373
|
# @return [Boolean]
|
6374
6374
|
#
|
6375
6375
|
# @!attribute [rw] kms_key_id
|
@@ -13516,8 +13516,7 @@ module Aws::EC2
|
|
13516
13516
|
# @return [String]
|
13517
13517
|
#
|
13518
13518
|
# @!attribute [rw] metric
|
13519
|
-
# The metric
|
13520
|
-
# is aggregated for the query. This is the only supported metric.
|
13519
|
+
# The metric used for the network performance request.
|
13521
13520
|
# @return [String]
|
13522
13521
|
#
|
13523
13522
|
# @!attribute [rw] statistic
|
@@ -13561,9 +13560,7 @@ module Aws::EC2
|
|
13561
13560
|
# @return [String]
|
13562
13561
|
#
|
13563
13562
|
# @!attribute [rw] metric
|
13564
|
-
# The metric used for the network performance request.
|
13565
|
-
# `aggregate-latency` is supported, which shows network latency during
|
13566
|
-
# a specified period.
|
13563
|
+
# The metric used for the network performance request.
|
13567
13564
|
# @return [String]
|
13568
13565
|
#
|
13569
13566
|
# @!attribute [rw] statistic
|
@@ -20122,6 +20119,10 @@ module Aws::EC2
|
|
20122
20119
|
# * `system-status.status` - The system status of the instance (`ok`
|
20123
20120
|
# \| `impaired` \| `initializing` \| `insufficient-data` \|
|
20124
20121
|
# `not-applicable`).
|
20122
|
+
#
|
20123
|
+
# * `attached-ebs-status.status` - The status of the attached EBS
|
20124
|
+
# volume for the instance (`ok` \| `impaired` \| `initializing` \|
|
20125
|
+
# `insufficient-data` \| `not-applicable`).
|
20125
20126
|
# @return [Array<Types::Filter>]
|
20126
20127
|
#
|
20127
20128
|
# @!attribute [rw] instance_ids
|
@@ -30724,6 +30725,49 @@ module Aws::EC2
|
|
30724
30725
|
include Aws::Structure
|
30725
30726
|
end
|
30726
30727
|
|
30728
|
+
# Describes the attached EBS status check for an instance.
|
30729
|
+
#
|
30730
|
+
# @!attribute [rw] impaired_since
|
30731
|
+
# The date and time when the attached EBS status check failed.
|
30732
|
+
# @return [Time]
|
30733
|
+
#
|
30734
|
+
# @!attribute [rw] name
|
30735
|
+
# The name of the attached EBS status check.
|
30736
|
+
# @return [String]
|
30737
|
+
#
|
30738
|
+
# @!attribute [rw] status
|
30739
|
+
# The result of the attached EBS status check.
|
30740
|
+
# @return [String]
|
30741
|
+
#
|
30742
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EbsStatusDetails AWS API Documentation
|
30743
|
+
#
|
30744
|
+
class EbsStatusDetails < Struct.new(
|
30745
|
+
:impaired_since,
|
30746
|
+
:name,
|
30747
|
+
:status)
|
30748
|
+
SENSITIVE = []
|
30749
|
+
include Aws::Structure
|
30750
|
+
end
|
30751
|
+
|
30752
|
+
# Provides a summary of the attached EBS volume status for an instance.
|
30753
|
+
#
|
30754
|
+
# @!attribute [rw] details
|
30755
|
+
# Details about the attached EBS status check for an instance.
|
30756
|
+
# @return [Array<Types::EbsStatusDetails>]
|
30757
|
+
#
|
30758
|
+
# @!attribute [rw] status
|
30759
|
+
# The current status.
|
30760
|
+
# @return [String]
|
30761
|
+
#
|
30762
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EbsStatusSummary AWS API Documentation
|
30763
|
+
#
|
30764
|
+
class EbsStatusSummary < Struct.new(
|
30765
|
+
:details,
|
30766
|
+
:status)
|
30767
|
+
SENSITIVE = []
|
30768
|
+
include Aws::Structure
|
30769
|
+
end
|
30770
|
+
|
30727
30771
|
# The EC2 Instance Connect Endpoint.
|
30728
30772
|
#
|
30729
30773
|
# @!attribute [rw] owner_id
|
@@ -31828,16 +31872,6 @@ module Aws::EC2
|
|
31828
31872
|
# publicly shared are treated as private and they are no longer
|
31829
31873
|
# publicly available.
|
31830
31874
|
#
|
31831
|
-
# <note markdown="1"> If you enable block public access for snapshots in
|
31832
|
-
# `block-all-sharing` mode, it does not change the permissions for
|
31833
|
-
# snapshots that are already publicly shared. Instead, it prevents
|
31834
|
-
# these snapshots from be publicly visible and publicly accessible.
|
31835
|
-
# Therefore, the attributes for these snapshots still indicate that
|
31836
|
-
# they are publicly shared, even though they are not publicly
|
31837
|
-
# available.
|
31838
|
-
#
|
31839
|
-
# </note>
|
31840
|
-
#
|
31841
31875
|
# * `block-new-sharing` - Prevents only new public sharing of
|
31842
31876
|
# snapshots in the Region. Users in the account will no longer be
|
31843
31877
|
# able to request new public sharing. However, snapshots that are
|
@@ -41991,6 +42025,12 @@ module Aws::EC2
|
|
41991
42025
|
# network connectivity problems.
|
41992
42026
|
# @return [Types::InstanceStatusSummary]
|
41993
42027
|
#
|
42028
|
+
# @!attribute [rw] attached_ebs_status
|
42029
|
+
# Reports impaired functionality that stems from an attached Amazon
|
42030
|
+
# EBS volume that is unreachable and unable to complete I/O
|
42031
|
+
# operations.
|
42032
|
+
# @return [Types::EbsStatusSummary]
|
42033
|
+
#
|
41994
42034
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceStatus AWS API Documentation
|
41995
42035
|
#
|
41996
42036
|
class InstanceStatus < Struct.new(
|
@@ -42000,7 +42040,8 @@ module Aws::EC2
|
|
42000
42040
|
:instance_id,
|
42001
42041
|
:instance_state,
|
42002
42042
|
:instance_status,
|
42003
|
-
:system_status
|
42043
|
+
:system_status,
|
42044
|
+
:attached_ebs_status)
|
42004
42045
|
SENSITIVE = []
|
42005
42046
|
include Aws::Structure
|
42006
42047
|
end
|
@@ -49877,6 +49918,18 @@ module Aws::EC2
|
|
49877
49918
|
# Indicates whether DNS queries made to the Amazon-provided DNS
|
49878
49919
|
# Resolver in this subnet should return synthetic IPv6 addresses for
|
49879
49920
|
# IPv4-only destinations.
|
49921
|
+
#
|
49922
|
+
# <note markdown="1"> You must first configure a NAT gateway in a public subnet (separate
|
49923
|
+
# from the subnet containing the IPv6-only workloads). For example,
|
49924
|
+
# the subnet containing the NAT gateway should have a `0.0.0.0/0`
|
49925
|
+
# route pointing to the internet gateway. For more information, see
|
49926
|
+
# [Configure DNS64 and NAT64][1] in the *Amazon VPC User Guide*.
|
49927
|
+
#
|
49928
|
+
# </note>
|
49929
|
+
#
|
49930
|
+
#
|
49931
|
+
#
|
49932
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-nat64-dns64.html#nat-gateway-nat64-dns64-walkthrough
|
49880
49933
|
# @return [Types::AttributeBooleanValue]
|
49881
49934
|
#
|
49882
49935
|
# @!attribute [rw] private_dns_hostname_type_on_launch
|
@@ -50214,10 +50267,19 @@ module Aws::EC2
|
|
50214
50267
|
# BGP session. The range is 64512 to 65534 for 16-bit ASNs and
|
50215
50268
|
# 4200000000 to 4294967294 for 32-bit ASNs.
|
50216
50269
|
#
|
50217
|
-
# The modify ASN operation is not allowed on a transit gateway
|
50218
|
-
#
|
50219
|
-
#
|
50220
|
-
#
|
50270
|
+
# The modify ASN operation is not allowed on a transit gateway if it
|
50271
|
+
# has the following attachments:
|
50272
|
+
#
|
50273
|
+
# * Dynamic VPN
|
50274
|
+
#
|
50275
|
+
# * Static VPN
|
50276
|
+
#
|
50277
|
+
# * Direct Connect Gateway
|
50278
|
+
#
|
50279
|
+
# * Connect
|
50280
|
+
#
|
50281
|
+
# You must first delete all transit gateway attachments configured
|
50282
|
+
# prior to modifying the ASN on the transit gateway.
|
50221
50283
|
# @return [Integer]
|
50222
50284
|
#
|
50223
50285
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyTransitGatewayOptions AWS API Documentation
|
@@ -57070,7 +57132,7 @@ module Aws::EC2
|
|
57070
57132
|
# @return [Array<Types::LaunchTemplateInstanceNetworkInterfaceSpecificationRequest>]
|
57071
57133
|
#
|
57072
57134
|
# @!attribute [rw] image_id
|
57073
|
-
# The ID of the AMI in the format `ami-
|
57135
|
+
# The ID of the AMI in the format `ami-0ac394d6a3example`.
|
57074
57136
|
#
|
57075
57137
|
# Alternatively, you can specify a Systems Manager parameter, using
|
57076
57138
|
# one of the following formats. The Systems Manager parameter will
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/sig/types.rbs
CHANGED
@@ -6820,6 +6820,19 @@ module Aws::EC2
|
|
6820
6820
|
SENSITIVE: []
|
6821
6821
|
end
|
6822
6822
|
|
6823
|
+
class EbsStatusDetails
|
6824
|
+
attr_accessor impaired_since: ::Time
|
6825
|
+
attr_accessor name: ("reachability")
|
6826
|
+
attr_accessor status: ("passed" | "failed" | "insufficient-data" | "initializing")
|
6827
|
+
SENSITIVE: []
|
6828
|
+
end
|
6829
|
+
|
6830
|
+
class EbsStatusSummary
|
6831
|
+
attr_accessor details: ::Array[Types::EbsStatusDetails]
|
6832
|
+
attr_accessor status: ("ok" | "impaired" | "insufficient-data" | "not-applicable" | "initializing")
|
6833
|
+
SENSITIVE: []
|
6834
|
+
end
|
6835
|
+
|
6823
6836
|
class Ec2InstanceConnectEndpoint
|
6824
6837
|
attr_accessor owner_id: ::String
|
6825
6838
|
attr_accessor instance_connect_endpoint_id: ::String
|
@@ -9210,6 +9223,7 @@ module Aws::EC2
|
|
9210
9223
|
attr_accessor instance_state: Types::InstanceState
|
9211
9224
|
attr_accessor instance_status: Types::InstanceStatusSummary
|
9212
9225
|
attr_accessor system_status: Types::InstanceStatusSummary
|
9226
|
+
attr_accessor attached_ebs_status: Types::EbsStatusSummary
|
9213
9227
|
SENSITIVE: []
|
9214
9228
|
end
|
9215
9229
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ec2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.470.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-08-
|
11
|
+
date: 2024-08-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|