aws-sdk-ec2 1.440.0 → 1.442.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.
@@ -3235,9 +3235,7 @@ module Aws::EC2
3235
3235
  # @return [String]
3236
3236
  #
3237
3237
  # @!attribute [rw] ip_permissions
3238
- # The sets of IP permissions. You can't specify a destination
3239
- # security group and a CIDR IP address range in the same set of
3240
- # permissions.
3238
+ # The permissions for the security group rules.
3241
3239
  # @return [Array<Types::IpPermission>]
3242
3240
  #
3243
3241
  # @!attribute [rw] tag_specifications
@@ -3245,30 +3243,27 @@ module Aws::EC2
3245
3243
  # @return [Array<Types::TagSpecification>]
3246
3244
  #
3247
3245
  # @!attribute [rw] cidr_ip
3248
- # Not supported. Use a set of IP permissions to specify the CIDR.
3246
+ # Not supported. Use IP permissions instead.
3249
3247
  # @return [String]
3250
3248
  #
3251
3249
  # @!attribute [rw] from_port
3252
- # Not supported. Use a set of IP permissions to specify the port.
3250
+ # Not supported. Use IP permissions instead.
3253
3251
  # @return [Integer]
3254
3252
  #
3255
3253
  # @!attribute [rw] ip_protocol
3256
- # Not supported. Use a set of IP permissions to specify the protocol
3257
- # name or number.
3254
+ # Not supported. Use IP permissions instead.
3258
3255
  # @return [String]
3259
3256
  #
3260
3257
  # @!attribute [rw] to_port
3261
- # Not supported. Use a set of IP permissions to specify the port.
3258
+ # Not supported. Use IP permissions instead.
3262
3259
  # @return [Integer]
3263
3260
  #
3264
3261
  # @!attribute [rw] source_security_group_name
3265
- # Not supported. Use a set of IP permissions to specify a destination
3266
- # security group.
3262
+ # Not supported. Use IP permissions instead.
3267
3263
  # @return [String]
3268
3264
  #
3269
3265
  # @!attribute [rw] source_security_group_owner_id
3270
- # Not supported. Use a set of IP permissions to specify a destination
3271
- # security group.
3266
+ # Not supported. Use IP permissions instead.
3272
3267
  # @return [String]
3273
3268
  #
3274
3269
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AuthorizeSecurityGroupEgressRequest AWS API Documentation
@@ -3307,51 +3302,50 @@ module Aws::EC2
3307
3302
  end
3308
3303
 
3309
3304
  # @!attribute [rw] cidr_ip
3310
- # The IPv4 address range, in CIDR format. You can't specify this
3311
- # parameter when specifying a source security group. To specify an
3312
- # IPv6 address range, use a set of IP permissions.
3305
+ # The IPv4 address range, in CIDR format.
3306
+ #
3307
+ # To specify an IPv6 address range, use IP permissions instead.
3313
3308
  #
3314
- # Alternatively, use a set of IP permissions to specify multiple rules
3315
- # and a description for the rule.
3309
+ # To specify multiple rules and descriptions for the rules, use IP
3310
+ # permissions instead.
3316
3311
  # @return [String]
3317
3312
  #
3318
3313
  # @!attribute [rw] from_port
3319
3314
  # If the protocol is TCP or UDP, this is the start of the port range.
3320
- # If the protocol is ICMP, this is the type number. A value of -1
3321
- # indicates all ICMP types. If you specify all ICMP types, you must
3322
- # specify all ICMP codes.
3315
+ # If the protocol is ICMP, this is the ICMP type or -1 (all ICMP
3316
+ # types).
3323
3317
  #
3324
- # Alternatively, use a set of IP permissions to specify multiple rules
3325
- # and a description for the rule.
3318
+ # To specify multiple rules and descriptions for the rules, use IP
3319
+ # permissions instead.
3326
3320
  # @return [Integer]
3327
3321
  #
3328
3322
  # @!attribute [rw] group_id
3329
- # The ID of the security group. You must specify either the security
3330
- # group ID or the security group name in the request. For security
3331
- # groups in a nondefault VPC, you must specify the security group ID.
3323
+ # The ID of the security group.
3332
3324
  # @return [String]
3333
3325
  #
3334
3326
  # @!attribute [rw] group_name
3335
- # \[Default VPC\] The name of the security group. You must specify
3336
- # either the security group ID or the security group name in the
3337
- # request. For security groups in a nondefault VPC, you must specify
3338
- # the security group ID.
3327
+ # \[Default VPC\] The name of the security group. For security groups
3328
+ # for a default VPC you can specify either the ID or the name of the
3329
+ # security group. For security groups for a nondefault VPC, you must
3330
+ # specify the ID of the security group.
3339
3331
  # @return [String]
3340
3332
  #
3341
3333
  # @!attribute [rw] ip_permissions
3342
- # The sets of IP permissions.
3334
+ # The permissions for the security group rules.
3343
3335
  # @return [Array<Types::IpPermission>]
3344
3336
  #
3345
3337
  # @!attribute [rw] ip_protocol
3346
3338
  # The IP protocol name (`tcp`, `udp`, `icmp`) or number (see [Protocol
3347
- # Numbers][1]). To specify `icmpv6`, use a set of IP permissions.
3339
+ # Numbers][1]). To specify all protocols, use `-1`.
3348
3340
  #
3349
- # Use `-1` to specify all protocols. If you specify `-1` or a protocol
3350
- # other than `tcp`, `udp`, or `icmp`, traffic on all ports is allowed,
3351
- # regardless of any ports you specify.
3341
+ # To specify `icmpv6`, use IP permissions instead.
3352
3342
  #
3353
- # Alternatively, use a set of IP permissions to specify multiple rules
3354
- # and a description for the rule.
3343
+ # If you specify a protocol other than one of the supported values,
3344
+ # traffic is allowed on all ports, regardless of any ports that you
3345
+ # specify.
3346
+ #
3347
+ # To specify multiple rules and descriptions for the rules, use IP
3348
+ # permissions instead.
3355
3349
  #
3356
3350
  #
3357
3351
  #
@@ -3359,34 +3353,29 @@ module Aws::EC2
3359
3353
  # @return [String]
3360
3354
  #
3361
3355
  # @!attribute [rw] source_security_group_name
3362
- # \[Default VPC\] The name of the source security group. You can't
3363
- # specify this parameter in combination with the following parameters:
3364
- # the CIDR IP address range, the start of the port range, the IP
3365
- # protocol, and the end of the port range. Creates rules that grant
3366
- # full ICMP, UDP, and TCP access. To create a rule with a specific IP
3367
- # protocol and port range, use a set of IP permissions instead. The
3368
- # source security group must be in the same VPC.
3356
+ # \[Default VPC\] The name of the source security group.
3357
+ #
3358
+ # The rule grants full ICMP, UDP, and TCP access. To create a rule
3359
+ # with a specific protocol and port range, specify a set of IP
3360
+ # permissions instead.
3369
3361
  # @return [String]
