aws-sdk-ec2 1.249.0 → 1.251.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.
@@ -100,7 +100,7 @@ module Aws::EC2
100
100
  data[:vpc_id]
101
101
  end
102
102
 
103
- # The ID of the AWS account that owns the subnet.
103
+ # The ID of the account that owns the subnet.
104
104
  # @return [String]
105
105
  def owner_id
106
106
  data[:owner_id]
@@ -358,6 +358,18 @@ module Aws::EC2
358
358
  # associate_carrier_ip_address: false,
359
359
  # interface_type: "String",
360
360
  # network_card_index: 1,
361
+ # ipv_4_prefixes: [
362
+ # {
363
+ # ipv_4_prefix: "String",
364
+ # },
365
+ # ],
366
+ # ipv_4_prefix_count: 1,
367
+ # ipv_6_prefixes: [
368
+ # {
369
+ # ipv_6_prefix: "String",
370
+ # },
371
+ # ],
372
+ # ipv_6_prefix_count: 1,
361
373
  # },
362
374
  # ],
363
375
  # private_ip_address: "String",
@@ -756,6 +768,18 @@ module Aws::EC2
756
768
  # },
757
769
  # ],
758
770
  # secondary_private_ip_address_count: 1,
771
+ # ipv_4_prefixes: [
772
+ # {
773
+ # ipv_4_prefix: "String",
774
+ # },
775
+ # ],
776
+ # ipv_4_prefix_count: 1,
777
+ # ipv_6_prefixes: [
778
+ # {
779
+ # ipv_6_prefix: "String",
780
+ # },
781
+ # ],
782
+ # ipv_6_prefix_count: 1,
759
783
  # interface_type: "efa", # accepts efa, branch, trunk
760
784
  # tag_specifications: [
761
785
  # {
@@ -813,6 +837,22 @@ module Aws::EC2
813
837
  #
814
838
  #
815
839
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html#AvailableIpPerENI
840
+ # @option options [Array<Types::Ipv4PrefixSpecificationRequest>] :ipv_4_prefixes
841
+ # One or moreIPv4 Prefix Delegation prefixes assigned to the network
842
+ # interface. You cannot use this option if you use the `Ipv4PrefixCount`
843
+ # option.
844
+ # @option options [Integer] :ipv_4_prefix_count
845
+ # The number of IPv4 Prefix Delegation prefixes that AWS automatically
846
+ # assigns to the network interface. You cannot use this option if you
847
+ # use the `Ipv4 Prefixes` option.
848
+ # @option options [Array<Types::Ipv6PrefixSpecificationRequest>] :ipv_6_prefixes
849
+ # One or moreIPv6 Prefix Delegation prefixes assigned to the network
850
+ # interface. You cannot use this option if you use the `Ipv6PrefixCount`
851
+ # option.
852
+ # @option options [Integer] :ipv_6_prefix_count
853
+ # The number of IPv6 Prefix Delegation prefixes that AWS automatically
854
+ # assigns to the network interface. You cannot use this option if you
855
+ # use the `Ipv6Prefixes` option.
816
856
  # @option options [String] :interface_type
817
857
  # Indicates the type of network interface. To create an Elastic Fabric
818
858
  # Adapter (EFA), specify `efa`. For more information, see [ Elastic
@@ -999,7 +999,7 @@ module Aws::EC2
999
999
  # @return [String]
1000
1000
  #
1001
1001
  # @!attribute [rw] destination_prefix_list_id
1002
- # The prefix of the AWS service.
1002
+ # The prefix of the Amazon Web Service.
1003
1003
  # @return [String]
1004
1004
  #
1005
1005
  # @!attribute [rw] egress_only_internet_gateway_id
@@ -1164,6 +1164,8 @@ module Aws::EC2
1164
1164
  # {
1165
1165
  # ipv_6_address_count: 1,
1166
1166
  # ipv_6_addresses: ["String"],
1167
+ # ipv_6_prefix_count: 1,
1168
+ # ipv_6_prefixes: ["String"],
1167
1169
  # network_interface_id: "NetworkInterfaceId", # required
1168
1170
  # }
1169
1171
  #
@@ -1182,6 +1184,18 @@ module Aws::EC2
1182
1184
  # of IPv6 addresses.
1183
1185
  # @return [Array<String>]
1184
1186
  #
1187
+ # @!attribute [rw] ipv_6_prefix_count
1188
+ # The number of IPv6 Prefix Delegation prefixes that AWS automatically
1189
+ # assigns to the network interface. You cannot use this option if you
1190
+ # use the `Ipv6Prefixes` option.
1191
+ # @return [Integer]
1192
+ #
1193
+ # @!attribute [rw] ipv_6_prefixes
1194
+ # One or more IPv6 Prefix Delegation prefixes assigned to the network
1195
+ # interface. You cannot use this option if you use the
1196
+ # `Ipv6PrefixCount` option.
1197
+ # @return [Array<String>]
1198
+ #
1185
1199
  # @!attribute [rw] network_interface_id
1186
1200
  # The ID of the network interface.
1187
1201
  # @return [String]
@@ -1191,6 +1205,8 @@ module Aws::EC2
1191
1205
  class AssignIpv6AddressesRequest < Struct.new(
1192
1206
  :ipv_6_address_count,
1193
1207
  :ipv_6_addresses,
1208
+ :ipv_6_prefix_count,
1209
+ :ipv_6_prefixes,
1194
1210
  :network_interface_id)
1195
1211
  SENSITIVE = []
1196
1212
  include Aws::Structure
@@ -1202,6 +1218,11 @@ module Aws::EC2
1202
1218
  # the request are not included.
1203
1219
  # @return [Array<String>]
1204
1220
  #
1221
+ # @!attribute [rw] assigned_ipv_6_prefixes
1222
+ # The IPv6 Prefix Delegation prefixes that are assigned to the network
1223
+ # interface.
1224
+ # @return [Array<String>]
1225
+ #
1205
1226
  # @!attribute [rw] network_interface_id
1206
1227
  # The ID of the network interface.
1207
1228
  # @return [String]
@@ -1210,6 +1231,7 @@ module Aws::EC2
1210
1231
  #
1211
1232
  class AssignIpv6AddressesResult < Struct.new(
1212
1233
  :assigned_ipv_6_addresses,
1234
+ :assigned_ipv_6_prefixes,
1213
1235
  :network_interface_id)
1214
1236
  SENSITIVE = []
1215
1237
  include Aws::Structure
@@ -1225,6 +1247,8 @@ module Aws::EC2
1225
1247
  # network_interface_id: "NetworkInterfaceId", # required
1226
1248
  # private_ip_addresses: ["String"],
1227
1249
  # secondary_private_ip_address_count: 1,
1250
+ # ipv_4_prefixes: ["String"],
1251
+ # ipv_4_prefix_count: 1,
1228
1252
  # }
1229
1253
  #
1230
1254
  # @!attribute [rw] allow_reassignment
@@ -1252,13 +1276,27 @@ module Aws::EC2
1252
1276
  # private IP addresses.
1253
1277
  # @return [Integer]
1254
1278
  #
1279
+ # @!attribute [rw] ipv_4_prefixes
1280
+ # One or more IPv4 Prefix Delegation prefixes assigned to the network
1281
+ # interface. You cannot use this option if you use the
1282
+ # `Ipv4PrefixCount` option.
1283
+ # @return [Array<String>]
1284
+ #
1285
+ # @!attribute [rw] ipv_4_prefix_count
1286
+ # The number of IPv4 Prefix Delegation prefixes that AWS automatically
1287
+ # assigns to the network interface. You cannot use this option if you
1288
+ # use the `Ipv4 Prefixes` option.
1289
+ # @return [Integer]
1290
+ #
1255
1291
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssignPrivateIpAddressesRequest AWS API Documentation
1256
1292
  #
1257
1293
  class AssignPrivateIpAddressesRequest < Struct.new(
1258
1294
  :allow_reassignment,
1259
1295
  :network_interface_id,
1260
1296
  :private_ip_addresses,
1261
- :secondary_private_ip_address_count)
1297
+ :secondary_private_ip_address_count,
1298
+ :ipv_4_prefixes,
1299
+ :ipv_4_prefix_count)
1262
1300
  SENSITIVE = []
1263
1301
  include Aws::Structure
1264
1302
  end
@@ -1271,11 +1309,17 @@ module Aws::EC2
1271
1309
  # The private IP addresses assigned to the network interface.
1272
1310
  # @return [Array<Types::AssignedPrivateIpAddress>]
1273
1311
  #
1312
+ # @!attribute [rw] assigned_ipv_4_prefixes
1313
+ # The IPv4 Prefix Delegation prefixes that are assigned to the network
1314
+ # interface.
1315
+ # @return [Array<Types::Ipv4PrefixSpecification>]
1316
+ #
1274
1317
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssignPrivateIpAddressesResult AWS API Documentation
1275
1318
  #
1276
1319
  class AssignPrivateIpAddressesResult < Struct.new(
1277
1320
  :network_interface_id,
1278
- :assigned_private_ip_addresses)
1321
+ :assigned_private_ip_addresses,
1322
+ :assigned_ipv_4_prefixes)
1279
1323
  SENSITIVE = []
1280
1324
  include Aws::Structure
1281
1325
  end
@@ -4091,7 +4135,7 @@ module Aws::EC2
4091
4135
  # @return [String]
4092
4136
  #
4093
4137
  # @!attribute [rw] owner_id
4094
- # The AWS account ID of the owner of the carrier gateway.
4138
+ # The account ID of the owner of the carrier gateway.
4095
4139
  # @return [String]
4096
4140
  #
4097
4141
  # @!attribute [rw] tags
@@ -5386,13 +5430,14 @@ module Aws::EC2
5386
5430
  # @!attribute [rw] destination_outpost_arn
5387
5431
  # The Amazon Resource Name (ARN) of the Outpost to which to copy the
5388
5432
  # snapshot. Only specify this parameter when copying a snapshot from
5389
- # an AWS Region to an Outpost. The snapshot must be in the Region for
5390
- # the destination Outpost. You cannot copy a snapshot from an Outpost
5391
- # to a Region, from one Outpost to another, or within the same
5392
- # Outpost.
5433
+ # an Amazon Web Services Region to an Outpost. The snapshot must be in
5434
+ # the Region for the destination Outpost. You cannot copy a snapshot
5435
+ # from an Outpost to a Region, from one Outpost to another, or within
5436
+ # the same Outpost.
5393
5437
  #
5394
- # For more information, see [ Copying snapshots from an AWS Region to
5395
- # an Outpost][1] in the *Amazon Elastic Compute Cloud User Guide*.
5438
+ # For more information, see [ Copy snapshots from an Amazon Web
5439
+ # Services Region to an Outpost][1] in the *Amazon Elastic Compute
5440
+ # Cloud User Guide*.
5396
5441
  #
5397
5442
  #
5398
5443
  #
@@ -5407,8 +5452,8 @@ module Aws::EC2
5407
5452
  #
5408
5453
  # The snapshot copy is sent to the regional endpoint that you sent the
5409
5454
  # HTTP request to (for example, `ec2.us-east-1.amazonaws.com`). With
5410
- # the AWS CLI, this is specified using the `--region` parameter or the
5411
- # default Region in your AWS configuration file.
5455
+ # the CLI, this is specified using the `--region` parameter or the
5456
+ # default Region in your Amazon Web Services configuration file.
5412
5457
  # @return [String]
5413
5458
  #
5414
5459
  # @!attribute [rw] encrypted
@@ -5426,12 +5471,12 @@ module Aws::EC2
5426
5471
  # @return [Boolean]
5427
5472
  #
5428
5473
  # @!attribute [rw] kms_key_id
5429
- # The identifier of the AWS Key Management Service (AWS KMS) customer
5430
- # master key (CMK) to use for Amazon EBS encryption. If this parameter
5431
- # is not specified, your AWS managed CMK for EBS is used. If
5432
- # `KmsKeyId` is specified, the encrypted state must be `true`.
5474
+ # The identifier of the Key Management Service (KMS) KMS key to use
5475
+ # for Amazon EBS encryption. If this parameter is not specified, your
5476
+ # KMS key for Amazon EBS is used. If `KmsKeyId` is specified, the
5477
+ # encrypted state must be `true`.
5433
5478
  #
5434
- # You can specify the CMK using any of the following:
5479
+ # You can specify the KMS key using any of the following:
5435
5480
  #
5436
5481
  # * Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab.
5437
5482
  #
@@ -5443,9 +5488,9 @@ module Aws::EC2
5443
5488
  # * Alias ARN. For example,
5444
5489
  # arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.
5445
5490
  #
5446
- # AWS authenticates the CMK asynchronously. Therefore, if you specify
5447
- # an ID, alias, or ARN that is not valid, the action can appear to
5448
- # complete, but eventually fails.
5491
+ # Amazon Web Services authenticates the KMS key asynchronously.
5492
+ # Therefore, if you specify an ID, alias, or ARN that is not valid,
5493
+ # the action can appear to complete, but eventually fails.
5449
5494
  # @return [String]
5450
5495
  #
5451
5496
  # @!attribute [rw] presigned_url
@@ -5457,14 +5502,14 @@ module Aws::EC2
5457
5502
  # The `PresignedUrl` should use the snapshot source endpoint, the
5458
5503
  # `CopySnapshot` action, and include the `SourceRegion`,
5459
5504
  # `SourceSnapshotId`, and `DestinationRegion` parameters. The
