aws-sdk-ec2 1.441.0 → 1.443.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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.
3313
3306
  #
3314
- # Alternatively, use a set of IP permissions to specify multiple rules
3315
- # and a description for the rule.
3307
+ # To specify an IPv6 address range, use IP permissions instead.
3308
+ #
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
@@ -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
  #
@@ -41541,6 +41529,14 @@ module Aws::EC2
41541
41529
  # Describes the supported NitroTPM versions for the instance type.
41542
41530
  # @return [Types::NitroTpmInfo]
41543
41531
  #
41532
+ # @!attribute [rw] media_accelerator_info
41533
+ # Describes the media accelerator settings for the instance type.
41534
+ # @return [Types::MediaAcceleratorInfo]
41535
+ #
41536
+ # @!attribute [rw] neuron_info
41537
+ # Describes the Neuron accelerator settings for the instance type.
41538
+ # @return [Types::NeuronInfo]
41539
+ #
41544
41540
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceTypeInfo AWS API Documentation
41545
41541
  #
41546
41542
  class InstanceTypeInfo < Struct.new(
@@ -41570,7 +41566,9 @@ module Aws::EC2
41570
41566
  :supported_boot_modes,
41571
41567
  :nitro_enclaves_support,
41572
41568
  :nitro_tpm_support,
41573
- :nitro_tpm_info)
41569
+ :nitro_tpm_info,
41570
+ :media_accelerator_info,
41571
+ :neuron_info)
41574
41572
  SENSITIVE = []
41575
41573
  include Aws::Structure
41576
41574
  end
@@ -41707,13 +41705,12 @@ module Aws::EC2
41707
41705
  include Aws::Structure
41708
41706
  end
41709
41707
 
41710
- # Describes a set of permissions for a security group rule.
41708
+ # Describes the permissions for a security group rule.
41711
41709
  #
41712
41710
  # @!attribute [rw] from_port
41713
41711
  # 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.
41712
+ # If the protocol is ICMP or ICMPv6, this is the ICMP type or -1 (all
41713
+ # ICMP types).
41717
41714
  # @return [Integer]
41718
41715
  #
41719
41716
  # @!attribute [rw] ip_protocol
@@ -41733,11 +41730,11 @@ module Aws::EC2
41733
41730
  # @return [String]
41734
41731
  #
41735
41732
  # @!attribute [rw] ip_ranges
41736
- # The IPv4 ranges.
41733
+ # The IPv4 address ranges.
41737
41734
  # @return [Array<Types::IpRange>]
41738
41735
  #
41739
41736
  # @!attribute [rw] ipv_6_ranges
41740
- # The IPv6 ranges.
41737
+ # The IPv6 address ranges.
41741
41738
  # @return [Array<Types::Ipv6Range>]
41742
41739
  #
41743
41740
  # @!attribute [rw] prefix_list_ids
@@ -41746,9 +41743,9 @@ module Aws::EC2
41746
41743
  #
41747
41744
  # @!attribute [rw] to_port
41748
41745
  # 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.
41746
+ # the protocol is ICMP or ICMPv6, this is the ICMP code or -1 (all
41747
+ # ICMP codes). If the start port is -1 (all ICMP types), then the end
41748
+ # port must be -1 (all ICMP codes).
41752
41749
  # @return [Integer]
41753
41750
  #
41754
41751
  # @!attribute [rw] user_id_group_pairs
@@ -41769,12 +41766,12 @@ module Aws::EC2
41769
41766
  include Aws::Structure
41770
41767
  end
41771
41768
 
41772
- # Describes an IPv4 range.
41769
+ # Describes an IPv4 address range.
41773
41770
  #
41774
41771
  # @!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.
41772
+ # The IPv4 address range. You can either specify a CIDR block or a
41773
+ # source security group, not both. To specify a single IPv4 address,
41774
+ # use the /32 prefix length.
41778
41775
  # @return [String]
41779
41776
  #
41780
41777
  # @!attribute [rw] description
@@ -43317,12 +43314,12 @@ module Aws::EC2
43317
43314
  include Aws::Structure
43318
43315
  end
43319
43316
 