3370
3362
  #
3371
3363
  # @!attribute [rw] source_security_group_owner_id
3372
- # \[Nondefault VPC\] The Amazon Web Services account ID for the source
3373
- # security group, if the source security group is in a different
3374
- # account. You can't specify this parameter in combination with the
3375
- # following parameters: the CIDR IP address range, the IP protocol,
3376
- # the start of the port range, and the end of the port range. Creates
3377
- # rules that grant full ICMP, UDP, and TCP access. To create a rule
3378
- # with a specific IP protocol and port range, use a set of IP
3379
- # permissions instead.
3364
+ # The Amazon Web Services account ID for the source security group, if
3365
+ # the source security group is in a different account.
3366
+ #
3367
+ # The rule grants full ICMP, UDP, and TCP access. To create a rule
3368
+ # with a specific protocol and port range, use IP permissions instead.
3380
3369
  # @return [String]
3381
3370
  #
3382
3371
  # @!attribute [rw] to_port
3383
3372
  # If the protocol is TCP or UDP, this is the end of the port range. If
3384
- # the protocol is ICMP, this is the code. A value of -1 indicates all
3385
- # ICMP codes. If you specify all ICMP types, you must specify all ICMP
3386
- # codes.
3373
+ # the protocol is ICMP, this is the ICMP code or -1 (all ICMP codes).
3374
+ # If the start port is -1 (all ICMP types), then the end port must be
3375
+ # -1 (all ICMP codes).
3387
3376
  #
3388
- # Alternatively, use a set of IP permissions to specify multiple rules
3389
- # and a description for the rule.
3377
+ # To specify multiple rules and descriptions for the rules, use IP
3378
+ # permissions instead.
3390
3379
  # @return [Integer]
3391
3380
  #
3392
3381
  # @!attribute [rw] dry_run
@@ -3397,7 +3386,7 @@ module Aws::EC2
3397
3386
  # @return [Boolean]
3398
3387
  #
3399
3388
  # @!attribute [rw] tag_specifications
3400
- # \[VPC Only\] The tags applied to the security group rule.
3389
+ # The tags applied to the security group rule.
3401
3390
  # @return [Array<Types::TagSpecification>]
3402
3391
  #
3403
3392
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AuthorizeSecurityGroupIngressRequest AWS API Documentation
@@ -3674,11 +3663,7 @@ module Aws::EC2
3674
3663
  # @!attribute [rw] instance_id
3675
3664
  # The ID of the instance to bundle.
3676
3665
  #
3677
- # Type: String
3678
- #
3679
3666
  # Default: None
3680
- #
3681
- # Required: Yes
3682
3667
  # @return [String]
3683
3668
  #
3684
3669
  # @!attribute [rw] storage
@@ -6365,11 +6350,11 @@ module Aws::EC2
6365
6350
  # snapshot. The default KMS key for Amazon EBS is used unless you
6366
6351
  # specify a non-default Key Management Service (KMS) KMS key using
6367
6352
  # `KmsKeyId`. For more information, see [Amazon EBS encryption][1] in
6368
- # the *Amazon EC2 User Guide*.
6353
+ # the *Amazon EBS User Guide*.
6369
6354
  #
6370
6355
  #
6371
6356
  #
6372
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html
6357
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption.html
6373
6358
  # @return [Boolean]
6374
6359
  #
6375
6360
  # @!attribute [rw] kms_key_id
@@ -6419,12 +6404,12 @@ module Aws::EC2
6419
6404
  # the destination Outpost. You cannot copy an AMI from an Outpost to a
6420
6405
  # Region, from one Outpost to another, or within the same Outpost.
6421
6406
  #
6422
- # For more information, see [ Copy AMIs from an Amazon Web Services
6423
- # Region to an Outpost][1] in the *Amazon EC2 User Guide*.
6407
+ # For more information, see [Copy AMIs from an Amazon Web Services
6408
+ # Region to an Outpost][1] in the *Amazon EBS User Guide*.
6424
6409
  #
6425
6410
  #
6426
6411
  #
6427
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/snapshots-outposts.html#copy-amis
6412
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/snapshots-outposts.html#copy-amis
6428
6413
  # @return [String]
6429
6414
  #
6430
6415
  # @!attribute [rw] dry_run
@@ -6448,6 +6433,25 @@ module Aws::EC2
6448
6433
  # Default: Your user-defined AMI tags are not copied.
6449
6434
  # @return [Boolean]
6450
6435
  #
6436
+ # @!attribute [rw] tag_specifications
6437
+ # The tags to apply to the new AMI and new snapshots. You can tag the
6438
+ # AMI, the snapshots, or both.
6439
+ #
6440
+ # * To tag the new AMI, the value for `ResourceType` must be `image`.
6441
+ #
6442
+ # * To tag the new snapshots, the value for `ResourceType` must be
6443
+ # `snapshot`. The same tag is applied to all the new snapshots.
6444
+ #
6445
+ # If you specify other values for `ResourceType`, the request fails.
6446
+ #
6447
+ # To tag an AMI or snapshot after it has been created, see
6448
+ # [CreateTags][1].
6449
+ #
6450
+ #
6451
+ #
6452
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateTags.html
6453
+ # @return [Array<Types::TagSpecification>]
6454
+ #
6451
6455
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CopyImageRequest AWS API Documentation
6452
6456
  #
6453
6457
  class CopyImageRequest < Struct.new(
@@ -6460,7 +6464,8 @@ module Aws::EC2
6460
6464
  :source_region,
6461
6465
  :destination_outpost_arn,
6462
6466
  :dry_run,
6463
- :copy_image_tags)
6467
+ :copy_image_tags,
6468
+ :tag_specifications)
6464
6469
  SENSITIVE = []
6465
6470
  include Aws::Structure
6466
6471
  end
@@ -6492,12 +6497,11 @@ module Aws::EC2
6492
6497
  # the same Outpost.
6493
6498
  #
6494
6499
  # For more information, see [ Copy snapshots from an Amazon Web
6495
- # Services Region to an Outpost][1] in the *Amazon Elastic Compute
6496
- # Cloud User Guide*.
6500
+ # Services Region to an Outpost][1] in the *Amazon EBS User Guide*.
6497
6501
  #
6498
6502
  #
6499
6503
  #
6500
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/snapshots-outposts.html#copy-snapshots
6504
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/snapshots-outposts.html#copy-snapshots
6501
6505
  # @return [String]