5460
- # `PresignedUrl` must be signed using AWS Signature Version 4. Because
5461
- # EBS snapshots are stored in Amazon S3, the signing algorithm for
5462
- # this parameter uses the same logic that is described in
5463
- # [Authenticating Requests: Using Query Parameters (AWS Signature
5464
- # Version 4)][2] in the *Amazon Simple Storage Service API Reference*.
5465
- # An invalid or improperly signed `PresignedUrl` will cause the copy
5466
- # operation to fail asynchronously, and the snapshot will move to an
5467
- # `error` state.
5505
+ # `PresignedUrl` must be signed using Amazon Web Services Signature
5506
+ # Version 4. Because EBS snapshots are stored in Amazon S3, the
5507
+ # signing algorithm for this parameter uses the same logic that is
5508
+ # described in [Authenticating Requests: Using Query Parameters
5509
+ # (Amazon Web Services Signature Version 4)][2] in the *Amazon Simple
5510
+ # Storage Service API Reference*. An invalid or improperly signed
5511
+ # `PresignedUrl` will cause the copy operation to fail asynchronously,
5512
+ # and the snapshot will move to an `error` state.
5468
5513
  #
5469
5514
  #
5470
5515
  #
@@ -5801,8 +5846,8 @@ module Aws::EC2
5801
5846
  #
5802
5847
  # @!attribute [rw] client_token
5803
5848
  # Unique, case-sensitive identifier that you provide to ensure the
5804
- # idempotency of the request. For more information, see [How to Ensure
5805
- # Idempotency][1].
5849
+ # idempotency of the request. For more information, see [How to ensure
5850
+ # idempotency][1].
5806
5851
  #
5807
5852
  # **A suitable default value is auto-generated.** You should normally
5808
5853
  # not need to pass this option.
@@ -6398,8 +6443,8 @@ module Aws::EC2
6398
6443
  #
6399
6444
  # @!attribute [rw] client_token
6400
6445
  # Unique, case-sensitive identifier that you provide to ensure the
6401
- # idempotency of the request. For more information, see [How to Ensure
6402
- # Idempotency][1].
6446
+ # idempotency of the request. For more information, see [How to ensure
6447
+ # idempotency][1].
6403
6448
  #
6404
6449
  #
6405
6450
  #
@@ -6813,8 +6858,8 @@ module Aws::EC2
6813
6858
  #
6814
6859
  # @!attribute [rw] client_token
6815
6860
  # Unique, case-sensitive identifier that you provide to ensure the
6816
- # idempotency of the request. For more information, see [How to Ensure
6817
- # Idempotency][1].
6861
+ # idempotency of the request. For more information, see [How to ensure
6862
+ # idempotency][1].
6818
6863
  #
6819
6864
  #
6820
6865
  #
@@ -6891,14 +6936,14 @@ module Aws::EC2
6891
6936
  #
6892
6937
  # @!attribute [rw] log_format
6893
6938
  # The fields to include in the flow log record, in the order in which
6894
- # they should appear. For a list of available fields, see [Flow Log
6895
- # Records][1]. If you omit this parameter, the flow log is created
6939
+ # they should appear. For a list of available fields, see [Flow log
6940
+ # records][1]. If you omit this parameter, the flow log is created
6896
6941
  # using the default format. If you specify this parameter, you must
6897
6942
  # specify at least one field.
6898
6943
  #
6899
6944
  # Specify the fields using the `$\{field-id\}` format, separated by
6900
- # spaces. For the AWS CLI, use single quotation marks (' ') to
6901
- # surround the parameter value.
6945
+ # spaces. For the CLI, use single quotation marks (' ') to surround
6946
+ # the parameter value.
6902
6947
  #
6903
6948
  #
6904
6949
  #
@@ -7518,6 +7563,18 @@ module Aws::EC2
7518
7563
  # secondary_private_ip_address_count: 1,
7519
7564
  # subnet_id: "SubnetId",
7520
7565
  # network_card_index: 1,
7566
+ # ipv_4_prefixes: [
7567
+ # {
7568
+ # ipv_4_prefix: "String",
7569
+ # },
7570
+ # ],
7571
+ # ipv_4_prefix_count: 1,
7572
+ # ipv_6_prefixes: [
7573
+ # {
7574
+ # ipv_6_prefix: "String",
7575
+ # },
7576
+ # ],
7577
+ # ipv_6_prefix_count: 1,
7521
7578
  # },
7522
7579
  # ],
7523
7580
  # image_id: "ImageId",
@@ -7745,6 +7802,18 @@ module Aws::EC2
7745
7802
  # secondary_private_ip_address_count: 1,
7746
7803
  # subnet_id: "SubnetId",
7747
7804
  # network_card_index: 1,
7805
+ # ipv_4_prefixes: [
7806
+ # {
7807
+ # ipv_4_prefix: "String",
7808
+ # },
7809
+ # ],
7810
+ # ipv_4_prefix_count: 1,
7811
+ # ipv_6_prefixes: [
7812
+ # {
7813
+ # ipv_6_prefix: "String",
7814
+ # },
7815
+ # ],
7816
+ # ipv_6_prefix_count: 1,
7748
7817
  # },
7749
7818
  # ],
7750
7819
  # image_id: "ImageId",
@@ -8161,8 +8230,8 @@ module Aws::EC2
8161
8230
  #
8162
8231
  # @!attribute [rw] client_token
8163
8232
  # Unique, case-sensitive identifier that you provide to ensure the
8164
- # idempotency of the request. For more information, see [How to Ensure
8165
- # Idempotency][1].
8233
+ # idempotency of the request. For more information, see [How to ensure
8234
+ # idempotency][1].
8166
8235
  #
8167
8236
  # Constraint: Maximum 64 ASCII characters.
8168
8237
  #
@@ -8410,20 +8479,22 @@ module Aws::EC2
8410
8479
  # }
8411
8480
  #
8412
8481
  # @!attribute [rw] source_ip
8413
- # The IP address of the AWS resource that is the source of the path.
8482
+ # The IP address of the Amazon Web Services resource that is the
8483
+ # source of the path.
8414
8484
  # @return [String]
8415
8485
  #
8416
8486
  # @!attribute [rw] destination_ip
8417
- # The IP address of the AWS resource that is the destination of the
8418
- # path.
8487
+ # The IP address of the Amazon Web Services resource that is the
8488
+ # destination of the path.
8419
8489
  # @return [String]
8420
8490
  #
8421
8491
  # @!attribute [rw] source
8422
- # The AWS resource that is the source of the path.
8492
+ # The Amazon Web Services resource that is the source of the path.
8423
8493
  # @return [String]
8424
8494
  #
8425
8495
  # @!attribute [rw] destination
8426
- # The AWS resource that is the destination of the path.
8496
+ # The Amazon Web Services resource that is the destination of the
8497
+ # path.
8427
8498
  # @return [String]
8428
8499
  #
8429
8500
  # @!attribute [rw] protocol
@@ -8447,8 +8518,8 @@ module Aws::EC2
8447
8518
  #
8448
8519
  # @!attribute [rw] client_token
8449
8520
  # Unique, case-sensitive identifier that you provide to ensure the
8450
- # idempotency of the request. For more information, see [How to Ensure
8451
- # Idempotency][1].
8521
+ # idempotency of the request. For more information, see [How to ensure
8522
+ # idempotency][1].
8452
8523
  #
8453
8524
  # **A suitable default value is auto-generated.** You should normally
8454
8525
  # not need to pass this option.
@@ -8571,6 +8642,18 @@ module Aws::EC2
8571
8642
  # },
8572
8643
  # ],
8573
8644
  # secondary_private_ip_address_count: 1,
8645
+ # ipv_4_prefixes: [
8646
+ # {
8647
+ # ipv_4_prefix: "String",
8648
+ # },
8649
+ # ],
8650
+ # ipv_4_prefix_count: 1,
8651
+ # ipv_6_prefixes: [
8652
+ # {
8653
+ # ipv_6_prefix: "String",
8654
+ # },
8655
+ # ],
8656
+ # ipv_6_prefix_count: 1,
8574
8657
  # interface_type: "efa", # accepts efa, branch, trunk
8575
8658
  # subnet_id: "SubnetId", # required
8576
8659
  # tag_specifications: [
@@ -8646,6 +8729,30 @@ module Aws::EC2
8646
8729
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html#AvailableIpPerENI
8647
8730
  # @return [Integer]
8648
8731
  #
8732
+ # @!attribute [rw] ipv_4_prefixes
8733
+ # One or moreIPv4 Prefix Delegation prefixes assigned to the network
8734
+ # interface. You cannot use this option if you use the
8735
+ # `Ipv4PrefixCount` option.
8736
+ # @return [Array<Types::Ipv4PrefixSpecificationRequest>]
8737
+ #
8738
+ # @!attribute [rw] ipv_4_prefix_count
8739
+ # The number of IPv4 Prefix Delegation prefixes that AWS automatically
8740
+ # assigns to the network interface. You cannot use this option if you
8741
+ # use the `Ipv4 Prefixes` option.
8742
+ # @return [Integer]
8743
+ #
8744
+ # @!attribute [rw] ipv_6_prefixes
8745
+ # One or moreIPv6 Prefix Delegation prefixes assigned to the network
8746
+ # interface. You cannot use this option if you use the
8747
+ # `Ipv6PrefixCount` option.
8748
+ # @return [Array<Types::Ipv6PrefixSpecificationRequest>]
8749
+ #
8750
+ # @!attribute [rw] ipv_6_prefix_count
8751
+ # The number of IPv6 Prefix Delegation prefixes that AWS automatically
8752
+ # assigns to the network interface. You cannot use this option if you
8753
+ # use the `Ipv6Prefixes` option.
8754
+ # @return [Integer]
8755
+ #
8649
8756
  # @!attribute [rw] interface_type
8650
8757
  # Indicates the type of network interface. To create an Elastic Fabric
8651
8758
  # Adapter (EFA), specify `efa`. For more information, see [ Elastic
@@ -8692,6 +8799,10 @@ module Aws::EC2
8692
8799
  :private_ip_address,
8693
8800
  :private_ip_addresses,
8694
8801
  :secondary_private_ip_address_count,
8802
+ :ipv_4_prefixes,
8803
+ :ipv_4_prefix_count,
8804
+ :ipv_6_prefixes,
8805
+ :ipv_6_prefix_count,
8695
8806
  :interface_type,
8696
8807
  :subnet_id,
8697
8808
  :tag_specifications,
@@ -8827,7 +8938,7 @@ module Aws::EC2
8827
8938
  # Unique, case-sensitive identifier you provide to ensure the
8828
8939
  # idempotency of the request. If you do not specify a client token, a
8829
8940
  # randomly generated token is used for the request to ensure
8830
- # idempotency. For more information, see [Ensuring Idempotency][1].
8941
+ # idempotency. For more information, see [Ensuring idempotency][1].
8831
8942
  #
8832
8943
  # **A suitable default value is auto-generated.** You should normally
8833
8944
  # not need to pass this option.
@@ -9318,8 +9429,8 @@ module Aws::EC2
9318
9429
  # @return [String]
9319
9430
  #
9320
9431
  # @!attribute [rw] outpost_arn
9321
- # The Amazon Resource Name (ARN) of the AWS Outpost on which to create
9322
- # a local snapshot.
9432
+ # The Amazon Resource Name (ARN) of the Outpost on which to create a
9433
+ # local snapshot.
9323
9434
  #
9324
9435
  # * To create a snapshot of a volume in a Region, omit this parameter.
9325
9436
  # The snapshot is created in the same Region as the volume.
@@ -9333,8 +9444,8 @@ module Aws::EC2
9333
9444
  # Outpost. The snapshot must be created on the same Outpost as the
9334
9445
  # volume.
9335
9446
  #
9336
- # For more information, see [ Creating local snapshots from volumes on
9337
- # an Outpost][1] in the *Amazon Elastic Compute Cloud User Guide*.
9447
+ # For more information, see [Create local snapshots from volumes on an
9448
+ # Outpost][1] in the *Amazon Elastic Compute Cloud User Guide*.
9338
9449
  #
9339
9450
  #
9340
9451
  #
@@ -9342,7 +9453,7 @@ module Aws::EC2
9342
9453
  # @return [String]
9343
9454
  #
9344
9455
  # @!attribute [rw] volume_id
9345
- # The ID of the EBS volume.
9456
+ # The ID of the Amazon EBS volume.
9346
9457
  # @return [String]
9347
9458
  #
9348
9459
  # @!attribute [rw] tag_specifications
@@ -9404,8 +9515,8 @@ module Aws::EC2
9404
9515
  # @return [Types::InstanceSpecification]
9405
9516
  #
9406
9517
  # @!attribute [rw] outpost_arn
9407
- # The Amazon Resource Name (ARN) of the AWS Outpost on which to create
9408
- # the local snapshots.
9518
+ # The Amazon Resource Name (ARN) of the Outpost on which to create the
9519
+ # local snapshots.
9409
9520
  #
9410
9521
  # * To create snapshots from an instance in a Region, omit this
9411
9522
  # parameter. The snapshots are created in the same Region as the
@@ -9420,9 +9531,9 @@ module Aws::EC2
9420
9531
  # Outpost. The snapshots must be created on the same Outpost as the
9421
9532
  # instance.
9422
9533
  #
9423
- # For more information, see [ Creating multi-volume local snapshots
9424
- # from instances on an Outpost][1] in the *Amazon Elastic Compute
9425
- # Cloud User Guide*.
9534
+ # For more information, see [ Create multi-volume local snapshots from
9535
+ # instances on an Outpost][1] in the *Amazon Elastic Compute Cloud
9536
+ # User Guide*.
9426
9537
  #