43320
- # Describes an IPv6 range.
43317
+ # Describes an IPv6 address range.
43321
43318
  #
43322
43319
  # @!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.
43320
+ # The IPv6 address range. You can either specify a CIDR block or a
43321
+ # source security group, not both. To specify a single IPv6 address,
43322
+ # use the /128 prefix length.
43326
43323
  # @return [String]
43327
43324
  #
43328
43325
  # @!attribute [rw] description
@@ -44016,11 +44013,11 @@ module Aws::EC2
44016
44013
  #
44017
44014
  # @!attribute [rw] volume_type
44018
44015
  # The volume type. For more information, see [Amazon EBS volume
44019
- # types][1] in the *Amazon Elastic Compute Cloud User Guide*.
44016
+ # types][1] in the *Amazon EBS User Guide*.
44020
44017
  #
44021
44018
  #
44022
44019
  #
44023
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html
44020
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-volume-types.html
44024
44021
  # @return [String]
44025
44022
  #
44026
44023
  # @!attribute [rw] throughput
@@ -44517,11 +44514,10 @@ module Aws::EC2
44517
44514
  # Indicates whether to associate a public IPv4 address with eth0 for a
44518
44515
  # new network interface.
44519
44516
  #
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].
44517
+ # Amazon Web Services charges for all public IPv4 addresses, including
44518
+ # public IPv4 addresses associated with running instances and Elastic
44519
+ # IP addresses. For more information, see the *Public IPv4 Address*
44520
+ # tab on the [Amazon VPC pricing page][1].
44525
44521
  #
44526
44522
  #
44527
44523
  #
@@ -44677,11 +44673,10 @@ module Aws::EC2
44677
44673
  # Associates a public IPv4 address with eth0 for a new network
44678
44674
  # interface.
44679
44675
  #
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].
44676
+ # Amazon Web Services charges for all public IPv4 addresses, including
44677
+ # public IPv4 addresses associated with running instances and Elastic
44678
+ # IP addresses. For more information, see the *Public IPv4 Address*
44679
+ # tab on the [Amazon VPC pricing page][1].
44685
44680
  #
44686
44681
  #
44687
44682
  #
@@ -46292,6 +46287,69 @@ module Aws::EC2
46292
46287
  include Aws::Structure
46293
46288
  end
46294
46289
 
46290
+ # Describes the media accelerators for the instance type.
46291
+ #
46292
+ # @!attribute [rw] accelerators
46293
+ # Describes the media accelerators for the instance type.
46294
+ # @return [Array<Types::MediaDeviceInfo>]
46295
+ #
46296
+ # @!attribute [rw] total_media_memory_in_mi_b
46297
+ # The total size of the memory for the media accelerators for the
46298
+ # instance type, in MiB.
46299
+ # @return [Integer]
46300
+ #
46301
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/MediaAcceleratorInfo AWS API Documentation
46302
+ #
46303
+ class MediaAcceleratorInfo < Struct.new(
46304
+ :accelerators,
46305
+ :total_media_memory_in_mi_b)
46306
+ SENSITIVE = []
46307
+ include Aws::Structure
46308
+ end
46309
+
46310
+ # Describes the media accelerators for the instance type.
46311
+ #
46312
+ # @!attribute [rw] count
46313
+ # The number of media accelerators for the instance type.
46314
+ # @return [Integer]
46315
+ #
46316
+ # @!attribute [rw] name
46317
+ # The name of the media accelerator.
46318
+ # @return [String]
46319
+ #
46320
+ # @!attribute [rw] manufacturer
46321
+ # The manufacturer of the media accelerator.
46322
+ # @return [String]
46323
+ #
46324
+ # @!attribute [rw] memory_info
46325
+ # Describes the memory available to the media accelerator.
46326
+ # @return [Types::MediaDeviceMemoryInfo]
46327
+ #
46328
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/MediaDeviceInfo AWS API Documentation
46329
+ #
46330
+ class MediaDeviceInfo < Struct.new(
46331
+ :count,
46332
+ :name,
46333
+ :manufacturer,
46334
+ :memory_info)
46335
+ SENSITIVE = []
46336
+ include Aws::Structure
46337
+ end
46338
+
46339
+ # Describes the memory available to the media accelerator.
46340
+ #
46341
+ # @!attribute [rw] size_in_mi_b
46342
+ # The size of the memory available to each media accelerator, in MiB.
46343
+ # @return [Integer]
46344
+ #
46345
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/MediaDeviceMemoryInfo AWS API Documentation
46346
+ #
46347
+ class MediaDeviceMemoryInfo < Struct.new(
46348
+ :size_in_mi_b)
46349
+ SENSITIVE = []
46350
+ include Aws::Structure
46351
+ end
46352
+
46295
46353
  # The minimum and maximum amount of memory per vCPU, in GiB.