6502
6506
  #
6503
6507
  # @!attribute [rw] destination_region
@@ -6518,12 +6522,12 @@ module Aws::EC2
6518
6522
  # Otherwise, omit this parameter. Encrypted snapshots are encrypted,
6519
6523
  # even if you omit this parameter and encryption by default is not
6520
6524
  # enabled. You cannot set this parameter to false. For more
6521
- # information, see [Amazon EBS encryption][1] in the *Amazon Elastic
6522
- # Compute Cloud User Guide*.
6525
+ # information, see [Amazon EBS encryption][1] in the *Amazon EBS User
6526
+ # Guide*.
6523
6527
  #
6524
6528
  #
6525
6529
  #
6526
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html
6530
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption.html
6527
6531
  # @return [Boolean]
6528
6532
  #
6529
6533
  # @!attribute [rw] kms_key_id
@@ -7922,10 +7926,12 @@ module Aws::EC2
7922
7926
  #
7923
7927
  # @!attribute [rw] deliver_logs_permission_arn
7924
7928
  # The ARN of the IAM role that allows Amazon EC2 to publish flow logs
7925
- # to a CloudWatch Logs log group in your account.
7929
+ # to the log destination.
7926
7930
  #
7927
7931
  # This parameter is required if the destination type is
7928
- # `cloud-watch-logs` and unsupported otherwise.
7932
+ # `cloud-watch-logs`, or if the destination type is
7933
+ # `kinesis-data-firehose` and the delivery stream and the resources to
7934
+ # monitor are in different accounts.
7929
7935
  # @return [String]
7930
7936
  #
7931
7937
  # @!attribute [rw] deliver_cross_account_role
@@ -10517,11 +10523,11 @@ module Aws::EC2
10517
10523
  # volume.
10518
10524
  #
10519
10525
  # For more information, see [Create local snapshots from volumes on an
10520
- # Outpost][1] in the *Amazon Elastic Compute Cloud User Guide*.
10526
+ # Outpost][1] in the *Amazon EBS User Guide*.
10521
10527
  #
10522
10528
  #
10523
10529
  #
10524
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/snapshots-outposts.html#create-snapshot
10530
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/snapshots-outposts.html#create-snapshot
10525
10531
  # @return [String]
10526
10532
  #
10527
10533
  # @!attribute [rw] volume_id
@@ -10579,12 +10585,11 @@ module Aws::EC2
10579
10585
  # instance.
10580
10586
  #
10581
10587
  # For more information, see [ Create multi-volume local snapshots from
10582
- # instances on an Outpost][1] in the *Amazon Elastic Compute Cloud
10583
- # User Guide*.
10588
+ # instances on an Outpost][1] in the *Amazon EBS User Guide*.
10584
10589
  #
10585
10590
  #
10586
10591
  #
10587
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/snapshots-outposts.html#create-multivol-snapshot
10592
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/snapshots-outposts.html#create-multivol-snapshot
10588
10593
  # @return [String]
10589
10594
  #
10590
10595
  # @!attribute [rw] tag_specifications
@@ -11857,8 +11862,13 @@ module Aws::EC2
11857
11862
  # @return [String]
11858
11863
  #
11859
11864
  # @!attribute [rw] security_group_referencing_support
11865
+ # <note markdown="1"> This parameter is in preview and may not be available for your
11866
+ # account.
11867
+ #
11868
+ # </note>
11869
+ #
11860
11870
  # Enables you to reference a security group across VPCs attached to a
11861
- # transit gateway (TGW). Use this option to simplify security group
11871
+ # transit gateway. Use this option to simplify security group
11862
11872
  # management and control of instance-to-instance traffic across VPCs
11863
11873
  # that are connected by transit gateway. You can also use this option
11864
11874
  # to migrate from VPC peering (which was the only option that
@@ -11869,14 +11879,6 @@ module Aws::EC2
11869
11879
  # If you don't enable or disable SecurityGroupReferencingSupport in
11870
11880
  # the request, the attachment will inherit the security group
11871
11881
  # referencing support setting on the transit gateway.
11872
- #
11873
- # For important information about this feature, see [Create a transit
11874
- # gateway attachment to a VPC][1] in the *Amazon Web Services Transit
11875
- # Gateway Guide*.
11876
- #
11877
- #
11878
- #
11879
- # [1]: https://docs.aws.amazon.com/vpc/latest/tgw/tgw-vpc-attachments.html#create-vpc-attachment
11880
11882
  # @return [String]
11881
11883
  #
11882
11884
  # @!attribute [rw] ipv_6_support
@@ -12415,8 +12417,7 @@ module Aws::EC2
12415
12417
  # setting the encryption state to `true` depends on the volume origin
12416
12418
  # (new or from a snapshot), starting encryption state, ownership, and
12417
12419
  # whether encryption by default is enabled. For more information, see
12418
- # [Encryption by default][1] in the *Amazon Elastic Compute Cloud User
12419
- # Guide*.
12420
+ # [Encryption by default][1] in the *Amazon EBS User Guide*.
12420
12421
  #
12421
12422
  # Encrypted Amazon EBS volumes must be attached to instances that
12422
12423
  # support Amazon EBS encryption. For more information, see [Supported
@@ -12424,8 +12425,8 @@ module Aws::EC2
12424
12425
  #
12425
12426
  #
12426
12427
  #
12427
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html#encryption-by-default
12428
- # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html#EBSEncryption_supported_instances
12428
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/work-with-ebs-encr.html#encryption-by-default
12429
+ # [2]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption-requirements.html#ebs-encryption_supported_instances
12429
12430
  # @return [Boolean]
12430
12431
  #
12431
12432
  # @!attribute [rw] iops
@@ -12524,13 +12525,13 @@ module Aws::EC2
12524
12525
  # be used as boot volumes.
12525
12526
  #
12526
12527
  # For more information, see [Amazon EBS volume types][1] in the
12527
- # *Amazon Elastic Compute Cloud User Guide*.
12528
+ # *Amazon EBS User Guide*.
12528
12529
  #
12529
12530
  # Default: `gp2`
12530
12531
  #
12531
12532
  #
12532
12533
  #
12533
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html
12534
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-volume-types.html
12534
12535
  # @return [String]
12535
12536
  #
12536
12537
  # @!attribute [rw] dry_run
@@ -12549,13 +12550,13 @@ module Aws::EC2
12549
12550
  # Multi-Attach, you can attach the volume to up to 16 [Instances built
12550
12551
  # on the Nitro System][1] in the same Availability Zone. This
12551
12552
  # parameter is supported with `io1` and `io2` volumes only. For more
