aws-sdk-ec2 1.441.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`.
3340
+ #
3341
+ # To specify `icmpv6`, use IP permissions instead.
3348
3342
  #
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.
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.
3352
3346
  #
3353
- # Alternatively, use a set of IP permissions to specify multiple rules
3354
- # and a description for the rule.
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
@@ -6361,11 +6350,11 @@ module Aws::EC2
6361
6350
  # snapshot. The default KMS key for Amazon EBS is used unless you
6362
6351
  # specify a non-default Key Management Service (KMS) KMS key using
6363
6352
  # `KmsKeyId`. For more information, see [Amazon EBS encryption][1] in
6364
- # the *Amazon EC2 User Guide*.
6353
+ # the *Amazon EBS User Guide*.
6365
6354
  #
6366
6355
  #
6367
6356
  #
6368
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html
6357
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption.html
6369
6358
  # @return [Boolean]
6370
6359
  #
6371
6360
  # @!attribute [rw] kms_key_id
@@ -6415,12 +6404,12 @@ module Aws::EC2
6415
6404
  # the destination Outpost. You cannot copy an AMI from an Outpost to a
6416
6405
  # Region, from one Outpost to another, or within the same Outpost.
6417
6406
  #
6418
- # For more information, see [ Copy AMIs from an Amazon Web Services
6419
- # 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*.
6420
6409
  #
6421
6410
  #
6422
6411
  #
6423
- # [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
6424
6413
  # @return [String]
6425
6414
  #
6426
6415
  # @!attribute [rw] dry_run
@@ -6508,12 +6497,11 @@ module Aws::EC2
6508
6497
  # the same Outpost.
6509
6498
  #
6510
6499
  # For more information, see [ Copy snapshots from an Amazon Web
6511
- # Services Region to an Outpost][1] in the *Amazon Elastic Compute
6512
- # Cloud User Guide*.
6500
+ # Services Region to an Outpost][1] in the *Amazon EBS User Guide*.
6513
6501
  #
6514
6502
  #
6515
6503
  #
6516
- # [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
6517
6505
  # @return [String]
6518
6506
  #
6519
6507
  # @!attribute [rw] destination_region
@@ -6534,12 +6522,12 @@ module Aws::EC2
6534
6522
  # Otherwise, omit this parameter. Encrypted snapshots are encrypted,
6535
6523
  # even if you omit this parameter and encryption by default is not
6536
6524
  # enabled. You cannot set this parameter to false. For more
6537
- # information, see [Amazon EBS encryption][1] in the *Amazon Elastic
6538
- # Compute Cloud User Guide*.
6525
+ # information, see [Amazon EBS encryption][1] in the *Amazon EBS User
6526
+ # Guide*.
6539
6527
  #
6540
6528
  #
6541
6529
  #
6542
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html
6530
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption.html
6543
6531
  # @return [Boolean]
6544
6532
  #
6545
6533
  # @!attribute [rw] kms_key_id
@@ -7938,10 +7926,12 @@ module Aws::EC2
7938
7926
  #
7939
7927
  # @!attribute [rw] deliver_logs_permission_arn
7940
7928
  # The ARN of the IAM role that allows Amazon EC2 to publish flow logs
7941
- # to a CloudWatch Logs log group in your account.
7929
+ # to the log destination.
7942
7930
  #
7943
7931
  # This parameter is required if the destination type is
7944
- # `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.
7945
7935
  # @return [String]
7946
7936
  #
7947
7937
  # @!attribute [rw] deliver_cross_account_role
@@ -10533,11 +10523,11 @@ module Aws::EC2
10533
10523
  # volume.
10534
10524
  #
10535
10525
  # For more information, see [Create local snapshots from volumes on an
10536
- # Outpost][1] in the *Amazon Elastic Compute Cloud User Guide*.
10526
+ # Outpost][1] in the *Amazon EBS User Guide*.
10537
10527
  #
10538
10528
  #
10539
10529
  #
10540
- # [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
10541
10531
  # @return [String]
10542
10532
  #
10543
10533
  # @!attribute [rw] volume_id
@@ -10595,12 +10585,11 @@ module Aws::EC2
10595
10585
  # instance.
10596
10586
  #
10597
10587
  # For more information, see [ Create multi-volume local snapshots from