9427
9538
  #
9428
9539
  #
@@ -9586,6 +9697,95 @@ module Aws::EC2
9586
9697
  include Aws::Structure
9587
9698
  end
9588
9699
 
9700
+ # @note When making an API call, you may pass CreateSubnetCidrReservationRequest
9701
+ # data as a hash:
9702
+ #
9703
+ # {
9704
+ # tag_specifications: [
9705
+ # {
9706
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9707
+ # tags: [
9708
+ # {
9709
+ # key: "String",
9710
+ # value: "String",
9711
+ # },
9712
+ # ],
9713
+ # },
9714
+ # ],
9715
+ # subnet_id: "SubnetId", # required
9716
+ # cidr: "String", # required
9717
+ # reservation_type: "prefix", # required, accepts prefix, explicit
9718
+ # description: "String",
9719
+ # dry_run: false,
9720
+ # }
9721
+ #
9722
+ # @!attribute [rw] tag_specifications
9723
+ # The tags to assign to the subnet CIDR reservation.
9724
+ # @return [Array<Types::TagSpecification>]
9725
+ #
9726
+ # @!attribute [rw] subnet_id
9727
+ # The ID of the subnet.
9728
+ # @return [String]
9729
+ #
9730
+ # @!attribute [rw] cidr
9731
+ # The IPv4 or IPV6 CIDR range to reserve.
9732
+ # @return [String]
9733
+ #
9734
+ # @!attribute [rw] reservation_type
9735
+ # The type of reservation.
9736
+ #
9737
+ # The following are valid values:
9738
+ #
9739
+ # * `prefix`\: The Amazon EC2 Prefix Delegation feature assigns the IP
9740
+ # addresses to network interfaces that are associated with an
9741
+ # instance. For information about Prefix Delegation, see [Prefix
9742
+ # Delegation for Amazon EC2 network interfaces][1] in the *Amazon
9743
+ # Elastic Compute Cloud User Guide*.
9744
+ #
9745
+ # * `explicit`\: You manually assign the IP addresses to resources
9746
+ # that reside in your subnet.
9747
+ #
9748
+ #
9749
+ #
9750
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-prefix-delegation.html
9751
+ # @return [String]
9752
+ #
9753
+ # @!attribute [rw] description
9754
+ # The description to assign to the subnet CIDR reservation.
9755
+ # @return [String]
9756
+ #
9757
+ # @!attribute [rw] dry_run
9758
+ # Checks whether you have the required permissions for the action,
9759
+ # without actually making the request, and provides an error response.
9760
+ # If you have the required permissions, the error response is
9761
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
9762
+ # @return [Boolean]
9763
+ #
9764
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateSubnetCidrReservationRequest AWS API Documentation
9765
+ #
9766
+ class CreateSubnetCidrReservationRequest < Struct.new(
9767
+ :tag_specifications,
9768
+ :subnet_id,
9769
+ :cidr,
9770
+ :reservation_type,
9771
+ :description,
9772
+ :dry_run)
9773
+ SENSITIVE = []
9774
+ include Aws::Structure
9775
+ end
9776
+
9777
+ # @!attribute [rw] subnet_cidr_reservation
9778
+ # Information about the created subnet CIDR reservation.
9779
+ # @return [Types::SubnetCidrReservation]
9780
+ #
9781
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateSubnetCidrReservationResult AWS API Documentation
9782
+ #
9783
+ class CreateSubnetCidrReservationResult < Struct.new(
9784
+ :subnet_cidr_reservation)
9785
+ SENSITIVE = []
9786
+ include Aws::Structure
9787
+ end
9788
+
9589
9789
  # @note When making an API call, you may pass CreateSubnetRequest
9590
9790
  # data as a hash:
9591
9791
  #
@@ -9603,11 +9803,11 @@ module Aws::EC2
9603
9803
  # ],
9604
9804
  # availability_zone: "String",
9605
9805
  # availability_zone_id: "String",
9606
- # cidr_block: "String", # required
9607
9806
  # ipv_6_cidr_block: "String",
9608
9807
  # outpost_arn: "String",
9609
9808
  # vpc_id: "VpcId", # required
9610
9809
  # dry_run: false,
9810
+ # cidr_block: "String", # required
9611
9811
  # }
9612
9812
  #
9613
9813
  # @!attribute [rw] tag_specifications
@@ -9617,9 +9817,9 @@ module Aws::EC2
9617
9817
  # @!attribute [rw] availability_zone
9618
9818
  # The Availability Zone or Local Zone for the subnet.
9619
9819
  #
9620
- # Default: AWS selects one for you. If you create more than one subnet
9621
- # in your VPC, we do not necessarily select a different zone for each
9622
- # subnet.
9820
+ # Default: Amazon Web Services selects one for you. If you create more
9821
+ # than one subnet in your VPC, we do not necessarily select a
9822
+ # different zone for each subnet.
9623
9823
  #
9624
9824
  # To create a subnet in a Local Zone, set this value to the Local Zone
9625
9825
  # ID, for example `us-west-2-lax-1a`. For information about the
@@ -9638,13 +9838,6 @@ module Aws::EC2
9638
9838
  # The AZ ID or the Local Zone ID of the subnet.
9639
9839
  # @return [String]
9640
9840
  #
9641
- # @!attribute [rw] cidr_block
9642
- # The IPv4 network range for the subnet, in CIDR notation. For
9643
- # example, `10.0.0.0/24`. We modify the specified CIDR block to its
9644
- # canonical form; for example, if you specify `100.68.0.18/18`, we
9645
- # modify it to `100.68.0.0/18`.
9646
- # @return [String]
9647
- #
9648
9841
  # @!attribute [rw] ipv_6_cidr_block
9649
9842
  # The IPv6 network range for the subnet, in CIDR notation. The subnet
9650
9843
  # size must use a /64 prefix length.
@@ -9667,17 +9860,24 @@ module Aws::EC2
9667
9860
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
9668
9861
  # @return [Boolean]
9669
9862
  #
9863
+ # @!attribute [rw] cidr_block
9864
+ # The IPv4 network range for the subnet, in CIDR notation. For
9865
+ # example, `10.0.0.0/24`. We modify the specified CIDR block to its
9866
+ # canonical form; for example, if you specify `100.68.0.18/18`, we
9867
+ # modify it to `100.68.0.0/18`.
9868
+ # @return [String]
9869
+ #
9670
9870
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateSubnetRequest AWS API Documentation
9671
9871
  #
9672
9872
  class CreateSubnetRequest < Struct.new(
9673
9873
  :tag_specifications,
9674
9874
  :availability_zone,
9675
9875
  :availability_zone_id,
9676
- :cidr_block,
9677
9876
  :ipv_6_cidr_block,
9678
9877
  :outpost_arn,
9679
9878
  :vpc_id,
9680
- :dry_run)
9879
+ :dry_run,
9880
+ :cidr_block)
9681
9881
  SENSITIVE = []
9682
9882
  include Aws::Structure
9683
9883
  end
@@ -10918,7 +11118,7 @@ module Aws::EC2
10918
11118
  # @return [String]
10919
11119
  #
10920
11120
  # @!attribute [rw] user_id
10921
- # The AWS account ID to be added or removed.
11121
+ # The ID of the account to be added or removed.
10922
11122
  # @return [String]
10923
11123
  #
10924
11124
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVolumePermission AWS API Documentation
@@ -10952,11 +11152,11 @@ module Aws::EC2
10952
11152
  # }
10953
11153
  #
10954
11154
  # @!attribute [rw] add
10955
- # Adds the specified AWS account ID or group to the list.
11155
+ # Adds the specified account ID or group to the list.
10956
11156
  # @return [Array<Types::CreateVolumePermission>]
10957
11157
  #
10958
11158
  # @!attribute [rw] remove
10959
- # Removes the specified AWS account ID or group from the list.
11159
+ # Removes the specified account ID or group from the list.
10960
11160
  # @return [Array<Types::CreateVolumePermission>]
10961
11161
  #
10962
11162
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVolumePermissionModifications AWS API Documentation
@@ -10994,6 +11194,7 @@ module Aws::EC2
10994
11194
  # ],
10995
11195
  # multi_attach_enabled: false,
10996
11196
  # throughput: 1,
11197
+ # client_token: "String",
10997
11198
  # }
10998
11199
  #
10999
11200
  # @!attribute [rw] availability_zone
@@ -11033,9 +11234,9 @@ module Aws::EC2
11033
11234
  #
11034
11235
  # * `io2`\: 100-64,000 IOPS
11035
11236
  #
11036
- # For `io1` and `io2` volumes, we guarantee 64,000 IOPS only for
11037
- # [Instances built on the Nitro System][1]. Other instance families
11038
- # guarantee performance up to 32,000 IOPS.
11237
+ # `io1` and `io2` volumes support up to 64,000 IOPS only on [Instances
11238
+ # built on the Nitro System][1]. Other instance families support
11239
+ # performance up to 32,000 IOPS.
11039
11240
  #
11040
11241
  # This parameter is required for `io1` and `io2` volumes. The default
11041
11242
  # for `gp3` volumes is 3,000 IOPS. This parameter is not supported for
@@ -11047,12 +11248,12 @@ module Aws::EC2
11047
11248
  # @return [Integer]
11048
11249
  #
11049
11250
  # @!attribute [rw] kms_key_id
11050
- # The identifier of the AWS Key Management Service (AWS KMS) customer
11051
- # master key (CMK) to use for Amazon EBS encryption. If this parameter
11052
- # is not specified, your AWS managed CMK for EBS is used. If
11053
- # `KmsKeyId` is specified, the encrypted state must be `true`.
11251
+ # The identifier of the Key Management Service (KMS) KMS key to use
11252
+ # for Amazon EBS encryption. If this parameter is not specified, your
11253
+ # KMS key for Amazon EBS is used. If `KmsKeyId` is specified, the
11254
+ # encrypted state must be `true`.
11054
11255
  #
11055
- # You can specify the CMK using any of the following:
11256
+ # You can specify the KMS key using any of the following:
11056
11257
  #
11057
11258
  # * Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab.
11058
11259
  #
@@ -11064,9 +11265,9 @@ module Aws::EC2
11064
11265
  # * Alias ARN. For example,
11065
11266
  # arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.
11066
11267
  #
11067
- # AWS authenticates the CMK asynchronously. Therefore, if you specify
11068
- # an ID, alias, or ARN that is not valid, the action can appear to
11069
- # complete, but eventually fails.
11268
+ # Amazon Web Services authenticates the KMS key asynchronously.
11269
+ # Therefore, if you specify an ID, alias, or ARN that is not valid,
11270
+ # the action can appear to complete, but eventually fails.
11070
11271
  # @return [String]
11071
11272
  #
11072
11273
  # @!attribute [rw] outpost_arn
@@ -11152,6 +11353,19 @@ module Aws::EC2
11152
11353
  # Valid Range: Minimum value of 125. Maximum value of 1000.
11153
11354
  # @return [Integer]
11154
11355
  #
11356
+ # @!attribute [rw] client_token
11357
+ # Unique, case-sensitive identifier that you provide to ensure the
11358
+ # idempotency of the request. For more information, see [Ensure
11359
+ # Idempotency][1].
11360
+ #
11361
+ # **A suitable default value is auto-generated.** You should normally
11362
+ # not need to pass this option.
11363
+ #
11364
+ #
11365
+ #
11366
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
11367
+ # @return [String]
11368
+ #
11155
11369
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVolumeRequest AWS API Documentation
11156
11370
  #
11157
11371
  class CreateVolumeRequest < Struct.new(
@@ -11166,7 +11380,8 @@ module Aws::EC2
11166
11380
  :dry_run,
11167
11381
  :tag_specifications,
11168
11382
  :multi_attach_enabled,
11169
- :throughput)
11383
+ :throughput,
11384
+ :client_token)
11170
11385
  SENSITIVE = []
11171
11386
  include Aws::Structure
11172
11387
  end
@@ -11518,9 +11733,9 @@ module Aws::EC2
11518
11733
  # @return [Boolean]
11519
11734
  #
11520
11735
  # @!attribute [rw] peer_owner_id
11521
- # The AWS account ID of the owner of the accepter VPC.
11736
+ # The account ID of the owner of the accepter VPC.
11522
11737
  #
11523
- # Default: Your AWS account ID
11738
+ # Default: Your account ID
11524
11739
  # @return [String]
11525
11740
  #
11526
11741
  # @!attribute [rw] peer_vpc_id
@@ -13382,6 +13597,46 @@ module Aws::EC2
13382
13597
  include Aws::Structure
13383
13598
  end
13384
13599
 