12552
- # information, see [ Amazon EBS Multi-Attach][2] in the *Amazon
12553
- # Elastic Compute Cloud User Guide*.
12553
+ # information, see [ Amazon EBS Multi-Attach][2] in the *Amazon EBS
12554
+ # User Guide*.
12554
12555
  #
12555
12556
  #
12556
12557
  #
12557
12558
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html#ec2-nitro-instances
12558
- # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-volumes-multi.html
12559
+ # [2]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-volumes-multi.html
12559
12560
  # @return [Boolean]
12560
12561
  #
12561
12562
  # @!attribute [rw] throughput
@@ -16512,7 +16513,7 @@ module Aws::EC2
16512
16513
  # Local Zones, use the name of the group associated with the Local
16513
16514
  # Zone (for example, `us-west-2-lax-1`) For Wavelength Zones, use
16514
16515
  # the name of the group associated with the Wavelength Zone (for
16515
- # example, `us-east-1-wl1-bos-wlz-1`).
16516
+ # example, `us-east-1-wl1`).
16516
16517
  #
16517
16518
  # * `message` - The Zone message.
16518
16519
  #
@@ -29959,11 +29960,11 @@ module Aws::EC2
29959
29960
  #
29960
29961
  # @!attribute [rw] volume_type
29961
29962
  # The volume type. For more information, see [Amazon EBS volume
29962
- # types][1] in the *Amazon EC2 User Guide*.
29963
+ # types][1] in the *Amazon EBS User Guide*.
29963
29964
  #
29964
29965
  #
29965
29966
  #
29966
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html
29967
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-volume-types.html
29967
29968
  # @return [String]
29968
29969
  #
29969
29970
  # @!attribute [rw] kms_key_id
@@ -30005,7 +30006,7 @@ module Aws::EC2
30005
30006
  # the encryption state to `true` depends on the volume origin (new or
30006
30007
  # from a snapshot), starting encryption state, ownership, and whether
30007
30008
  # encryption by default is enabled. For more information, see [Amazon
30008
- # EBS encryption][1] in the *Amazon EC2 User Guide*.
30009
+ # EBS encryption][1] in the *Amazon EBS User Guide*.
30009
30010
  #
30010
30011
  # In no case can you remove encryption from an encrypted volume.
30011
30012
  #
@@ -30043,8 +30044,8 @@ module Aws::EC2
30043
30044
  #
30044
30045
  #
30045
30046
  #
30046
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html#encryption-parameters
30047
- # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html#EBSEncryption_supported_instances
30047
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption.html#encryption-parameters
30048
+ # [2]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption-requirements.html#ebs-encryption_supported_instances
30048
30049
  # @return [Boolean]
30049
30050
  #
30050
30051
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EbsBlockDevice AWS API Documentation
@@ -39521,6 +39522,8 @@ module Aws::EC2
39521
39522
  # @!attribute [rw] http_protocol_ipv_6
39522
39523
  # Enables or disables the IPv6 endpoint for the instance metadata
39523
39524
  # service.
39525
+ #
39526
+ # Default: `disabled`
39524
39527
  # @return [String]
39525
39528
  #
39526
39529
  # @!attribute [rw] instance_metadata_tags
@@ -39581,9 +39584,9 @@ module Aws::EC2
39581
39584
  # requests. The larger the number, the further instance metadata
39582
39585
  # requests can travel.
39583
39586
  #
39584
- # Default: 1
39587
+ # Default: `1`
39585
39588
  #
39586
- # Possible values: Integers from 1 to 64
39589
+ # Possible values: Integers from `1` to `64`
39587
39590
  # @return [Integer]
39588
39591
  #
39589
39592
  # @!attribute [rw] http_endpoint
@@ -39597,6 +39600,8 @@ module Aws::EC2
39597
39600
  # @!attribute [rw] http_protocol_ipv_6
39598
39601
  # Indicates whether the IPv6 endpoint for the instance metadata
39599
39602
  # service is enabled or disabled.
39603
+ #
39604
+ # Default: `disabled`
39600
39605
  # @return [String]
39601
39606
  #
39602
39607
  # @!attribute [rw] instance_metadata_tags
@@ -39850,11 +39855,10 @@ module Aws::EC2
39850
39855
  # one network interface in the request. If launching into a default
39851
39856
  # subnet, the default value is `true`.
39852
39857
  #
39853
- # Starting on February 1, 2024, Amazon Web Services will charge for
39854
- # all public IPv4 addresses, including public IPv4 addresses
39855
- # associated with running instances and Elastic IP addresses. For more
39856
- # information, see the *Public IPv4 Address* tab on the [Amazon VPC
39857
- # pricing page][1].
39858
+ # Amazon Web Services charges for all public IPv4 addresses, including
39859
+ # public IPv4 addresses associated with running instances and Elastic
39860
+ # IP addresses. For more information, see the *Public IPv4 Address*
39861
+ # tab on the [Amazon VPC pricing page][1].
39858
39862
  #
39859
39863
  #
39860
39864
  #
@@ -41691,13 +41695,12 @@ module Aws::EC2
41691
41695
  include Aws::Structure
41692
41696
  end
41693
41697
 
41694
- # Describes a set of permissions for a security group rule.
41698
+ # Describes the permissions for a security group rule.
41695
41699
  #
41696
41700
  # @!attribute [rw] from_port
41697
41701
  # If the protocol is TCP or UDP, this is the start of the port range.
41698
- # If the protocol is ICMP or ICMPv6, this is the type number. A value
41699
- # of -1 indicates all ICMP/ICMPv6 types. If you specify all
41700
- # ICMP/ICMPv6 types, you must specify all ICMP/ICMPv6 codes.
41702
+ # If the protocol is ICMP or ICMPv6, this is the ICMP type or -1 (all
41703
+ # ICMP types).
41701
41704
  # @return [Integer]
41702
41705
  #
41703
41706
  # @!attribute [rw] ip_protocol
@@ -41717,11 +41720,11 @@ module Aws::EC2
41717
41720
  # @return [String]
41718
41721
  #
41719
41722
  # @!attribute [rw] ip_ranges
41720
- # The IPv4 ranges.
41723
+ # The IPv4 address ranges.
41721
41724
  # @return [Array<Types::IpRange>]
41722
41725
  #
41723
41726
  # @!attribute [rw] ipv_6_ranges
41724
- # The IPv6 ranges.
41727
+ # The IPv6 address ranges.
41725
41728
  # @return [Array<Types::Ipv6Range>]
41726
41729
  #
41727
41730
  # @!attribute [rw] prefix_list_ids
@@ -41730,9 +41733,9 @@ module Aws::EC2
41730
41733
  #
41731
41734
  # @!attribute [rw] to_port
41732
41735
  # If the protocol is TCP or UDP, this is the end of the port range. If
