aws-sdk-ec2 1.90.0 → 1.91.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 +172 -174
- data/lib/aws-sdk-ec2/client_api.rb +3 -0
- data/lib/aws-sdk-ec2/placement_group.rb +2 -1
- data/lib/aws-sdk-ec2/resource.rb +27 -33
- data/lib/aws-sdk-ec2/snapshot.rb +18 -26
- data/lib/aws-sdk-ec2/subnet.rb +2 -1
- data/lib/aws-sdk-ec2/types.rb +100 -110
- data/lib/aws-sdk-ec2/volume.rb +4 -4
- data/lib/aws-sdk-ec2/vpc.rb +2 -1
- metadata +2 -2
@@ -7560,6 +7560,7 @@ module Aws::EC2
|
|
7560
7560
|
VpcEndpoint.add_member(:dns_entries, Shapes::ShapeRef.new(shape: DnsEntrySet, location_name: "dnsEntrySet"))
|
7561
7561
|
VpcEndpoint.add_member(:creation_timestamp, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "creationTimestamp"))
|
7562
7562
|
VpcEndpoint.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
7563
|
+
VpcEndpoint.add_member(:owner_id, Shapes::ShapeRef.new(shape: String, location_name: "ownerId"))
|
7563
7564
|
VpcEndpoint.struct_class = Types::VpcEndpoint
|
7564
7565
|
|
7565
7566
|
VpcEndpointConnection.add_member(:service_id, Shapes::ShapeRef.new(shape: String, location_name: "serviceId"))
|
@@ -7567,6 +7568,8 @@ module Aws::EC2
|
|
7567
7568
|
VpcEndpointConnection.add_member(:vpc_endpoint_owner, Shapes::ShapeRef.new(shape: String, location_name: "vpcEndpointOwner"))
|
7568
7569
|
VpcEndpointConnection.add_member(:vpc_endpoint_state, Shapes::ShapeRef.new(shape: State, location_name: "vpcEndpointState"))
|
7569
7570
|
VpcEndpointConnection.add_member(:creation_timestamp, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "creationTimestamp"))
|
7571
|
+
VpcEndpointConnection.add_member(:dns_entries, Shapes::ShapeRef.new(shape: DnsEntrySet, location_name: "dnsEntrySet"))
|
7572
|
+
VpcEndpointConnection.add_member(:network_load_balancer_arns, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "networkLoadBalancerArnSet"))
|
7570
7573
|
VpcEndpointConnection.struct_class = Types::VpcEndpointConnection
|
7571
7574
|
|
7572
7575
|
VpcEndpointConnectionSet.member = Shapes::ShapeRef.new(shape: VpcEndpointConnection, location_name: "item")
|
@@ -221,7 +221,8 @@ module Aws::EC2
|
|
221
221
|
# * `affinity` - The affinity setting for an instance running on a
|
222
222
|
# Dedicated Host (`default` \| `host`).
|
223
223
|
#
|
224
|
-
# * `architecture` - The instance architecture (`i386` \| `x86_64`
|
224
|
+
# * `architecture` - The instance architecture (`i386` \| `x86_64` \|
|
225
|
+
# `arm64`).
|
225
226
|
#
|
226
227
|
# * `availability-zone` - The Availability Zone of the instance.
|
227
228
|
#
|
data/lib/aws-sdk-ec2/resource.rb
CHANGED
@@ -879,24 +879,21 @@ module Aws::EC2
|
|
879
879
|
# @option options [required, String] :availability_zone
|
880
880
|
# The Availability Zone in which to create the volume.
|
881
881
|
# @option options [Boolean] :encrypted
|
882
|
-
# Specifies the
|
883
|
-
# setting the
|
884
|
-
#
|
885
|
-
#
|
886
|
-
#
|
887
|
-
#
|
888
|
-
#
|
889
|
-
# EBS
|
890
|
-
#
|
891
|
-
# Encrypted Amazon EBS volumes may only be attached to instances that
|
882
|
+
# Specifies whether the volume should be encrypted. The effect of
|
883
|
+
# setting the encryption state to `true` depends on the volume origin
|
884
|
+
# (new or from a snapshot), starting encryption state, ownership, and
|
885
|
+
# whether encryption by default is enabled. For more information, see
|
886
|
+
# [Encryption by Default][1] in the *Amazon Elastic Compute Cloud User
|
887
|
+
# Guide*.
|
888
|
+
#
|
889
|
+
# Encrypted Amazon EBS volumes must be attached to instances that
|
892
890
|
# support Amazon EBS encryption. For more information, see [Supported
|
893
|
-
# Instance Types][
|
891
|
+
# Instance Types][2].
|
894
892
|
#
|
895
893
|
#
|
896
894
|
#
|
897
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/
|
898
|
-
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html#
|
899
|
-
# [3]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html#EBSEncryption_supported_instances
|
895
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html#encryption-by-default
|
896
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html#EBSEncryption_supported_instances
|
900
897
|
# @option options [Integer] :iops
|
901
898
|
# The number of I/O operations per second (IOPS) to provision for the
|
902
899
|
# volume, with a maximum ratio of 50 IOPS/GiB. Range is 100 to 64,000
|
@@ -912,31 +909,26 @@ module Aws::EC2
|
|
912
909
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html#ec2-nitro-instances
|
913
910
|
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html
|
914
911
|
# @option options [String] :kms_key_id
|
915
|
-
#
|
916
|
-
# master key (CMK) to use
|
917
|
-
#
|
918
|
-
# is
|
919
|
-
# `KmsKeyId` is specified, the `Encrypted` flag must also be set.
|
912
|
+
# The identifier of the AWS Key Management Service (AWS KMS) customer
|
913
|
+
# master key (CMK) to use for Amazon EBS encryption. If this parameter
|
914
|
+
# is not specified, your AWS managed CMK for EBS is used. If `KmsKeyId`
|
915
|
+
# is specified, the encrypted state must be `true`.
|
920
916
|
#
|
921
|
-
#
|
917
|
+
# You can specify the CMK using any of the following:
|
922
918
|
#
|
923
|
-
# * Key ID
|
919
|
+
# * Key ID. For example, key/1234abcd-12ab-34cd-56ef-1234567890ab.
|
924
920
|
#
|
925
|
-
# * Key alias
|
921
|
+
# * Key alias. For example, alias/ExampleAlias.
|
926
922
|
#
|
927
|
-
# * Key ARN
|
928
|
-
# by the Region of the CMK, the AWS account ID of the CMK owner, the
|
929
|
-
# `key` namespace, and then the CMK ID. For example,
|
923
|
+
# * Key ARN. For example,
|
930
924
|
# arn:aws:kms:*us-east-1*\:*012345678910*\:key/*abcd1234-a123-456a-a12b-a123b4cd56ef*.
|
931
925
|
#
|
932
|
-
# * Alias ARN
|
933
|
-
# followed by the Region of the CMK, the AWS account ID of the CMK
|
934
|
-
# owner, the `alias` namespace, and then the CMK alias. For example,
|
926
|
+
# * Alias ARN. For example,
|
935
927
|
# arn:aws:kms:*us-east-1*\:*012345678910*\:alias/*ExampleAlias*.
|
936
928
|
#
|
937
|
-
# AWS authenticates
|
938
|
-
#
|
939
|
-
#
|
929
|
+
# AWS authenticates the CMK asynchronously. Therefore, if you specify an
|
930
|
+
# ID, alias, or ARN that is not valid, the action can appear to
|
931
|
+
# complete, but eventually fails.
|
940
932
|
# @option options [Integer] :size
|
941
933
|
# The size of the volume, in GiBs.
|
942
934
|
#
|
@@ -1397,7 +1389,8 @@ module Aws::EC2
|
|
1397
1389
|
# @option options [Array<Types::Filter>] :filters
|
1398
1390
|
# The filters.
|
1399
1391
|
#
|
1400
|
-
# * `architecture` - The image architecture (`i386` \| `x86_64`
|
1392
|
+
# * `architecture` - The image architecture (`i386` \| `x86_64` \|
|
1393
|
+
# `arm64`).
|
1401
1394
|
#
|
1402
1395
|
# * `block-device-mapping.delete-on-termination` - A Boolean value that
|
1403
1396
|
# indicates whether the Amazon EBS volume is deleted on instance
|
@@ -1543,7 +1536,8 @@ module Aws::EC2
|
|
1543
1536
|
# * `affinity` - The affinity setting for an instance running on a
|
1544
1537
|
# Dedicated Host (`default` \| `host`).
|
1545
1538
|
#
|
1546
|
-
# * `architecture` - The instance architecture (`i386` \| `x86_64`
|
1539
|
+
# * `architecture` - The instance architecture (`i386` \| `x86_64` \|
|
1540
|
+
# `arm64`).
|
1547
1541
|
#
|
1548
1542
|
# * `availability-zone` - The Availability Zone of the instance.
|
1549
1543
|
#
|
data/lib/aws-sdk-ec2/snapshot.rb
CHANGED
@@ -37,7 +37,7 @@ module Aws::EC2
|
|
37
37
|
# encryption keys are inherited by volumes created from snapshots, and
|
38
38
|
# vice versa, if snapshots share the same data encryption key
|
39
39
|
# identifier, then they belong to the same volume/snapshot lineage. This
|
40
|
-
# parameter is only returned by
|
40
|
+
# parameter is only returned by DescribeSnapshots.
|
41
41
|
# @return [String]
|
42
42
|
def data_encryption_key_id
|
43
43
|
data[:data_encryption_key_id]
|
@@ -55,9 +55,9 @@ module Aws::EC2
|
|
55
55
|
data[:encrypted]
|
56
56
|
end
|
57
57
|
|
58
|
-
# The
|
59
|
-
# master key (CMK) that was used to protect the volume
|
60
|
-
# for the parent volume.
|
58
|
+
# The Amazon Resource Name (ARN) of the AWS Key Management Service (AWS
|
59
|
+
# KMS) customer master key (CMK) that was used to protect the volume
|
60
|
+
# encryption key for the parent volume.
|
61
61
|
# @return [String]
|
62
62
|
def kms_key_id
|
63
63
|
data[:kms_key_id]
|
@@ -91,8 +91,7 @@ module Aws::EC2
|
|
91
91
|
# snapshot copy operation fails (for example, if the proper AWS Key
|
92
92
|
# Management Service (AWS KMS) permissions are not obtained) this field
|
93
93
|
# displays error state details to help you diagnose why the error
|
94
|
-
# occurred. This parameter is only returned by
|
95
|
-
# operation.
|
94
|
+
# occurred. This parameter is only returned by DescribeSnapshots.
|
96
95
|
# @return [String]
|
97
96
|
def state_message
|
98
97
|
data[:state_message]
|
@@ -304,9 +303,7 @@ module Aws::EC2
|
|
304
303
|
# @option options [Boolean] :encrypted
|
305
304
|
# Specifies whether the destination snapshot should be encrypted. You
|
306
305
|
# can encrypt a copy of an unencrypted snapshot, but you cannot use it
|
307
|
-
# to create an unencrypted copy of an encrypted snapshot.
|
308
|
-
# CMK for EBS is used unless you specify a non-default AWS Key
|
309
|
-
# Management Service (AWS KMS) CMK using `KmsKeyId`. For more
|
306
|
+
# to create an unencrypted copy of an encrypted snapshot. For more
|
310
307
|
# information, see [Amazon EBS Encryption][1] in the *Amazon Elastic
|
311
308
|
# Compute Cloud User Guide*.
|
312
309
|
#
|
@@ -314,31 +311,26 @@ module Aws::EC2
|
|
314
311
|
#
|
315
312
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html
|
316
313
|
# @option options [String] :kms_key_id
|
317
|
-
#
|
318
|
-
# master key (CMK) to use
|
319
|
-
#
|
320
|
-
# is
|
321
|
-
# `KmsKeyId` is specified, the `Encrypted` flag must also be set.
|
314
|
+
# The identifier of the AWS Key Management Service (AWS KMS) customer
|
315
|
+
# master key (CMK) to use for Amazon EBS encryption. If this parameter
|
316
|
+
# is not specified, your AWS managed CMK for EBS is used. If `KmsKeyId`
|
317
|
+
# is specified, the encrypted state must be `true`.
|
322
318
|
#
|
323
|
-
#
|
319
|
+
# You can specify the CMK using any of the following:
|
324
320
|
#
|
325
|
-
# * Key ID
|
321
|
+
# * Key ID. For example, key/1234abcd-12ab-34cd-56ef-1234567890ab.
|
326
322
|
#
|
327
|
-
# * Key alias
|
323
|
+
# * Key alias. For example, alias/ExampleAlias.
|
328
324
|
#
|
329
|
-
# * Key ARN
|
330
|
-
# by the Region of the CMK, the AWS account ID of the CMK owner, the
|
331
|
-
# `key` namespace, and then the CMK ID. For example,
|
325
|
+
# * Key ARN. For example,
|
332
326
|
# arn:aws:kms:*us-east-1*\:*012345678910*\:key/*abcd1234-a123-456a-a12b-a123b4cd56ef*.
|
333
327
|
#
|
334
|
-
# * Alias ARN
|
335
|
-
# followed by the Region of the CMK, the AWS account ID of the CMK
|
336
|
-
# owner, the `alias` namespace, and then the CMK alias. For example,
|
328
|
+
# * Alias ARN. For example,
|
337
329
|
# arn:aws:kms:*us-east-1*\:*012345678910*\:alias/*ExampleAlias*.
|
338
330
|
#
|
339
|
-
# AWS authenticates
|
340
|
-
#
|
341
|
-
#
|
331
|
+
# AWS authenticates the CMK asynchronously. Therefore, if you specify an
|
332
|
+
# ID, alias, or ARN that is not valid, the action can appear to
|
333
|
+
# complete, but eventually fails.
|
342
334
|
# @option options [String] :presigned_url
|
343
335
|
# When you copy an encrypted source snapshot using the Amazon EC2 Query
|
344
336
|
# API, you must supply a pre-signed URL. This parameter is optional for
|
data/lib/aws-sdk-ec2/subnet.rb
CHANGED
@@ -831,7 +831,8 @@ module Aws::EC2
|
|
831
831
|
# * `affinity` - The affinity setting for an instance running on a
|
832
832
|
# Dedicated Host (`default` \| `host`).
|
833
833
|
#
|
834
|
-
# * `architecture` - The instance architecture (`i386` \| `x86_64`
|
834
|
+
# * `architecture` - The instance architecture (`i386` \| `x86_64` \|
|
835
|
+
# `arm64`).
|
835
836
|
#
|
836
837
|
# * `availability-zone` - The Availability Zone of the instance.
|
837
838
|
#
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -3798,9 +3798,7 @@ module Aws::EC2
|
|
3798
3798
|
# @!attribute [rw] encrypted
|
3799
3799
|
# Specifies whether the destination snapshot should be encrypted. You
|
3800
3800
|
# can encrypt a copy of an unencrypted snapshot, but you cannot use it
|
3801
|
-
# to create an unencrypted copy of an encrypted snapshot.
|
3802
|
-
# CMK for EBS is used unless you specify a non-default AWS Key
|
3803
|
-
# Management Service (AWS KMS) CMK using `KmsKeyId`. For more
|
3801
|
+
# to create an unencrypted copy of an encrypted snapshot. For more
|
3804
3802
|
# information, see [Amazon EBS Encryption][1] in the *Amazon Elastic
|
3805
3803
|
# Compute Cloud User Guide*.
|
3806
3804
|
#
|
@@ -3810,32 +3808,26 @@ module Aws::EC2
|
|
3810
3808
|
# @return [Boolean]
|
3811
3809
|
#
|
3812
3810
|
# @!attribute [rw] kms_key_id
|
3813
|
-
#
|
3814
|
-
# master key (CMK) to use
|
3815
|
-
#
|
3816
|
-
#
|
3817
|
-
# used. If a `KmsKeyId` is specified, the `Encrypted` flag must also
|
3818
|
-
# be set.
|
3811
|
+
# The identifier of the AWS Key Management Service (AWS KMS) customer
|
3812
|
+
# master key (CMK) to use for Amazon EBS encryption. If this parameter
|
3813
|
+
# is not specified, your AWS managed CMK for EBS is used. If
|
3814
|
+
# `KmsKeyId` is specified, the encrypted state must be `true`.
|
3819
3815
|
#
|
3820
|
-
#
|
3816
|
+
# You can specify the CMK using any of the following:
|
3821
3817
|
#
|
3822
|
-
# * Key ID
|
3818
|
+
# * Key ID. For example, key/1234abcd-12ab-34cd-56ef-1234567890ab.
|
3823
3819
|
#
|
3824
|
-
# * Key alias
|
3820
|
+
# * Key alias. For example, alias/ExampleAlias.
|
3825
3821
|
#
|
3826
|
-
# * Key ARN
|
3827
|
-
# followed by the Region of the CMK, the AWS account ID of the CMK
|
3828
|
-
# owner, the `key` namespace, and then the CMK ID. For example,
|
3822
|
+
# * Key ARN. For example,
|
3829
3823
|
# arn:aws:kms:*us-east-1*\:*012345678910*\:key/*abcd1234-a123-456a-a12b-a123b4cd56ef*.
|
3830
3824
|
#
|
3831
|
-
# * Alias ARN
|
3832
|
-
# followed by the Region of the CMK, the AWS account ID of the CMK
|
3833
|
-
# owner, the `alias` namespace, and then the CMK alias. For example,
|
3825
|
+
# * Alias ARN. For example,
|
3834
3826
|
# arn:aws:kms:*us-east-1*\:*012345678910*\:alias/*ExampleAlias*.
|
3835
3827
|
#
|
3836
|
-
# AWS authenticates
|
3837
|
-
#
|
3838
|
-
#
|
3828
|
+
# AWS authenticates the CMK asynchronously. Therefore, if you specify
|
3829
|
+
# an ID, alias, or ARN that is not valid, the action can appear to
|
3830
|
+
# complete, but eventually fails.
|
3839
3831
|
# @return [String]
|
3840
3832
|
#
|
3841
3833
|
# @!attribute [rw] presigned_url
|
@@ -7049,24 +7041,21 @@ module Aws::EC2
|
|
7049
7041
|
# @return [String]
|
7050
7042
|
#
|
7051
7043
|
# @!attribute [rw] encrypted
|
7052
|
-
# Specifies the
|
7053
|
-
# setting the
|
7054
|
-
#
|
7055
|
-
#
|
7056
|
-
#
|
7057
|
-
#
|
7058
|
-
#
|
7059
|
-
#
|
7060
|
-
#
|
7061
|
-
# Encrypted Amazon EBS volumes may only be attached to instances that
|
7044
|
+
# Specifies whether the volume should be encrypted. The effect of
|
7045
|
+
# setting the encryption state to `true` depends on the volume origin
|
7046
|
+
# (new or from a snapshot), starting encryption state, ownership, and
|
7047
|
+
# whether encryption by default is enabled. For more information, see
|
7048
|
+
# [Encryption by Default][1] in the *Amazon Elastic Compute Cloud User
|
7049
|
+
# Guide*.
|
7050
|
+
#
|
7051
|
+
# Encrypted Amazon EBS volumes must be attached to instances that
|
7062
7052
|
# support Amazon EBS encryption. For more information, see [Supported
|
7063
|
-
# Instance Types][
|
7053
|
+
# Instance Types][2].
|
7064
7054
|
#
|
7065
7055
|
#
|
7066
7056
|
#
|
7067
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/
|
7068
|
-
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html#
|
7069
|
-
# [3]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html#EBSEncryption_supported_instances
|
7057
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html#encryption-by-default
|
7058
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html#EBSEncryption_supported_instances
|
7070
7059
|
# @return [Boolean]
|
7071
7060
|
#
|
7072
7061
|
# @!attribute [rw] iops
|
@@ -7087,32 +7076,26 @@ module Aws::EC2
|
|
7087
7076
|
# @return [Integer]
|
7088
7077
|
#
|
7089
7078
|
# @!attribute [rw] kms_key_id
|
7090
|
-
#
|
7091
|
-
# master key (CMK) to use
|
7092
|
-
#
|
7093
|
-
#
|
7094
|
-
# used. If a `KmsKeyId` is specified, the `Encrypted` flag must also
|
7095
|
-
# be set.
|
7079
|
+
# The identifier of the AWS Key Management Service (AWS KMS) customer
|
7080
|
+
# master key (CMK) to use for Amazon EBS encryption. If this parameter
|
7081
|
+
# is not specified, your AWS managed CMK for EBS is used. If
|
7082
|
+
# `KmsKeyId` is specified, the encrypted state must be `true`.
|
7096
7083
|
#
|
7097
|
-
#
|
7084
|
+
# You can specify the CMK using any of the following:
|
7098
7085
|
#
|
7099
|
-
# * Key ID
|
7086
|
+
# * Key ID. For example, key/1234abcd-12ab-34cd-56ef-1234567890ab.
|
7100
7087
|
#
|
7101
|
-
# * Key alias
|
7088
|
+
# * Key alias. For example, alias/ExampleAlias.
|
7102
7089
|
#
|
7103
|
-
# * Key ARN
|
7104
|
-
# followed by the Region of the CMK, the AWS account ID of the CMK
|
7105
|
-
# owner, the `key` namespace, and then the CMK ID. For example,
|
7090
|
+
# * Key ARN. For example,
|
7106
7091
|
# arn:aws:kms:*us-east-1*\:*012345678910*\:key/*abcd1234-a123-456a-a12b-a123b4cd56ef*.
|
7107
7092
|
#
|
7108
|
-
# * Alias ARN
|
7109
|
-
# followed by the Region of the CMK, the AWS account ID of the CMK
|
7110
|
-
# owner, the `alias` namespace, and then the CMK alias. For example,
|
7093
|
+
# * Alias ARN. For example,
|
7111
7094
|
# arn:aws:kms:*us-east-1*\:*012345678910*\:alias/*ExampleAlias*.
|
7112
7095
|
#
|
7113
|
-
# AWS authenticates
|
7114
|
-
#
|
7115
|
-
#
|
7096
|
+
# AWS authenticates the CMK asynchronously. Therefore, if you specify
|
7097
|
+
# an ID, alias, or ARN that is not valid, the action can appear to
|
7098
|
+
# complete, but eventually fails.
|
7116
7099
|
# @return [String]
|
7117
7100
|
#
|
7118
7101
|
# @!attribute [rw] size
|
@@ -11660,7 +11643,8 @@ module Aws::EC2
|
|
11660
11643
|
# @!attribute [rw] filters
|
11661
11644
|
# The filters.
|
11662
11645
|
#
|
11663
|
-
# * `architecture` - The image architecture (`i386` \| `x86_64`
|
11646
|
+
# * `architecture` - The image architecture (`i386` \| `x86_64` \|
|
11647
|
+
# `arm64`).
|
11664
11648
|
#
|
11665
11649
|
# * `block-device-mapping.delete-on-termination` - A Boolean value
|
11666
11650
|
# that indicates whether the Amazon EBS volume is deleted on
|
@@ -12209,7 +12193,8 @@ module Aws::EC2
|
|
12209
12193
|
# * `affinity` - The affinity setting for an instance running on a
|
12210
12194
|
# Dedicated Host (`default` \| `host`).
|
12211
12195
|
#
|
12212
|
-
# * `architecture` - The instance architecture (`i386` \| `x86_64`
|
12196
|
+
# * `architecture` - The instance architecture (`i386` \| `x86_64` \|
|
12197
|
+
# `arm64`).
|
12213
12198
|
#
|
12214
12199
|
# * `availability-zone` - The Availability Zone of the instance.
|
12215
12200
|
#
|
@@ -17982,7 +17967,7 @@ module Aws::EC2
|
|
17982
17967
|
end
|
17983
17968
|
|
17984
17969
|
# @!attribute [rw] ebs_encryption_by_default
|
17985
|
-
#
|
17970
|
+
# The updated status of encryption by default.
|
17986
17971
|
# @return [Boolean]
|
17987
17972
|
#
|
17988
17973
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisableEbsEncryptionByDefaultResult AWS API Documentation
|
@@ -18964,7 +18949,7 @@ module Aws::EC2
|
|
18964
18949
|
end
|
18965
18950
|
|
18966
18951
|
# @!attribute [rw] ebs_encryption_by_default
|
18967
|
-
#
|
18952
|
+
# The updated status of encryption by default.
|
18968
18953
|
# @return [Boolean]
|
18969
18954
|
#
|
18970
18955
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableEbsEncryptionByDefaultResult AWS API Documentation
|
@@ -19452,7 +19437,7 @@ module Aws::EC2
|
|
19452
19437
|
# @!attribute [rw] filters
|
19453
19438
|
# One or more filters. The possible values are:
|
19454
19439
|
#
|
19455
|
-
# * `attachment.transit-gateway-attachment-id
|
19440
|
+
# * `attachment.transit-gateway-attachment-id` - The id of the transit
|
19456
19441
|
# gateway attachment.
|
19457
19442
|
#
|
19458
19443
|
# * `attachment.resource-id` - The resource id of the transit gateway
|
@@ -19479,7 +19464,7 @@ module Aws::EC2
|
|
19479
19464
|
#
|
19480
19465
|
# * `transit-gateway-route-destination-cidr-block` - The CIDR range.
|
19481
19466
|
#
|
19482
|
-
# * `type` - The type of
|
19467
|
+
# * `type` - The type of route (`active` \| `blackhole`).
|
19483
19468
|
# @return [Array<Types::Filter>]
|
19484
19469
|
#
|
19485
19470
|
# @!attribute [rw] s3_bucket
|
@@ -19956,7 +19941,8 @@ module Aws::EC2
|
|
19956
19941
|
# @return [String]
|
19957
19942
|
#
|
19958
19943
|
# @!attribute [rw] version
|
19959
|
-
# The version number of the launch template.
|
19944
|
+
# The version number of the launch template. Note: This is a required
|
19945
|
+
# parameter and will be updated soon.
|
19960
19946
|
# @return [String]
|
19961
19947
|
#
|
19962
19948
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FleetLaunchTemplateSpecificationRequest AWS API Documentation
|
@@ -20318,9 +20304,8 @@ module Aws::EC2
|
|
20318
20304
|
end
|
20319
20305
|
|
20320
20306
|
# @!attribute [rw] kms_key_id
|
20321
|
-
# The
|
20322
|
-
#
|
20323
|
-
# volume.
|
20307
|
+
# The Amazon Resource Name (ARN) of the default CMK for encryption by
|
20308
|
+
# default.
|
20324
20309
|
# @return [String]
|
20325
20310
|
#
|
20326
20311
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetEbsDefaultKmsKeyIdResult AWS API Documentation
|
@@ -20352,8 +20337,7 @@ module Aws::EC2
|
|
20352
20337
|
end
|
20353
20338
|
|
20354
20339
|
# @!attribute [rw] ebs_encryption_by_default
|
20355
|
-
# Indicates whether
|
20356
|
-
# disabled.
|
20340
|
+
# Indicates whether encryption by default is enabled.
|
20357
20341
|
# @return [Boolean]
|
20358
20342
|
#
|
20359
20343
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetEbsEncryptionByDefaultResult AWS API Documentation
|
@@ -21687,7 +21671,7 @@ module Aws::EC2
|
|
21687
21671
|
# @!attribute [rw] architecture
|
21688
21672
|
# The architecture of the virtual machine.
|
21689
21673
|
#
|
21690
|
-
# Valid values: `i386` \| `x86_64`
|
21674
|
+
# Valid values: `i386` \| `x86_64` \| `arm64`
|
21691
21675
|
# @return [String]
|
21692
21676
|
#
|
21693
21677
|
# @!attribute [rw] client_data
|
@@ -21900,7 +21884,7 @@ module Aws::EC2
|
|
21900
21884
|
# @!attribute [rw] architecture
|
21901
21885
|
# The architecture of the virtual machine.
|
21902
21886
|
#
|
21903
|
-
# Valid values: `i386` \| `x86_64`
|
21887
|
+
# Valid values: `i386` \| `x86_64` \| `arm64`
|
21904
21888
|
# @return [String]
|
21905
21889
|
#
|
21906
21890
|
# @!attribute [rw] description
|
@@ -25714,32 +25698,26 @@ module Aws::EC2
|
|
25714
25698
|
# }
|
25715
25699
|
#
|
25716
25700
|
# @!attribute [rw] kms_key_id
|
25717
|
-
#
|
25718
|
-
# master key (CMK) to use
|
25719
|
-
#
|
25720
|
-
#
|
25721
|
-
# used. If a `KmsKeyId` is specified, the `Encrypted` flag must also
|
25722
|
-
# be set.
|
25701
|
+
# The identifier of the AWS Key Management Service (AWS KMS) customer
|
25702
|
+
# master key (CMK) to use for Amazon EBS encryption. If this parameter
|
25703
|
+
# is not specified, your AWS managed CMK for EBS is used. If
|
25704
|
+
# `KmsKeyId` is specified, the encrypted state must be `true`.
|
25723
25705
|
#
|
25724
|
-
#
|
25706
|
+
# You can specify the CMK using any of the following:
|
25725
25707
|
#
|
25726
|
-
# * Key ID
|
25708
|
+
# * Key ID. For example, key/1234abcd-12ab-34cd-56ef-1234567890ab.
|
25727
25709
|
#
|
25728
|
-
# * Key alias
|
25710
|
+
# * Key alias. For example, alias/ExampleAlias.
|
25729
25711
|
#
|
25730
|
-
# * Key ARN
|
25731
|
-
# followed by the Region of the CMK, the AWS account ID of the CMK
|
25732
|
-
# owner, the `key` namespace, and then the CMK ID. For example,
|
25712
|
+
# * Key ARN. For example,
|
25733
25713
|
# arn:aws:kms:*us-east-1*\:*012345678910*\:key/*abcd1234-a123-456a-a12b-a123b4cd56ef*.
|
25734
25714
|
#
|
25735
|
-
# * Alias ARN
|
25736
|
-
# followed by the Region of the CMK, the AWS account ID of the CMK
|
25737
|
-
# owner, the `alias` namespace, and then the CMK alias. For example,
|
25715
|
+
# * Alias ARN. For example,
|
25738
25716
|
# arn:aws:kms:*us-east-1*\:*012345678910*\:alias/*ExampleAlias*.
|
25739
25717
|
#
|
25740
|
-
# AWS authenticates
|
25741
|
-
#
|
25742
|
-
#
|
25718
|
+
# AWS authenticates the CMK asynchronously. Therefore, if you specify
|
25719
|
+
# an ID, alias, or ARN that is not valid, the action can appear to
|
25720
|
+
# complete, but eventually fails.
|
25743
25721
|
# @return [String]
|
25744
25722
|
#
|
25745
25723
|
# @!attribute [rw] dry_run
|
@@ -25758,9 +25736,8 @@ module Aws::EC2
|
|
25758
25736
|
end
|
25759
25737
|
|
25760
25738
|
# @!attribute [rw] kms_key_id
|
25761
|
-
# The
|
25762
|
-
#
|
25763
|
-
# volume.
|
25739
|
+
# The Amazon Resource Name (ARN) of the default CMK for encryption by
|
25740
|
+
# default.
|
25764
25741
|
# @return [String]
|
25765
25742
|
#
|
25766
25743
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyEbsDefaultKmsKeyIdResult AWS API Documentation
|
@@ -31677,9 +31654,8 @@ module Aws::EC2
|
|
31677
31654
|
end
|
31678
31655
|
|
31679
31656
|
# @!attribute [rw] kms_key_id
|
31680
|
-
# The
|
31681
|
-
#
|
31682
|
-
# volume.
|
31657
|
+
# The Amazon Resource Name (ARN) of the default CMK for EBS encryption
|
31658
|
+
# by default.
|
31683
31659
|
# @return [String]
|
31684
31660
|
#
|
31685
31661
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ResetEbsDefaultKmsKeyIdResult AWS API Documentation
|
@@ -34086,11 +34062,9 @@ module Aws::EC2
|
|
34086
34062
|
# supernet-of-match as 10.0.1.0/30, then the result returns
|
34087
34063
|
# 10.0.1.0/29.
|
34088
34064
|
#
|
34089
|
-
# * `state` - The state of the
|
34090
|
-
# `deleting` \| `failed` \| `modifying` \| `pendingAcceptance` \|
|
34091
|
-
# `pending` \| `rollingBack` \| `rejected` \| `rejecting`).
|
34065
|
+
# * `state` - The state of the route (`active` \| `blackhole`).
|
34092
34066
|
#
|
34093
|
-
# * `type` - The type of roue (`
|
34067
|
+
# * `type` - The type of roue (`propagated` \| `static`).
|
34094
34068
|
# @return [Array<Types::Filter>]
|
34095
34069
|
#
|
34096
34070
|
# @!attribute [rw] max_results
|
@@ -34434,8 +34408,8 @@ module Aws::EC2
|
|
34434
34408
|
# data encryption keys are inherited by volumes created from
|
34435
34409
|
# snapshots, and vice versa, if snapshots share the same data
|
34436
34410
|
# encryption key identifier, then they belong to the same
|
34437
|
-
# volume/snapshot lineage. This parameter is only returned by
|
34438
|
-
# DescribeSnapshots
|
34411
|
+
# volume/snapshot lineage. This parameter is only returned by
|
34412
|
+
# DescribeSnapshots.
|
34439
34413
|
# @return [String]
|
34440
34414
|
#
|
34441
34415
|
# @!attribute [rw] description
|
@@ -34447,9 +34421,9 @@ module Aws::EC2
|
|
34447
34421
|
# @return [Boolean]
|
34448
34422
|
#
|
34449
34423
|
# @!attribute [rw] kms_key_id
|
34450
|
-
# The
|
34451
|
-
# master key (CMK) that was used to protect the
|
34452
|
-
# for the parent volume.
|
34424
|
+
# The Amazon Resource Name (ARN) of the AWS Key Management Service
|
34425
|
+
# (AWS KMS) customer master key (CMK) that was used to protect the
|
34426
|
+
# volume encryption key for the parent volume.
|
34453
34427
|
# @return [String]
|
34454
34428
|
#
|
34455
34429
|
# @!attribute [rw] owner_id
|
@@ -34478,8 +34452,8 @@ module Aws::EC2
|
|
34478
34452
|
# snapshot copy operation fails (for example, if the proper AWS Key
|
34479
34453
|
# Management Service (AWS KMS) permissions are not obtained) this
|
34480
34454
|
# field displays error state details to help you diagnose why the
|
34481
|
-
# error occurred. This parameter is only returned by
|
34482
|
-
# DescribeSnapshots
|
34455
|
+
# error occurred. This parameter is only returned by
|
34456
|
+
# DescribeSnapshots.
|
34483
34457
|
# @return [String]
|
34484
34458
|
#
|
34485
34459
|
# @!attribute [rw] volume_id
|
@@ -34625,7 +34599,7 @@ module Aws::EC2
|
|
34625
34599
|
include Aws::Structure
|
34626
34600
|
end
|
34627
34601
|
|
34628
|
-
#
|
34602
|
+
# Information about a snapshot.
|
34629
34603
|
#
|
34630
34604
|
# @!attribute [rw] description
|
34631
34605
|
# Description specified by the CreateSnapshotRequest that has been
|
@@ -34637,7 +34611,7 @@ module Aws::EC2
|
|
34637
34611
|
# @return [Array<Types::Tag>]
|
34638
34612
|
#
|
34639
34613
|
# @!attribute [rw] encrypted
|
34640
|
-
#
|
34614
|
+
# Indicates whether the snapshot is encrypted.
|
34641
34615
|
# @return [Boolean]
|
34642
34616
|
#
|
34643
34617
|
# @!attribute [rw] volume_id
|
@@ -37818,13 +37792,13 @@ module Aws::EC2
|
|
37818
37792
|
# @return [Time]
|
37819
37793
|
#
|
37820
37794
|
# @!attribute [rw] encrypted
|
37821
|
-
# Indicates whether the volume
|
37795
|
+
# Indicates whether the volume is encrypted.
|
37822
37796
|
# @return [Boolean]
|
37823
37797
|
#
|
37824
37798
|
# @!attribute [rw] kms_key_id
|
37825
|
-
# The
|
37826
|
-
# master key (CMK) that was used to protect the
|
37827
|
-
# for the volume.
|
37799
|
+
# The Amazon Resource Name (ARN) of the AWS Key Management Service
|
37800
|
+
# (AWS KMS) customer master key (CMK) that was used to protect the
|
37801
|
+
# volume encryption key for the volume.
|
37828
37802
|
# @return [String]
|
37829
37803
|
#
|
37830
37804
|
# @!attribute [rw] size
|
@@ -38363,6 +38337,10 @@ module Aws::EC2
|
|
38363
38337
|
# Any tags assigned to the VPC endpoint.
|
38364
38338
|
# @return [Array<Types::Tag>]
|
38365
38339
|
#
|
38340
|
+
# @!attribute [rw] owner_id
|
38341
|
+
# The ID of the AWS account that owns the VPC endpoint.
|
38342
|
+
# @return [String]
|
38343
|
+
#
|
38366
38344
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcEndpoint AWS API Documentation
|
38367
38345
|
#
|
38368
38346
|
class VpcEndpoint < Struct.new(
|
@@ -38380,7 +38358,8 @@ module Aws::EC2
|
|
38380
38358
|
:network_interface_ids,
|
38381
38359
|
:dns_entries,
|
38382
38360
|
:creation_timestamp,
|
38383
|
-
:tags
|
38361
|
+
:tags,
|
38362
|
+
:owner_id)
|
38384
38363
|
include Aws::Structure
|
38385
38364
|
end
|
38386
38365
|
|
@@ -38406,6 +38385,15 @@ module Aws::EC2
|
|
38406
38385
|
# The date and time the VPC endpoint was created.
|
38407
38386
|
# @return [Time]
|
38408
38387
|
#
|
38388
|
+
# @!attribute [rw] dns_entries
|
38389
|
+
# The DNS entries for the VPC endpoint.
|
38390
|
+
# @return [Array<Types::DnsEntry>]
|
38391
|
+
#
|
38392
|
+
# @!attribute [rw] network_load_balancer_arns
|
38393
|
+
# The Amazon Resource Names (ARNs) of the network load balancers for
|
38394
|
+
# the service.
|
38395
|
+
# @return [Array<String>]
|
38396
|
+
#
|
38409
38397
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcEndpointConnection AWS API Documentation
|
38410
38398
|
#
|
38411
38399
|
class VpcEndpointConnection < Struct.new(
|
@@ -38413,7 +38401,9 @@ module Aws::EC2
|
|
38413
38401
|
:vpc_endpoint_id,
|
38414
38402
|
:vpc_endpoint_owner,
|
38415
38403
|
:vpc_endpoint_state,
|
38416
|
-
:creation_timestamp
|
38404
|
+
:creation_timestamp,
|
38405
|
+
:dns_entries,
|
38406
|
+
:network_load_balancer_arns)
|
38417
38407
|
include Aws::Structure
|
38418
38408
|
end
|
38419
38409
|
|