10598
- # instances on an Outpost][1] in the *Amazon Elastic Compute Cloud
10599
- # User Guide*.
10588
+ # instances on an Outpost][1] in the *Amazon EBS User Guide*.
10600
10589
  #
10601
10590
  #
10602
10591
  #
10603
- # [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
10604
10593
  # @return [String]
10605
10594
  #
10606
10595
  # @!attribute [rw] tag_specifications
@@ -11873,8 +11862,13 @@ module Aws::EC2
11873
11862
  # @return [String]
11874
11863
  #
11875
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
+ #
11876
11870
  # Enables you to reference a security group across VPCs attached to a
11877
- # transit gateway (TGW). Use this option to simplify security group
11871
+ # transit gateway. Use this option to simplify security group
11878
11872
  # management and control of instance-to-instance traffic across VPCs
11879
11873
  # that are connected by transit gateway. You can also use this option
11880
11874
  # to migrate from VPC peering (which was the only option that
@@ -11885,14 +11879,6 @@ module Aws::EC2
11885
11879
  # If you don't enable or disable SecurityGroupReferencingSupport in
11886
11880
  # the request, the attachment will inherit the security group
11887
11881
  # referencing support setting on the transit gateway.
11888
- #
11889
- # For important information about this feature, see [Create a transit
11890
- # gateway attachment to a VPC][1] in the *Amazon Web Services Transit
11891
- # Gateway Guide*.
11892
- #
11893
- #
11894
- #
11895
- # [1]: https://docs.aws.amazon.com/vpc/latest/tgw/tgw-vpc-attachments.html#create-vpc-attachment
11896
11882
  # @return [String]
11897
11883
  #
11898
11884
  # @!attribute [rw] ipv_6_support
@@ -12431,8 +12417,7 @@ module Aws::EC2
12431
12417
  # setting the encryption state to `true` depends on the volume origin
12432
12418
  # (new or from a snapshot), starting encryption state, ownership, and
12433
12419
  # whether encryption by default is enabled. For more information, see
12434
- # [Encryption by default][1] in the *Amazon Elastic Compute Cloud User
12435
- # Guide*.
12420
+ # [Encryption by default][1] in the *Amazon EBS User Guide*.
12436
12421
  #
12437
12422
  # Encrypted Amazon EBS volumes must be attached to instances that
12438
12423
  # support Amazon EBS encryption. For more information, see [Supported
@@ -12440,8 +12425,8 @@ module Aws::EC2
12440
12425
  #
12441
12426
  #
12442
12427
  #
12443
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html#encryption-by-default
12444
- # [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
12445
12430
  # @return [Boolean]
12446
12431
  #
12447
12432
  # @!attribute [rw] iops
@@ -12540,13 +12525,13 @@ module Aws::EC2
12540
12525
  # be used as boot volumes.
12541
12526
  #
12542
12527
  # For more information, see [Amazon EBS volume types][1] in the
12543
- # *Amazon Elastic Compute Cloud User Guide*.
12528
+ # *Amazon EBS User Guide*.
12544
12529
  #
12545
12530
  # Default: `gp2`
12546
12531
  #
12547
12532
  #
12548
12533
  #
12549
- # [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
12550
12535
  # @return [String]
12551
12536
  #
12552
12537
  # @!attribute [rw] dry_run
@@ -12565,13 +12550,13 @@ module Aws::EC2
12565
12550
  # Multi-Attach, you can attach the volume to up to 16 [Instances built
12566
12551
  # on the Nitro System][1] in the same Availability Zone. This
12567
12552
  # parameter is supported with `io1` and `io2` volumes only. For more
12568
- # information, see [ Amazon EBS Multi-Attach][2] in the *Amazon
12569
- # Elastic Compute Cloud User Guide*.
12553
+ # information, see [ Amazon EBS Multi-Attach][2] in the *Amazon EBS
12554
+ # User Guide*.
12570
12555
  #
12571
12556
  #
12572
12557
  #
12573
12558
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html#ec2-nitro-instances
12574
- # [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
12575
12560
  # @return [Boolean]
12576
12561
  #
12577
12562
  # @!attribute [rw] throughput
@@ -16528,7 +16513,7 @@ module Aws::EC2
16528
16513
  # Local Zones, use the name of the group associated with the Local