46296
46354
  #
46297
46355
  # @!attribute [rw] min
@@ -47747,8 +47805,6 @@ module Aws::EC2
47747
47805
  # the instance metadata. For more information, see [Work with instance
47748
47806
  # tags using the instance metadata][1].
47749
47807
  #
47750
- # Default: `disabled`
47751
- #
47752
47808
  #
47753
47809
  #
47754
47810
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#work-with-tags-in-IMDS
@@ -48747,11 +48803,10 @@ module Aws::EC2
48747
48803
  # instances created in the specified subnet should be assigned a
48748
48804
  # public IPv4 address.
48749
48805
  #
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].
48806
+ # Amazon Web Services charges for all public IPv4 addresses, including
48807
+ # public IPv4 addresses associated with running instances and Elastic
48808
+ # IP addresses. For more information, see the *Public IPv4 Address*
48809
+ # tab on the [Amazon VPC pricing page][1].
48755
48810
  #
48756
48811
  #
48757
48812
  #
@@ -49073,21 +49128,19 @@ module Aws::EC2
49073
49128
  # @return [String]
49074
49129
  #
49075
49130
  # @!attribute [rw] security_group_referencing_support
49131
+ # <note markdown="1"> This parameter is in preview and may not be available for your
49132
+ # account.
49133
+ #
49134
+ # </note>
49135
+ #
49076
49136
  # Enables you to reference a security group across VPCs attached to a
49077
- # transit gateway (TGW). Use this option to simplify security group
49137
+ # transit gateway. Use this option to simplify security group
49078
49138
  # management and control of instance-to-instance traffic across VPCs
49079
49139
  # that are connected by transit gateway. You can also use this option
49080
49140
  # to migrate from VPC peering (which was the only option that
49081
49141
  # supported security group referencing) to transit gateways (which now
49082
49142
  # also support security group referencing). This option is disabled by
49083
49143
  # 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
49144
  # @return [String]
49092
49145
  #
49093
49146
  # @!attribute [rw] auto_accept_shared_attachments
@@ -49273,22 +49326,19 @@ module Aws::EC2
49273
49326
  # @return [String]
49274
49327
  #
49275
49328
  # @!attribute [rw] security_group_referencing_support
49329
+ # <note markdown="1"> This parameter is in preview and may not be available for your
49330
+ # account.
49331
+ #
49332
+ # </note>
49333
+ #
49276
49334
  # Enables you to reference a security group across VPCs attached to a
49277
- # transit gateway (TGW). Use this option to simplify security group
49335
+ # transit gateway. Use this option to simplify security group
49278
49336
  # management and control of instance-to-instance traffic across VPCs
49279
49337
  # that are connected by transit gateway. You can also use this option
49280
49338
  # to migrate from VPC peering (which was the only option that
49281
49339
  # supported security group referencing) to transit gateways (which now
49282
49340
  # also support security group referencing). This option is disabled by
49283
49341
  # 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
49342
  # @return [String]
49293
49343
  #
49294
49344
  # @!attribute [rw] ipv_6_support
@@ -49925,14 +49975,13 @@ module Aws::EC2
49925
49975
  #
49926
49976
  # @!attribute [rw] volume_type
49927
49977
  # 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*.
49978
+ # [Amazon EBS volume types][1] in the *Amazon EBS User Guide*.
49930
49979
  #
49931
49980
  # Default: The existing type is retained.
49932
49981
  #
49933
49982
  #
49934
49983
  #
49935
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html
49984
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-volume-types.html
49936
49985
  # @return [String]
49937
49986
  #
49938
49987
  # @!attribute [rw] iops