13600
+ # @note When making an API call, you may pass DeleteSubnetCidrReservationRequest
13601
+ # data as a hash:
13602
+ #
13603
+ # {
13604
+ # subnet_cidr_reservation_id: "SubnetCidrReservationId", # required
13605
+ # dry_run: false,
13606
+ # }
13607
+ #
13608
+ # @!attribute [rw] subnet_cidr_reservation_id
13609
+ # The ID of the subnet CIDR reservation.
13610
+ # @return [String]
13611
+ #
13612
+ # @!attribute [rw] dry_run
13613
+ # Checks whether you have the required permissions for the action,
13614
+ # without actually making the request, and provides an error response.
13615
+ # If you have the required permissions, the error response is
13616
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
13617
+ # @return [Boolean]
13618
+ #
13619
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteSubnetCidrReservationRequest AWS API Documentation
13620
+ #
13621
+ class DeleteSubnetCidrReservationRequest < Struct.new(
13622
+ :subnet_cidr_reservation_id,
13623
+ :dry_run)
13624
+ SENSITIVE = []
13625
+ include Aws::Structure
13626
+ end
13627
+
13628
+ # @!attribute [rw] deleted_subnet_cidr_reservation
13629
+ # Information about the deleted subnet CIDR reservation.
13630
+ # @return [Types::SubnetCidrReservation]
13631
+ #
13632
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteSubnetCidrReservationResult AWS API Documentation
13633
+ #
13634
+ class DeleteSubnetCidrReservationResult < Struct.new(
13635
+ :deleted_subnet_cidr_reservation)
13636
+ SENSITIVE = []
13637
+ include Aws::Structure
13638
+ end
13639
+
13385
13640
  # @note When making an API call, you may pass DeleteSubnetRequest
13386
13641
  # data as a hash:
13387
13642
  #
@@ -15218,8 +15473,7 @@ module Aws::EC2
15218
15473
  # * `state` - The state of the carrier gateway (`pending` \| `failed`
15219
15474
  # \| `available` \| `deleting` \| `deleted`).
15220
15475
  #
15221
- # * `owner-id` - The AWS account ID of the owner of the carrier
15222
- # gateway.
15476
+ # * `owner-id` - The account ID of the owner of the carrier gateway.
15223
15477
  #
15224
15478
  # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned
15225
15479
  # to the resource. Use the tag key in the filter name and the tag
@@ -16002,8 +16256,7 @@ module Aws::EC2
16002
16256
  #
16003
16257
  # * `value` - The value for one of the options.
16004
16258
  #
16005
- # * `owner-id` - The ID of the AWS account that owns the DHCP options
16006
- # set.
16259
+ # * `owner-id` - The ID of the account that owns the DHCP options set.
16007
16260
  #
16008
16261
  # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned
16009
16262
  # to the resource. Use the tag key in the filter name and the tag
@@ -16377,13 +16630,13 @@ module Aws::EC2
16377
16630
  # @return [String]
16378
16631
  #
16379
16632
  # @!attribute [rw] owner_id
16380
- # The ID of the AWS account that enabled fast snapshot restores on the
16633
+ # The ID of the account that enabled fast snapshot restores on the
16381
16634
  # snapshot.
16382
16635
  # @return [String]
16383
16636
  #
16384
16637
  # @!attribute [rw] owner_alias
16385
- # The AWS owner alias that enabled fast snapshot restores on the
16386
- # snapshot. This is intended for future use.
16638
+ # The Amazon Web Services owner alias that enabled fast snapshot
16639
+ # restores on the snapshot. This is intended for future use.
16387
16640
  # @return [String]
16388
16641
  #
16389
16642
  # @!attribute [rw] enabling_time
@@ -16449,7 +16702,7 @@ module Aws::EC2
16449
16702
  #
16450
16703
  # * `availability-zone`\: The Availability Zone of the snapshot.
16451
16704
  #
16452
- # * `owner-id`\: The ID of the AWS account that enabled fast snapshot
16705
+ # * `owner-id`\: The ID of the account that enabled fast snapshot
16453
16706
  # restore on the snapshot.
16454
16707
  #
16455
16708
  # * `snapshot-id`\: The ID of the snapshot.
@@ -18949,8 +19202,7 @@ module Aws::EC2
18949
19202
  #
18950
19203
  # * `internet-gateway-id` - The ID of the Internet gateway.
18951
19204
  #
18952
- # * `owner-id` - The ID of the AWS account that owns the internet
18953
- # gateway.
19205
+ # * `owner-id` - The ID of the account that owns the internet gateway.
18954
19206
  #
18955
19207
  # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned
18956
19208
  # to the resource. Use the tag key in the filter name and the tag
@@ -20182,7 +20434,7 @@ module Aws::EC2
20182
20434
  #
20183
20435
  # * `network-acl-id` - The ID of the network ACL.
20184
20436
  #
20185
- # * `owner-id` - The ID of the AWS account that owns the network ACL.
20437
+ # * `owner-id` - The ID of the account that owns the network ACL.
20186
20438
  #
20187
20439
  # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned
20188
20440
  # to the resource. Use the tag key in the filter name and the tag
@@ -21721,7 +21973,7 @@ module Aws::EC2
21721
21973
  # route table for the VPC (`true` \| `false`). Route tables that do
21722
21974
  # not have an association ID are not returned in the response.
21723
21975
  #
21724
- # * `owner-id` - The ID of the AWS account that owns the route table.
21976
+ # * `owner-id` - The ID of the account that owns the route table.
21725
21977
  #
21726
21978
  # * `route-table-id` - The ID of the route table.
21727
21979
  #
@@ -21731,8 +21983,8 @@ module Aws::EC2
21731
21983
  # * `route.destination-ipv6-cidr-block` - The IPv6 CIDR range
21732
21984
  # specified in a route in the route table.
21733
21985
  #
21734
- # * `route.destination-prefix-list-id` - The ID (prefix) of the AWS
21735
- # service specified in a route in the table.
21986
+ # * `route.destination-prefix-list-id` - The ID (prefix) of the Amazon
21987
+ # Web Service specified in a route in the table.
21736
21988
  #
21737
21989
  # * `route.egress-only-internet-gateway-id` - The ID of an egress-only
21738
21990
  # Internet gateway specified in a route in the route table.
@@ -22417,12 +22669,12 @@ module Aws::EC2
22417
22669
  # \| `false`)
22418
22670
  #
22419
22671
  # * `owner-alias` - The owner alias, from an Amazon-maintained list
22420
- # (`amazon`). This is not the user-configured AWS account alias set
22672
+ # (`amazon`). This is not the user-configured account alias set
22421
22673
  # using the IAM console. We recommend that you use the related
22422
22674
  # parameter instead of this filter.
22423
22675
  #
22424
- # * `owner-id` - The AWS account ID of the owner. We recommend that
22425
- # you use the related parameter instead of this filter.
22676
+ # * `owner-id` - The account ID of the owner. We recommend that you
22677
+ # use the related parameter instead of this filter.
22426
22678
  #
22427
22679
  # * `progress` - The progress of the snapshot, as a percentage (for
22428
22680
  # example, 80%).
@@ -22474,12 +22726,11 @@ module Aws::EC2
22474
22726
  #
22475
22727
  # @!attribute [rw] owner_ids
22476
22728
  # Scopes the results to snapshots with the specified owners. You can
22477
- # specify a combination of AWS account IDs, `self`, and `amazon`.
22729
+ # specify a combination of account IDs, `self`, and `amazon`.
22478
22730
  # @return [Array<String>]
22479
22731
  #
22480
22732
  # @!attribute [rw] restorable_by_user_ids
22481
- # The IDs of the AWS accounts that can create volumes from the
22482
- # snapshot.
22733
+ # The IDs of the accounts that can create volumes from the snapshot.
22483
22734
  # @return [Array<String>]
22484
22735
  #
22485
22736
  # @!attribute [rw] snapshot_ids
@@ -23314,7 +23565,7 @@ module Aws::EC2
23314
23565
  #
23315
23566
  # * `outpost-arn` - The Amazon Resource Name (ARN) of the Outpost.
23316
23567
  #
23317
- # * `owner-id` - The ID of the AWS account that owns the subnet.
23568
+ # * `owner-id` - The ID of the account that owns the subnet.
23318
23569
  #
23319
23570
  # * `state` - The state of the subnet (`pending` \| `available`).
23320
23571
  #
@@ -25652,8 +25903,8 @@ module Aws::EC2
25652
25903
  # * `accepter-vpc-info.cidr-block` - The IPv4 CIDR block of the
25653
25904
  # accepter VPC.
25654
25905
  #
25655
- # * `accepter-vpc-info.owner-id` - The AWS account ID of the owner of
25656
- # the accepter VPC.
25906
+ # * `accepter-vpc-info.owner-id` - The ID of the account that owns the
25907
+ # accepter VPC.
25657
25908
  #
25658
25909
  # * `accepter-vpc-info.vpc-id` - The ID of the accepter VPC.
25659
25910
  #
@@ -25663,7 +25914,7 @@ module Aws::EC2
25663
25914
  # * `requester-vpc-info.cidr-block` - The IPv4 CIDR block of the
25664
25915
  # requester's VPC.
25665
25916
  #
25666
- # * `requester-vpc-info.owner-id` - The AWS account ID of the owner of
25917
+ # * `requester-vpc-info.owner-id` - The ID of the account that owns
25667
25918
  # the requester VPC.
25668
25919
  #
25669
25920
  # * `requester-vpc-info.vpc-id` - The ID of the requester VPC.
@@ -25789,9 +26040,9 @@ module Aws::EC2
25789
26040
  # * `ipv6-cidr-block-association.state` - The state of an IPv6 CIDR
25790
26041
  # block associated with the VPC.
25791
26042
  #
25792
- # * `isDefault` - Indicates whether the VPC is the default VPC.
26043
+ # * `is-default` - Indicates whether the VPC is the default VPC.
25793
26044
  #
25794
- # * `owner-id` - The ID of the AWS account that owns the VPC.
26045
+ # * `owner-id` - The ID of the account that owns the VPC.
25795
26046
  #
25796
26047
  # * `state` - The state of the VPC (`pending` \| `available`).
25797
26048
  #
@@ -26302,7 +26553,7 @@ module Aws::EC2
26302
26553
  # @return [String]
26303
26554
  #
26304
26555
  # @!attribute [rw] owner_id
26305
- # The ID of the AWS account that owns the DHCP options set.
26556
+ # The ID of the account that owns the DHCP options set.
26306
26557
  # @return [String]
26307
26558
  #
26308
26559
  # @!attribute [rw] tags
@@ -26476,13 +26727,13 @@ module Aws::EC2
26476
26727
  # @return [String]
26477
26728
  #
26478
26729
  # @!attribute [rw] owner_id
26479
- # The ID of the AWS account that enabled fast snapshot restores on the
26730
+ # The ID of the account that enabled fast snapshot restores on the
26480
26731
  # snapshot.
26481
26732
  # @return [String]
26482
26733
  #
26483
26734
  # @!attribute [rw] owner_alias
26484
- # The AWS owner alias that enabled fast snapshot restores on the
26485
- # snapshot. This is intended for future use.
26735
+ # The Amazon Web Services owner alias that enabled fast snapshot
26736
+ # restores on the snapshot. This is intended for future use.
26486
26737
  # @return [String]
26487
26738
  #
26488
26739
  # @!attribute [rw] enabling_time
@@ -28169,13 +28420,13 @@ module Aws::EC2
28169
28420
  # @return [String]
28170
28421
  #
28171
28422
  # @!attribute [rw] owner_id
28172
- # The ID of the AWS account that enabled fast snapshot restores on the
28423
+ # The ID of the account that enabled fast snapshot restores on the
28173
28424
  # snapshot.
28174
28425
  # @return [String]
28175
28426
  #
28176
28427
  # @!attribute [rw] owner_alias
28177
- # The AWS owner alias that enabled fast snapshot restores on the
28178
- # snapshot. This is intended for future use.
28428
+ # The Amazon Web Services owner alias that enabled fast snapshot
28429
+ # restores on the snapshot. This is intended for future use.
28179
28430
  # @return [String]
28180
28431
  #
28181
28432
  # @!attribute [rw] enabling_time
@@ -28237,7 +28488,7 @@ module Aws::EC2
28237
28488
  # @!attribute [rw] source_snapshot_ids
28238
28489
  # The IDs of one or more snapshots. For example,
28239
28490
  # `snap-1234567890abcdef0`. You can specify a snapshot that was shared
28240
- # with you from another AWS account.
28491
+ # with you from another account.
28241
28492
  # @return [Array<String>]
28242
28493
  #
28243
28494
  # @!attribute [rw] dry_run
@@ -30936,8 +31187,8 @@ module Aws::EC2
30936
31187
  end
30937
31188
 
30938
31189
  # @!attribute [rw] kms_key_id
30939
- # The Amazon Resource Name (ARN) of the default CMK for encryption by
30940
- # default.
31190
+ # The Amazon Resource Name (ARN) of the default KMS key for encryption
31191
+ # by default.
30941
31192
  # @return [String]
30942
31193
  #
30943
31194
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetEbsDefaultKmsKeyIdResult AWS API Documentation
@@ -31514,6 +31765,97 @@ module Aws::EC2
31514
31765
  include Aws::Structure
31515
31766
  end
31516
31767
 