16529
16514
  # Zone (for example, `us-west-2-lax-1`) For Wavelength Zones, use
16530
16515
  # the name of the group associated with the Wavelength Zone (for
16531
- # example, `us-east-1-wl1-bos-wlz-1`).
16516
+ # example, `us-east-1-wl1`).
16532
16517
  #
16533
16518
  # * `message` - The Zone message.
16534
16519
  #
@@ -29975,11 +29960,11 @@ module Aws::EC2
29975
29960
  #
29976
29961
  # @!attribute [rw] volume_type
29977
29962
  # The volume type. For more information, see [Amazon EBS volume
29978
- # types][1] in the *Amazon EC2 User Guide*.
29963
+ # types][1] in the *Amazon EBS User Guide*.
29979
29964
  #
29980
29965
  #
29981
29966
  #
29982
- # [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
29983
29968
  # @return [String]
29984
29969
  #
29985
29970
  # @!attribute [rw] kms_key_id
@@ -30021,7 +30006,7 @@ module Aws::EC2
30021
30006
  # the encryption state to `true` depends on the volume origin (new or
30022
30007
  # from a snapshot), starting encryption state, ownership, and whether
30023
30008
  # encryption by default is enabled. For more information, see [Amazon
30024
- # EBS encryption][1] in the *Amazon EC2 User Guide*.
30009
+ # EBS encryption][1] in the *Amazon EBS User Guide*.
30025
30010
  #
30026
30011
  # In no case can you remove encryption from an encrypted volume.
30027
30012
  #
@@ -30059,8 +30044,8 @@ module Aws::EC2
30059
30044
  #
30060
30045
  #
30061
30046
  #
30062
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html#encryption-parameters
30063
- # [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
30064
30049
  # @return [Boolean]
30065
30050
  #
30066
30051
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EbsBlockDevice AWS API Documentation
@@ -39537,6 +39522,8 @@ module Aws::EC2
39537
39522
  # @!attribute [rw] http_protocol_ipv_6
39538
39523
  # Enables or disables the IPv6 endpoint for the instance metadata
39539
39524
  # service.
39525
+ #
39526
+ # Default: `disabled`
39540
39527
  # @return [String]
39541
39528
  #
39542
39529
  # @!attribute [rw] instance_metadata_tags
@@ -39597,9 +39584,9 @@ module Aws::EC2
39597
39584
  # requests. The larger the number, the further instance metadata
39598
39585
  # requests can travel.
39599
39586
  #
39600
- # Default: 1
39587
+ # Default: `1`
39601
39588
  #
39602
- # Possible values: Integers from 1 to 64
39589
+ # Possible values: Integers from `1` to `64`
39603
39590
  # @return [Integer]
39604
39591
  #
39605
39592
  # @!attribute [rw] http_endpoint
@@ -39613,6 +39600,8 @@ module Aws::EC2
39613
39600
  # @!attribute [rw] http_protocol_ipv_6
39614
39601
  # Indicates whether the IPv6 endpoint for the instance metadata
39615
39602
  # service is enabled or disabled.
39603
+ #
39604
+ # Default: `disabled`
39616
39605
  # @return [String]
39617
39606
  #
39618
39607
  # @!attribute [rw] instance_metadata_tags
@@ -39866,11 +39855,10 @@ module Aws::EC2
39866
39855
  # one network interface in the request. If launching into a default
39867
39856
  # subnet, the default value is `true`.
39868
39857
  #
39869
- # Starting on February 1, 2024, Amazon Web Services will charge for
39870
- # all public IPv4 addresses, including public IPv4 addresses
39871
- # associated with running instances and Elastic IP addresses. For more
39872
- # information, see the *Public IPv4 Address* tab on the [Amazon VPC
39873
- # 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].
39874
39862
  #
39875
39863
  #
39876
39864
  #
@@ -41707,13 +41695,12 @@ module Aws::EC2
41707
41695
  include Aws::Structure
41708
41696
  end
41709
41697
 
41710
- # Describes a set of permissions for a security group rule.
41698
+ # Describes the permissions for a security group rule.
41711
41699
  #
41712
41700
  # @!attribute [rw] from_port
41713
41701
  # If the protocol is TCP or UDP, this is the start of the port range.