@@ -49975,13 +50024,12 @@ module Aws::EC2
49975
50024
  # Multi-Attach, you can attach the volume to up to 16 [ Nitro-based
49976
50025
  # instances][1] in the same Availability Zone. This parameter is
49977
50026
  # 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*.
50027
+ # see [ Amazon EBS Multi-Attach][2] in the *Amazon EBS User Guide*.
49980
50028
  #
49981
50029
  #
49982
50030
  #
49983
50031
  # [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
50032
+ # [2]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-volumes-multi.html
49985
50033
  # @return [Boolean]
49986
50034
  #
49987
50035
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVolumeRequest AWS API Documentation
@@ -52235,6 +52283,88 @@ module Aws::EC2
52235
52283
  include Aws::Structure
52236
52284
  end
52237
52285
 
52286
+ # Describes the cores available to the neuron accelerator.
52287
+ #
52288
+ # @!attribute [rw] count
52289
+ # The number of cores available to the neuron accelerator.
52290
+ # @return [Integer]
52291
+ #
52292
+ # @!attribute [rw] version
52293
+ # The version of the neuron accelerator.
52294
+ # @return [Integer]
52295
+ #
52296
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NeuronDeviceCoreInfo AWS API Documentation
52297
+ #
52298
+ class NeuronDeviceCoreInfo < Struct.new(
52299
+ :count,
52300
+ :version)
52301
+ SENSITIVE = []
52302
+ include Aws::Structure
52303
+ end
52304
+
52305
+ # Describes the neuron accelerators for the instance type.
52306
+ #
52307
+ # @!attribute [rw] count
52308
+ # The number of neuron accelerators for the instance type.
52309
+ # @return [Integer]
52310
+ #
52311
+ # @!attribute [rw] name
52312
+ # The name of the neuron accelerator.
52313
+ # @return [String]
52314
+ #
52315
+ # @!attribute [rw] core_info
52316
+ # Describes the cores available to each neuron accelerator.
52317
+ # @return [Types::NeuronDeviceCoreInfo]
52318
+ #
52319
+ # @!attribute [rw] memory_info
52320
+ # Describes the memory available to each neuron accelerator.
52321
+ # @return [Types::NeuronDeviceMemoryInfo]
52322
+ #
52323
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NeuronDeviceInfo AWS API Documentation
52324
+ #
52325
+ class NeuronDeviceInfo < Struct.new(
52326
+ :count,
52327
+ :name,
52328
+ :core_info,
52329
+ :memory_info)
52330
+ SENSITIVE = []
52331
+ include Aws::Structure
52332
+ end
52333
+
52334
+ # Describes the memory available to the neuron accelerator.
52335
+ #
52336
+ # @!attribute [rw] size_in_mi_b
52337
+ # The size of the memory available to the neuron accelerator, in MiB.
52338
+ # @return [Integer]
52339
+ #
52340
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NeuronDeviceMemoryInfo AWS API Documentation
52341
+ #
52342
+ class NeuronDeviceMemoryInfo < Struct.new(
52343
+ :size_in_mi_b)
52344
+ SENSITIVE = []
52345
+ include Aws::Structure
52346
+ end
52347
+
52348
+ # Describes the neuron accelerators for the instance type.
52349
+ #
52350
+ # @!attribute [rw] neuron_devices
52351
+ # Describes the neuron accelerators for the instance type.
52352
+ # @return [Array<Types::NeuronDeviceInfo>]
52353
+ #
52354
+ # @!attribute [rw] total_neuron_device_memory_in_mi_b
52355
+ # The total size of the memory for the neuron accelerators for the
52356
+ # instance type, in MiB.
52357
+ # @return [Integer]
52358
+ #
52359
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NeuronInfo AWS API Documentation
52360
+ #
52361
+ class NeuronInfo < Struct.new(
52362
+ :neuron_devices,
52363
+ :total_neuron_device_memory_in_mi_b)
52364
+ SENSITIVE = []
52365
+ include Aws::Structure
52366
+ end
52367
+
52238
52368
  # @!attribute [rw] key
52239
52369
  # @return [String]
52240
52370
  #