31768
+ # @note When making an API call, you may pass GetSubnetCidrReservationsRequest
31769
+ # data as a hash:
31770
+ #
31771
+ # {
31772
+ # filters: [
31773
+ # {
31774
+ # name: "String",
31775
+ # values: ["String"],
31776
+ # },
31777
+ # ],
31778
+ # subnet_id: "SubnetId", # required
31779
+ # dry_run: false,
31780
+ # next_token: "String",
31781
+ # max_results: 1,
31782
+ # }
31783
+ #
31784
+ # @!attribute [rw] filters
31785
+ # One or more filters.
31786
+ #
31787
+ # * `reservationType` - The type of reservation (`prefix` \|
31788
+ # `explicit`).
31789
+ #
31790
+ # * `subnet-id` - The ID of the subnet.
31791
+ #
31792
+ # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned
31793
+ # to the resource. Use the tag key in the filter name and the tag
31794
+ # value as the filter value. For example, to find all resources that
31795
+ # have a tag with the key `Owner` and the value `TeamA`, specify
31796
+ # `tag:Owner` for the filter name and `TeamA` for the filter value.
31797
+ #
31798
+ # * `tag-key` - The key of a tag assigned to the resource. Use this
31799
+ # filter to find all resources assigned a tag with a specific key,
31800
+ # regardless of the tag value.
31801
+ # @return [Array<Types::Filter>]
31802
+ #
31803
+ # @!attribute [rw] subnet_id
31804
+ # The ID of the subnet.
31805
+ # @return [String]
31806
+ #
31807
+ # @!attribute [rw] dry_run
31808
+ # Checks whether you have the required permissions for the action,
31809
+ # without actually making the request, and provides an error response.
31810
+ # If you have the required permissions, the error response is
31811
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
31812
+ # @return [Boolean]
31813
+ #
31814
+ # @!attribute [rw] next_token
31815
+ # The token for the next page of results.
31816
+ # @return [String]
31817
+ #
31818
+ # @!attribute [rw] max_results
31819
+ # The maximum number of results to return with a single call. To
31820
+ # retrieve the remaining results, make another call with the returned
31821
+ # `nextToken` value.
31822
+ # @return [Integer]
31823
+ #
31824
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetSubnetCidrReservationsRequest AWS API Documentation
31825
+ #
31826
+ class GetSubnetCidrReservationsRequest < Struct.new(
31827
+ :filters,
31828
+ :subnet_id,
31829
+ :dry_run,
31830
+ :next_token,
31831
+ :max_results)
31832
+ SENSITIVE = []
31833
+ include Aws::Structure
31834
+ end
31835
+
31836
+ # @!attribute [rw] subnet_ipv_4_cidr_reservations
31837
+ # Information about the IPv4 subnet CIDR reservations.
31838
+ # @return [Array<Types::SubnetCidrReservation>]
31839
+ #
31840
+ # @!attribute [rw] subnet_ipv_6_cidr_reservations
31841
+ # Information about the IPv6 subnet CIDR reservations.
31842
+ # @return [Array<Types::SubnetCidrReservation>]
31843
+ #
31844
+ # @!attribute [rw] next_token
31845
+ # The token to use to retrieve the next page of results. This value is
31846
+ # `null` when there are no more results to return.
31847
+ # @return [String]
31848
+ #
31849
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetSubnetCidrReservationsResult AWS API Documentation
31850
+ #
31851
+ class GetSubnetCidrReservationsResult < Struct.new(
31852
+ :subnet_ipv_4_cidr_reservations,
31853
+ :subnet_ipv_6_cidr_reservations,
31854
+ :next_token)
31855
+ SENSITIVE = []
31856
+ include Aws::Structure
31857
+ end
31858
+
31517
31859
  # @note When making an API call, you may pass GetTransitGatewayAttachmentPropagationsRequest
31518
31860
  # data as a hash:
31519
31861
  #
@@ -34859,6 +35201,21 @@ module Aws::EC2
34859
35201
  include Aws::Structure
34860
35202
  end
34861
35203
 
35204
+ # Information about an IPv4 delegated prefix.
35205
+ #
35206
+ # @!attribute [rw] ipv_4_prefix
35207
+ # One or more IPv4 delegated prefixes assigned to the network
35208
+ # interface.
35209
+ # @return [String]
35210
+ #
35211
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceIpv4Prefix AWS API Documentation
35212
+ #
35213
+ class InstanceIpv4Prefix < Struct.new(
35214
+ :ipv_4_prefix)
35215
+ SENSITIVE = []
35216
+ include Aws::Structure
35217
+ end
35218
+
34862
35219
  # Describes an IPv6 address.
34863
35220
  #
34864
35221
  # @note When making an API call, you may pass InstanceIpv6Address
@@ -34901,6 +35258,21 @@ module Aws::EC2
34901
35258
  include Aws::Structure
34902
35259
  end
34903
35260
 
35261
+ # Information about an IPv6 delegated prefix.
35262
+ #
35263
+ # @!attribute [rw] ipv_6_prefix
35264
+ # One or more IPv6 delegated prefixes assigned to the network
35265
+ # interface.
35266
+ # @return [String]
35267
+ #
35268
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceIpv6Prefix AWS API Documentation
35269
+ #
35270
+ class InstanceIpv6Prefix < Struct.new(
35271
+ :ipv_6_prefix)
35272
+ SENSITIVE = []
35273
+ include Aws::Structure
35274
+ end
35275
+
34904
35276
  # Describes the market (purchasing) option for the instances.
34905
35277
  #
34906
35278
  # @note When making an API call, you may pass InstanceMarketOptionsRequest
@@ -35145,6 +35517,16 @@ module Aws::EC2
35145
35517
  # Valid values: `interface` \| `efa` \| `trunk`
35146
35518
  # @return [String]
35147
35519
  #
35520
+ # @!attribute [rw] ipv_4_prefixes
35521
+ # The IPv4 delegated prefixes that are assigned to the network
35522
+ # interface.
35523
+ # @return [Array<Types::InstanceIpv4Prefix>]
35524
+ #
35525
+ # @!attribute [rw] ipv_6_prefixes
35526
+ # The IPv6 delegated prefixes that are assigned to the network
35527
+ # interface.
35528
+ # @return [Array<Types::InstanceIpv6Prefix>]
35529
+ #
35148
35530
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceNetworkInterface AWS API Documentation
35149
35531
  #
35150
35532
  class InstanceNetworkInterface < Struct.new(
@@ -35163,7 +35545,9 @@ module Aws::EC2
35163
35545
  :status,
35164
35546
  :subnet_id,
35165
35547
  :vpc_id,
35166
- :interface_type)
35548
+ :interface_type,
35549
+ :ipv_4_prefixes,
35550
+ :ipv_6_prefixes)
35167
35551
  SENSITIVE = []
35168
35552
  include Aws::Structure
35169
35553
  end
@@ -35269,6 +35653,18 @@ module Aws::EC2
35269
35653
  # associate_carrier_ip_address: false,
35270
35654
  # interface_type: "String",
35271
35655
  # network_card_index: 1,
35656
+ # ipv_4_prefixes: [
35657
+ # {
35658
+ # ipv_4_prefix: "String",
35659
+ # },
35660
+ # ],
35661
+ # ipv_4_prefix_count: 1,
35662
+ # ipv_6_prefixes: [
35663
+ # {
35664
+ # ipv_6_prefix: "String",
35665
+ # },
35666
+ # ],
35667
+ # ipv_6_prefix_count: 1,
35272
35668
  # }
35273
35669
  #
35274
35670
  # @!attribute [rw] associate_public_ip_address
@@ -35395,6 +35791,30 @@ module Aws::EC2
35395
35791
  # network card index 0. The default is network card index 0.
35396
35792
  # @return [Integer]
35397
35793
  #
35794
+ # @!attribute [rw] ipv_4_prefixes
35795
+ # One or more IPv4 delegated prefixes to be assigned to the network
35796
+ # interface. You cannot use this option if you use the
35797
+ # `Ipv4PrefixCount` option.
35798
+ # @return [Array<Types::Ipv4PrefixSpecificationRequest>]
35799
+ #
35800
+ # @!attribute [rw] ipv_4_prefix_count
35801
+ # The number of IPv4 delegated prefixes to be automatically assigned
35802
+ # to the network interface. You cannot use this option if you use the
35803
+ # `Ipv4Prefix` option.
35804
+ # @return [Integer]
35805
+ #
35806
+ # @!attribute [rw] ipv_6_prefixes
35807
+ # One or more IPv6 delegated prefixes to be assigned to the network
35808
+ # interface. You cannot use this option if you use the
35809
+ # `Ipv6PrefixCount` option.
35810
+ # @return [Array<Types::Ipv6PrefixSpecificationRequest>]
35811
+ #
35812
+ # @!attribute [rw] ipv_6_prefix_count
35813
+ # The number of IPv6 delegated prefixes to be automatically assigned
35814
+ # to the network interface. You cannot use this option if you use the
35815
+ # `Ipv6Prefix` option.
35816
+ # @return [Integer]
35817
+ #
35398
35818
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceNetworkInterfaceSpecification AWS API Documentation
35399
35819
  #
35400
35820
  class InstanceNetworkInterfaceSpecification < Struct.new(
@@ -35412,7 +35832,11 @@ module Aws::EC2
35412
35832
  :subnet_id,
35413
35833
  :associate_carrier_ip_address,
35414
35834
  :interface_type,
35415
- :network_card_index)
35835
+ :network_card_index,
35836
+ :ipv_4_prefixes,
35837
+ :ipv_4_prefix_count,
35838
+ :ipv_6_prefixes,
35839
+ :ipv_6_prefix_count)
35416
35840
  SENSITIVE = []
35417
35841
  include Aws::Structure
35418
35842
  end
@@ -35958,7 +36382,7 @@ module Aws::EC2
35958
36382
  # @return [String]
35959
36383
  #
35960
36384
  # @!attribute [rw] owner_id
35961
- # The ID of the AWS account that owns the internet gateway.
36385
+ # The ID of the account that owns the internet gateway.
35962
36386
  # @return [String]
35963
36387
  #
35964
36388
  # @!attribute [rw] tags
@@ -36131,6 +36555,67 @@ module Aws::EC2
36131
36555
  include Aws::Structure
36132
36556
  end
36133
36557
 
36558
+ # Describes an IPv4 Prefix Delegation.
36559
+ #
36560
+ # @!attribute [rw] ipv_4_prefix
36561
+ # The IPv4 Prefix Delegation prefix. For information, see [Prefix
36562
+ # Delegation][1] in the *Amazon Elastic Compute Cloud User Guide*.
36563
+ #
36564
+ #
36565
+ #
36566
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-prefix-delegation
36567
+ # @return [String]
36568
+ #
36569
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipv4PrefixSpecification AWS API Documentation
36570
+ #
36571
+ class Ipv4PrefixSpecification < Struct.new(
36572
+ :ipv_4_prefix)
36573
+ SENSITIVE = []
36574
+ include Aws::Structure
36575
+ end
36576
+
36577
+ # Describes the IPv4 Prefix Delegation option for a network interface.
36578
+ #
36579
+ # @note When making an API call, you may pass Ipv4PrefixSpecificationRequest
36580
+ # data as a hash:
36581
+ #
36582
+ # {
36583
+ # ipv_4_prefix: "String",
36584
+ # }
36585
+ #
36586
+ # @!attribute [rw] ipv_4_prefix
36587
+ # The IPv4 Prefix Delegation prefix. For information, see [Prefix
36588
+ # Delegation][1] in the *Amazon Elastic Compute Cloud User Guide*.
36589
+ #
36590
+ #
36591
+ #
36592
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-prefix-delegation
36593
+ # @return [String]
36594
+ #
36595
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipv4PrefixSpecificationRequest AWS API Documentation
36596
+ #
36597
+ class Ipv4PrefixSpecificationRequest < Struct.new(
36598
+ :ipv_4_prefix)
36599
+ SENSITIVE = []
36600
+ include Aws::Structure
36601
+ end
36602
+
36603
+ # Information about the IPv4 delegated prefixes assigned to a network
36604
+ # interface.
36605
+ #
36606
+ # @!attribute [rw] ipv_4_prefix
36607
+ # One or more IPv4 delegated prefixes assigned to the network
36608
+ # interface.
36609
+ # @return [String]
36610
+ #
36611
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipv4PrefixSpecificationResponse AWS API Documentation
36612
+ #
36613
+ class Ipv4PrefixSpecificationResponse < Struct.new(
36614
+ :ipv_4_prefix)
36615
+ SENSITIVE = []
36616
+ include Aws::Structure
36617
+ end
36618
+
36134
36619
  # Describes an IPv6 CIDR block association.
36135
36620
  #
36136
36621
  # @!attribute [rw] ipv_6_cidr
@@ -36193,6 +36678,57 @@ module Aws::EC2
36193
36678
  include Aws::Structure
36194
36679
  end
36195
36680
 
36681
+ # Describes the IPv6 Prefix Delegation.
36682
+ #
36683
+ # @!attribute [rw] ipv_6_prefix
36684
+ # The IPv6 Prefix Delegation prefix.
36685
+ # @return [String]
36686
+ #
36687
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipv6PrefixSpecification AWS API Documentation
36688
+ #
36689
+ class Ipv6PrefixSpecification < Struct.new(
36690
+ :ipv_6_prefix)
36691
+ SENSITIVE = []
36692
+ include Aws::Structure
36693
+ end
36694
+
36695
+ # Describes the IPv4 Prefix Delegation option for a network interface.
36696
+ #
36697
+ # @note When making an API call, you may pass Ipv6PrefixSpecificationRequest
36698
+ # data as a hash:
36699
+ #
36700
+ # {
36701
+ # ipv_6_prefix: "String",
36702
+ # }
36703
+ #
36704
+ # @!attribute [rw] ipv_6_prefix
36705
+ # The IPv6 Prefix Delegation prefix.
36706
+ # @return [String]
36707
+ #
36708
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipv6PrefixSpecificationRequest AWS API Documentation
36709
+ #
36710
+ class Ipv6PrefixSpecificationRequest < Struct.new(
36711
+ :ipv_6_prefix)
36712
+ SENSITIVE = []
36713
+ include Aws::Structure
36714
+ end
36715
+
36716
+ # Information about the IPv6 delegated prefixes assigned to a network
36717
+ # interface.
36718
+ #
36719
+ # @!attribute [rw] ipv_6_prefix
36720
+ # One or more IPv6 delegated prefixes assigned to the network
36721
+ # interface.
36722
+ # @return [String]
36723
+ #
36724
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipv6PrefixSpecificationResponse AWS API Documentation
36725
+ #
36726
+ class Ipv6PrefixSpecificationResponse < Struct.new(
36727
+ :ipv_6_prefix)
36728
+ SENSITIVE = []
36729
+ include Aws::Structure
36730
+ end
36731
+
36196
36732
  # \[EC2-VPC only\] Describes an IPv6 range.