41714
- # If the protocol is ICMP or ICMPv6, this is the type number. A value
41715
- # of -1 indicates all ICMP/ICMPv6 types. If you specify all
41716
- # 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).
41717
41704
  # @return [Integer]
41718
41705
  #
41719
41706
  # @!attribute [rw] ip_protocol
@@ -41733,11 +41720,11 @@ module Aws::EC2
41733
41720
  # @return [String]
41734
41721
  #
41735
41722
  # @!attribute [rw] ip_ranges
41736
- # The IPv4 ranges.
41723
+ # The IPv4 address ranges.
41737
41724
  # @return [Array<Types::IpRange>]
41738
41725
  #
41739
41726
  # @!attribute [rw] ipv_6_ranges
41740
- # The IPv6 ranges.
41727
+ # The IPv6 address ranges.
41741
41728
  # @return [Array<Types::Ipv6Range>]
41742
41729
  #
41743
41730
  # @!attribute [rw] prefix_list_ids
@@ -41746,9 +41733,9 @@ module Aws::EC2
41746
41733
  #
41747
41734
  # @!attribute [rw] to_port
41748
41735
  # If the protocol is TCP or UDP, this is the end of the port range. If
41749
- # the protocol is ICMP or ICMPv6, this is the code. A value of -1
41750
- # indicates all ICMP/ICMPv6 codes. If you specify all ICMP/ICMPv6
41751
- # 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).
41752
41739
  # @return [Integer]
41753
41740
  #
41754
41741
  # @!attribute [rw] user_id_group_pairs
@@ -41769,12 +41756,12 @@ module Aws::EC2
41769
41756
  include Aws::Structure
41770
41757
  end
41771
41758
 
41772
- # Describes an IPv4 range.
41759
+ # Describes an IPv4 address range.
41773
41760
  #
41774
41761
  # @!attribute [rw] cidr_ip
41775
- # The IPv4 CIDR range. You can either specify a CIDR range or a source
41776
- # security group, not both. To specify a single IPv4 address, use the
41777
- # /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.
41778
41765
  # @return [String]
41779
41766
  #
41780
41767
  # @!attribute [rw] description
@@ -43317,12 +43304,12 @@ module Aws::EC2
43317
43304
  include Aws::Structure
43318
43305
  end
43319
43306
 
43320
- # Describes an IPv6 range.
43307
+ # Describes an IPv6 address range.
43321
43308
  #
43322
43309
  # @!attribute [rw] cidr_ipv_6
43323
- # The IPv6 CIDR range. You can either specify a CIDR range or a source
43324
- # security group, not both. To specify a single IPv6 address, use the
43325
- # /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.
43326
43313
  # @return [String]
43327
43314
  #
43328
43315
  # @!attribute [rw] description
@@ -44016,11 +44003,11 @@ module Aws::EC2
44016
44003
  #
44017
44004
  # @!attribute [rw] volume_type
44018
44005
  # The volume type. For more information, see [Amazon EBS volume
44019
- # types][1] in the *Amazon Elastic Compute Cloud User Guide*.
44006
+ # types][1] in the *Amazon EBS User Guide*.
44020
44007
  #
44021
44008
  #
44022
44009
  #
44023
- # [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
44024
44011
  # @return [String]
44025
44012
  #
44026
44013
  # @!attribute [rw] throughput
@@ -44517,11 +44504,10 @@ module Aws::EC2
44517
44504
  # Indicates whether to associate a public IPv4 address with eth0 for a
44518
44505
  # new network interface.
44519
44506
  #
44520
- # Starting on February 1, 2024, Amazon Web Services will charge for
44521
- # all public IPv4 addresses, including public IPv4 addresses
44522
- # associated with running instances and Elastic IP addresses. For more
44523
- # information, see the *Public IPv4 Address* tab on the [Amazon VPC
44524
- # 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].
44525
44511
  #
44526
44512
  #
44527
44513
  #
@@ -44677,11 +44663,10 @@ module Aws::EC2
44677
44663
  # Associates a public IPv4 address with eth0 for a new network
44678
44664
  # interface.
44679
44665
  #
44680
- # Starting on February 1, 2024, Amazon Web Services will charge for
44681
- # all public IPv4 addresses, including public IPv4 addresses
44682
- # associated with running instances and Elastic IP addresses. For more
44683
- # information, see the *Public IPv4 Address* tab on the [Amazon VPC
44684
- # 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].
44685
44670
  #