@@ -53703,9 +53833,10 @@ module Aws::EC2
53703
53833
  # @!attribute [rw] cidr
53704
53834
  # The public IPv4 or IPv6 address range, in CIDR notation. The most
53705
53835
  # 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.
53836
+ # IPv6 address range that you can bring is /48 for CIDRs that are
53837
+ # publicly advertisable and /56 for CIDRs that are not publicly
53838
+ # advertisable. The address range cannot overlap with another address
53839
+ # range that you've brought to this or another Region.
53709
53840
  # @return [String]
53710
53841
  #
53711
53842
  # @!attribute [rw] cidr_authorization_context
@@ -54568,11 +54699,11 @@ module Aws::EC2
54568
54699
  # be on the same Outpost or in the Region of that Outpost. AMIs on an
54569
54700
  # Outpost that include local snapshots can be used to launch instances
54570
54701
  # on the same Outpost only. For more information, [Amazon EBS local
54571
- # snapshots on Outposts][1] in the *Amazon EC2 User Guide*.
54702
+ # snapshots on Outposts][1] in the *Amazon EBS User Guide*.
54572
54703
  #
54573
54704
  #
54574
54705
  #
54575
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/snapshots-outposts.html#ami
54706
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/snapshots-outposts.html#ami
54576
54707
  # @return [Array<Types::BlockDeviceMapping>]
54577
54708
  #
54578
54709
  # @!attribute [rw] description
@@ -57703,11 +57834,11 @@ module Aws::EC2
57703
57834
  # @!attribute [rw] outpost_arn
57704
57835
  # The ARN of the Outpost on which the snapshot is stored. For more
57705
57836
  # information, see [Amazon EBS local snapshots on Outposts][1] in the
57706
- # *Amazon Elastic Compute Cloud User Guide*.
57837
+ # *Amazon EBS User Guide*.
57707
57838
  #
57708
57839
  #
57709
57840
  #
57710
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/snapshots-outposts.html
57841
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/snapshots-outposts.html
57711
57842
  # @return [String]
57712
57843
  #
57713
57844
  # @!attribute [rw] description
@@ -57973,8 +58104,8 @@ module Aws::EC2
57973
58104
  #
57974
58105
  # @!attribute [rw] from_port
57975
58106
  # 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.
58107
+ # If the protocol is ICMP, this is the ICMP type or -1 (all ICMP
58108
+ # types).
57978
58109
  # @return [Integer]
57979
58110
  #
57980
58111
  # @!attribute [rw] group_id
@@ -58017,8 +58148,7 @@ module Aws::EC2
58017
58148
  #
58018
58149
  # @!attribute [rw] to_port
58019
58150
  # 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.
58151
+ # the protocol is ICMP, this is the ICMP code or -1 (all ICMP codes).
58022
58152
  # @return [Integer]
58023
58153
  #
58024
58154
  # @!attribute [rw] dry_run
@@ -59926,18 +60056,16 @@ module Aws::EC2
59926
60056
  #
59927
60057
  #
59928
60058
  #
59929
- # [1]: https://docs.aws.amazon.com/peering/vpc-peering-security-groups.html
60059
+ # [1]: https://docs.aws.amazon.com/vpc/latest/peering/vpc-peering-security-groups.html
59930
60060
  # @return [String]
59931
60061
  #
59932
60062
  # @!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
- #
60063
+ # <note markdown="1"> This parameter is in preview and may not be available for your
60064
+ # account.
59938
60065
  #
60066
+ # </note>
59939
60067
  #
59940
- # [1]: https://docs.aws.amazon.com/tgw/tgw-vpc-attachments.html#create-vpc-attachment
60068
+ # The ID of the transit gateway (if applicable).
59941
60069
  # @return [String]
59942
60070
  #
59943
60071
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SecurityGroupReference AWS API Documentation
@@ -59983,16 +60111,15 @@ module Aws::EC2
59983
60111
  #
59984
60112
  # @!attribute [rw] from_port
59985
60113
  # 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.
60114
+ # If the protocol is ICMP or ICMPv6, this is the ICMP type or -1 (all
60115
+ # ICMP types).
59989
60116
  # @return [Integer]
59990
60117
  #