41733
- # the protocol is ICMP or ICMPv6, this is the code. A value of -1
41734
- # indicates all ICMP/ICMPv6 codes. If you specify all ICMP/ICMPv6
41735
- # types, you must specify all ICMP/ICMPv6 codes.
41736
+ # the protocol is ICMP or ICMPv6, this is the ICMP code or -1 (all
41737
+ # ICMP codes). If the start port is -1 (all ICMP types), then the end
41738
+ # port must be -1 (all ICMP codes).
41736
41739
  # @return [Integer]
41737
41740
  #
41738
41741
  # @!attribute [rw] user_id_group_pairs
@@ -41753,12 +41756,12 @@ module Aws::EC2
41753
41756
  include Aws::Structure
41754
41757
  end
41755
41758
 
41756
- # Describes an IPv4 range.
41759
+ # Describes an IPv4 address range.
41757
41760
  #
41758
41761
  # @!attribute [rw] cidr_ip
41759
- # The IPv4 CIDR range. You can either specify a CIDR range or a source
41760
- # security group, not both. To specify a single IPv4 address, use the
41761
- # /32 prefix length.
41762
+ # The IPv4 address range. You can either specify a CIDR block or a
41763
+ # source security group, not both. To specify a single IPv4 address,
41764
+ # use the /32 prefix length.
41762
41765
  # @return [String]
41763
41766
  #
41764
41767
  # @!attribute [rw] description
@@ -43301,12 +43304,12 @@ module Aws::EC2
43301
43304
  include Aws::Structure
43302
43305
  end
43303
43306
 
43304
- # Describes an IPv6 range.
43307
+ # Describes an IPv6 address range.
43305
43308
  #
43306
43309
  # @!attribute [rw] cidr_ipv_6
43307
- # The IPv6 CIDR range. You can either specify a CIDR range or a source
43308
- # security group, not both. To specify a single IPv6 address, use the
43309
- # /128 prefix length.
43310
+ # The IPv6 address range. You can either specify a CIDR block or a
43311
+ # source security group, not both. To specify a single IPv6 address,
43312
+ # use the /128 prefix length.
43310
43313
  # @return [String]
43311
43314
  #
43312
43315
  # @!attribute [rw] description
@@ -44000,11 +44003,11 @@ module Aws::EC2
44000
44003
  #
44001
44004
  # @!attribute [rw] volume_type
44002
44005
  # The volume type. For more information, see [Amazon EBS volume
44003
- # types][1] in the *Amazon Elastic Compute Cloud User Guide*.
44006
+ # types][1] in the *Amazon EBS User Guide*.
44004
44007
  #
44005
44008
  #
44006
44009
  #
44007
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html
44010
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-volume-types.html
44008
44011
  # @return [String]
44009
44012
  #
44010
44013
  # @!attribute [rw] throughput
@@ -44501,11 +44504,10 @@ module Aws::EC2
44501
44504
  # Indicates whether to associate a public IPv4 address with eth0 for a
44502
44505
  # new network interface.
44503
44506
  #
44504
- # Starting on February 1, 2024, Amazon Web Services will charge for
44505
- # all public IPv4 addresses, including public IPv4 addresses
44506
- # associated with running instances and Elastic IP addresses. For more
44507
- # information, see the *Public IPv4 Address* tab on the [Amazon VPC
44508
- # pricing page][1].
44507
+ # Amazon Web Services charges for all public IPv4 addresses, including
44508
+ # public IPv4 addresses associated with running instances and Elastic
44509
+ # IP addresses. For more information, see the *Public IPv4 Address*
44510
+ # tab on the [Amazon VPC pricing page][1].
44509
44511
  #
44510
44512
  #
44511
44513
  #
@@ -44661,11 +44663,10 @@ module Aws::EC2
44661
44663
  # Associates a public IPv4 address with eth0 for a new network
44662
44664
  # interface.
44663
44665
  #
44664
- # Starting on February 1, 2024, Amazon Web Services will charge for
44665
- # all public IPv4 addresses, including public IPv4 addresses
44666
- # associated with running instances and Elastic IP addresses. For more
44667
- # information, see the *Public IPv4 Address* tab on the [Amazon VPC
44668
- # pricing page][1].
44666
+ # Amazon Web Services charges for all public IPv4 addresses, including
44667
+ # public IPv4 addresses associated with running instances and Elastic
44668
+ # IP addresses. For more information, see the *Public IPv4 Address*
44669
+ # tab on the [Amazon VPC pricing page][1].
44669
44670
  #
44670
44671
  #
44671
44672
  #
@@ -47731,8 +47732,6 @@ module Aws::EC2
47731
47732
  # the instance metadata. For more information, see [Work with instance
47732
47733
  # tags using the instance metadata][1].
47733
47734
  #
47734
- # Default: `disabled`
47735
- #
47736
47735
  #
47737
47736
  #
47738
47737
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#work-with-tags-in-IMDS
@@ -48731,11 +48730,10 @@ module Aws::EC2
48731
48730
  # instances created in the specified subnet should be assigned a
48732
48731
  # public IPv4 address.
48733
48732
  #
48734
- # Starting on February 1, 2024, Amazon Web Services will charge for
48735
- # all public IPv4 addresses, including public IPv4 addresses
48736
- # associated with running instances and Elastic IP addresses. For more
48737
- # information, see the *Public IPv4 Address* tab on the [Amazon VPC
48738
- # pricing page][1].
48733
+ # Amazon Web Services charges for all public IPv4 addresses, including
48734
+ # public IPv4 addresses associated with running instances and Elastic
48735
+ # IP addresses. For more information, see the *Public IPv4 Address*
48736
+ # tab on the [Amazon VPC pricing page][1].
48739
48737
  #
48740
48738
  #
48741
48739
  #
@@ -49057,21 +49055,19 @@ module Aws::EC2
49057
49055
  # @return [String]
49058
49056
  #
49059
49057
  # @!attribute [rw] security_group_referencing_support
49058
+ # <note markdown="1"> This parameter is in preview and may not be available for your
49059
+ # account.
49060
+ #
49061
+ # </note>
49062
+ #
49060
49063
  # Enables you to reference a security group across VPCs attached to a
49061
- # transit gateway (TGW). Use this option to simplify security group
49064
+ # transit gateway. Use this option to simplify security group
49062
49065
  # management and control of instance-to-instance traffic across VPCs
49063
49066
  # that are connected by transit gateway. You can also use this option
49064
49067
  # to migrate from VPC peering (which was the only option that
49065
49068
  # supported security group referencing) to transit gateways (which now
49066
49069
  # also support security group referencing). This option is disabled by
49067
49070
  # default and there are no additional costs to use this feature.