36197
36733
  #
36198
36734
  # @note When making an API call, you may pass Ipv6Range
@@ -36805,8 +37341,7 @@ module Aws::EC2
36805
37341
  # @return [Integer]
36806
37342
  #
36807
37343
  # @!attribute [rw] kms_key_id
36808
- # The ARN of the AWS Key Management Service (AWS KMS) CMK used for
36809
- # encryption.
37344
+ # The ARN of the Key Management Service (KMS) CMK used for encryption.
36810
37345
  # @return [String]
36811
37346
  #
36812
37347
  # @!attribute [rw] snapshot_id
@@ -36896,8 +37431,8 @@ module Aws::EC2
36896
37431
  # @return [Integer]
36897
37432
  #
36898
37433
  # @!attribute [rw] kms_key_id
36899
- # The ARN of the symmetric AWS Key Management Service (AWS KMS) CMK
36900
- # used for encryption.
37434
+ # The ARN of the symmetric Key Management Service (KMS) CMK used for
37435
+ # encryption.
36901
37436
  # @return [String]
36902
37437
  #
36903
37438
  # @!attribute [rw] snapshot_id
@@ -37003,11 +37538,13 @@ module Aws::EC2
37003
37538
  include Aws::Structure
37004
37539
  end
37005
37540
 
37006
- # Indicates whether the instance is enabled for AWS Nitro Enclaves.
37541
+ # Indicates whether the instance is enabled for Amazon Web Services
37542
+ # Nitro Enclaves.
37007
37543
  #
37008
37544
  # @!attribute [rw] enabled
37009
- # If this parameter is set to `true`, the instance is enabled for AWS
37010
- # Nitro Enclaves; otherwise, it is not enabled for AWS Nitro Enclaves.
37545
+ # If this parameter is set to `true`, the instance is enabled for
37546
+ # Amazon Web Services Nitro Enclaves; otherwise, it is not enabled for
37547
+ # Amazon Web Services Nitro Enclaves.
37011
37548
  # @return [Boolean]
37012
37549
  #
37013
37550
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateEnclaveOptions AWS API Documentation
@@ -37018,9 +37555,10 @@ module Aws::EC2
37018
37555
  include Aws::Structure
37019
37556
  end
37020
37557
 
37021
- # Indicates whether the instance is enabled for AWS Nitro Enclaves. For
37022
- # more information, see [ What is AWS Nitro Enclaves?][1] in the *AWS
37023
- # Nitro Enclaves User Guide*.
37558
+ # Indicates whether the instance is enabled for Amazon Web Services
37559
+ # Nitro Enclaves. For more information, see [ What is Amazon Web
37560
+ # Services Nitro Enclaves?][1] in the *Amazon Web Services Nitro
37561
+ # Enclaves User Guide*.
37024
37562
  #
37025
37563
  #
37026
37564
  #
@@ -37034,8 +37572,8 @@ module Aws::EC2
37034
37572
  # }
37035
37573
  #
37036
37574
  # @!attribute [rw] enabled
37037
- # To enable the instance for AWS Nitro Enclaves, set this parameter to
37038
- # `true`.
37575
+ # To enable the instance for Amazon Web Services Nitro Enclaves, set
37576
+ # this parameter to `true`.
37039
37577
  # @return [Boolean]
37040
37578
  #
37041
37579
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateEnclaveOptionsRequest AWS API Documentation
@@ -37332,7 +37870,7 @@ module Aws::EC2
37332
37870
  # Use this option when you launch an instance in a Wavelength Zone and
37333
37871
  # want to associate a Carrier IP address with the network interface.
37334
37872
  # For more information about Carrier IP addresses, see [Carrier IP
37335
- # addresses][1] in the *AWS Wavelength Developer Guide*.
37873
+ # addresses][1] in the *Wavelength Developer Guide*.
37336
37874
  #
37337
37875
  #
37338
37876
  #
@@ -37398,6 +37936,26 @@ module Aws::EC2
37398
37936
  # The index of the network card.
37399
37937
  # @return [Integer]
37400
37938
  #
37939
+ # @!attribute [rw] ipv_4_prefixes
37940
+ # One or more IPv4 delegated prefixes assigned to the network
37941
+ # interface.
37942
+ # @return [Array<Types::Ipv4PrefixSpecificationResponse>]
37943
+ #
37944
+ # @!attribute [rw] ipv_4_prefix_count
37945
+ # The number of IPv4 delegated prefixes that AWS automatically
37946
+ # assigned to the network interface.
37947
+ # @return [Integer]
37948
+ #
37949
+ # @!attribute [rw] ipv_6_prefixes
37950
+ # One or more IPv6 delegated prefixes assigned to the network
37951
+ # interface.
37952
+ # @return [Array<Types::Ipv6PrefixSpecificationResponse>]
37953
+ #
37954
+ # @!attribute [rw] ipv_6_prefix_count
37955
+ # The number of IPv6 delegated prefixes that AWS automatically
37956
+ # assigned to the network interface.
37957
+ # @return [Integer]
37958
+ #
37401
37959
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateInstanceNetworkInterfaceSpecification AWS API Documentation
37402
37960
  #
37403
37961
  class LaunchTemplateInstanceNetworkInterfaceSpecification < Struct.new(
@@ -37415,7 +37973,11 @@ module Aws::EC2
37415
37973
  :private_ip_addresses,
37416
37974
  :secondary_private_ip_address_count,
37417
37975
  :subnet_id,
37418
- :network_card_index)
37976
+ :network_card_index,
37977
+ :ipv_4_prefixes,
37978
+ :ipv_4_prefix_count,
37979
+ :ipv_6_prefixes,
37980
+ :ipv_6_prefix_count)
37419
37981
  SENSITIVE = []
37420
37982
  include Aws::Structure
37421
37983
  end
@@ -37450,6 +38012,18 @@ module Aws::EC2
37450
38012
  # secondary_private_ip_address_count: 1,
37451
38013
  # subnet_id: "SubnetId",
37452
38014
  # network_card_index: 1,
38015
+ # ipv_4_prefixes: [
38016
+ # {
38017
+ # ipv_4_prefix: "String",
38018
+ # },
38019
+ # ],
38020
+ # ipv_4_prefix_count: 1,
38021
+ # ipv_6_prefixes: [
38022
+ # {
38023
+ # ipv_6_prefix: "String",
38024
+ # },
38025
+ # ],
38026
+ # ipv_6_prefix_count: 1,
37453
38027
  # }
37454
38028
  #
37455
38029
  # @!attribute [rw] associate_carrier_ip_address
@@ -37459,7 +38033,7 @@ module Aws::EC2
37459
38033
  # Use this option when you launch an instance in a Wavelength Zone and
37460
38034
  # want to associate a Carrier IP address with the network interface.
37461
38035
  # For more information about Carrier IP addresses, see [Carrier IP
37462
- # addresses][1] in the *AWS Wavelength Developer Guide*.
38036
+ # addresses][1] in the *Wavelength Developer Guide*.
37463
38037
  #
37464
38038
  #
37465
38039
  #
@@ -37543,6 +38117,30 @@ module Aws::EC2
37543
38117
  # network card index 0. The default is network card index 0.
37544
38118
  # @return [Integer]
37545
38119
  #
38120
+ # @!attribute [rw] ipv_4_prefixes
38121
+ # One or more IPv4 delegated prefixes to be assigned to the network
38122
+ # interface. You cannot use this option if you use the
38123
+ # `Ipv4PrefixCount` option.
38124
+ # @return [Array<Types::Ipv4PrefixSpecificationRequest>]
38125
+ #
38126
+ # @!attribute [rw] ipv_4_prefix_count
38127
+ # The number of IPv4 delegated prefixes to be automatically assigned
38128
+ # to the network interface. You cannot use this option if you use the
38129
+ # `Ipv4Prefix` option.
38130
+ # @return [Integer]
38131
+ #
38132
+ # @!attribute [rw] ipv_6_prefixes
38133
+ # One or more IPv6 delegated prefixes to be assigned to the network
38134
+ # interface. You cannot use this option if you use the
38135
+ # `Ipv6PrefixCount` option.
38136
+ # @return [Array<Types::Ipv6PrefixSpecificationRequest>]
38137
+ #
38138
+ # @!attribute [rw] ipv_6_prefix_count
38139
+ # The number of IPv6 delegated prefixes to be automatically assigned
38140
+ # to the network interface. You cannot use this option if you use the
38141
+ # `Ipv6Prefix` option.
38142
+ # @return [Integer]
38143
+ #
37546
38144
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateInstanceNetworkInterfaceSpecificationRequest AWS API Documentation
37547
38145
  #
37548
38146
  class LaunchTemplateInstanceNetworkInterfaceSpecificationRequest < Struct.new(
@@ -37560,7 +38158,11 @@ module Aws::EC2
37560
38158
  :private_ip_addresses,
37561
38159
  :secondary_private_ip_address_count,
37562
38160
  :subnet_id,
37563
- :network_card_index)
38161
+ :network_card_index,
38162
+ :ipv_4_prefixes,
38163
+ :ipv_4_prefix_count,
38164
+ :ipv_6_prefixes,
38165
+ :ipv_6_prefix_count)
37564
38166
  SENSITIVE = []
37565
38167
  include Aws::Structure
37566
38168
  end
@@ -38992,12 +39594,12 @@ module Aws::EC2
38992
39594
  # }
38993
39595
  #
38994
39596
  # @!attribute [rw] kms_key_id
38995
- # The identifier of the AWS Key Management Service (AWS KMS) customer
38996
- # master key (CMK) to use for Amazon EBS encryption. If this parameter
38997
- # is not specified, your AWS managed CMK for EBS is used. If
38998
- # `KmsKeyId` is specified, the encrypted state must be `true`.
39597
+ # The identifier of the Key Management Service (KMS) KMS key to use
39598
+ # for Amazon EBS encryption. If this parameter is not specified, your
39599
+ # KMS key for Amazon EBS is used. If `KmsKeyId` is specified, the
39600
+ # encrypted state must be `true`.
38999
39601
  #
39000
- # You can specify the CMK using any of the following:
39602
+ # You can specify the KMS key using any of the following:
39001
39603
  #
39002
39604
  # * Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab.
39003
39605
  #
@@ -39009,11 +39611,11 @@ module Aws::EC2
39009
39611
  # * Alias ARN. For example,
39010
39612
  # arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.
39011
39613
  #
39012
- # AWS authenticates the CMK asynchronously. Therefore, if you specify
39013
- # an ID, alias, or ARN that is not valid, the action can appear to
39014
- # complete, but eventually fails.
39614
+ # Amazon Web Services authenticates the KMS key asynchronously.
39615
+ # Therefore, if you specify an ID, alias, or ARN that is not valid,
39616
+ # the action can appear to complete, but eventually fails.
39015
39617
  #
39016
- # Amazon EBS does not support asymmetric CMKs.
39618
+ # Amazon EBS does not support asymmetric KMS keys.
39017
39619
  # @return [String]
39018
39620
  #
39019
39621
  # @!attribute [rw] dry_run
@@ -39033,8 +39635,8 @@ module Aws::EC2
39033
39635
  end
39034
39636
 
39035
39637
  # @!attribute [rw] kms_key_id
39036
- # The Amazon Resource Name (ARN) of the default CMK for encryption by
39037
- # default.
39638
+ # The Amazon Resource Name (ARN) of the default KMS key for encryption
39639
+ # by default.
39038
39640
  # @return [String]
39039
39641
  #
39040
39642
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyEbsDefaultKmsKeyIdResult AWS API Documentation
@@ -41324,7 +41926,7 @@ module Aws::EC2
41324
41926
  #
41325
41927
  # * `standard`\: 1-1,024
41326
41928
  #
41327
- # Default: If no size is specified, the existing size is retained.
41929
+ # Default: The existing size is retained.
41328
41930
  # @return [Integer]
41329
41931
  #
41330
41932
  # @!attribute [rw] volume_type
@@ -41332,7 +41934,7 @@ module Aws::EC2
41332
41934
  # [Amazon EBS volume types][1] in the *Amazon Elastic Compute Cloud
41333
41935
  # User Guide*.
41334
41936
  #
41335
- # Default: If no type is specified, the existing type is retained.
41937
+ # Default: The existing type is retained.
41336
41938
  #
41337
41939
  #
41338
41940
  #
@@ -41351,17 +41953,17 @@ module Aws::EC2
41351
41953
  #
41352
41954
  # * `io2`\: 100-64,000 IOPS
41353
41955
  #
41354
- # Default: If no IOPS value is specified, the existing value is
41355
- # retained, unless a volume type is modified that supports different
41356
- # values.
41956
+ # Default: The existing value is retained if you keep the same volume
41957
+ # type. If you change the volume type to `io1`, `io2`, or `gp3`, the
41958
+ # default is 3,000.
41357
41959
  # @return [Integer]
41358
41960
  #
41359
41961
  # @!attribute [rw] throughput
41360
41962
  # The target throughput of the volume, in MiB/s. This parameter is