59991
60118
  # @!attribute [rw] to_port
59992
60119
  # 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.
60120
+ # the protocol is ICMP or ICMPv6, this is the ICMP code or -1 (all
60121
+ # ICMP codes). If the start port is -1 (all ICMP types), then the end
60122
+ # port must be -1 (all ICMP codes).
59996
60123
  # @return [Integer]
59997
60124
  #
59998
60125
  # @!attribute [rw] cidr_ipv_4
@@ -60091,16 +60218,15 @@ module Aws::EC2
60091
60218
  #
60092
60219
  # @!attribute [rw] from_port
60093
60220
  # 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.
60221
+ # If the protocol is ICMP or ICMPv6, this is the ICMP type or -1 (all
60222
+ # ICMP types).
60097
60223
  # @return [Integer]
60098
60224
  #
60099
60225
  # @!attribute [rw] to_port
60100
60226
  # 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.
60227
+ # the protocol is ICMP or ICMPv6, this is the ICMP code or -1 (all
60228
+ # ICMP codes). If the start port is -1 (all ICMP types), then the end
60229
+ # port must be -1 (all ICMP codes).
60104
60230
  # @return [Integer]
60105
60231
  #
60106
60232
  # @!attribute [rw] cidr_ipv_4
@@ -60495,11 +60621,11 @@ module Aws::EC2
60495
60621
  # @!attribute [rw] outpost_arn
60496
60622
  # The ARN of the Outpost on which the snapshot is stored. For more
60497
60623
  # information, see [Amazon EBS local snapshots on Outposts][1] in the
60498
- # *Amazon Elastic Compute Cloud User Guide*.
60624
+ # *Amazon EBS User Guide*.
60499
60625
  #
60500
60626
  #
60501
60627
  #
60502
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/snapshots-outposts.html
60628
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/snapshots-outposts.html
60503
60629
  # @return [String]
60504
60630
  #
60505
60631
  # @!attribute [rw] tags
@@ -60687,11 +60813,11 @@ module Aws::EC2
60687
60813
  # @!attribute [rw] outpost_arn
60688
60814
  # The ARN of the Outpost on which the snapshot is stored. For more
60689
60815
  # information, see [Amazon EBS local snapshots on Outposts][1] in the
60690
- # *Amazon Elastic Compute Cloud User Guide*.
60816
+ # *Amazon EBS User Guide*.
60691
60817
  #
60692
60818
  #
60693
60819
  #
60694
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/snapshots-outposts.html
60820
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/snapshots-outposts.html
60695
60821
  # @return [String]
60696
60822
  #
60697
60823
  # @!attribute [rw] sse_type
@@ -61326,6 +61452,12 @@ module Aws::EC2
61326
61452
  # `LaunchSpecifications`, you can't specify `LaunchTemplateConfigs`.
61327
61453
  # If you include On-Demand capacity in your request, you must use
61328
61454
  # `LaunchTemplateConfigs`.
61455
+ #
61456
+ # <note markdown="1"> If an AMI specified in a launch specification is deregistered or
61457
+ # disabled, no new instances can be launched from the AMI. For fleets
61458
+ # of type `maintain`, the target capacity will not be maintained.
61459
+ #
61460
+ # </note>
61329
61461
  # @return [Array<Types::SpotFleetLaunchSpecification>]
61330
61462
  #
61331
61463
  # @!attribute [rw] launch_template_configs
@@ -62264,12 +62396,13 @@ module Aws::EC2
62264
62396
  # Describes a stale rule in a security group.
62265
62397
  #
62266
62398
  # @!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.
62399
+ # If the protocol is TCP or UDP, this is the start of the port range.
62400
+ # If the protocol is ICMP or ICMPv6, this is the ICMP type or -1 (all
62401
+ # ICMP types).
62269
62402
  # @return [Integer]
62270
62403
  #
62271
62404
  # @!attribute [rw] ip_protocol
62272
- # The IP protocol name (for `tcp`, `udp`, and `icmp`) or number (see
62405
+ # The IP protocol name (`tcp`, `udp`, `icmp`, `icmpv6`) or number (see
62273
62406
  # [Protocol Numbers)][1].
62274
62407
  #
62275
62408
  #