49068
- #
49069
- # For important information about this feature, see [Create a transit
49070
- # gateway][1] in the *Amazon Web Services Transit Gateway Guide*.
49071
- #
49072
- #
49073
- #
49074
- # [1]: https://docs.aws.amazon.com/vpc/latest/tgw/tgw-transit-gateways.html#create-tgw
49075
49071
  # @return [String]
49076
49072
  #
49077
49073
  # @!attribute [rw] auto_accept_shared_attachments
@@ -49257,22 +49253,19 @@ module Aws::EC2
49257
49253
  # @return [String]
49258
49254
  #
49259
49255
  # @!attribute [rw] security_group_referencing_support
49256
+ # <note markdown="1"> This parameter is in preview and may not be available for your
49257
+ # account.
49258
+ #
49259
+ # </note>
49260
+ #
49260
49261
  # Enables you to reference a security group across VPCs attached to a
49261
- # transit gateway (TGW). Use this option to simplify security group
49262
+ # transit gateway. Use this option to simplify security group
49262
49263
  # management and control of instance-to-instance traffic across VPCs
49263
49264
  # that are connected by transit gateway. You can also use this option
49264
49265
  # to migrate from VPC peering (which was the only option that
49265
49266
  # supported security group referencing) to transit gateways (which now
49266
49267
  # also support security group referencing). This option is disabled by
49267
49268
  # default and there are no additional costs to use this feature.
49268
- #
49269
- # For important information about this feature, see [Create a transit
49270
- # gateway attachment to a VPC][1] in the *Amazon Web Services Transit
49271
- # Gateway Guide*.
49272
- #
49273
- #
49274
- #
49275
- # [1]: https://docs.aws.amazon.com/vpc/latest/tgw/tgw-vpc-attachments.html#create-vpc-attachment
49276
49269
  # @return [String]
49277
49270
  #
49278
49271
  # @!attribute [rw] ipv_6_support
@@ -49909,14 +49902,13 @@ module Aws::EC2
49909
49902
  #
49910
49903
  # @!attribute [rw] volume_type
49911
49904
  # The target EBS volume type of the volume. For more information, see
49912
- # [Amazon EBS volume types][1] in the *Amazon Elastic Compute Cloud
49913
- # User Guide*.
49905
+ # [Amazon EBS volume types][1] in the *Amazon EBS User Guide*.
49914
49906
  #
49915
49907
  # Default: The existing type is retained.
49916
49908
  #
49917
49909
  #
49918
49910
  #
49919
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html
49911
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-volume-types.html
49920
49912
  # @return [String]
49921
49913
  #
49922
49914
  # @!attribute [rw] iops
@@ -49959,13 +49951,12 @@ module Aws::EC2
49959
49951
  # Multi-Attach, you can attach the volume to up to 16 [ Nitro-based
49960
49952
  # instances][1] in the same Availability Zone. This parameter is
49961
49953
  # supported with `io1` and `io2` volumes only. For more information,
49962
- # see [ Amazon EBS Multi-Attach][2] in the *Amazon Elastic Compute
49963
- # Cloud User Guide*.
49954
+ # see [ Amazon EBS Multi-Attach][2] in the *Amazon EBS User Guide*.
49964
49955
  #
49965
49956
  #
49966
49957
  #
49967
49958
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html#ec2-nitro-instances
49968
- # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-volumes-multi.html
49959
+ # [2]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-volumes-multi.html
49969
49960
  # @return [Boolean]
49970
49961
  #
49971
49962
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVolumeRequest AWS API Documentation
@@ -53687,9 +53678,10 @@ module Aws::EC2
53687
53678
  # @!attribute [rw] cidr
53688
53679
  # The public IPv4 or IPv6 address range, in CIDR notation. The most
53689
53680
  # specific IPv4 prefix that you can specify is /24. The most specific
53690
- # IPv6 prefix you can specify is /56. The address range cannot overlap
53691
- # with another address range that you've brought to this or another
53692
- # Region.
53681
+ # IPv6 address range that you can bring is /48 for CIDRs that are
53682
+ # publicly advertisable and /56 for CIDRs that are not publicly
53683
+ # advertisable. The address range cannot overlap with another address
53684
+ # range that you've brought to this or another Region.
53693
53685
  # @return [String]
53694
53686
  #
53695
53687
  # @!attribute [rw] cidr_authorization_context
@@ -54552,11 +54544,11 @@ module Aws::EC2
54552
54544
  # be on the same Outpost or in the Region of that Outpost. AMIs on an
54553
54545
  # Outpost that include local snapshots can be used to launch instances
54554
54546
  # on the same Outpost only. For more information, [Amazon EBS local
54555
- # snapshots on Outposts][1] in the *Amazon EC2 User Guide*.
54547
+ # snapshots on Outposts][1] in the *Amazon EBS User Guide*.
54556
54548
  #
54557
54549
  #
54558
54550
  #
54559
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/snapshots-outposts.html#ami
54551
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/snapshots-outposts.html#ami
54560
54552
  # @return [Array<Types::BlockDeviceMapping>]
54561
54553
  #
54562
54554
  # @!attribute [rw] description
@@ -54692,6 +54684,19 @@ module Aws::EC2
54692
54684
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/configuring-IMDS-new-instances.html#configure-IMDS-new-instances-ami-configuration
54693
54685
  # @return [String]
54694
54686
  #
54687
+ # @!attribute [rw] tag_specifications
54688
+ # The tags to apply to the AMI.
54689
+ #
54690
+ # To tag the AMI, the value for `ResourceType` must be `image`. If you
54691
+ # specify another value for `ResourceType`, the request fails.
54692
+ #
54693
+ # To tag an AMI after it has been registered, see [CreateTags][1].
54694
+ #
54695
+ #
54696
+ #
54697
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateTags.html
54698
+ # @return [Array<Types::TagSpecification>]
54699
+ #
54695
54700
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RegisterImageRequest AWS API Documentation
54696
54701
  #
54697
54702
  class RegisterImageRequest < Struct.new(
@@ -54711,7 +54716,8 @@ module Aws::EC2
54711
54716
  :boot_mode,
54712
54717
  :tpm_support,
54713
54718
  :uefi_data,
54714
- :imds_support)
54719
+ :imds_support,
54720
+ :tag_specifications)
54715
54721
  SENSITIVE = []
54716
54722
  include Aws::Structure
54717
54723
  end
@@ -57673,11 +57679,11 @@ module Aws::EC2
57673
57679
  # @!attribute [rw] outpost_arn
57674
57680
  # The ARN of the Outpost on which the snapshot is stored. For more
57675
57681
  # information, see [Amazon EBS local snapshots on Outposts][1] in the