44686
44671
  #
44687
44672
  #
@@ -47747,8 +47732,6 @@ module Aws::EC2
47747
47732
  # the instance metadata. For more information, see [Work with instance
47748
47733
  # tags using the instance metadata][1].
47749
47734
  #
47750
- # Default: `disabled`
47751
- #
47752
47735
  #
47753
47736
  #
47754
47737
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#work-with-tags-in-IMDS
@@ -48747,11 +48730,10 @@ module Aws::EC2
48747
48730
  # instances created in the specified subnet should be assigned a
48748
48731
  # public IPv4 address.
48749
48732
  #
48750
- # Starting on February 1, 2024, Amazon Web Services will charge for
48751
- # all public IPv4 addresses, including public IPv4 addresses
48752
- # associated with running instances and Elastic IP addresses. For more
48753
- # information, see the *Public IPv4 Address* tab on the [Amazon VPC
48754
- # 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].
48755
48737
  #
48756
48738
  #
48757
48739
  #
@@ -49073,21 +49055,19 @@ module Aws::EC2
49073
49055
  # @return [String]
49074
49056
  #
49075
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
+ #
49076
49063
  # Enables you to reference a security group across VPCs attached to a
49077
- # transit gateway (TGW). Use this option to simplify security group
49064
+ # transit gateway. Use this option to simplify security group
49078
49065
  # management and control of instance-to-instance traffic across VPCs
49079
49066
  # that are connected by transit gateway. You can also use this option
49080
49067
  # to migrate from VPC peering (which was the only option that
49081
49068
  # supported security group referencing) to transit gateways (which now
49082
49069
  # also support security group referencing). This option is disabled by
49083
49070
  # default and there are no additional costs to use this feature.
49084
- #
49085
- # For important information about this feature, see [Create a transit
49086
- # gateway][1] in the *Amazon Web Services Transit Gateway Guide*.
49087
- #
49088
- #
49089
- #
49090
- # [1]: https://docs.aws.amazon.com/vpc/latest/tgw/tgw-transit-gateways.html#create-tgw
49091
49071
  # @return [String]
49092
49072
  #
49093
49073
  # @!attribute [rw] auto_accept_shared_attachments
@@ -49273,22 +49253,19 @@ module Aws::EC2
49273
49253
  # @return [String]
49274
49254
  #
49275
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
+ #
49276
49261
  # Enables you to reference a security group across VPCs attached to a
49277
- # transit gateway (TGW). Use this option to simplify security group
49262
+ # transit gateway. Use this option to simplify security group
49278
49263
  # management and control of instance-to-instance traffic across VPCs
49279
49264
  # that are connected by transit gateway. You can also use this option
49280
49265
  # to migrate from VPC peering (which was the only option that
49281
49266
  # supported security group referencing) to transit gateways (which now
49282
49267
  # also support security group referencing). This option is disabled by
49283
49268
  # default and there are no additional costs to use this feature.
49284
- #
49285
- # For important information about this feature, see [Create a transit
49286
- # gateway attachment to a VPC][1] in the *Amazon Web Services Transit
49287
- # Gateway Guide*.
49288
- #
49289
- #
49290
- #
49291
- # [1]: https://docs.aws.amazon.com/vpc/latest/tgw/tgw-vpc-attachments.html#create-vpc-attachment
49292
49269
  # @return [String]
49293
49270
  #
49294
49271
  # @!attribute [rw] ipv_6_support
@@ -49925,14 +49902,13 @@ module Aws::EC2
49925
49902
  #
49926
49903
  # @!attribute [rw] volume_type
49927
49904
  # The target EBS volume type of the volume. For more information, see
49928
- # [Amazon EBS volume types][1] in the *Amazon Elastic Compute Cloud
49929
- # User Guide*.
49905
+ # [Amazon EBS volume types][1] in the *Amazon EBS User Guide*.
49930
49906
  #
49931
49907
  # Default: The existing type is retained.
49932
49908
  #
49933
49909
  #
49934
49910
  #
49935
- # [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
49936
49912
  # @return [String]
49937
49913
  #
49938
49914
  # @!attribute [rw] iops
