aws-sdk-ec2 1.441.0 → 1.442.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +291 -278
- data/lib/aws-sdk-ec2/resource.rb +11 -13
- data/lib/aws-sdk-ec2/security_group.rb +46 -57
- data/lib/aws-sdk-ec2/snapshot.rb +6 -7
- data/lib/aws-sdk-ec2/subnet.rb +4 -4
- data/lib/aws-sdk-ec2/types.rb +204 -230
- data/lib/aws-sdk-ec2/volume.rb +2 -2
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -3018,7 +3018,7 @@ module Aws::EC2
|
|
3018
3018
|
#
|
3019
3019
|
# Encrypted EBS volumes must be attached to instances that support
|
3020
3020
|
# Amazon EBS encryption. For more information, see [Amazon EBS
|
3021
|
-
# encryption][1] in the *Amazon
|
3021
|
+
# encryption][1] in the *Amazon EBS User Guide*.
|
3022
3022
|
#
|
3023
3023
|
# After you attach an EBS volume, you must make it available. For more
|
3024
3024
|
# information, see [Make an EBS volume available for use][2].
|
@@ -3037,13 +3037,13 @@ module Aws::EC2
|
|
3037
3037
|
# instance and attach it to a Linux instance.
|
3038
3038
|
#
|
3039
3039
|
# For more information, see [Attach an Amazon EBS volume to an
|
3040
|
-
# instance][3] in the *Amazon
|
3040
|
+
# instance][3] in the *Amazon EBS User Guide*.
|
3041
3041
|
#
|
3042
3042
|
#
|
3043
3043
|
#
|
3044
|
-
# [1]: https://docs.aws.amazon.com/
|
3045
|
-
# [2]: https://docs.aws.amazon.com/
|
3046
|
-
# [3]: https://docs.aws.amazon.com/
|
3044
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption.html
|
3045
|
+
# [2]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-using-volumes.html
|
3046
|
+
# [3]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-attaching-volume.html
|
3047
3047
|
#
|
3048
3048
|
# @option params [required, String] :device
|
3049
3049
|
# The device name (for example, `/dev/sdh` or `xvdh`).
|
@@ -3244,38 +3244,35 @@ module Aws::EC2
|
|
3244
3244
|
req.send_request(options)
|
3245
3245
|
end
|
3246
3246
|
|
3247
|
-
# Adds the specified outbound (egress) rules to a security group
|
3248
|
-
# with a VPC.
|
3247
|
+
# Adds the specified outbound (egress) rules to a security group.
|
3249
3248
|
#
|
3250
3249
|
# An outbound rule permits instances to send traffic to the specified
|
3251
|
-
# IPv4 or IPv6
|
3252
|
-
#
|
3253
|
-
#
|
3254
|
-
# must include a destination for the traffic.
|
3250
|
+
# IPv4 or IPv6 address ranges, the IP address ranges specified by a
|
3251
|
+
# prefix list, or the instances that are associated with a source
|
3252
|
+
# security group. For more information, see [Security group rules][1].
|
3255
3253
|
#
|
3256
|
-
# You specify
|
3257
|
-
#
|
3258
|
-
#
|
3259
|
-
#
|
3260
|
-
#
|
3254
|
+
# You must specify exactly one of the following destinations: an IPv4 or
|
3255
|
+
# IPv6 address range, a prefix list, or a security group. You must
|
3256
|
+
# specify a protocol for each rule (for example, TCP). If the protocol
|
3257
|
+
# is TCP or UDP, you must also specify a port or port range. If the
|
3258
|
+
# protocol is ICMP or ICMPv6, you must also specify the ICMP type and
|
3259
|
+
# code.
|
3261
3260
|
#
|
3262
|
-
# Rule changes are propagated to
|
3263
|
-
# possible. However, a small delay might occur.
|
3261
|
+
# Rule changes are propagated to instances associated with the security
|
3262
|
+
# group as quickly as possible. However, a small delay might occur.
|
3264
3263
|
#
|
3265
|
-
# For
|
3266
|
-
#
|
3264
|
+
# For examples of rules that you can add to security groups for specific
|
3265
|
+
# access scenarios, see [Security group rules for different use
|
3266
|
+
# cases][2] in the *Amazon EC2 User Guide*.
|
3267
3267
|
#
|
3268
|
-
#
|
3269
|
-
#
|
3270
|
-
# note that you can only reference security groups for ingress rules.
|
3271
|
-
# You cannot reference a security group for egress rules.
|
3272
|
-
#
|
3273
|
-
# </note>
|
3268
|
+
# For information about security group quotas, see [Amazon VPC
|
3269
|
+
# quotas][3] in the *Amazon VPC User Guide*.
|
3274
3270
|
#
|
3275
3271
|
#
|
3276
3272
|
#
|
3277
|
-
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/
|
3278
|
-
# [2]: https://docs.aws.amazon.com/
|
3273
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/security-group-rules.html
|
3274
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-rules-reference.html
|
3275
|
+
# [3]: https://docs.aws.amazon.com/vpc/latest/userguide/amazon-vpc-limits.html
|
3279
3276
|
#
|
3280
3277
|
# @option params [Boolean] :dry_run
|
3281
3278
|
# Checks whether you have the required permissions for the action,
|
@@ -3287,32 +3284,28 @@ module Aws::EC2
|
|
3287
3284
|
# The ID of the security group.
|
3288
3285
|
#
|
3289
3286
|
# @option params [Array<Types::IpPermission>] :ip_permissions
|
3290
|
-
# The
|
3291
|
-
# group and a CIDR IP address range in the same set of permissions.
|
3287
|
+
# The permissions for the security group rules.
|
3292
3288
|
#
|
3293
3289
|
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
3294
3290
|
# The tags applied to the security group rule.
|
3295
3291
|
#
|
3296
3292
|
# @option params [String] :cidr_ip
|
3297
|
-
# Not supported. Use
|
3293
|
+
# Not supported. Use IP permissions instead.
|
3298
3294
|
#
|
3299
3295
|
# @option params [Integer] :from_port
|
3300
|
-
# Not supported. Use
|
3296
|
+
# Not supported. Use IP permissions instead.
|
3301
3297
|
#
|
3302
3298
|
# @option params [String] :ip_protocol
|
3303
|
-
# Not supported. Use
|
3304
|
-
# name or number.
|
3299
|
+
# Not supported. Use IP permissions instead.
|
3305
3300
|
#
|
3306
3301
|
# @option params [Integer] :to_port
|
3307
|
-
# Not supported. Use
|
3302
|
+
# Not supported. Use IP permissions instead.
|
3308
3303
|
#
|
3309
3304
|
# @option params [String] :source_security_group_name
|
3310
|
-
# Not supported. Use
|
3311
|
-
# security group.
|
3305
|
+
# Not supported. Use IP permissions instead.
|
3312
3306
|
#
|
3313
3307
|
# @option params [String] :source_security_group_owner_id
|
3314
|
-
# Not supported. Use
|
3315
|
-
# security group.
|
3308
|
+
# Not supported. Use IP permissions instead.
|
3316
3309
|
#
|
3317
3310
|
# @return [Types::AuthorizeSecurityGroupEgressResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3318
3311
|
#
|
@@ -3464,99 +3457,99 @@ module Aws::EC2
|
|
3464
3457
|
# Adds the specified inbound (ingress) rules to a security group.
|
3465
3458
|
#
|
3466
3459
|
# An inbound rule permits instances to receive traffic from the
|
3467
|
-
# specified IPv4 or IPv6
|
3468
|
-
#
|
3469
|
-
#
|
3470
|
-
#
|
3460
|
+
# specified IPv4 or IPv6 address range, the IP address ranges that are
|
3461
|
+
# specified by a prefix list, or the instances that are associated with
|
3462
|
+
# a destination security group. For more information, see [Security
|
3463
|
+
# group rules][1].
|
3471
3464
|
#
|
3472
|
-
# You specify
|
3473
|
-
#
|
3474
|
-
#
|
3475
|
-
#
|
3465
|
+
# You must specify exactly one of the following sources: an IPv4 or IPv6
|
3466
|
+
# address range, a prefix list, or a security group. You must specify a
|
3467
|
+
# protocol for each rule (for example, TCP). If the protocol is TCP or
|
3468
|
+
# UDP, you must also specify a port or port range. If the protocol is
|
3469
|
+
# ICMP or ICMPv6, you must also specify the ICMP/ICMPv6 type and code.
|
3476
3470
|
#
|
3477
|
-
# Rule changes are propagated to instances
|
3478
|
-
# quickly as possible. However, a small delay might occur.
|
3471
|
+
# Rule changes are propagated to instances associated with the security
|
3472
|
+
# group as quickly as possible. However, a small delay might occur.
|
3473
|
+
#
|
3474
|
+
# For examples of rules that you can add to security groups for specific
|
3475
|
+
# access scenarios, see [Security group rules for different use
|
3476
|
+
# cases][2] in the *Amazon EC2 User Guide*.
|
3479
3477
|
#
|
3480
|
-
# For more information about
|
3481
|
-
# quotas][
|
3478
|
+
# For more information about security group quotas, see [Amazon VPC
|
3479
|
+
# quotas][3] in the *Amazon VPC User Guide*.
|
3482
3480
|
#
|
3483
3481
|
#
|
3484
3482
|
#
|
3485
|
-
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/
|
3483
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/security-group-rules.html
|
3484
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-rules-reference.html
|
3485
|
+
# [3]: https://docs.aws.amazon.com/vpc/latest/userguide/amazon-vpc-limits.html
|
3486
3486
|
#
|
3487
3487
|
# @option params [String] :cidr_ip
|
3488
|
-
# The IPv4 address range, in CIDR format.
|
3489
|
-
#
|
3490
|
-
# address range, use
|
3488
|
+
# The IPv4 address range, in CIDR format.
|
3489
|
+
#
|
3490
|
+
# To specify an IPv6 address range, use IP permissions instead.
|
3491
3491
|
#
|
3492
|
-
#
|
3493
|
-
#
|
3492
|
+
# To specify multiple rules and descriptions for the rules, use IP
|
3493
|
+
# permissions instead.
|
3494
3494
|
#
|
3495
3495
|
# @option params [Integer] :from_port
|
3496
3496
|
# If the protocol is TCP or UDP, this is the start of the port range. If
|
3497
|
-
# the protocol is ICMP, this is the type
|
3498
|
-
# all ICMP types. If you specify all ICMP types, you must specify all
|
3499
|
-
# ICMP codes.
|
3497
|
+
# the protocol is ICMP, this is the ICMP type or -1 (all ICMP types).
|
3500
3498
|
#
|
3501
|
-
#
|
3502
|
-
#
|
3499
|
+
# To specify multiple rules and descriptions for the rules, use IP
|
3500
|
+
# permissions instead.
|
3503
3501
|
#
|
3504
3502
|
# @option params [String] :group_id
|
3505
|
-
# The ID of the security group.
|
3506
|
-
# group ID or the security group name in the request. For security
|
3507
|
-
# groups in a nondefault VPC, you must specify the security group ID.
|
3503
|
+
# The ID of the security group.
|
3508
3504
|
#
|
3509
3505
|
# @option params [String] :group_name
|
3510
|
-
# \[Default VPC\] The name of the security group.
|
3511
|
-
# either the
|
3512
|
-
#
|
3513
|
-
# security group
|
3506
|
+
# \[Default VPC\] The name of the security group. For security groups
|
3507
|
+
# for a default VPC you can specify either the ID or the name of the
|
3508
|
+
# security group. For security groups for a nondefault VPC, you must
|
3509
|
+
# specify the ID of the security group.
|
3514
3510
|
#
|
3515
3511
|
# @option params [Array<Types::IpPermission>] :ip_permissions
|
3516
|
-
# The
|
3512
|
+
# The permissions for the security group rules.
|
3517
3513
|
#
|
3518
3514
|
# @option params [String] :ip_protocol
|
3519
3515
|
# The IP protocol name (`tcp`, `udp`, `icmp`) or number (see [Protocol
|
3520
|
-
# Numbers][1]). To specify
|
3516
|
+
# Numbers][1]). To specify all protocols, use `-1`.
|
3517
|
+
#
|
3518
|
+
# To specify `icmpv6`, use IP permissions instead.
|
3521
3519
|
#
|
3522
|
-
#
|
3523
|
-
#
|
3524
|
-
#
|
3520
|
+
# If you specify a protocol other than one of the supported values,
|
3521
|
+
# traffic is allowed on all ports, regardless of any ports that you
|
3522
|
+
# specify.
|
3525
3523
|
#
|
3526
|
-
#
|
3527
|
-
#
|
3524
|
+
# To specify multiple rules and descriptions for the rules, use IP
|
3525
|
+
# permissions instead.
|
3528
3526
|
#
|
3529
3527
|
#
|
3530
3528
|
#
|
3531
3529
|
# [1]: http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml
|
3532
3530
|
#
|
3533
3531
|
# @option params [String] :source_security_group_name
|
3534
|
-
# \[Default VPC\] The name of the source security group.
|
3535
|
-
# specify this parameter in combination with the following parameters:
|
3536
|
-
# the CIDR IP address range, the start of the port range, the IP
|
3537
|
-
# protocol, and the end of the port range. Creates rules that grant full
|
3538
|
-
# ICMP, UDP, and TCP access. To create a rule with a specific IP
|
3539
|
-
# protocol and port range, use a set of IP permissions instead. The
|
3540
|
-
# source security group must be in the same VPC.
|
3532
|
+
# \[Default VPC\] The name of the source security group.
|
3541
3533
|
#
|
3542
|
-
#
|
3543
|
-
#
|
3544
|
-
# security group, if the source security group is in a different
|
3545
|
-
# account. You can't specify this parameter in combination with the
|
3546
|
-
# following parameters: the CIDR IP address range, the IP protocol, the
|
3547
|
-
# start of the port range, and the end of the port range. Creates rules
|
3548
|
-
# that grant full ICMP, UDP, and TCP access. To create a rule with a
|
3549
|
-
# specific IP protocol and port range, use a set of IP permissions
|
3534
|
+
# The rule grants full ICMP, UDP, and TCP access. To create a rule with
|
3535
|
+
# a specific protocol and port range, specify a set of IP permissions
|
3550
3536
|
# instead.
|
3551
3537
|
#
|
3538
|
+
# @option params [String] :source_security_group_owner_id
|
3539
|
+
# The Amazon Web Services account ID for the source security group, if
|
3540
|
+
# the source security group is in a different account.
|
3541
|
+
#
|
3542
|
+
# The rule grants full ICMP, UDP, and TCP access. To create a rule with
|
3543
|
+
# a specific protocol and port range, use IP permissions instead.
|
3544
|
+
#
|
3552
3545
|
# @option params [Integer] :to_port
|
3553
3546
|
# If the protocol is TCP or UDP, this is the end of the port range. If
|
3554
|
-
# the protocol is ICMP, this is the code
|
3555
|
-
#
|
3556
|
-
# codes.
|
3547
|
+
# the protocol is ICMP, this is the ICMP code or -1 (all ICMP codes). If
|
3548
|
+
# the start port is -1 (all ICMP types), then the end port must be -1
|
3549
|
+
# (all ICMP codes).
|
3557
3550
|
#
|
3558
|
-
#
|
3559
|
-
#
|
3551
|
+
# To specify multiple rules and descriptions for the rules, use IP
|
3552
|
+
# permissions instead.
|
3560
3553
|
#
|
3561
3554
|
# @option params [Boolean] :dry_run
|
3562
3555
|
# Checks whether you have the required permissions for the action,
|
@@ -3565,7 +3558,7 @@ module Aws::EC2
|
|
3565
3558
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
3566
3559
|
#
|
3567
3560
|
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
3568
|
-
#
|
3561
|
+
# The tags applied to the security group rule.
|
3569
3562
|
#
|
3570
3563
|
# @return [Types::AuthorizeSecurityGroupIngressResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3571
3564
|
#
|
@@ -4475,7 +4468,7 @@ module Aws::EC2
|
|
4475
4468
|
# encryption key for the Region, or a different key that you specify in
|
4476
4469
|
# the request using **KmsKeyId**. Outposts do not support unencrypted
|
4477
4470
|
# snapshots. For more information, [ Amazon EBS local snapshots on
|
4478
|
-
# Outposts][2] in the *Amazon
|
4471
|
+
# Outposts][2] in the *Amazon EBS User Guide*.
|
4479
4472
|
#
|
4480
4473
|
# For more information about the prerequisites and limits when copying
|
4481
4474
|
# an AMI, see [Copy an AMI][3] in the *Amazon EC2 User Guide*.
|
@@ -4483,7 +4476,7 @@ module Aws::EC2
|
|
4483
4476
|
#
|
4484
4477
|
#
|
4485
4478
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateStoreImageTask.html
|
4486
|
-
# [2]: https://docs.aws.amazon.com/
|
4479
|
+
# [2]: https://docs.aws.amazon.com/ebs/latest/userguide/snapshots-outposts.html#ami
|
4487
4480
|
# [3]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/CopyingAMIs.html
|
4488
4481
|
#
|
4489
4482
|
# @option params [String] :client_token
|
@@ -4504,12 +4497,12 @@ module Aws::EC2
|
|
4504
4497
|
# you cannot create an unencrypted copy of an encrypted snapshot. The
|
4505
4498
|
# default KMS key for Amazon EBS is used unless you specify a
|
4506
4499
|
# non-default Key Management Service (KMS) KMS key using `KmsKeyId`. For
|
4507
|
-
# more information, see [Amazon EBS encryption][1] in the *Amazon
|
4500
|
+
# more information, see [Amazon EBS encryption][1] in the *Amazon EBS
|
4508
4501
|
# User Guide*.
|
4509
4502
|
#
|
4510
4503
|
#
|
4511
4504
|
#
|
4512
|
-
# [1]: https://docs.aws.amazon.com/
|
4505
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption.html
|
4513
4506
|
#
|
4514
4507
|
# @option params [String] :kms_key_id
|
4515
4508
|
# The identifier of the symmetric Key Management Service (KMS) KMS key
|
@@ -4554,12 +4547,12 @@ module Aws::EC2
|
|
4554
4547
|
# the destination Outpost. You cannot copy an AMI from an Outpost to a
|
4555
4548
|
# Region, from one Outpost to another, or within the same Outpost.
|
4556
4549
|
#
|
4557
|
-
# For more information, see [
|
4558
|
-
# Region to an Outpost][1] in the *Amazon
|
4550
|
+
# For more information, see [Copy AMIs from an Amazon Web Services
|
4551
|
+
# Region to an Outpost][1] in the *Amazon EBS User Guide*.
|
4559
4552
|
#
|
4560
4553
|
#
|
4561
4554
|
#
|
4562
|
-
# [1]: https://docs.aws.amazon.com/
|
4555
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/snapshots-outposts.html#copy-amis
|
4563
4556
|
#
|
4564
4557
|
# @option params [Boolean] :dry_run
|
4565
4558
|
# Checks whether you have the required permissions for the action,
|
@@ -4680,19 +4673,18 @@ module Aws::EC2
|
|
4680
4673
|
# default encryption key for the Region, or a different key that you
|
4681
4674
|
# specify in the request using **KmsKeyId**. Outposts do not support
|
4682
4675
|
# unencrypted snapshots. For more information, [ Amazon EBS local
|
4683
|
-
# snapshots on Outposts][1] in the *Amazon
|
4684
|
-
# Guide*.
|
4676
|
+
# snapshots on Outposts][1] in the *Amazon EBS User Guide*.
|
4685
4677
|
#
|
4686
4678
|
# Snapshots created by copying another snapshot have an arbitrary volume
|
4687
4679
|
# ID that should not be used for any purpose.
|
4688
4680
|
#
|
4689
4681
|
# For more information, see [Copy an Amazon EBS snapshot][2] in the
|
4690
|
-
# *Amazon
|
4682
|
+
# *Amazon EBS User Guide*.
|
4691
4683
|
#
|
4692
4684
|
#
|
4693
4685
|
#
|
4694
|
-
# [1]: https://docs.aws.amazon.com/
|
4695
|
-
# [2]: https://docs.aws.amazon.com/
|
4686
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/snapshots-outposts.html#ami
|
4687
|
+
# [2]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-copy-snapshot.html
|
4696
4688
|
#
|
4697
4689
|
# @option params [String] :description
|
4698
4690
|
# A description for the EBS snapshot.
|
@@ -4706,12 +4698,11 @@ module Aws::EC2
|
|
4706
4698
|
# Outpost.
|
4707
4699
|
#
|
4708
4700
|
# For more information, see [ Copy snapshots from an Amazon Web Services
|
4709
|
-
# Region to an Outpost][1] in the *Amazon
|
4710
|
-
# Guide*.
|
4701
|
+
# Region to an Outpost][1] in the *Amazon EBS User Guide*.
|
4711
4702
|
#
|
4712
4703
|
#
|
4713
4704
|
#
|
4714
|
-
# [1]: https://docs.aws.amazon.com/
|
4705
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/snapshots-outposts.html#copy-snapshots
|
4715
4706
|
#
|
4716
4707
|
# @option params [String] :destination_region
|
4717
4708
|
# The destination Region to use in the `PresignedUrl` parameter of a
|
@@ -4730,11 +4721,11 @@ module Aws::EC2
|
|
4730
4721
|
# omit this parameter. Encrypted snapshots are encrypted, even if you
|
4731
4722
|
# omit this parameter and encryption by default is not enabled. You
|
4732
4723
|
# cannot set this parameter to false. For more information, see [Amazon
|
4733
|
-
# EBS encryption][1] in the *Amazon
|
4724
|
+
# EBS encryption][1] in the *Amazon EBS User Guide*.
|
4734
4725
|
#
|
4735
4726
|
#
|
4736
4727
|
#
|
4737
|
-
# [1]: https://docs.aws.amazon.com/
|
4728
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption.html
|
4738
4729
|
#
|
4739
4730
|
# @option params [String] :kms_key_id
|
4740
4731
|
# The identifier of the Key Management Service (KMS) KMS key to use for
|
@@ -6010,55 +6001,59 @@ module Aws::EC2
|
|
6010
6001
|
req.send_request(options)
|
6011
6002
|
end
|
6012
6003
|
|
6013
|
-
# Creates a set of DHCP options
|
6014
|
-
# you
|
6015
|
-
#
|
6016
|
-
#
|
6017
|
-
# more information about the options, see [RFC 2132][1].
|
6004
|
+
# Creates a custom set of DHCP options. After you create a DHCP option
|
6005
|
+
# set, you associate it with a VPC. After you associate a DHCP option
|
6006
|
+
# set with a VPC, all existing and newly launched instances in the VPC
|
6007
|
+
# use this set of DHCP options.
|
6018
6008
|
#
|
6019
|
-
#
|
6020
|
-
#
|
6021
|
-
#
|
6022
|
-
# specify the IP addresses in a single parameter, separated by commas.
|
6023
|
-
# To have your instance receive a custom DNS hostname as specified in
|
6024
|
-
# `domain-name`, you must set `domain-name-servers` to a custom DNS
|
6025
|
-
# server.
|
6009
|
+
# The following are the individual DHCP options you can specify. For
|
6010
|
+
# more information, see [DHCP options sets][1] in the *Amazon VPC User
|
6011
|
+
# Guide*.
|
6026
6012
|
#
|
6027
6013
|
# * `domain-name` - If you're using AmazonProvidedDNS in `us-east-1`,
|
6028
|
-
# specify `ec2.internal`. If you're using AmazonProvidedDNS in
|
6029
|
-
#
|
6030
|
-
#
|
6031
|
-
#
|
6032
|
-
#
|
6033
|
-
# systems accept multiple domain names separated
|
6034
|
-
# Windows and other Linux operating systems treat
|
6035
|
-
# single domain, which results in unexpected behavior.
|
6036
|
-
#
|
6037
|
-
#
|
6038
|
-
#
|
6039
|
-
#
|
6040
|
-
#
|
6014
|
+
# specify `ec2.internal`. If you're using AmazonProvidedDNS in any
|
6015
|
+
# other Region, specify `region.compute.internal`. Otherwise, specify
|
6016
|
+
# a custom domain name. This value is used to complete unqualified DNS
|
6017
|
+
# hostnames.
|
6018
|
+
#
|
6019
|
+
# Some Linux operating systems accept multiple domain names separated
|
6020
|
+
# by spaces. However, Windows and other Linux operating systems treat
|
6021
|
+
# the value as a single domain, which results in unexpected behavior.
|
6022
|
+
# If your DHCP option set is associated with a VPC that has instances
|
6023
|
+
# running operating systems that treat the value as a single domain,
|
6024
|
+
# specify only one domain name.
|
6025
|
+
#
|
6026
|
+
# * `domain-name-servers` - The IP addresses of up to four DNS servers,
|
6027
|
+
# or AmazonProvidedDNS. To specify multiple domain name servers in a
|
6028
|
+
# single parameter, separate the IP addresses using commas. To have
|
6029
|
+
# your instances receive custom DNS hostnames as specified in
|
6030
|
+
# `domain-name`, you must specify a custom DNS server.
|
6031
|
+
#
|
6032
|
+
# * `ntp-servers` - The IP addresses of up to eight Network Time
|
6033
|
+
# Protocol (NTP) servers (four IPv4 addresses and four IPv6
|
6034
|
+
# addresses).
|
6041
6035
|
#
|
6042
6036
|
# * `netbios-name-servers` - The IP addresses of up to four NetBIOS name
|
6043
6037
|
# servers.
|
6044
6038
|
#
|
6045
6039
|
# * `netbios-node-type` - The NetBIOS node type (1, 2, 4, or 8). We
|
6046
|
-
# recommend that you specify 2
|
6047
|
-
#
|
6048
|
-
#
|
6049
|
-
#
|
6050
|
-
#
|
6051
|
-
#
|
6052
|
-
#
|
6053
|
-
#
|
6054
|
-
#
|
6055
|
-
#
|
6056
|
-
#
|
6040
|
+
# recommend that you specify 2. Broadcast and multicast are not
|
6041
|
+
# supported. For more information about NetBIOS node types, see [RFC
|
6042
|
+
# 2132][2].
|
6043
|
+
#
|
6044
|
+
# * `ipv6-preferred-lease-time` - A value (in seconds, minutes, hours,
|
6045
|
+
# or years) for how frequently a running instance with an IPv6
|
6046
|
+
# assigned to it goes through DHCPv6 lease renewal. Acceptable values
|
6047
|
+
# are between 140 and 2147483647 seconds (approximately 68 years). If
|
6048
|
+
# no value is entered, the default lease time is 140 seconds. If you
|
6049
|
+
# use long-term addressing for EC2 instances, you can increase the
|
6050
|
+
# lease time and avoid frequent lease renewal requests. Lease renewal
|
6051
|
+
# typically occurs when half of the lease time has elapsed.
|
6057
6052
|
#
|
6058
6053
|
#
|
6059
6054
|
#
|
6060
|
-
# [1]:
|
6061
|
-
# [2]:
|
6055
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/VPC_DHCP_Options.html
|
6056
|
+
# [2]: http://www.ietf.org/rfc/rfc2132.txt
|
6062
6057
|
#
|
6063
6058
|
# @option params [required, Array<Types::NewDhcpConfiguration>] :dhcp_configurations
|
6064
6059
|
# A DHCP configuration option.
|
@@ -6657,10 +6652,12 @@ module Aws::EC2
|
|
6657
6652
|
#
|
6658
6653
|
# @option params [String] :deliver_logs_permission_arn
|
6659
6654
|
# The ARN of the IAM role that allows Amazon EC2 to publish flow logs to
|
6660
|
-
#
|
6655
|
+
# the log destination.
|
6661
6656
|
#
|
6662
6657
|
# This parameter is required if the destination type is
|
6663
|
-
# `cloud-watch-logs
|
6658
|
+
# `cloud-watch-logs`, or if the destination type is
|
6659
|
+
# `kinesis-data-firehose` and the delivery stream and the resources to
|
6660
|
+
# monitor are in different accounts.
|
6664
6661
|
#
|
6665
6662
|
# @option params [String] :deliver_cross_account_role
|
6666
6663
|
# The ARN of the IAM role that allows Amazon EC2 to publish flow logs
|
@@ -11517,13 +11514,13 @@ module Aws::EC2
|
|
11517
11514
|
# Cloud User Guide*.
|
11518
11515
|
#
|
11519
11516
|
# For more information, see [Amazon Elastic Block Store][2] and [Amazon
|
11520
|
-
# EBS encryption][3] in the *Amazon
|
11517
|
+
# EBS encryption][3] in the *Amazon EBS User Guide*.
|
11521
11518
|
#
|
11522
11519
|
#
|
11523
11520
|
#
|
11524
11521
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html
|
11525
|
-
# [2]: https://docs.aws.amazon.com/
|
11526
|
-
# [3]: https://docs.aws.amazon.com/
|
11522
|
+
# [2]: https://docs.aws.amazon.com/ebs/latest/userguide/what-is-ebs.html
|
11523
|
+
# [3]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption.html
|
11527
11524
|
#
|
11528
11525
|
# @option params [String] :description
|
11529
11526
|
# A description for the snapshot.
|
@@ -11544,11 +11541,11 @@ module Aws::EC2
|
|
11544
11541
|
# The snapshot must be created on the same Outpost as the volume.
|
11545
11542
|
#
|
11546
11543
|
# For more information, see [Create local snapshots from volumes on an
|
11547
|
-
# Outpost][1] in the *Amazon
|
11544
|
+
# Outpost][1] in the *Amazon EBS User Guide*.
|
11548
11545
|
#
|
11549
11546
|
#
|
11550
11547
|
#
|
11551
|
-
# [1]: https://docs.aws.amazon.com/
|
11548
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/snapshots-outposts.html#create-snapshot
|
11552
11549
|
#
|
11553
11550
|
# @option params [required, String] :volume_id
|
11554
11551
|
# The ID of the Amazon EBS volume.
|
@@ -11699,12 +11696,11 @@ module Aws::EC2
|
|
11699
11696
|
# The snapshots must be created on the same Outpost as the instance.
|
11700
11697
|
#
|
11701
11698
|
# For more information, see [ Create multi-volume local snapshots from
|
11702
|
-
# instances on an Outpost][1] in the *Amazon
|
11703
|
-
# Guide*.
|
11699
|
+
# instances on an Outpost][1] in the *Amazon EBS User Guide*.
|
11704
11700
|
#
|
11705
11701
|
#
|
11706
11702
|
#
|
11707
|
-
# [1]: https://docs.aws.amazon.com/
|
11703
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/snapshots-outposts.html#create-multivol-snapshot
|
11708
11704
|
#
|
11709
11705
|
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
11710
11706
|
# Tags to apply to every snapshot specified by the instance.
|
@@ -14038,21 +14034,21 @@ module Aws::EC2
|
|
14038
14034
|
# You can create encrypted volumes. Encrypted volumes must be attached
|
14039
14035
|
# to instances that support Amazon EBS encryption. Volumes that are
|
14040
14036
|
# created from encrypted snapshots are also automatically encrypted. For
|
14041
|
-
# more information, see [Amazon EBS encryption][1] in the *Amazon
|
14042
|
-
#
|
14037
|
+
# more information, see [Amazon EBS encryption][1] in the *Amazon EBS
|
14038
|
+
# User Guide*.
|
14043
14039
|
#
|
14044
14040
|
# You can tag your volumes during creation. For more information, see
|
14045
14041
|
# [Tag your Amazon EC2 resources][2] in the *Amazon Elastic Compute
|
14046
14042
|
# Cloud User Guide*.
|
14047
14043
|
#
|
14048
14044
|
# For more information, see [Create an Amazon EBS volume][3] in the
|
14049
|
-
# *Amazon
|
14045
|
+
# *Amazon EBS User Guide*.
|
14050
14046
|
#
|
14051
14047
|
#
|
14052
14048
|
#
|
14053
|
-
# [1]: https://docs.aws.amazon.com/
|
14049
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption.html
|
14054
14050
|
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html
|
14055
|
-
# [3]: https://docs.aws.amazon.com/
|
14051
|
+
# [3]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-creating-volume.html
|
14056
14052
|
#
|
14057
14053
|
# @option params [required, String] :availability_zone
|
14058
14054
|
# The ID of the Availability Zone in which to create the volume. For
|
@@ -14063,8 +14059,7 @@ module Aws::EC2
|
|
14063
14059
|
# setting the encryption state to `true` depends on the volume origin
|
14064
14060
|
# (new or from a snapshot), starting encryption state, ownership, and
|
14065
14061
|
# whether encryption by default is enabled. For more information, see
|
14066
|
-
# [Encryption by default][1] in the *Amazon
|
14067
|
-
# Guide*.
|
14062
|
+
# [Encryption by default][1] in the *Amazon EBS User Guide*.
|
14068
14063
|
#
|
14069
14064
|
# Encrypted Amazon EBS volumes must be attached to instances that
|
14070
14065
|
# support Amazon EBS encryption. For more information, see [Supported
|
@@ -14072,8 +14067,8 @@ module Aws::EC2
|
|
14072
14067
|
#
|
14073
14068
|
#
|
14074
14069
|
#
|
14075
|
-
# [1]: https://docs.aws.amazon.com/
|
14076
|
-
# [2]: https://docs.aws.amazon.com/
|
14070
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/work-with-ebs-encr.html#encryption-by-default
|
14071
|
+
# [2]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption-requirements.html#ebs-encryption_supported_instances
|
14077
14072
|
#
|
14078
14073
|
# @option params [Integer] :iops
|
14079
14074
|
# The number of I/O operations per second (IOPS). For `gp3`, `io1`, and
|
@@ -14166,13 +14161,13 @@ module Aws::EC2
|
|
14166
14161
|
# be used as boot volumes.
|
14167
14162
|
#
|
14168
14163
|
# For more information, see [Amazon EBS volume types][1] in the *Amazon
|
14169
|
-
#
|
14164
|
+
# EBS User Guide*.
|
14170
14165
|
#
|
14171
14166
|
# Default: `gp2`
|
14172
14167
|
#
|
14173
14168
|
#
|
14174
14169
|
#
|
14175
|
-
# [1]: https://docs.aws.amazon.com/
|
14170
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-volume-types.html
|
14176
14171
|
#
|
14177
14172
|
# @option params [Boolean] :dry_run
|
14178
14173
|
# Checks whether you have the required permissions for the action,
|
@@ -14188,13 +14183,12 @@ module Aws::EC2
|
|
14188
14183
|
# Multi-Attach, you can attach the volume to up to 16 [Instances built
|
14189
14184
|
# on the Nitro System][1] in the same Availability Zone. This parameter
|
14190
14185
|
# is supported with `io1` and `io2` volumes only. For more information,
|
14191
|
-
# see [ Amazon EBS Multi-Attach][2] in the *Amazon
|
14192
|
-
# User Guide*.
|
14186
|
+
# see [ Amazon EBS Multi-Attach][2] in the *Amazon EBS User Guide*.
|
14193
14187
|
#
|
14194
14188
|
#
|
14195
14189
|
#
|
14196
14190
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html#ec2-nitro-instances
|
14197
|
-
# [2]: https://docs.aws.amazon.com/
|
14191
|
+
# [2]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-volumes-multi.html
|
14198
14192
|
#
|
14199
14193
|
# @option params [Integer] :throughput
|
14200
14194
|
# The throughput to provision for a volume, with a maximum of 1,000
|
@@ -17420,11 +17414,11 @@ module Aws::EC2
|
|
17420
17414
|
# delete the snapshot.
|
17421
17415
|
#
|
17422
17416
|
# For more information, see [Delete an Amazon EBS snapshot][1] in the
|
17423
|
-
# *Amazon
|
17417
|
+
# *Amazon EBS User Guide*.
|
17424
17418
|
#
|
17425
17419
|
#
|
17426
17420
|
#
|
17427
|
-
# [1]: https://docs.aws.amazon.com/
|
17421
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-deleting-snapshot.html
|
17428
17422
|
#
|
17429
17423
|
# @option params [required, String] :snapshot_id
|
17430
17424
|
# The ID of the EBS snapshot.
|
@@ -18605,11 +18599,11 @@ module Aws::EC2
|
|
18605
18599
|
# The volume can remain in the `deleting` state for several minutes.
|
18606
18600
|
#
|
18607
18601
|
# For more information, see [Delete an Amazon EBS volume][1] in the
|
18608
|
-
# *Amazon
|
18602
|
+
# *Amazon EBS User Guide*.
|
18609
18603
|
#
|
18610
18604
|
#
|
18611
18605
|
#
|
18612
|
-
# [1]: https://docs.aws.amazon.com/
|
18606
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-deleting-volume.html
|
18613
18607
|
#
|
18614
18608
|
# @option params [required, String] :volume_id
|
18615
18609
|
# The ID of the volume.
|
@@ -19376,6 +19370,12 @@ module Aws::EC2
|
|
19376
19370
|
# * `vpc-max-security-groups-per-interface`: The maximum number of
|
19377
19371
|
# security groups that you can assign to a network interface.
|
19378
19372
|
#
|
19373
|
+
# <note markdown="1"> The order of the elements in the response, including those within
|
19374
|
+
# nested structures, might vary. Applications should not assume the
|
19375
|
+
# elements appear in a particular order.
|
19376
|
+
#
|
19377
|
+
# </note>
|
19378
|
+
#
|
19379
19379
|
#
|
19380
19380
|
#
|
19381
19381
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-on-demand-instances.html#ec2-on-demand-instances-limits
|
@@ -19834,6 +19834,12 @@ module Aws::EC2
|
|
19834
19834
|
# Wavelength Zones, see [Regions and zones][1] in the *Amazon Elastic
|
19835
19835
|
# Compute Cloud User Guide*.
|
19836
19836
|
#
|
19837
|
+
# <note markdown="1"> The order of the elements in the response, including those within
|
19838
|
+
# nested structures, might vary. Applications should not assume the
|
19839
|
+
# elements appear in a particular order.
|
19840
|
+
#
|
19841
|
+
# </note>
|
19842
|
+
#
|
19837
19843
|
#
|
19838
19844
|
#
|
19839
19845
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html
|
@@ -19845,7 +19851,7 @@ module Aws::EC2
|
|
19845
19851
|
# Local Zones, use the name of the group associated with the Local
|
19846
19852
|
# Zone (for example, `us-west-2-lax-1`) For Wavelength Zones, use the
|
19847
19853
|
# name of the group associated with the Wavelength Zone (for example,
|
19848
|
-
# `us-east-1-wl1
|
19854
|
+
# `us-east-1-wl1`).
|
19849
19855
|
#
|
19850
19856
|
# * `message` - The Zone message.
|
19851
19857
|
#
|
@@ -30320,6 +30326,12 @@ module Aws::EC2
|
|
30320
30326
|
# see [Managing Amazon Web Services Regions][2] in the *Amazon Web
|
30321
30327
|
# Services General Reference*.
|
30322
30328
|
#
|
30329
|
+
# <note markdown="1"> The order of the elements in the response, including those within
|
30330
|
+
# nested structures, might vary. Applications should not assume the
|
30331
|
+
# elements appear in a particular order.
|
30332
|
+
#
|
30333
|
+
# </note>
|
30334
|
+
#
|
30323
30335
|
#
|
30324
30336
|
#
|
30325
30337
|
# [1]: https://docs.aws.amazon.com/general/latest/gr/ec2-service.html
|
@@ -31512,9 +31524,8 @@ module Aws::EC2
|
|
31512
31524
|
req.send_request(options)
|
31513
31525
|
end
|
31514
31526
|
|
31515
|
-
# Describes the VPCs on the other side of a VPC peering connection
|
31516
|
-
#
|
31517
|
-
# security groups you've specified in this request.
|
31527
|
+
# Describes the VPCs on the other side of a VPC peering connection that
|
31528
|
+
# are referencing the security groups you've specified in this request.
|
31518
31529
|
#
|
31519
31530
|
# @option params [Boolean] :dry_run
|
31520
31531
|
# Checks whether you have the required permissions for the action,
|
@@ -31918,11 +31929,11 @@ module Aws::EC2
|
|
31918
31929
|
# specify only one attribute at a time.
|
31919
31930
|
#
|
31920
31931
|
# For more information about EBS snapshots, see [Amazon EBS
|
31921
|
-
# snapshots][1] in the *Amazon
|
31932
|
+
# snapshots][1] in the *Amazon EBS User Guide*.
|
31922
31933
|
#
|
31923
31934
|
#
|
31924
31935
|
#
|
31925
|
-
# [1]: https://docs.aws.amazon.com/
|
31936
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-snapshots.html
|
31926
31937
|
#
|
31927
31938
|
# @option params [required, String] :attribute
|
31928
31939
|
# The snapshot attribute you would like to view.
|
@@ -32122,12 +32133,12 @@ module Aws::EC2
|
|
32122
32133
|
# DescribeFastSnapshotRestores.
|
32123
32134
|
#
|
32124
32135
|
# For more information about EBS snapshots, see [Amazon EBS
|
32125
|
-
# snapshots][2] in the *Amazon
|
32136
|
+
# snapshots][2] in the *Amazon EBS User Guide*.
|
32126
32137
|
#
|
32127
32138
|
#
|
32128
32139
|
#
|
32129
32140
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
32130
|
-
# [2]: https://docs.aws.amazon.com/
|
32141
|
+
# [2]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-snapshots.html
|
32131
32142
|
#
|
32132
32143
|
# @option params [Array<Types::Filter>] :filters
|
32133
32144
|
# The filters.
|
@@ -33432,16 +33443,9 @@ module Aws::EC2
|
|
33432
33443
|
|
33433
33444
|
# Describes the stale security group rules for security groups in a
|
33434
33445
|
# specified VPC. Rules are stale when they reference a deleted security
|
33435
|
-
# group in the same VPC
|
33436
|
-
#
|
33437
|
-
#
|
33438
|
-
# in a peer VPC for which the VPC peering connection has been deleted or
|
33439
|
-
# if they reference a security group in a VPC that has been detached
|
33440
|
-
# from a transit gateway.
|
33441
|
-
#
|
33442
|
-
#
|
33443
|
-
#
|
33444
|
-
# [1]: https://docs.aws.amazon.com/vpc/latest/tgw/tgw-transit-gateways.html#create-tgw
|
33446
|
+
# group in the same VPC or peered VPC. Rules can also be stale if they
|
33447
|
+
# reference a security group in a peer VPC for which the VPC peering
|
33448
|
+
# connection has been deleted.
|
33445
33449
|
#
|
33446
33450
|
# @option params [Boolean] :dry_run
|
33447
33451
|
# Checks whether you have the required permissions for the action,
|
@@ -33872,6 +33876,12 @@ module Aws::EC2
|
|
33872
33876
|
# For more information about tags, see [Tag your Amazon EC2
|
33873
33877
|
# resources][1] in the *Amazon Elastic Compute Cloud User Guide*.
|
33874
33878
|
#
|
33879
|
+
# <note markdown="1"> The order of the elements in the response, including those within
|
33880
|
+
# nested structures, might vary. Applications should not assume the
|
33881
|
+
# elements appear in a particular order.
|
33882
|
+
#
|
33883
|
+
# </note>
|
33884
|
+
#
|
33875
33885
|
#
|
33876
33886
|
#
|
33877
33887
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html
|
@@ -35603,11 +35613,11 @@ module Aws::EC2
|
|
35603
35613
|
# specify only one attribute at a time.
|
35604
35614
|
#
|
35605
35615
|
# For more information about EBS volumes, see [Amazon EBS volumes][1] in
|
35606
|
-
# the *Amazon
|
35616
|
+
# the *Amazon EBS User Guide*.
|
35607
35617
|
#
|
35608
35618
|
#
|
35609
35619
|
#
|
35610
|
-
# [1]: https://docs.aws.amazon.com/
|
35620
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-volumes.html
|
35611
35621
|
#
|
35612
35622
|
# @option params [required, String] :attribute
|
35613
35623
|
# The attribute of the volume. This parameter is required.
|
@@ -35690,7 +35700,7 @@ module Aws::EC2
|
|
35690
35700
|
# `insufficient-data`, then the checks might still be taking place on
|
35691
35701
|
# your volume at the time. We recommend that you retry the request. For
|
35692
35702
|
# more information about volume status, see [Monitor the status of your
|
35693
|
-
# volumes][1] in the *Amazon
|
35703
|
+
# volumes][1] in the *Amazon EBS User Guide*.
|
35694
35704
|
#
|
35695
35705
|
# *Events*: Reflect the cause of a volume status and might require you
|
35696
35706
|
# to take action. For example, if your volume returns an `impaired`
|
@@ -35711,9 +35721,15 @@ module Aws::EC2
|
|
35711
35721
|
# volumes in the `error` state (for example, when a volume is incapable
|
35712
35722
|
# of accepting I/O.)
|
35713
35723
|
#
|
35724
|
+
# <note markdown="1"> The order of the elements in the response, including those within
|
35725
|
+
# nested structures, might vary. Applications should not assume the
|
35726
|
+
# elements appear in a particular order.
|
35714
35727
|
#
|
35728
|
+
# </note>
|
35715
35729
|
#
|
35716
|
-
#
|
35730
|
+
#
|
35731
|
+
#
|
35732
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/monitoring-volume-status.html
|
35717
35733
|
#
|
35718
35734
|
# @option params [Array<Types::Filter>] :filters
|
35719
35735
|
# The filters.
|
@@ -35903,12 +35919,18 @@ module Aws::EC2
|
|
35903
35919
|
# information, see [Pagination][1].
|
35904
35920
|
#
|
35905
35921
|
# For more information about EBS volumes, see [Amazon EBS volumes][2] in
|
35906
|
-
# the *Amazon
|
35922
|
+
# the *Amazon EBS User Guide*.
|
35923
|
+
#
|
35924
|
+
# <note markdown="1"> The order of the elements in the response, including those within
|
35925
|
+
# nested structures, might vary. Applications should not assume the
|
35926
|
+
# elements appear in a particular order.
|
35927
|
+
#
|
35928
|
+
# </note>
|
35907
35929
|
#
|
35908
35930
|
#
|
35909
35931
|
#
|
35910
35932
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
35911
|
-
# [2]: https://docs.aws.amazon.com/
|
35933
|
+
# [2]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-volumes.html
|
35912
35934
|
#
|
35913
35935
|
# @option params [Array<Types::Filter>] :filters
|
35914
35936
|
# The filters.
|
@@ -36153,12 +36175,12 @@ module Aws::EC2
|
|
36153
36175
|
# modification to an EBS volume. For information about CloudWatch
|
36154
36176
|
# Events, see the [Amazon CloudWatch Events User Guide][1]. For more
|
36155
36177
|
# information, see [Monitor the progress of volume modifications][2] in
|
36156
|
-
# the *Amazon
|
36178
|
+
# the *Amazon EBS User Guide*.
|
36157
36179
|
#
|
36158
36180
|
#
|
36159
36181
|
#
|
36160
36182
|
# [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/
|
36161
|
-
# [2]: https://docs.aws.amazon.com/
|
36183
|
+
# [2]: https://docs.aws.amazon.com/ebs/latest/userguide/monitoring-volume-modifications.html
|
36162
36184
|
#
|
36163
36185
|
# @option params [Boolean] :dry_run
|
36164
36186
|
# Checks whether you have the required permissions for the action,
|
@@ -37879,11 +37901,11 @@ module Aws::EC2
|
|
37879
37901
|
# volume attached to ECS tasks` error message.
|
37880
37902
|
#
|
37881
37903
|
# For more information, see [Detach an Amazon EBS volume][1] in the
|
37882
|
-
# *Amazon
|
37904
|
+
# *Amazon EBS User Guide*.
|
37883
37905
|
#
|
37884
37906
|
#
|
37885
37907
|
#
|
37886
|
-
# [1]: https://docs.aws.amazon.com/
|
37908
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-detaching-volume.html
|
37887
37909
|
#
|
37888
37910
|
# @option params [String] :device
|
37889
37911
|
# The device name.
|
@@ -38116,11 +38138,11 @@ module Aws::EC2
|
|
38116
38138
|
# of your existing volumes.
|
38117
38139
|
#
|
38118
38140
|
# For more information, see [Amazon EBS encryption][1] in the *Amazon
|
38119
|
-
#
|
38141
|
+
# EBS User Guide*.
|
38120
38142
|
#
|
38121
38143
|
#
|
38122
38144
|
#
|
38123
|
-
# [1]: https://docs.aws.amazon.com/
|
38145
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption.html
|
38124
38146
|
#
|
38125
38147
|
# @option params [Boolean] :dry_run
|
38126
38148
|
# Checks whether you have the required permissions for the action,
|
@@ -38516,13 +38538,13 @@ module Aws::EC2
|
|
38516
38538
|
# publicly accessible again.
|
38517
38539
|
#
|
38518
38540
|
# For more information, see [ Block public access for snapshots][1] in
|
38519
|
-
# the *Amazon
|
38541
|
+
# the *Amazon EBS User Guide* .
|
38520
38542
|
#
|
38521
38543
|
#
|
38522
38544
|
#
|
38523
38545
|
#
|
38524
38546
|
#
|
38525
|
-
# [1]: https://docs.aws.amazon.com/
|
38547
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/block-public-access-snapshots.html
|
38526
38548
|
#
|
38527
38549
|
# @option params [Boolean] :dry_run
|
38528
38550
|
# Checks whether you have the required permissions for the action,
|
@@ -39601,8 +39623,8 @@ module Aws::EC2
|
|
39601
39623
|
# After you enable encryption by default, the EBS volumes that you
|
39602
39624
|
# create are always encrypted, either using the default KMS key or the
|
39603
39625
|
# KMS key that you specified when you created each volume. For more
|
39604
|
-
# information, see [Amazon EBS encryption][1] in the *Amazon
|
39605
|
-
#
|
39626
|
+
# information, see [Amazon EBS encryption][1] in the *Amazon EBS User
|
39627
|
+
# Guide*.
|
39606
39628
|
#
|
39607
39629
|
# You can specify the default KMS key for encryption by default using
|
39608
39630
|
# ModifyEbsDefaultKmsKeyId or ResetEbsDefaultKmsKeyId.
|
@@ -39616,8 +39638,8 @@ module Aws::EC2
|
|
39616
39638
|
#
|
39617
39639
|
#
|
39618
39640
|
#
|
39619
|
-
# [1]: https://docs.aws.amazon.com/
|
39620
|
-
# [2]: https://docs.aws.amazon.com/
|
39641
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption.html
|
39642
|
+
# [2]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption-requirements.html#ebs-encryption_supported_instances
|
39621
39643
|
#
|
39622
39644
|
# @option params [Boolean] :dry_run
|
39623
39645
|
# Checks whether you have the required permissions for the action,
|
@@ -39751,11 +39773,11 @@ module Aws::EC2
|
|
39751
39773
|
# restores, use DisableFastSnapshotRestores.
|
39752
39774
|
#
|
39753
39775
|
# For more information, see [Amazon EBS fast snapshot restore][1] in the
|
39754
|
-
# *Amazon
|
39776
|
+
# *Amazon EBS User Guide*.
|
39755
39777
|
#
|
39756
39778
|
#
|
39757
39779
|
#
|
39758
|
-
# [1]: https://docs.aws.amazon.com/
|
39780
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-fast-snapshot-restore.html
|
39759
39781
|
#
|
39760
39782
|
# @option params [required, Array<String>] :availability_zones
|
39761
39783
|
# One or more Availability Zones. For example, `us-east-2a`.
|
@@ -40100,11 +40122,11 @@ module Aws::EC2
|
|
40100
40122
|
# become publicly accessible again.
|
40101
40123
|
#
|
40102
40124
|
# For more information, see [ Block public access for snapshots][1] in
|
40103
|
-
# the *Amazon
|
40125
|
+
# the *Amazon EBS User Guide*.
|
40104
40126
|
#
|
40105
40127
|
#
|
40106
40128
|
#
|
40107
|
-
# [1]: https://docs.aws.amazon.com/
|
40129
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/block-public-access-snapshots.html
|
40108
40130
|
#
|
40109
40131
|
# @option params [required, String] :state
|
40110
40132
|
# The mode in which to enable block public access for snapshots for the
|
@@ -41148,11 +41170,11 @@ module Aws::EC2
|
|
41148
41170
|
# ResetEbsDefaultKmsKeyId.
|
41149
41171
|
#
|
41150
41172
|
# For more information, see [Amazon EBS encryption][1] in the *Amazon
|
41151
|
-
#
|
41173
|
+
# EBS User Guide*.
|
41152
41174
|
#
|
41153
41175
|
#
|
41154
41176
|
#
|
41155
|
-
# [1]: https://docs.aws.amazon.com/
|
41177
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption.html
|
41156
41178
|
#
|
41157
41179
|
# @option params [Boolean] :dry_run
|
41158
41180
|
# Checks whether you have the required permissions for the action,
|
@@ -41187,11 +41209,11 @@ module Aws::EC2
|
|
41187
41209
|
# account in the current Region.
|
41188
41210
|
#
|
41189
41211
|
# For more information, see [Amazon EBS encryption][1] in the *Amazon
|
41190
|
-
#
|
41212
|
+
# EBS User Guide*.
|
41191
41213
|
#
|
41192
41214
|
#
|
41193
41215
|
#
|
41194
|
-
# [1]: https://docs.aws.amazon.com/
|
41216
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption.html
|
41195
41217
|
#
|
41196
41218
|
# @option params [Boolean] :dry_run
|
41197
41219
|
# Checks whether you have the required permissions for the action,
|
@@ -43352,11 +43374,11 @@ module Aws::EC2
|
|
43352
43374
|
# for the account and Region.
|
43353
43375
|
#
|
43354
43376
|
# For more information, see [ Block public access for snapshots][1] in
|
43355
|
-
# the *Amazon
|
43377
|
+
# the *Amazon EBS User Guide*.
|
43356
43378
|
#
|
43357
43379
|
#
|
43358
43380
|
#
|
43359
|
-
# [1]: https://docs.aws.amazon.com/
|
43381
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/block-public-access-snapshots.html
|
43360
43382
|
#
|
43361
43383
|
# @option params [Boolean] :dry_run
|
43362
43384
|
# Checks whether you have the required permissions for the action,
|
@@ -45908,11 +45930,11 @@ module Aws::EC2
|
|
45908
45930
|
# to launch.
|
45909
45931
|
#
|
45910
45932
|
# For more information, see [Amazon EBS encryption][1] in the *Amazon
|
45911
|
-
#
|
45933
|
+
# EBS User Guide*.
|
45912
45934
|
#
|
45913
45935
|
#
|
45914
45936
|
#
|
45915
|
-
# [1]: https://docs.aws.amazon.com/
|
45937
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption.html
|
45916
45938
|
#
|
45917
45939
|
# @option params [required, String] :kms_key_id
|
45918
45940
|
# The identifier of the Key Management Service (KMS) KMS key to use for
|
@@ -47264,8 +47286,6 @@ module Aws::EC2
|
|
47264
47286
|
# the instance metadata. For more information, see [Work with instance
|
47265
47287
|
# tags using the instance metadata][1].
|
47266
47288
|
#
|
47267
|
-
# Default: `disabled`
|
47268
|
-
#
|
47269
47289
|
#
|
47270
47290
|
#
|
47271
47291
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#work-with-tags-in-IMDS
|
@@ -48422,11 +48442,11 @@ module Aws::EC2
|
|
48422
48442
|
# default KMS key cannot be shared with other accounts.
|
48423
48443
|
#
|
48424
48444
|
# For more information about modifying snapshot permissions, see [Share
|
48425
|
-
# a snapshot][1] in the *Amazon
|
48445
|
+
# a snapshot][1] in the *Amazon EBS User Guide*.
|
48426
48446
|
#
|
48427
48447
|
#
|
48428
48448
|
#
|
48429
|
-
# [1]: https://docs.aws.amazon.com/
|
48449
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-modifying-snapshot-permissions.html
|
48430
48450
|
#
|
48431
48451
|
# @option params [String] :attribute
|
48432
48452
|
# The snapshot attribute to modify. Only volume creation permissions can
|
@@ -48529,12 +48549,12 @@ module Aws::EC2
|
|
48529
48549
|
# converted to a full snapshot that includes all of the blocks of data
|
48530
48550
|
# that were written to the volume at the time the snapshot was created,
|
48531
48551
|
# and moved from the standard tier to the archive tier. For more
|
48532
|
-
# information, see [Archive Amazon EBS snapshots][1] in the *Amazon
|
48533
|
-
#
|
48552
|
+
# information, see [Archive Amazon EBS snapshots][1] in the *Amazon EBS
|
48553
|
+
# User Guide*.
|
48534
48554
|
#
|
48535
48555
|
#
|
48536
48556
|
#
|
48537
|
-
# [1]: https://docs.aws.amazon.com/
|
48557
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/snapshot-archive.html
|
48538
48558
|
#
|
48539
48559
|
# @option params [required, String] :snapshot_id
|
48540
48560
|
# The ID of the snapshot.
|
@@ -48804,10 +48824,10 @@ module Aws::EC2
|
|
48804
48824
|
# instances created in the specified subnet should be assigned a public
|
48805
48825
|
# IPv4 address.
|
48806
48826
|
#
|
48807
|
-
#
|
48808
|
-
# public IPv4 addresses
|
48809
|
-
#
|
48810
|
-
# the
|
48827
|
+
# Amazon Web Services charges for all public IPv4 addresses, including
|
48828
|
+
# public IPv4 addresses associated with running instances and Elastic IP
|
48829
|
+
# addresses. For more information, see the *Public IPv4 Address* tab on
|
48830
|
+
# the [Amazon VPC pricing page][1].
|
48811
48831
|
#
|
48812
48832
|
#
|
48813
48833
|
#
|
@@ -49963,20 +49983,19 @@ module Aws::EC2
|
|
49963
49983
|
# attached to a current-generation EC2 instance type, you might be able
|
49964
49984
|
# to apply these changes without stopping the instance or detaching the
|
49965
49985
|
# volume from it. For more information about modifying EBS volumes, see
|
49966
|
-
# [Amazon EBS Elastic Volumes][1]
|
49967
|
-
# Elastic Volumes][2] (Windows instances).
|
49986
|
+
# [Amazon EBS Elastic Volumes][1] in the *Amazon EBS User Guide*.
|
49968
49987
|
#
|
49969
49988
|
# When you complete a resize operation on your volume, you need to
|
49970
49989
|
# extend the volume's file-system size to take advantage of the new
|
49971
|
-
# storage capacity. For more information, see [Extend
|
49972
|
-
# system][
|
49990
|
+
# storage capacity. For more information, see [Extend the file
|
49991
|
+
# system][2].
|
49973
49992
|
#
|
49974
49993
|
# You can use CloudWatch Events to check the status of a modification to
|
49975
49994
|
# an EBS volume. For information about CloudWatch Events, see the
|
49976
|
-
# [Amazon CloudWatch Events User Guide][
|
49995
|
+
# [Amazon CloudWatch Events User Guide][3]. You can also track the
|
49977
49996
|
# status of a modification using DescribeVolumesModifications. For
|
49978
49997
|
# information about tracking status changes using either method, see
|
49979
|
-
# [Monitor the progress of volume modifications][
|
49998
|
+
# [Monitor the progress of volume modifications][4].
|
49980
49999
|
#
|
49981
50000
|
# With previous-generation instance types, resizing an EBS volume might
|
49982
50001
|
# require detaching and reattaching the volume or stopping and
|
@@ -49989,12 +50008,10 @@ module Aws::EC2
|
|
49989
50008
|
#
|
49990
50009
|
#
|
49991
50010
|
#
|
49992
|
-
# [1]: https://docs.aws.amazon.com/
|
49993
|
-
# [2]: https://docs.aws.amazon.com/
|
49994
|
-
# [3]: https://docs.aws.amazon.com/
|
49995
|
-
# [4]: https://docs.aws.amazon.com/
|
49996
|
-
# [5]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/
|
49997
|
-
# [6]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/monitoring-volume-modifications.html
|
50011
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-modify-volume.html
|
50012
|
+
# [2]: https://docs.aws.amazon.com/ebs/latest/userguide/recognize-expanded-volume-linux.html
|
50013
|
+
# [3]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/
|
50014
|
+
# [4]: https://docs.aws.amazon.com/ebs/latest/userguide/monitoring-volume-modifications.html
|
49998
50015
|
#
|
49999
50016
|
# @option params [Boolean] :dry_run
|
50000
50017
|
# Checks whether you have the required permissions for the action,
|
@@ -50025,14 +50042,13 @@ module Aws::EC2
|
|
50025
50042
|
#
|
50026
50043
|
# @option params [String] :volume_type
|
50027
50044
|
# The target EBS volume type of the volume. For more information, see
|
50028
|
-
# [Amazon EBS volume types][1] in the *Amazon
|
50029
|
-
# Guide*.
|
50045
|
+
# [Amazon EBS volume types][1] in the *Amazon EBS User Guide*.
|
50030
50046
|
#
|
50031
50047
|
# Default: The existing type is retained.
|
50032
50048
|
#
|
50033
50049
|
#
|
50034
50050
|
#
|
50035
|
-
# [1]: https://docs.aws.amazon.com/
|
50051
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-volume-types.html
|
50036
50052
|
#
|
50037
50053
|
# @option params [Integer] :iops
|
50038
50054
|
# The target IOPS rate of the volume. This parameter is valid only for
|
@@ -50072,13 +50088,12 @@ module Aws::EC2
|
|
50072
50088
|
# Multi-Attach, you can attach the volume to up to 16 [ Nitro-based
|
50073
50089
|
# instances][1] in the same Availability Zone. This parameter is
|
50074
50090
|
# supported with `io1` and `io2` volumes only. For more information, see
|
50075
|
-
# [ Amazon EBS Multi-Attach][2] in the *Amazon
|
50076
|
-
# User Guide*.
|
50091
|
+
# [ Amazon EBS Multi-Attach][2] in the *Amazon EBS User Guide*.
|
50077
50092
|
#
|
50078
50093
|
#
|
50079
50094
|
#
|
50080
50095
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html#ec2-nitro-instances
|
50081
|
-
# [2]: https://docs.aws.amazon.com/
|
50096
|
+
# [2]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-volumes-multi.html
|
50082
50097
|
#
|
50083
50098
|
# @return [Types::ModifyVolumeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
50084
50099
|
#
|
@@ -51502,9 +51517,10 @@ module Aws::EC2
|
|
51502
51517
|
# @option params [required, String] :cidr
|
51503
51518
|
# The public IPv4 or IPv6 address range, in CIDR notation. The most
|
51504
51519
|
# specific IPv4 prefix that you can specify is /24. The most specific
|
51505
|
-
# IPv6
|
51506
|
-
#
|
51507
|
-
#
|
51520
|
+
# IPv6 address range that you can bring is /48 for CIDRs that are
|
51521
|
+
# publicly advertisable and /56 for CIDRs that are not publicly
|
51522
|
+
# advertisable. The address range cannot overlap with another address
|
51523
|
+
# range that you've brought to this or another Region.
|
51508
51524
|
#
|
51509
51525
|
# @option params [Types::CidrAuthorizationContext] :cidr_authorization_context
|
51510
51526
|
# A signed document that proves that you are authorized to bring the
|
@@ -52289,11 +52305,11 @@ module Aws::EC2
|
|
52289
52305
|
# on the same Outpost or in the Region of that Outpost. AMIs on an
|
52290
52306
|
# Outpost that include local snapshots can be used to launch instances
|
52291
52307
|
# on the same Outpost only. For more information, [Amazon EBS local
|
52292
|
-
# snapshots on Outposts][1] in the *Amazon
|
52308
|
+
# snapshots on Outposts][1] in the *Amazon EBS User Guide*.
|
52293
52309
|
#
|
52294
52310
|
#
|
52295
52311
|
#
|
52296
|
-
# [1]: https://docs.aws.amazon.com/
|
52312
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/snapshots-outposts.html#ami
|
52297
52313
|
#
|
52298
52314
|
# @option params [String] :description
|
52299
52315
|
# A description for your AMI.
|
@@ -54630,12 +54646,11 @@ module Aws::EC2
|
|
54630
54646
|
# After resetting the default KMS key to the Amazon Web Services managed
|
54631
54647
|
# KMS key, you can continue to encrypt by a customer managed KMS key by
|
54632
54648
|
# specifying it when you create the volume. For more information, see
|
54633
|
-
# [Amazon EBS encryption][1] in the *Amazon
|
54634
|
-
# Guide*.
|
54649
|
+
# [Amazon EBS encryption][1] in the *Amazon EBS User Guide*.
|
54635
54650
|
#
|
54636
54651
|
#
|
54637
54652
|
#
|
54638
|
-
# [1]: https://docs.aws.amazon.com/
|
54653
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption.html
|
54639
54654
|
#
|
54640
54655
|
# @option params [Boolean] :dry_run
|
54641
54656
|
# Checks whether you have the required permissions for the action,
|
@@ -54855,11 +54870,11 @@ module Aws::EC2
|
|
54855
54870
|
# Resets permission settings for the specified snapshot.
|
54856
54871
|
#
|
54857
54872
|
# For more information about modifying snapshot permissions, see [Share
|
54858
|
-
# a snapshot][1] in the *Amazon
|
54873
|
+
# a snapshot][1] in the *Amazon EBS User Guide*.
|
54859
54874
|
#
|
54860
54875
|
#
|
54861
54876
|
#
|
54862
|
-
# [1]: https://docs.aws.amazon.com/
|
54877
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-modifying-snapshot-permissions.html
|
54863
54878
|
#
|
54864
54879
|
# @option params [required, String] :attribute
|
54865
54880
|
# The attribute to reset. Currently, only the attribute for permission
|
@@ -55049,12 +55064,12 @@ module Aws::EC2
|
|
55049
55064
|
end
|
55050
55065
|
|
55051
55066
|
# Restores a snapshot from the Recycle Bin. For more information, see
|
55052
|
-
# [Restore snapshots from the Recycle Bin][1] in the *Amazon
|
55053
|
-
#
|
55067
|
+
# [Restore snapshots from the Recycle Bin][1] in the *Amazon EBS User
|
55068
|
+
# Guide*.
|
55054
55069
|
#
|
55055
55070
|
#
|
55056
55071
|
#
|
55057
|
-
# [1]: https://docs.aws.amazon.com/
|
55072
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/recycle-bin-working-with-snaps.html#recycle-bin-restore-snaps
|
55058
55073
|
#
|
55059
55074
|
# @option params [required, String] :snapshot_id
|
55060
55075
|
# The ID of the snapshot to restore.
|
@@ -55115,12 +55130,12 @@ module Aws::EC2
|
|
55115
55130
|
#
|
55116
55131
|
# For more information see [ Restore an archived snapshot][1] and [
|
55117
55132
|
# modify the restore period or restore type for a temporarily restored
|
55118
|
-
# snapshot][2] in the *Amazon
|
55133
|
+
# snapshot][2] in the *Amazon EBS User Guide*.
|
55119
55134
|
#
|
55120
55135
|
#
|
55121
55136
|
#
|
55122
|
-
# [1]: https://docs.aws.amazon.com/
|
55123
|
-
# [2]: https://docs.aws.amazon.com/
|
55137
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/working-with-snapshot-archiving.html#restore-archived-snapshot
|
55138
|
+
# [2]: https://docs.aws.amazon.com/ebs/latest/userguide/working-with-snapshot-archiving.html#modify-temp-restore-period
|
55124
55139
|
#
|
55125
55140
|
# @option params [required, String] :snapshot_id
|
55126
55141
|
# The ID of the snapshot to restore.
|
@@ -55407,8 +55422,7 @@ module Aws::EC2
|
|
55407
55422
|
#
|
55408
55423
|
# @option params [Integer] :from_port
|
55409
55424
|
# If the protocol is TCP or UDP, this is the start of the port range. If
|
55410
|
-
# the protocol is ICMP, this is the type
|
55411
|
-
# all ICMP types.
|
55425
|
+
# the protocol is ICMP, this is the ICMP type or -1 (all ICMP types).
|
55412
55426
|
#
|
55413
55427
|
# @option params [String] :group_id
|
55414
55428
|
# The ID of the security group.
|
@@ -55444,8 +55458,7 @@ module Aws::EC2
|
|
55444
55458
|
#
|
55445
55459
|
# @option params [Integer] :to_port
|
55446
55460
|
# If the protocol is TCP or UDP, this is the end of the port range. If
|
55447
|
-
# the protocol is ICMP, this is the code
|
55448
|
-
# ICMP codes.
|
55461
|
+
# the protocol is ICMP, this is the ICMP code or -1 (all ICMP codes).
|
55449
55462
|
#
|
55450
55463
|
# @option params [Boolean] :dry_run
|
55451
55464
|
# Checks whether you have the required permissions for the action,
|
@@ -58892,7 +58905,7 @@ module Aws::EC2
|
|
58892
58905
|
params: params,
|
58893
58906
|
config: config)
|
58894
58907
|
context[:gem_name] = 'aws-sdk-ec2'
|
58895
|
-
context[:gem_version] = '1.
|
58908
|
+
context[:gem_version] = '1.442.0'
|
58896
58909
|
Seahorse::Client::Request.new(handlers, context)
|
58897
58910
|
end
|
58898
58911
|
|