57676
- # *Amazon Elastic Compute Cloud User Guide*.
57682
+ # *Amazon EBS User Guide*.
57677
57683
  #
57678
57684
  #
57679
57685
  #
57680
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/snapshots-outposts.html
57686
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/snapshots-outposts.html
57681
57687
  # @return [String]
57682
57688
  #
57683
57689
  # @!attribute [rw] description
@@ -57943,8 +57949,8 @@ module Aws::EC2
57943
57949
  #
57944
57950
  # @!attribute [rw] from_port
57945
57951
  # If the protocol is TCP or UDP, this is the start of the port range.
57946
- # If the protocol is ICMP, this is the type number. A value of -1
57947
- # indicates all ICMP types.
57952
+ # If the protocol is ICMP, this is the ICMP type or -1 (all ICMP
57953
+ # types).
57948
57954
  # @return [Integer]
57949
57955
  #
57950
57956
  # @!attribute [rw] group_id
@@ -57987,8 +57993,7 @@ module Aws::EC2
57987
57993
  #
57988
57994
  # @!attribute [rw] to_port
57989
57995
  # If the protocol is TCP or UDP, this is the end of the port range. If
57990
- # the protocol is ICMP, this is the code. A value of -1 indicates all
57991
- # ICMP codes.
57996
+ # the protocol is ICMP, this is the ICMP code or -1 (all ICMP codes).
57992
57997
  # @return [Integer]
57993
57998
  #
57994
57999
  # @!attribute [rw] dry_run
@@ -59896,18 +59901,16 @@ module Aws::EC2
59896
59901
  #
59897
59902
  #
59898
59903
  #
59899
- # [1]: https://docs.aws.amazon.com/peering/vpc-peering-security-groups.html
59904
+ # [1]: https://docs.aws.amazon.com/vpc/latest/peering/vpc-peering-security-groups.html
59900
59905
  # @return [String]
59901
59906
  #
59902
59907
  # @!attribute [rw] transit_gateway_id
59903
- # The ID of the transit gateway (if applicable). For more information
59904
- # about security group referencing for transit gateways, see [Create a
59905
- # transit gateway attachment to a VPC][1] in the *Amazon Web Services
59906
- # Transit Gateway Guide*.
59907
- #
59908
+ # <note markdown="1"> This parameter is in preview and may not be available for your
59909
+ # account.
59908
59910
  #
59911
+ # </note>
59909
59912
  #
59910
- # [1]: https://docs.aws.amazon.com/tgw/tgw-vpc-attachments.html#create-vpc-attachment
59913
+ # The ID of the transit gateway (if applicable).
59911
59914
  # @return [String]
59912
59915
  #
59913
59916
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SecurityGroupReference AWS API Documentation
@@ -59953,16 +59956,15 @@ module Aws::EC2
59953
59956
  #
59954
59957
  # @!attribute [rw] from_port
59955
59958
  # If the protocol is TCP or UDP, this is the start of the port range.
59956
- # If the protocol is ICMP or ICMPv6, this is the type number. A value
59957
- # of -1 indicates all ICMP/ICMPv6 types. If you specify all
59958
- # ICMP/ICMPv6 types, you must specify all ICMP/ICMPv6 codes.
59959
+ # If the protocol is ICMP or ICMPv6, this is the ICMP type or -1 (all
59960
+ # ICMP types).
59959
59961
  # @return [Integer]
59960
59962
  #
59961
59963
  # @!attribute [rw] to_port
59962
59964
  # If the protocol is TCP or UDP, this is the end of the port range. If
59963
- # the protocol is ICMP or ICMPv6, this is the type number. A value of
59964
- # -1 indicates all ICMP/ICMPv6 codes. If you specify all ICMP/ICMPv6
59965
- # types, you must specify all ICMP/ICMPv6 codes.
59965
+ # the protocol is ICMP or ICMPv6, this is the ICMP code or -1 (all
59966
+ # ICMP codes). If the start port is -1 (all ICMP types), then the end
59967
+ # port must be -1 (all ICMP codes).
59966
59968
  # @return [Integer]
59967
59969
  #
59968
59970
  # @!attribute [rw] cidr_ipv_4
@@ -60061,16 +60063,15 @@ module Aws::EC2
60061
60063
  #
60062
60064
  # @!attribute [rw] from_port
60063
60065
  # If the protocol is TCP or UDP, this is the start of the port range.
60064
- # If the protocol is ICMP or ICMPv6, this is the type number. A value
60065
- # of -1 indicates all ICMP/ICMPv6 types. If you specify all
60066
- # ICMP/ICMPv6 types, you must specify all ICMP/ICMPv6 codes.
60066
+ # If the protocol is ICMP or ICMPv6, this is the ICMP type or -1 (all
60067
+ # ICMP types).
60067
60068
  # @return [Integer]
60068
60069
  #
60069
60070
  # @!attribute [rw] to_port
60070
60071
  # If the protocol is TCP or UDP, this is the end of the port range. If
60071
- # the protocol is ICMP or ICMPv6, this is the code. A value of -1
60072
- # indicates all ICMP/ICMPv6 codes. If you specify all ICMP/ICMPv6
60073
- # types, you must specify all ICMP/ICMPv6 codes.
60072
+ # the protocol is ICMP or ICMPv6, this is the ICMP code or -1 (all
60073
+ # ICMP codes). If the start port is -1 (all ICMP types), then the end
60074
+ # port must be -1 (all ICMP codes).
60074
60075
  # @return [Integer]
60075
60076
  #
60076
60077
  # @!attribute [rw] cidr_ipv_4
@@ -60465,11 +60466,11 @@ module Aws::EC2
60465
60466
  # @!attribute [rw] outpost_arn
60466
60467
  # The ARN of the Outpost on which the snapshot is stored. For more
60467
60468
  # information, see [Amazon EBS local snapshots on Outposts][1] in the
60468
- # *Amazon Elastic Compute Cloud User Guide*.
60469
+ # *Amazon EBS User Guide*.
60469
60470
  #
60470
60471
  #
60471
60472
  #
60472
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/snapshots-outposts.html
60473
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/snapshots-outposts.html
60473
60474
  # @return [String]
60474
60475
  #
60475
60476
  # @!attribute [rw] tags
@@ -60657,11 +60658,11 @@ module Aws::EC2
60657
60658
  # @!attribute [rw] outpost_arn
60658
60659
  # The ARN of the Outpost on which the snapshot is stored. For more
60659
60660
  # information, see [Amazon EBS local snapshots on Outposts][1] in the
60660
- # *Amazon Elastic Compute Cloud User Guide*.
60661
+ # *Amazon EBS User Guide*.
60661
60662
  #
60662
60663
  #
60663
60664
  #