@@ -49975,13 +49951,12 @@ module Aws::EC2
49975
49951
  # Multi-Attach, you can attach the volume to up to 16 [ Nitro-based
49976
49952
  # instances][1] in the same Availability Zone. This parameter is
49977
49953
  # supported with `io1` and `io2` volumes only. For more information,
49978
- # see [ Amazon EBS Multi-Attach][2] in the *Amazon Elastic Compute
49979
- # Cloud User Guide*.
49954
+ # see [ Amazon EBS Multi-Attach][2] in the *Amazon EBS User Guide*.
49980
49955
  #
49981
49956
  #
49982
49957
  #
49983
49958
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html#ec2-nitro-instances
49984
- # [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
49985
49960
  # @return [Boolean]
49986
49961
  #
49987
49962
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVolumeRequest AWS API Documentation
@@ -53703,9 +53678,10 @@ module Aws::EC2
53703
53678
  # @!attribute [rw] cidr
53704
53679
  # The public IPv4 or IPv6 address range, in CIDR notation. The most
53705
53680
  # specific IPv4 prefix that you can specify is /24. The most specific
53706
- # IPv6 prefix you can specify is /56. The address range cannot overlap
53707
- # with another address range that you've brought to this or another
53708
- # 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.
53709
53685
  # @return [String]
53710
53686
  #
53711
53687
  # @!attribute [rw] cidr_authorization_context
@@ -54568,11 +54544,11 @@ module Aws::EC2
54568
54544
  # be on the same Outpost or in the Region of that Outpost. AMIs on an
54569
54545
  # Outpost that include local snapshots can be used to launch instances
54570
54546
  # on the same Outpost only. For more information, [Amazon EBS local
54571
- # snapshots on Outposts][1] in the *Amazon EC2 User Guide*.
54547
+ # snapshots on Outposts][1] in the *Amazon EBS User Guide*.
54572
54548
  #
54573
54549
  #
54574
54550
  #
54575
- # [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
54576
54552
  # @return [Array<Types::BlockDeviceMapping>]
54577
54553
  #
54578
54554
  # @!attribute [rw] description
@@ -57703,11 +57679,11 @@ module Aws::EC2
57703
57679
  # @!attribute [rw] outpost_arn
57704
57680
  # The ARN of the Outpost on which the snapshot is stored. For more
57705
57681
  # information, see [Amazon EBS local snapshots on Outposts][1] in the
57706
- # *Amazon Elastic Compute Cloud User Guide*.
57682
+ # *Amazon EBS User Guide*.
57707
57683
  #
57708
57684
  #
57709
57685
  #
57710
- # [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
57711
57687
  # @return [String]
57712
57688
  #
57713
57689
  # @!attribute [rw] description
@@ -57973,8 +57949,8 @@ module Aws::EC2
57973
57949
  #
57974
57950
  # @!attribute [rw] from_port
57975
57951
  # If the protocol is TCP or UDP, this is the start of the port range.
57976
- # If the protocol is ICMP, this is the type number. A value of -1
57977
- # indicates all ICMP types.
57952
+ # If the protocol is ICMP, this is the ICMP type or -1 (all ICMP
57953
+ # types).
57978
57954
  # @return [Integer]
57979
57955
  #
57980
57956
  # @!attribute [rw] group_id
@@ -58017,8 +57993,7 @@ module Aws::EC2
58017
57993
  #
58018
57994
  # @!attribute [rw] to_port
58019
57995
  # If the protocol is TCP or UDP, this is the end of the port range. If
58020
- # the protocol is ICMP, this is the code. A value of -1 indicates all
58021
- # ICMP codes.
57996
+ # the protocol is ICMP, this is the ICMP code or -1 (all ICMP codes).
58022
57997
  # @return [Integer]
58023
57998
  #
58024
57999
  # @!attribute [rw] dry_run
@@ -59926,18 +59901,16 @@ module Aws::EC2
59926
59901
  #
59927
59902
  #
59928
59903
  #
59929
- # [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
59930
59905
  # @return [String]
59931
59906
  #
59932
59907
  # @!attribute [rw] transit_gateway_id