@@ -62286,8 +62419,9 @@ module Aws::EC2
62286
62419
  # @return [Array<String>]
62287
62420
  #
62288
62421
  # @!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.
62422
+ # If the protocol is TCP or UDP, this is the end of the port range. If
62423
+ # the protocol is ICMP or ICMPv6, this is the ICMP code or -1 (all
62424
+ # ICMP codes).
62291
62425
  # @return [Integer]
62292
62426
  #
62293
62427
  # @!attribute [rw] user_id_group_pairs
@@ -62763,11 +62897,10 @@ module Aws::EC2
62763
62897
  # Indicates whether instances launched in this subnet receive a public
62764
62898
  # IPv4 address.
62765
62899
  #
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].
62900
+ # Amazon Web Services charges for all public IPv4 addresses, including
62901
+ # public IPv4 addresses associated with running instances and Elastic
62902
+ # IP addresses. For more information, see the *Public IPv4 Address*
62903
+ # tab on the [Amazon VPC pricing page][1].
62771
62904
  #
62772
62905
  #
62773
62906
  #
@@ -64587,21 +64720,19 @@ module Aws::EC2
64587
64720
  # @return [String]
64588
64721
  #
64589
64722
  # @!attribute [rw] security_group_referencing_support
64723
+ # <note markdown="1"> This parameter is in preview and may not be available for your
64724
+ # account.
64725
+ #
64726
+ # </note>
64727
+ #
64590
64728
  # Enables you to reference a security group across VPCs attached to a
64591
- # transit gateway (TGW). Use this option to simplify security group
64729
+ # transit gateway. Use this option to simplify security group
64592
64730
  # management and control of instance-to-instance traffic across VPCs
64593
64731
  # that are connected by transit gateway. You can also use this option
64594
64732
  # to migrate from VPC peering (which was the only option that
64595
64733
  # supported security group referencing) to transit gateways (which now
64596
64734
  # also support security group referencing). This option is disabled by
64597
64735
  # 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
64736
  # @return [String]
64606
64737
  #
64607
64738
  # @!attribute [rw] multicast_support
@@ -64987,21 +65118,19 @@ module Aws::EC2
64987
65118
  # @return [String]
64988
65119
  #
64989
65120
  # @!attribute [rw] security_group_referencing_support
65121
+ # <note markdown="1"> This parameter is in preview and may not be available for your
65122
+ # account.
65123
+ #
65124
+ # </note>
65125
+ #
64990
65126
  # Enables you to reference a security group across VPCs attached to a
64991
- # transit gateway (TGW). Use this option to simplify security group
65127
+ # transit gateway. Use this option to simplify security group
64992
65128
  # management and control of instance-to-instance traffic across VPCs
64993
65129
  # that are connected by transit gateway. You can also use this option
64994
65130
  # to migrate from VPC peering (which was the only option that
64995
65131
  # supported security group referencing) to transit gateways (which now
64996
65132
  # also support security group referencing). This option is disabled by
64997
65133
  # 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
65134
  # @return [String]
65006
65135
  #
65007
65136
  # @!attribute [rw] multicast_support
@@ -65382,13 +65511,19 @@ module Aws::EC2
65382
65511
  # @return [String]
65383
65512
  #
65384
65513
  # @!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
- #
65514
+ # <note markdown="1"> This parameter is in preview and may not be available for your
65515
+ # account.
65389
65516
  #
65517
+ # </note>
65390
65518
  #
65391
- # [1]: https://docs.aws.amazon.com/vpc/latest/tgw/tgw-vpc-attachments.html#create-vpc-attachment
65519
+ # Enables you to reference a security group across VPCs attached to a
65520
+ # transit gateway. Use this option to simplify security group
65521
+ # management and control of instance-to-instance traffic across VPCs
65522
+ # that are connected by transit gateway. You can also use this option
65523
+ # to migrate from VPC peering (which was the only option that
65524
+ # supported security group referencing) to transit gateways (which now
65525
+ # also support security group referencing). This option is disabled by
65526
+ # default and there are no additional costs to use this feature.
65392
65527
  # @return [String]
65393
65528
  #
65394
65529
  # @!attribute [rw] ipv_6_support