60664
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/snapshots-outposts.html
60665
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/snapshots-outposts.html
60665
60666
  # @return [String]
60666
60667
  #
60667
60668
  # @!attribute [rw] sse_type
@@ -62234,12 +62235,13 @@ module Aws::EC2
62234
62235
  # Describes a stale rule in a security group.
62235
62236
  #
62236
62237
  # @!attribute [rw] from_port
62237
- # The start of the port range for the TCP and UDP protocols, or an
62238
- # ICMP type number. A value of -1 indicates all ICMP types.
62238
+ # If the protocol is TCP or UDP, this is the start of the port range.
62239
+ # If the protocol is ICMP or ICMPv6, this is the ICMP type or -1 (all
62240
+ # ICMP types).
62239
62241
  # @return [Integer]
62240
62242
  #
62241
62243
  # @!attribute [rw] ip_protocol
62242
- # The IP protocol name (for `tcp`, `udp`, and `icmp`) or number (see
62244
+ # The IP protocol name (`tcp`, `udp`, `icmp`, `icmpv6`) or number (see
62243
62245
  # [Protocol Numbers)][1].
62244
62246
  #
62245
62247
  #
@@ -62256,8 +62258,9 @@ module Aws::EC2
62256
62258
  # @return [Array<String>]
62257
62259
  #
62258
62260
  # @!attribute [rw] to_port
62259
- # The end of the port range for the TCP and UDP protocols, or an ICMP
62260
- # type number. A value of `-1` indicates all ICMP types.
62261
+ # If the protocol is TCP or UDP, this is the end of the port range. If
62262
+ # the protocol is ICMP or ICMPv6, this is the ICMP code or -1 (all
62263
+ # ICMP codes).
62261
62264
  # @return [Integer]
62262
62265
  #
62263
62266
  # @!attribute [rw] user_id_group_pairs
@@ -62733,11 +62736,10 @@ module Aws::EC2
62733
62736
  # Indicates whether instances launched in this subnet receive a public
62734
62737
  # IPv4 address.
62735
62738
  #
62736
- # Starting on February 1, 2024, Amazon Web Services will charge for
62737
- # all public IPv4 addresses, including public IPv4 addresses
62738
- # associated with running instances and Elastic IP addresses. For more
62739
- # information, see the *Public IPv4 Address* tab on the [Amazon VPC
62740
- # pricing page][1].
62739
+ # Amazon Web Services charges for all public IPv4 addresses, including
62740
+ # public IPv4 addresses associated with running instances and Elastic
62741
+ # IP addresses. For more information, see the *Public IPv4 Address*
62742
+ # tab on the [Amazon VPC pricing page][1].
62741
62743
  #
62742
62744
  #
62743
62745
  #
@@ -64557,21 +64559,19 @@ module Aws::EC2
64557
64559
  # @return [String]
64558
64560
  #
64559
64561
  # @!attribute [rw] security_group_referencing_support
64562
+ # <note markdown="1"> This parameter is in preview and may not be available for your
64563
+ # account.
64564
+ #
64565
+ # </note>
64566
+ #
64560
64567
  # Enables you to reference a security group across VPCs attached to a
64561
- # transit gateway (TGW). Use this option to simplify security group
64568
+ # transit gateway. Use this option to simplify security group
64562
64569
  # management and control of instance-to-instance traffic across VPCs
64563
64570
  # that are connected by transit gateway. You can also use this option
64564
64571
  # to migrate from VPC peering (which was the only option that
64565
64572
  # supported security group referencing) to transit gateways (which now
64566
64573
  # also support security group referencing). This option is disabled by
64567
64574
  # default and there are no additional costs to use this feature.
64568
- #
64569
- # For important information about this feature, see [Create a transit
64570
- # gateway][1] in the *Amazon Web Services Transit Gateway Guide*.
64571
- #
64572
- #
64573
- #
64574
- # [1]: https://docs.aws.amazon.com/vpc/latest/tgw/tgw-transit-gateways.html#create-tgw
64575
64575
  # @return [String]
64576
64576
  #
64577
64577
  # @!attribute [rw] multicast_support
@@ -64957,21 +64957,19 @@ module Aws::EC2
64957
64957
  # @return [String]
64958
64958
  #
64959
64959
  # @!attribute [rw] security_group_referencing_support
64960
+ # <note markdown="1"> This parameter is in preview and may not be available for your
64961
+ # account.
64962
+ #
64963
+ # </note>
64964
+ #
64960
64965
  # Enables you to reference a security group across VPCs attached to a
64961
- # transit gateway (TGW). Use this option to simplify security group
64966
+ # transit gateway. Use this option to simplify security group
64962
64967
  # management and control of instance-to-instance traffic across VPCs
64963
64968
  # that are connected by transit gateway. You can also use this option
64964
64969
  # to migrate from VPC peering (which was the only option that
64965
64970
  # supported security group referencing) to transit gateways (which now
64966
64971
  # also support security group referencing). This option is disabled by
64967
64972
  # default and there are no additional costs to use this feature.
64968
- #
64969
- # For important information about this feature, see [Create a transit
64970
- # gateway][1] in the *Amazon Web Services Transit Gateway Guide*.
64971
- #
64972
- #
64973
- #
64974
- # [1]: https://docs.aws.amazon.com/vpc/latest/tgw/tgw-transit-gateways.html#create-tgw
64975
64973
  # @return [String]
64976
64974
  #
64977
64975
  # @!attribute [rw] multicast_support
@@ -65352,13 +65350,19 @@ module Aws::EC2
65352
65350
  # @return [String]
65353
65351
  #
65354
65352
  # @!attribute [rw] security_group_referencing_support
65355
- # For important information about this feature, see [Create a transit
65356
- # gateway attachment to a VPC][1] in the *Amazon Web Services Transit
65357
- # Gateway Guide*.
65358
- #
65353
+ # <note markdown="1"> This parameter is in preview and may not be available for your
65354
+ # account.
65359
65355
  #
65356
+ # </note>
65360
65357
  #
65361
- # [1]: https://docs.aws.amazon.com/vpc/latest/tgw/tgw-vpc-attachments.html#create-vpc-attachment
65358
+ # Enables you to reference a security group across VPCs attached to a
65359
+ # transit gateway. Use this option to simplify security group
65360
+ # management and control of instance-to-instance traffic across VPCs
65361
+ # that are connected by transit gateway. You can also use this option
65362
+ # to migrate from VPC peering (which was the only option that
65363
+ # supported security group referencing) to transit gateways (which now
65364
+ # also support security group referencing). This option is disabled by
65365
+ # default and there are no additional costs to use this feature.
65362
65366
  # @return [String]
65363
65367
  #
65364
65368
  # @!attribute [rw] ipv_6_support