59933
- # The ID of the transit gateway (if applicable). For more information
59934
- # about security group referencing for transit gateways, see [Create a
59935
- # transit gateway attachment to a VPC][1] in the *Amazon Web Services
59936
- # Transit Gateway Guide*.
59937
- #
59908
+ # <note markdown="1"> This parameter is in preview and may not be available for your
59909
+ # account.
59938
59910
  #
59911
+ # </note>
59939
59912
  #
59940
- # [1]: https://docs.aws.amazon.com/tgw/tgw-vpc-attachments.html#create-vpc-attachment
59913
+ # The ID of the transit gateway (if applicable).
59941
59914
  # @return [String]
59942
59915
  #
59943
59916
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SecurityGroupReference AWS API Documentation
@@ -59983,16 +59956,15 @@ module Aws::EC2
59983
59956
  #
59984
59957
  # @!attribute [rw] from_port
59985
59958
  # If the protocol is TCP or UDP, this is the start of the port range.
59986
- # If the protocol is ICMP or ICMPv6, this is the type number. A value
59987
- # of -1 indicates all ICMP/ICMPv6 types. If you specify all
59988
- # 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).
59989
59961
  # @return [Integer]
59990
59962
  #
59991
59963
  # @!attribute [rw] to_port
59992
59964
  # If the protocol is TCP or UDP, this is the end of the port range. If
59993
- # the protocol is ICMP or ICMPv6, this is the type number. A value of
59994
- # -1 indicates all ICMP/ICMPv6 codes. If you specify all ICMP/ICMPv6
59995
- # 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).
59996
59968
  # @return [Integer]
59997
59969
  #
59998
59970
  # @!attribute [rw] cidr_ipv_4
@@ -60091,16 +60063,15 @@ module Aws::EC2
60091
60063
  #
60092
60064
  # @!attribute [rw] from_port
60093
60065
  # If the protocol is TCP or UDP, this is the start of the port range.
60094
- # If the protocol is ICMP or ICMPv6, this is the type number. A value
60095
- # of -1 indicates all ICMP/ICMPv6 types. If you specify all
60096
- # 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).
60097
60068
  # @return [Integer]
60098
60069
  #
60099
60070
  # @!attribute [rw] to_port
60100
60071
  # If the protocol is TCP or UDP, this is the end of the port range. If
60101
- # the protocol is ICMP or ICMPv6, this is the code. A value of -1
60102
- # indicates all ICMP/ICMPv6 codes. If you specify all ICMP/ICMPv6
60103
- # 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).
60104
60075
  # @return [Integer]
60105
60076
  #
60106
60077
  # @!attribute [rw] cidr_ipv_4
@@ -60495,11 +60466,11 @@ module Aws::EC2
60495
60466
  # @!attribute [rw] outpost_arn
60496
60467
  # The ARN of the Outpost on which the snapshot is stored. For more
60497
60468
  # information, see [Amazon EBS local snapshots on Outposts][1] in the
60498
- # *Amazon Elastic Compute Cloud User Guide*.
60469
+ # *Amazon EBS User Guide*.
60499
60470
  #
60500
60471
  #
60501
60472
  #
60502
- # [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
60503
60474
  # @return [String]
60504
60475
  #
60505
60476
  # @!attribute [rw] tags
@@ -60687,11 +60658,11 @@ module Aws::EC2
60687
60658
  # @!attribute [rw] outpost_arn
60688
60659
  # The ARN of the Outpost on which the snapshot is stored. For more
60689
60660
  # information, see [Amazon EBS local snapshots on Outposts][1] in the
60690
- # *Amazon Elastic Compute Cloud User Guide*.
60661
+ # *Amazon EBS User Guide*.
60691
60662
  #
60692
60663
  #
60693
60664
  #
60694
- # [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
60695
60666
  # @return [String]
60696
60667
  #
60697
60668
  # @!attribute [rw] sse_type
@@ -62264,12 +62235,13 @@ module Aws::EC2
62264
62235
  # Describes a stale rule in a security group.
62265
62236
  #
62266
62237
  # @!attribute [rw] from_port
62267
- # The start of the port range for the TCP and UDP protocols, or an
62268
- # 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).
62269
62241
  # @return [Integer]
62270
62242
  #
62271
62243
  # @!attribute [rw] ip_protocol