41361
41963
  # valid only for `gp3` volumes. The maximum value is 1,000.
41362
41964
  #
41363
- # Default: If no throughput value is specified, the existing value is
41364
- # retained.
41965
+ # Default: The existing value is retained if the source and target
41966
+ # volume type is `gp3`. Otherwise, the default value is 125.
41365
41967
  #
41366
41968
  # Valid Range: Minimum value of 125. Maximum value of 1000.
41367
41969
  # @return [Integer]
@@ -42696,7 +43298,7 @@ module Aws::EC2
42696
43298
  # @return [String]
42697
43299
  #
42698
43300
  # @!attribute [rw] owner_id
42699
- # The ID of the AWS account that owns the network ACL.
43301
+ # The ID of the account that owns the network ACL.
42700
43302
  # @return [String]
42701
43303
  #
42702
43304
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NetworkAcl AWS API Documentation
@@ -42893,8 +43495,8 @@ module Aws::EC2
42893
43495
  # @return [String]
42894
43496
  #
42895
43497
  # @!attribute [rw] filter_in_arns
42896
- # The Amazon Resource Names (ARN) of the AWS resources that the path
42897
- # must traverse.
43498
+ # The Amazon Resource Names (ARN) of the Amazon Web Services resources
43499
+ # that the path must traverse.
42898
43500
  # @return [Array<String>]
42899
43501
  #
42900
43502
  # @!attribute [rw] start_date
@@ -42973,20 +43575,22 @@ module Aws::EC2
42973
43575
  # @return [Time]
42974
43576
  #
42975
43577
  # @!attribute [rw] source
42976
- # The AWS resource that is the source of the path.
43578
+ # The Amazon Web Services resource that is the source of the path.
42977
43579
  # @return [String]
42978
43580
  #
42979
43581
  # @!attribute [rw] destination
42980
- # The AWS resource that is the destination of the path.
43582
+ # The Amazon Web Services resource that is the destination of the
43583
+ # path.
42981
43584
  # @return [String]
42982
43585
  #
42983
43586
  # @!attribute [rw] source_ip
42984
- # The IP address of the AWS resource that is the source of the path.
43587
+ # The IP address of the Amazon Web Services resource that is the
43588
+ # source of the path.
42985
43589
  # @return [String]
42986
43590
  #
42987
43591
  # @!attribute [rw] destination_ip
42988
- # The IP address of the AWS resource that is the destination of the
42989
- # path.
43592
+ # The IP address of the Amazon Web Services resource that is the
43593
+ # destination of the path.
42990
43594
  # @return [String]
42991
43595
  #
42992
43596
  # @!attribute [rw] protocol
@@ -43077,6 +43681,16 @@ module Aws::EC2
43077
43681
  # The private IPv4 addresses associated with the network interface.
43078
43682
  # @return [Array<Types::NetworkInterfacePrivateIpAddress>]
43079
43683
  #
43684
+ # @!attribute [rw] ipv_4_prefixes
43685
+ # The IPv4 Prefix Delegation prefixes that are assigned to the network
43686
+ # interface.
43687
+ # @return [Array<Types::Ipv4PrefixSpecification>]
43688
+ #
43689
+ # @!attribute [rw] ipv_6_prefixes
43690
+ # The IPv6 Prefix Delegation prefixes that are assigned to the network
43691
+ # interface.
43692
+ # @return [Array<Types::Ipv6PrefixSpecification>]
43693
+ #
43080
43694
  # @!attribute [rw] requester_id
43081
43695
  # The alias or account ID of the principal or service that created the
43082
43696
  # network interface.
@@ -43124,6 +43738,8 @@ module Aws::EC2
43124
43738
  :private_dns_name,
43125
43739
  :private_ip_address,
43126
43740
  :private_ip_addresses,
43741
+ :ipv_4_prefixes,
43742
+ :ipv_6_prefixes,
43127
43743
  :requester_id,
43128
43744
  :requester_managed,
43129
43745
  :source_dest_check,
@@ -46512,6 +47128,18 @@ module Aws::EC2
46512
47128
  # secondary_private_ip_address_count: 1,
46513
47129
  # subnet_id: "SubnetId",
46514
47130
  # network_card_index: 1,
47131
+ # ipv_4_prefixes: [
47132
+ # {
47133
+ # ipv_4_prefix: "String",
47134
+ # },
47135
+ # ],
47136
+ # ipv_4_prefix_count: 1,
47137
+ # ipv_6_prefixes: [
47138
+ # {
47139
+ # ipv_6_prefix: "String",
47140
+ # },
47141
+ # ],
47142
+ # ipv_6_prefix_count: 1,
46515
47143
  # },
46516
47144
  # ],
46517
47145
  # image_id: "ImageId",
@@ -46785,8 +47413,8 @@ module Aws::EC2
46785
47413
  # @!attribute [rw] hibernation_options
46786
47414
  # Indicates whether an instance is enabled for hibernation. This
46787
47415
  # parameter is valid only if the instance meets the [hibernation
46788
- # prerequisites][1]. For more information, see [Hibernate Your
46789
- # Instance][2] in the *Amazon Elastic Compute Cloud User Guide*.
47416
+ # prerequisites][1]. For more information, see [Hibernate your
47417
+ # instance][2] in the *Amazon Elastic Compute Cloud User Guide*.
46790
47418
  #
46791
47419
  #
46792
47420
  #
@@ -46796,7 +47424,7 @@ module Aws::EC2
46796
47424
  #
46797
47425
  # @!attribute [rw] metadata_options
46798
47426
  # The metadata options for the instance. For more information, see
46799
- # [Instance Metadata and User Data][1] in the *Amazon Elastic Compute
47427
+ # [Instance metadata and user data][1] in the *Amazon Elastic Compute
46800
47428
  # Cloud User Guide*.
46801
47429
  #
46802
47430
  #
@@ -46805,12 +47433,13 @@ module Aws::EC2
46805
47433
  # @return [Types::LaunchTemplateInstanceMetadataOptionsRequest]
46806
47434
  #
46807
47435
  # @!attribute [rw] enclave_options
46808
- # Indicates whether the instance is enabled for AWS Nitro Enclaves.
46809
- # For more information, see [ What is AWS Nitro Enclaves?][1] in the
46810
- # *AWS Nitro Enclaves User Guide*.
47436
+ # Indicates whether the instance is enabled for Amazon Web Services
47437
+ # Nitro Enclaves. For more information, see [ What is Amazon Web
47438
+ # Services Nitro Enclaves?][1] in the *Amazon Web Services Nitro
47439
+ # Enclaves User Guide*.
46811
47440
  #
46812
- # You can't enable AWS Nitro Enclaves and hibernation on the same
46813
- # instance.
47441
+ # You can't enable Amazon Web Services Nitro Enclaves and hibernation
47442
+ # on the same instance.
46814
47443
  #
46815
47444
  #
46816
47445
  #
@@ -46936,6 +47565,18 @@ module Aws::EC2
46936
47565
  # associate_carrier_ip_address: false,
46937
47566
  # interface_type: "String",
46938
47567
  # network_card_index: 1,
47568
+ # ipv_4_prefixes: [
47569
+ # {
47570
+ # ipv_4_prefix: "String",
47571
+ # },
47572
+ # ],
47573
+ # ipv_4_prefix_count: 1,
47574
+ # ipv_6_prefixes: [
47575
+ # {
47576
+ # ipv_6_prefix: "String",
47577
+ # },
47578
+ # ],
47579
+ # ipv_6_prefix_count: 1,
46939
47580
  # },
46940
47581
  # ],
46941
47582
  # placement: {
@@ -47129,6 +47770,18 @@ module Aws::EC2
47129
47770
  # associate_carrier_ip_address: false,
47130
47771
  # interface_type: "String",
47131
47772
  # network_card_index: 1,
47773
+ # ipv_4_prefixes: [
47774
+ # {
47775
+ # ipv_4_prefix: "String",
47776
+ # },
47777
+ # ],
47778
+ # ipv_4_prefix_count: 1,
47779
+ # ipv_6_prefixes: [
47780
+ # {
47781
+ # ipv_6_prefix: "String",
47782
+ # },
47783
+ # ],
47784
+ # ipv_6_prefix_count: 1,
47132
47785
  # },
47133
47786
  # ],
47134
47787
  # placement: {
@@ -47375,6 +48028,18 @@ module Aws::EC2
47375
48028
  # associate_carrier_ip_address: false,
47376
48029
  # interface_type: "String",
47377
48030
  # network_card_index: 1,
48031
+ # ipv_4_prefixes: [
48032
+ # {
48033
+ # ipv_4_prefix: "String",
48034
+ # },
48035
+ # ],
48036
+ # ipv_4_prefix_count: 1,
48037
+ # ipv_6_prefixes: [
48038
+ # {
48039
+ # ipv_6_prefix: "String",
48040
+ # },
48041
+ # ],
48042
+ # ipv_6_prefix_count: 1,
47378
48043
  # },
47379
48044
  # ],
47380
48045
  # placement: {
@@ -48083,8 +48748,8 @@ module Aws::EC2
48083
48748
  end
48084
48749
 
48085
48750
  # @!attribute [rw] kms_key_id
48086
- # The Amazon Resource Name (ARN) of the default CMK for EBS encryption
48087
- # by default.
48751
+ # The Amazon Resource Name (ARN) of the default KMS key for EBS
48752
+ # encryption by default.
48088
48753
  # @return [String]
48089
48754
  #
48090
48755
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ResetEbsDefaultKmsKeyIdResult AWS API Documentation
@@ -48399,7 +49064,7 @@ module Aws::EC2
48399
49064
  #
48400
49065
  # @!attribute [rw] cpu_options
48401
49066
  # The CPU options for the instance. For more information, see
48402
- # [Optimizing CPU Options][1] in the *Amazon Elastic Compute Cloud
49067
+ # [Optimizing CPU options][1] in the *Amazon Elastic Compute Cloud
48403
49068
  # User Guide*.
48404
49069
  #
48405
49070
  #
@@ -48417,7 +49082,7 @@ module Aws::EC2
48417
49082
  #
48418
49083
  # @!attribute [rw] hibernation_options
48419
49084
  # Indicates whether an instance is configured for hibernation. For
48420
- # more information, see [Hibernate Your Instance][1] in the *Amazon
49085
+ # more information, see [Hibernate your instance][1] in the *Amazon
48421
49086
  # Elastic Compute Cloud User Guide*.
48422
49087
  #
48423
49088
  #
@@ -48427,7 +49092,7 @@ module Aws::EC2
48427
49092
  #
48428
49093
  # @!attribute [rw] metadata_options
48429
49094
  # The metadata options for the instance. For more information, see
48430
- # [Instance Metadata and User Data][1] in the *Amazon Elastic Compute
49095
+ # [Instance metadata and user data][1] in the *Amazon Elastic Compute
48431
49096
  # Cloud User Guide*.
48432
49097
  #
48433
49098
  #
@@ -48436,7 +49101,8 @@ module Aws::EC2
48436
49101
  # @return [Types::LaunchTemplateInstanceMetadataOptions]
48437
49102
  #
48438
49103
  # @!attribute [rw] enclave_options
48439
- # Indicates whether the instance is enabled for AWS Nitro Enclaves.
49104
+ # Indicates whether the instance is enabled for Amazon Web Services
49105
+ # Nitro Enclaves.
48440
49106
  # @return [Types::LaunchTemplateEnclaveOptions]
48441
49107
  #
48442
49108
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ResponseLaunchTemplateData AWS API Documentation
@@ -48939,7 +49605,7 @@ module Aws::EC2
48939
49605
  # @return [String]
48940
49606
  #
48941
49607
  # @!attribute [rw] destination_prefix_list_id
48942
- # The prefix of the AWS service.
49608
+ # The prefix of the Amazon Web Service.
48943
49609
  # @return [String]
48944
49610
  #
48945
49611
  # @!attribute [rw] egress_only_internet_gateway_id
@@ -48955,7 +49621,7 @@ module Aws::EC2
48955
49621
  # @return [String]
48956
49622
  #
48957
49623
  # @!attribute [rw] instance_owner_id
48958
- # The AWS account ID of the owner of the instance.
49624
+ # The ID of account that owns the instance.
48959
49625
  # @return [String]
48960
49626
  #
48961
49627
  # @!attribute [rw] nat_gateway_id
@@ -49051,7 +49717,7 @@ module Aws::EC2
49051
49717
  # @return [String]
49052
49718
  #
49053
49719
  # @!attribute [rw] owner_id
49054
- # The ID of the AWS account that owns the route table.
49720
+ # The ID of the account that owns the route table.
49055
49721
  # @return [String]
49056
49722
  #
49057
49723
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RouteTable AWS API Documentation
@@ -49239,6 +49905,18 @@ module Aws::EC2
49239
49905
  # associate_carrier_ip_address: false,
49240
49906
  # interface_type: "String",
49241
49907
  # network_card_index: 1,
49908
+ # ipv_4_prefixes: [
49909
+ # {
49910
+ # ipv_4_prefix: "String",
49911
+ # },
49912
+ # ],
49913
+ # ipv_4_prefix_count: 1,
49914
+ # ipv_6_prefixes: [
49915
+ # {
49916
+ # ipv_6_prefix: "String",
49917
+ # },
49918
+ # ],
49919
+ # ipv_6_prefix_count: 1,
49242
49920
  # },
49243
49921
  # ],
49244
49922
  # private_ip_address: "String",
@@ -51612,13 +52290,13 @@ module Aws::EC2
51612
52290
  # @return [Boolean]
51613
52291
  #
51614
52292
  # @!attribute [rw] kms_key_id
51615
- # The Amazon Resource Name (ARN) of the AWS Key Management Service
51616
- # (AWS KMS) customer master key (CMK) that was used to protect the
51617
- # volume encryption key for the parent volume.
52293
+ # The Amazon Resource Name (ARN) of the Key Management Service (KMS)
52294
+ # KMS key that was used to protect the volume encryption key for the
52295
+ # parent volume.
51618
52296
  # @return [String]
51619
52297
  #
51620
52298
  # @!attribute [rw] owner_id
51621
- # The AWS account ID of the EBS snapshot owner.
52299
+ # The ID of the account that owns the EBS snapshot.
51622
52300
  # @return [String]
51623
52301
  #
51624
52302
  # @!attribute [rw] progress
@@ -51640,11 +52318,10 @@ module Aws::EC2
51640
52318
  #
51641
52319
  # @!attribute [rw] state_message
51642
52320
  # Encrypted Amazon EBS snapshots are copied asynchronously. If a
51643
- # snapshot copy operation fails (for example, if the proper AWS Key
51644
- # Management Service (AWS KMS) permissions are not obtained) this
51645
- # field displays error state details to help you diagnose why the
51646
- # error occurred. This parameter is only returned by
51647
- # DescribeSnapshots.
52321
+ # snapshot copy operation fails (for example, if the proper Key
52322
+ # Management Service (KMS) permissions are not obtained) this field
52323
+ # displays error state details to help you diagnose why the error
52324
+ # occurred. This parameter is only returned by DescribeSnapshots.
51648
52325
  # @return [String]
51649
52326
  #
51650
52327
  # @!attribute [rw] volume_id
@@ -51658,15 +52335,15 @@ module Aws::EC2
51658
52335
  # @return [Integer]
51659
52336
  #
51660
52337
  # @!attribute [rw] owner_alias
51661
- # The AWS owner alias, from an Amazon-maintained list (`amazon`). This
51662
- # is not the user-configured AWS account alias set using the IAM
51663
- # console.
52338
+ # The Amazon Web Services owner alias, from an Amazon-maintained list
52339
+ # (`amazon`). This is not the user-configured account alias set using
52340
+ # the IAM console.
51664
52341
  # @return [String]
51665
52342
  #
51666
52343
  # @!attribute [rw] outpost_arn
51667
- # The ARN of the AWS Outpost on which the snapshot is stored. For more
51668
- # information, see [EBS Local Snapshot on Outposts][1] in the *Amazon
51669
- # Elastic Compute Cloud User Guide*.
52344
+ # The ARN of the Outpost on which the snapshot is stored. For more
52345
+ # information, see [Amazon EBS local snapshots on Outposts][1] in the
52346
+ # *Amazon Elastic Compute Cloud User Guide*.
51670
52347
  #
51671
52348
  #
51672
52349
  #
@@ -51848,9 +52525,9 @@ module Aws::EC2
51848
52525
  # @return [String]
51849
52526
  #
51850
52527
  # @!attribute [rw] outpost_arn
51851
- # The ARN of the AWS Outpost on which the snapshot is stored. For more
51852
- # information, see [EBS Local Snapshot on Outposts][1] in the *Amazon
51853
- # Elastic Compute Cloud User Guide*.
52528
+ # The ARN of the Outpost on which the snapshot is stored. For more
52529
+ # information, see [Amazon EBS local snapshots on Outposts][1] in the
52530
+ # *Amazon Elastic Compute Cloud User Guide*.
51854
52531
  #
51855
52532
  #
51856
52533
  #
@@ -52092,6 +52769,18 @@ module Aws::EC2
52092
52769
  # associate_carrier_ip_address: false,
52093
52770
  # interface_type: "String",
52094
52771
  # network_card_index: 1,
52772
+ # ipv_4_prefixes: [
52773
+ # {
52774
+ # ipv_4_prefix: "String",
52775
+ # },
52776
+ # ],
52777
+ # ipv_4_prefix_count: 1,
52778
+ # ipv_6_prefixes: [
52779
+ # {
52780
+ # ipv_6_prefix: "String",
52781
+ # },
52782
+ # ],
52783
+ # ipv_6_prefix_count: 1,
52095
52784
  # },
52096
52785
  # ],
52097
52786
  # placement: {
@@ -52406,6 +53095,18 @@ module Aws::EC2
52406
53095
  # associate_carrier_ip_address: false,
52407
53096
  # interface_type: "String",
52408
53097
  # network_card_index: 1,
53098
+ # ipv_4_prefixes: [
53099
+ # {
53100
+ # ipv_4_prefix: "String",
53101
+ # },
53102
+ # ],
53103
+ # ipv_4_prefix_count: 1,
53104
+ # ipv_6_prefixes: [
53105
+ # {
53106
+ # ipv_6_prefix: "String",
53107
+ # },
53108
+ # ],
53109
+ # ipv_6_prefix_count: 1,
52409
53110
  # },
52410
53111
  # ],
52411
53112
  # placement: {
@@ -53517,8 +54218,8 @@ module Aws::EC2
53517
54218
  #
53518
54219
  # @!attribute [rw] client_token
53519
54220
  # Unique, case-sensitive identifier that you provide to ensure the
53520
- # idempotency of the request. For more information, see [How to Ensure
53521
- # Idempotency][1].
54221
+ # idempotency of the request. For more information, see [How to ensure
54222
+ # idempotency][1].
53522
54223
  #
53523
54224
  # **A suitable default value is auto-generated.** You should normally
53524
54225
  # not need to pass this option.
@@ -53872,7 +54573,7 @@ module Aws::EC2
53872
54573
  # @return [String]
53873
54574
  #
53874
54575
  # @!attribute [rw] owner_id
53875
- # The ID of the AWS account that owns the subnet.
54576
+ # The ID of the account that owns the subnet.
53876
54577
  # @return [String]
53877
54578
  #
53878
54579
  # @!attribute [rw] assign_ipv_6_address_on_creation
@@ -53960,6 +54661,50 @@ module Aws::EC2
53960
54661
  include Aws::Structure
53961
54662
  end
53962
54663
 
54664
+ # Describes a subnet CIDR reservation.
54665
+ #
54666
+ # @!attribute [rw] subnet_cidr_reservation_id
54667
+ # The ID of the subnet CIDR reservation.
54668
+ # @return [String]
54669
+ #
54670
+ # @!attribute [rw] subnet_id
54671
+ # The ID of the subnet.
54672
+ # @return [String]
54673
+ #
54674
+ # @!attribute [rw] cidr
54675
+ # The CIDR that has been reserved.
54676
+ # @return [String]
54677
+ #
54678
+ # @!attribute [rw] reservation_type
54679
+ # The type of reservation.
54680
+ # @return [String]
54681
+ #
54682
+ # @!attribute [rw] owner_id
54683
+ # The ID of the account that owns the subnet CIDR reservation.
54684
+ # @return [String]
54685
+ #
54686
+ # @!attribute [rw] description
54687
+ # The description assigned to the subnet CIDR reservation.
54688
+ # @return [String]
54689
+ #
54690
+ # @!attribute [rw] tags
54691
+ # The tags assigned to the subnet CIDR reservation.
54692
+ # @return [Array<Types::Tag>]
54693
+ #
54694
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SubnetCidrReservation AWS API Documentation
54695
+ #
54696
+ class SubnetCidrReservation < Struct.new(
54697
+ :subnet_cidr_reservation_id,
54698
+ :subnet_id,
54699
+ :cidr,
54700
+ :reservation_type,
54701
+ :owner_id,
54702
+ :description,
54703
+ :tags)
54704
+ SENSITIVE = []
54705
+ include Aws::Structure
54706
+ end
54707
+
53963
54708
  # Describes an IPv6 CIDR block associated with a subnet.
53964
54709
  #
53965
54710
  # @!attribute [rw] association_id
@@ -56188,23 +56933,30 @@ module Aws::EC2
56188
56933
  # data as a hash:
56189
56934
  #
56190
56935
  # {
56936
+ # ipv_6_addresses: ["String"],
56937
+ # ipv_6_prefixes: ["String"],
56191
56938
  # network_interface_id: "NetworkInterfaceId", # required
56192
- # ipv_6_addresses: ["String"], # required
56193
56939
  # }
56194
56940
  #
56195
- # @!attribute [rw] network_interface_id
56196
- # The ID of the network interface.
56197
- # @return [String]
56198
- #
56199
56941
  # @!attribute [rw] ipv_6_addresses
56200
56942
  # The IPv6 addresses to unassign from the network interface.
56201
56943
  # @return [Array<String>]
56202
56944
  #
56945
+ # @!attribute [rw] ipv_6_prefixes
56946
+ # One or moreIPv6 Prefix Delegation prefixes to unassign from the
56947
+ # network interface.
56948
+ # @return [Array<String>]
56949
+ #
56950
+ # @!attribute [rw] network_interface_id
56951
+ # The ID of the network interface.
56952
+ # @return [String]
56953
+ #
56203
56954
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UnassignIpv6AddressesRequest AWS API Documentation
56204
56955
  #
56205
56956
  class UnassignIpv6AddressesRequest < Struct.new(
56206
- :network_interface_id,
56207
- :ipv_6_addresses)
56957
+ :ipv_6_addresses,
56958
+ :ipv_6_prefixes,
56959
+ :network_interface_id)
56208
56960
  SENSITIVE = []
56209
56961
  include Aws::Structure
56210
56962
  end
@@ -56218,11 +56970,17 @@ module Aws::EC2
56218
56970
  # interface.
56219
56971
  # @return [Array<String>]
56220
56972
  #
56973
+ # @!attribute [rw] unassigned_ipv_6_prefixes
56974
+ # The IPv4 Prefix Delegation prefixes that have been unassigned from
56975
+ # the network interface.
56976
+ # @return [Array<String>]
56977
+ #
56221
56978
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UnassignIpv6AddressesResult AWS API Documentation
56222
56979
  #
56223
56980
  class UnassignIpv6AddressesResult < Struct.new(
56224
56981
  :network_interface_id,
56225
- :unassigned_ipv_6_addresses)
56982
+ :unassigned_ipv_6_addresses,
56983
+ :unassigned_ipv_6_prefixes)
56226
56984
  SENSITIVE = []
56227
56985
  include Aws::Structure
56228
56986
  end
@@ -56234,7 +56992,8 @@ module Aws::EC2
56234
56992
  #
56235
56993
  # {
56236
56994
  # network_interface_id: "NetworkInterfaceId", # required
56237
- # private_ip_addresses: ["String"], # required
56995
+ # private_ip_addresses: ["String"],
56996
+ # ipv_4_prefixes: ["String"],
56238
56997
  # }
56239
56998
  #
56240
56999
  # @!attribute [rw] network_interface_id
@@ -56247,11 +57006,17 @@ module Aws::EC2
56247
57006
  # more than one IP address.
56248
57007
  # @return [Array<String>]
56249
57008
  #
57009
+ # @!attribute [rw] ipv_4_prefixes
57010
+ # The IPv4 Prefix Delegation prefixes to unassign from the network
57011
+ # interface.
57012
+ # @return [Array<String>]
57013
+ #
56250
57014
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UnassignPrivateIpAddressesRequest AWS API Documentation
56251
57015
  #
56252
57016
  class UnassignPrivateIpAddressesRequest < Struct.new(
56253
57017
  :network_interface_id,
56254
- :private_ip_addresses)
57018
+ :private_ip_addresses,
57019
+ :ipv_4_prefixes)
56255
57020
  SENSITIVE = []
56256
57021
  include Aws::Structure
56257
57022
  end
@@ -56358,7 +57123,7 @@ module Aws::EC2
56358
57123
  end
56359
57124
 
56360
57125
  # Information about the error that occurred. For more information about
56361
- # errors, see [Error Codes][1].
57126
+ # errors, see [Error codes][1].
56362
57127
  #
56363
57128
  #
56364
57129
  #
@@ -56876,9 +57641,9 @@ module Aws::EC2
56876
57641
  # @return [Boolean]
56877
57642
  #
56878
57643
  # @!attribute [rw] kms_key_id
56879
- # The Amazon Resource Name (ARN) of the AWS Key Management Service
56880
- # (AWS KMS) customer master key (CMK) that was used to protect the
56881
- # volume encryption key for the volume.
57644
+ # The Amazon Resource Name (ARN) of the Key Management Service (KMS)
57645
+ # KMS key that was used to protect the volume encryption key for the
57646
+ # volume.
56882
57647
  # @return [String]
56883
57648
  #
56884
57649
  # @!attribute [rw] outpost_arn
@@ -57294,7 +58059,7 @@ module Aws::EC2
57294
58059
  # @return [String]
57295
58060
  #
57296
58061
  # @!attribute [rw] owner_id
57297
- # The ID of the AWS account that owns the VPC.
58062
+ # The ID of the account that owns the VPC.
57298
58063
  # @return [String]
57299
58064
  #
57300
58065
  # @!attribute [rw] instance_tenancy
@@ -57710,7 +58475,7 @@ module Aws::EC2
57710
58475
  # @return [Array<Types::CidrBlock>]
57711
58476
  #
57712
58477
  # @!attribute [rw] owner_id
57713
- # The AWS account ID of the VPC owner.
58478
+ # The ID of the account that owns the VPC.
57714
58479
  # @return [String]
57715
58480
  #
57716
58481
  # @!attribute [rw] peering_options