62272
- # The IP protocol name (for `tcp`, `udp`, and `icmp`) or number (see
62244
+ # The IP protocol name (`tcp`, `udp`, `icmp`, `icmpv6`) or number (see
62273
62245
  # [Protocol Numbers)][1].
62274
62246
  #
62275
62247
  #
@@ -62286,8 +62258,9 @@ module Aws::EC2
62286
62258
  # @return [Array<String>]
62287
62259
  #
62288
62260
  # @!attribute [rw] to_port
62289
- # The end of the port range for the TCP and UDP protocols, or an ICMP
62290
- # 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).
62291
62264
  # @return [Integer]
62292
62265
  #
62293
62266
  # @!attribute [rw] user_id_group_pairs
@@ -62763,11 +62736,10 @@ module Aws::EC2
62763
62736
  # Indicates whether instances launched in this subnet receive a public
62764
62737
  # IPv4 address.
62765
62738
  #
62766
- # Starting on February 1, 2024, Amazon Web Services will charge for
62767
- # all public IPv4 addresses, including public IPv4 addresses
62768
- # associated with running instances and Elastic IP addresses. For more
62769
- # information, see the *Public IPv4 Address* tab on the [Amazon VPC
62770
- # 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].
62771
62743
  #
62772
62744
  #
62773
62745
  #
@@ -64587,21 +64559,19 @@ module Aws::EC2
64587
64559
  # @return [String]
64588
64560
  #
64589
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
+ #
64590
64567
  # Enables you to reference a security group across VPCs attached to a
64591
- # transit gateway (TGW). Use this option to simplify security group
64568
+ # transit gateway. Use this option to simplify security group
64592
64569
  # management and control of instance-to-instance traffic across VPCs
64593
64570
  # that are connected by transit gateway. You can also use this option
64594
64571
  # to migrate from VPC peering (which was the only option that
64595
64572
  # supported security group referencing) to transit gateways (which now
64596
64573
  # also support security group referencing). This option is disabled by
64597
64574
  # default and there are no additional costs to use this feature.
64598
- #
64599
- # For important information about this feature, see [Create a transit
64600
- # gateway][1] in the *Amazon Web Services Transit Gateway Guide*.
64601
- #
64602
- #
64603
- #
64604
- # [1]: https://docs.aws.amazon.com/vpc/latest/tgw/tgw-transit-gateways.html#create-tgw
64605
64575
  # @return [String]
64606
64576
  #
64607
64577
  # @!attribute [rw] multicast_support
@@ -64987,21 +64957,19 @@ module Aws::EC2
64987
64957
  # @return [String]
64988
64958
  #
64989
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
+ #
64990
64965
  # Enables you to reference a security group across VPCs attached to a
64991
- # transit gateway (TGW). Use this option to simplify security group
64966
+ # transit gateway. Use this option to simplify security group
64992
64967
  # management and control of instance-to-instance traffic across VPCs
64993
64968
  # that are connected by transit gateway. You can also use this option
64994
64969
  # to migrate from VPC peering (which was the only option that
64995
64970
  # supported security group referencing) to transit gateways (which now
64996
64971
  # also support security group referencing). This option is disabled by
64997
64972
  # default and there are no additional costs to use this feature.
64998
- #
64999
- # For important information about this feature, see [Create a transit
65000
- # gateway][1] in the *Amazon Web Services Transit Gateway Guide*.
65001
- #
65002
- #
65003
- #
65004
- # [1]: https://docs.aws.amazon.com/vpc/latest/tgw/tgw-transit-gateways.html#create-tgw
65005
64973
  # @return [String]
65006
64974
  #
65007
64975
  # @!attribute [rw] multicast_support
@@ -65382,13 +65350,19 @@ module Aws::EC2
65382
65350
  # @return [String]
65383
65351
  #
65384
65352
  # @!attribute [rw] security_group_referencing_support
65385
- # For important information about this feature, see [Create a transit
65386
- # gateway attachment to a VPC][1] in the *Amazon Web Services Transit
65387
- # Gateway Guide*.
65388
- #
65353
+ # <note markdown="1"> This parameter is in preview and may not be available for your
65354
+ # account.
65389
65355
  #
65356
+ # </note>
65390
65357
  #
65391
- # [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.
65392
65366
  # @return [String]
65393
65367
  #
65394
65368
  # @!attribute [rw] ipv_6_support