aws-sdk-ec2 1.441.0 → 1.443.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +304 -278
- data/lib/aws-sdk-ec2/client_api.rb +56 -0
- 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 +366 -231
- data/lib/aws-sdk-ec2/volume.rb +2 -2
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/types.rbs +46 -0
- 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
|
#
|
@@ -25172,6 +25178,19 @@ module Aws::EC2
|
|
25172
25178
|
# resp.instance_types[0].nitro_tpm_support #=> String, one of "unsupported", "supported"
|
25173
25179
|
# resp.instance_types[0].nitro_tpm_info.supported_versions #=> Array
|
25174
25180
|
# resp.instance_types[0].nitro_tpm_info.supported_versions[0] #=> String
|
25181
|
+
# resp.instance_types[0].media_accelerator_info.accelerators #=> Array
|
25182
|
+
# resp.instance_types[0].media_accelerator_info.accelerators[0].count #=> Integer
|
25183
|
+
# resp.instance_types[0].media_accelerator_info.accelerators[0].name #=> String
|
25184
|
+
# resp.instance_types[0].media_accelerator_info.accelerators[0].manufacturer #=> String
|
25185
|
+
# resp.instance_types[0].media_accelerator_info.accelerators[0].memory_info.size_in_mi_b #=> Integer
|
25186
|
+
# resp.instance_types[0].media_accelerator_info.total_media_memory_in_mi_b #=> Integer
|
25187
|
+
# resp.instance_types[0].neuron_info.neuron_devices #=> Array
|
25188
|
+
# resp.instance_types[0].neuron_info.neuron_devices[0].count #=> Integer
|
25189
|
+
# resp.instance_types[0].neuron_info.neuron_devices[0].name #=> String
|
25190
|
+
# resp.instance_types[0].neuron_info.neuron_devices[0].core_info.count #=> Integer
|
25191
|
+
# resp.instance_types[0].neuron_info.neuron_devices[0].core_info.version #=> Integer
|
25192
|
+
# resp.instance_types[0].neuron_info.neuron_devices[0].memory_info.size_in_mi_b #=> Integer
|
25193
|
+
# resp.instance_types[0].neuron_info.total_neuron_device_memory_in_mi_b #=> Integer
|
25175
25194
|
# resp.next_token #=> String
|
25176
25195
|
#
|
25177
25196
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceTypes AWS API Documentation
|
@@ -30320,6 +30339,12 @@ module Aws::EC2
|
|
30320
30339
|
# see [Managing Amazon Web Services Regions][2] in the *Amazon Web
|
30321
30340
|
# Services General Reference*.
|
30322
30341
|
#
|
30342
|
+
# <note markdown="1"> The order of the elements in the response, including those within
|
30343
|
+
# nested structures, might vary. Applications should not assume the
|
30344
|
+
# elements appear in a particular order.
|
30345
|
+
#
|
30346
|
+
# </note>
|
30347
|
+
#
|
30323
30348
|
#
|
30324
30349
|
#
|
30325
30350
|
# [1]: https://docs.aws.amazon.com/general/latest/gr/ec2-service.html
|
@@ -31512,9 +31537,8 @@ module Aws::EC2
|
|
31512
31537
|
req.send_request(options)
|
31513
31538
|
end
|
31514
31539
|
|
31515
|
-
# Describes the VPCs on the other side of a VPC peering connection
|
31516
|
-
#
|
31517
|
-
# security groups you've specified in this request.
|
31540
|
+
# Describes the VPCs on the other side of a VPC peering connection that
|
31541
|
+
# are referencing the security groups you've specified in this request.
|
31518
31542
|
#
|
31519
31543
|
# @option params [Boolean] :dry_run
|
31520
31544
|
# Checks whether you have the required permissions for the action,
|
@@ -31918,11 +31942,11 @@ module Aws::EC2
|
|
31918
31942
|
# specify only one attribute at a time.
|
31919
31943
|
#
|
31920
31944
|
# For more information about EBS snapshots, see [Amazon EBS
|
31921
|
-
# snapshots][1] in the *Amazon
|
31945
|
+
# snapshots][1] in the *Amazon EBS User Guide*.
|
31922
31946
|
#
|
31923
31947
|
#
|
31924
31948
|
#
|
31925
|
-
# [1]: https://docs.aws.amazon.com/
|
31949
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-snapshots.html
|
31926
31950
|
#
|
31927
31951
|
# @option params [required, String] :attribute
|
31928
31952
|
# The snapshot attribute you would like to view.
|
@@ -32122,12 +32146,12 @@ module Aws::EC2
|
|
32122
32146
|
# DescribeFastSnapshotRestores.
|
32123
32147
|
#
|
32124
32148
|
# For more information about EBS snapshots, see [Amazon EBS
|
32125
|
-
# snapshots][2] in the *Amazon
|
32149
|
+
# snapshots][2] in the *Amazon EBS User Guide*.
|
32126
32150
|
#
|
32127
32151
|
#
|
32128
32152
|
#
|
32129
32153
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
32130
|
-
# [2]: https://docs.aws.amazon.com/
|
32154
|
+
# [2]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-snapshots.html
|
32131
32155
|
#
|
32132
32156
|
# @option params [Array<Types::Filter>] :filters
|
32133
32157
|
# The filters.
|
@@ -33432,16 +33456,9 @@ module Aws::EC2
|
|
33432
33456
|
|
33433
33457
|
# Describes the stale security group rules for security groups in a
|
33434
33458
|
# 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
|
33459
|
+
# group in the same VPC or peered VPC. Rules can also be stale if they
|
33460
|
+
# reference a security group in a peer VPC for which the VPC peering
|
33461
|
+
# connection has been deleted.
|
33445
33462
|
#
|
33446
33463
|
# @option params [Boolean] :dry_run
|
33447
33464
|
# Checks whether you have the required permissions for the action,
|
@@ -33872,6 +33889,12 @@ module Aws::EC2
|
|
33872
33889
|
# For more information about tags, see [Tag your Amazon EC2
|
33873
33890
|
# resources][1] in the *Amazon Elastic Compute Cloud User Guide*.
|
33874
33891
|
#
|
33892
|
+
# <note markdown="1"> The order of the elements in the response, including those within
|
33893
|
+
# nested structures, might vary. Applications should not assume the
|
33894
|
+
# elements appear in a particular order.
|
33895
|
+
#
|
33896
|
+
# </note>
|
33897
|
+
#
|
33875
33898
|
#
|
33876
33899
|
#
|
33877
33900
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html
|
@@ -35603,11 +35626,11 @@ module Aws::EC2
|
|
35603
35626
|
# specify only one attribute at a time.
|
35604
35627
|
#
|
35605
35628
|
# For more information about EBS volumes, see [Amazon EBS volumes][1] in
|
35606
|
-
# the *Amazon
|
35629
|
+
# the *Amazon EBS User Guide*.
|
35607
35630
|
#
|
35608
35631
|
#
|
35609
35632
|
#
|
35610
|
-
# [1]: https://docs.aws.amazon.com/
|
35633
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-volumes.html
|
35611
35634
|
#
|
35612
35635
|
# @option params [required, String] :attribute
|
35613
35636
|
# The attribute of the volume. This parameter is required.
|
@@ -35690,7 +35713,7 @@ module Aws::EC2
|
|
35690
35713
|
# `insufficient-data`, then the checks might still be taking place on
|
35691
35714
|
# your volume at the time. We recommend that you retry the request. For
|
35692
35715
|
# more information about volume status, see [Monitor the status of your
|
35693
|
-
# volumes][1] in the *Amazon
|
35716
|
+
# volumes][1] in the *Amazon EBS User Guide*.
|
35694
35717
|
#
|
35695
35718
|
# *Events*: Reflect the cause of a volume status and might require you
|
35696
35719
|
# to take action. For example, if your volume returns an `impaired`
|
@@ -35711,9 +35734,15 @@ module Aws::EC2
|
|
35711
35734
|
# volumes in the `error` state (for example, when a volume is incapable
|
35712
35735
|
# of accepting I/O.)
|
35713
35736
|
#
|
35737
|
+
# <note markdown="1"> The order of the elements in the response, including those within
|
35738
|
+
# nested structures, might vary. Applications should not assume the
|
35739
|
+
# elements appear in a particular order.
|
35714
35740
|
#
|
35741
|
+
# </note>
|
35715
35742
|
#
|
35716
|
-
#
|
35743
|
+
#
|
35744
|
+
#
|
35745
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/monitoring-volume-status.html
|
35717
35746
|
#
|
35718
35747
|
# @option params [Array<Types::Filter>] :filters
|
35719
35748
|
# The filters.
|
@@ -35903,12 +35932,18 @@ module Aws::EC2
|
|
35903
35932
|
# information, see [Pagination][1].
|
35904
35933
|
#
|
35905
35934
|
# For more information about EBS volumes, see [Amazon EBS volumes][2] in
|
35906
|
-
# the *Amazon
|
35935
|
+
# the *Amazon EBS User Guide*.
|
35936
|
+
#
|
35937
|
+
# <note markdown="1"> The order of the elements in the response, including those within
|
35938
|
+
# nested structures, might vary. Applications should not assume the
|
35939
|
+
# elements appear in a particular order.
|
35940
|
+
#
|
35941
|
+
# </note>
|
35907
35942
|
#
|
35908
35943
|
#
|
35909
35944
|
#
|
35910
35945
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
35911
|
-
# [2]: https://docs.aws.amazon.com/
|
35946
|
+
# [2]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-volumes.html
|
35912
35947
|
#
|
35913
35948
|
# @option params [Array<Types::Filter>] :filters
|
35914
35949
|
# The filters.
|
@@ -36153,12 +36188,12 @@ module Aws::EC2
|
|
36153
36188
|
# modification to an EBS volume. For information about CloudWatch
|
36154
36189
|
# Events, see the [Amazon CloudWatch Events User Guide][1]. For more
|
36155
36190
|
# information, see [Monitor the progress of volume modifications][2] in
|
36156
|
-
# the *Amazon
|
36191
|
+
# the *Amazon EBS User Guide*.
|
36157
36192
|
#
|
36158
36193
|
#
|
36159
36194
|
#
|
36160
36195
|
# [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/
|
36161
|
-
# [2]: https://docs.aws.amazon.com/
|
36196
|
+
# [2]: https://docs.aws.amazon.com/ebs/latest/userguide/monitoring-volume-modifications.html
|
36162
36197
|
#
|
36163
36198
|
# @option params [Boolean] :dry_run
|
36164
36199
|
# Checks whether you have the required permissions for the action,
|
@@ -37879,11 +37914,11 @@ module Aws::EC2
|
|
37879
37914
|
# volume attached to ECS tasks` error message.
|
37880
37915
|
#
|
37881
37916
|
# For more information, see [Detach an Amazon EBS volume][1] in the
|
37882
|
-
# *Amazon
|
37917
|
+
# *Amazon EBS User Guide*.
|
37883
37918
|
#
|
37884
37919
|
#
|
37885
37920
|
#
|
37886
|
-
# [1]: https://docs.aws.amazon.com/
|
37921
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-detaching-volume.html
|
37887
37922
|
#
|
37888
37923
|
# @option params [String] :device
|
37889
37924
|
# The device name.
|
@@ -38116,11 +38151,11 @@ module Aws::EC2
|
|
38116
38151
|
# of your existing volumes.
|
38117
38152
|
#
|
38118
38153
|
# For more information, see [Amazon EBS encryption][1] in the *Amazon
|
38119
|
-
#
|
38154
|
+
# EBS User Guide*.
|
38120
38155
|
#
|
38121
38156
|
#
|
38122
38157
|
#
|
38123
|
-
# [1]: https://docs.aws.amazon.com/
|
38158
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption.html
|
38124
38159
|
#
|
38125
38160
|
# @option params [Boolean] :dry_run
|
38126
38161
|
# Checks whether you have the required permissions for the action,
|
@@ -38516,13 +38551,13 @@ module Aws::EC2
|
|
38516
38551
|
# publicly accessible again.
|
38517
38552
|
#
|
38518
38553
|
# For more information, see [ Block public access for snapshots][1] in
|
38519
|
-
# the *Amazon
|
38554
|
+
# the *Amazon EBS User Guide* .
|
38520
38555
|
#
|
38521
38556
|
#
|
38522
38557
|
#
|
38523
38558
|
#
|
38524
38559
|
#
|
38525
|
-
# [1]: https://docs.aws.amazon.com/
|
38560
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/block-public-access-snapshots.html
|
38526
38561
|
#
|
38527
38562
|
# @option params [Boolean] :dry_run
|
38528
38563
|
# Checks whether you have the required permissions for the action,
|
@@ -39601,8 +39636,8 @@ module Aws::EC2
|
|
39601
39636
|
# After you enable encryption by default, the EBS volumes that you
|
39602
39637
|
# create are always encrypted, either using the default KMS key or the
|
39603
39638
|
# KMS key that you specified when you created each volume. For more
|
39604
|
-
# information, see [Amazon EBS encryption][1] in the *Amazon
|
39605
|
-
#
|
39639
|
+
# information, see [Amazon EBS encryption][1] in the *Amazon EBS User
|
39640
|
+
# Guide*.
|
39606
39641
|
#
|
39607
39642
|
# You can specify the default KMS key for encryption by default using
|
39608
39643
|
# ModifyEbsDefaultKmsKeyId or ResetEbsDefaultKmsKeyId.
|
@@ -39616,8 +39651,8 @@ module Aws::EC2
|
|
39616
39651
|
#
|
39617
39652
|
#
|
39618
39653
|
#
|
39619
|
-
# [1]: https://docs.aws.amazon.com/
|
39620
|
-
# [2]: https://docs.aws.amazon.com/
|
39654
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption.html
|
39655
|
+
# [2]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption-requirements.html#ebs-encryption_supported_instances
|
39621
39656
|
#
|
39622
39657
|
# @option params [Boolean] :dry_run
|
39623
39658
|
# Checks whether you have the required permissions for the action,
|
@@ -39751,11 +39786,11 @@ module Aws::EC2
|
|
39751
39786
|
# restores, use DisableFastSnapshotRestores.
|
39752
39787
|
#
|
39753
39788
|
# For more information, see [Amazon EBS fast snapshot restore][1] in the
|
39754
|
-
# *Amazon
|
39789
|
+
# *Amazon EBS User Guide*.
|
39755
39790
|
#
|
39756
39791
|
#
|
39757
39792
|
#
|
39758
|
-
# [1]: https://docs.aws.amazon.com/
|
39793
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-fast-snapshot-restore.html
|
39759
39794
|
#
|
39760
39795
|
# @option params [required, Array<String>] :availability_zones
|
39761
39796
|
# One or more Availability Zones. For example, `us-east-2a`.
|
@@ -40100,11 +40135,11 @@ module Aws::EC2
|
|
40100
40135
|
# become publicly accessible again.
|
40101
40136
|
#
|
40102
40137
|
# For more information, see [ Block public access for snapshots][1] in
|
40103
|
-
# the *Amazon
|
40138
|
+
# the *Amazon EBS User Guide*.
|
40104
40139
|
#
|
40105
40140
|
#
|
40106
40141
|
#
|
40107
|
-
# [1]: https://docs.aws.amazon.com/
|
40142
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/block-public-access-snapshots.html
|
40108
40143
|
#
|
40109
40144
|
# @option params [required, String] :state
|
40110
40145
|
# The mode in which to enable block public access for snapshots for the
|
@@ -41148,11 +41183,11 @@ module Aws::EC2
|
|
41148
41183
|
# ResetEbsDefaultKmsKeyId.
|
41149
41184
|
#
|
41150
41185
|
# For more information, see [Amazon EBS encryption][1] in the *Amazon
|
41151
|
-
#
|
41186
|
+
# EBS User Guide*.
|
41152
41187
|
#
|
41153
41188
|
#
|
41154
41189
|
#
|
41155
|
-
# [1]: https://docs.aws.amazon.com/
|
41190
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption.html
|
41156
41191
|
#
|
41157
41192
|
# @option params [Boolean] :dry_run
|
41158
41193
|
# Checks whether you have the required permissions for the action,
|
@@ -41187,11 +41222,11 @@ module Aws::EC2
|
|
41187
41222
|
# account in the current Region.
|
41188
41223
|
#
|
41189
41224
|
# For more information, see [Amazon EBS encryption][1] in the *Amazon
|
41190
|
-
#
|
41225
|
+
# EBS User Guide*.
|
41191
41226
|
#
|
41192
41227
|
#
|
41193
41228
|
#
|
41194
|
-
# [1]: https://docs.aws.amazon.com/
|
41229
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption.html
|
41195
41230
|
#
|
41196
41231
|
# @option params [Boolean] :dry_run
|
41197
41232
|
# Checks whether you have the required permissions for the action,
|
@@ -43352,11 +43387,11 @@ module Aws::EC2
|
|
43352
43387
|
# for the account and Region.
|
43353
43388
|
#
|
43354
43389
|
# For more information, see [ Block public access for snapshots][1] in
|
43355
|
-
# the *Amazon
|
43390
|
+
# the *Amazon EBS User Guide*.
|
43356
43391
|
#
|
43357
43392
|
#
|
43358
43393
|
#
|
43359
|
-
# [1]: https://docs.aws.amazon.com/
|
43394
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/block-public-access-snapshots.html
|
43360
43395
|
#
|
43361
43396
|
# @option params [Boolean] :dry_run
|
43362
43397
|
# Checks whether you have the required permissions for the action,
|
@@ -45908,11 +45943,11 @@ module Aws::EC2
|
|
45908
45943
|
# to launch.
|
45909
45944
|
#
|
45910
45945
|
# For more information, see [Amazon EBS encryption][1] in the *Amazon
|
45911
|
-
#
|
45946
|
+
# EBS User Guide*.
|
45912
45947
|
#
|
45913
45948
|
#
|
45914
45949
|
#
|
45915
|
-
# [1]: https://docs.aws.amazon.com/
|
45950
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption.html
|
45916
45951
|
#
|
45917
45952
|
# @option params [required, String] :kms_key_id
|
45918
45953
|
# The identifier of the Key Management Service (KMS) KMS key to use for
|
@@ -47264,8 +47299,6 @@ module Aws::EC2
|
|
47264
47299
|
# the instance metadata. For more information, see [Work with instance
|
47265
47300
|
# tags using the instance metadata][1].
|
47266
47301
|
#
|
47267
|
-
# Default: `disabled`
|
47268
|
-
#
|
47269
47302
|
#
|
47270
47303
|
#
|
47271
47304
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#work-with-tags-in-IMDS
|
@@ -48422,11 +48455,11 @@ module Aws::EC2
|
|
48422
48455
|
# default KMS key cannot be shared with other accounts.
|
48423
48456
|
#
|
48424
48457
|
# For more information about modifying snapshot permissions, see [Share
|
48425
|
-
# a snapshot][1] in the *Amazon
|
48458
|
+
# a snapshot][1] in the *Amazon EBS User Guide*.
|
48426
48459
|
#
|
48427
48460
|
#
|
48428
48461
|
#
|
48429
|
-
# [1]: https://docs.aws.amazon.com/
|
48462
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-modifying-snapshot-permissions.html
|
48430
48463
|
#
|
48431
48464
|
# @option params [String] :attribute
|
48432
48465
|
# The snapshot attribute to modify. Only volume creation permissions can
|
@@ -48529,12 +48562,12 @@ module Aws::EC2
|
|
48529
48562
|
# converted to a full snapshot that includes all of the blocks of data
|
48530
48563
|
# that were written to the volume at the time the snapshot was created,
|
48531
48564
|
# and moved from the standard tier to the archive tier. For more
|
48532
|
-
# information, see [Archive Amazon EBS snapshots][1] in the *Amazon
|
48533
|
-
#
|
48565
|
+
# information, see [Archive Amazon EBS snapshots][1] in the *Amazon EBS
|
48566
|
+
# User Guide*.
|
48534
48567
|
#
|
48535
48568
|
#
|
48536
48569
|
#
|
48537
|
-
# [1]: https://docs.aws.amazon.com/
|
48570
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/snapshot-archive.html
|
48538
48571
|
#
|
48539
48572
|
# @option params [required, String] :snapshot_id
|
48540
48573
|
# The ID of the snapshot.
|
@@ -48804,10 +48837,10 @@ module Aws::EC2
|
|
48804
48837
|
# instances created in the specified subnet should be assigned a public
|
48805
48838
|
# IPv4 address.
|
48806
48839
|
#
|
48807
|
-
#
|
48808
|
-
# public IPv4 addresses
|
48809
|
-
#
|
48810
|
-
# the
|
48840
|
+
# Amazon Web Services charges for all public IPv4 addresses, including
|
48841
|
+
# public IPv4 addresses associated with running instances and Elastic IP
|
48842
|
+
# addresses. For more information, see the *Public IPv4 Address* tab on
|
48843
|
+
# the [Amazon VPC pricing page][1].
|
48811
48844
|
#
|
48812
48845
|
#
|
48813
48846
|
#
|
@@ -49963,20 +49996,19 @@ module Aws::EC2
|
|
49963
49996
|
# attached to a current-generation EC2 instance type, you might be able
|
49964
49997
|
# to apply these changes without stopping the instance or detaching the
|
49965
49998
|
# volume from it. For more information about modifying EBS volumes, see
|
49966
|
-
# [Amazon EBS Elastic Volumes][1]
|
49967
|
-
# Elastic Volumes][2] (Windows instances).
|
49999
|
+
# [Amazon EBS Elastic Volumes][1] in the *Amazon EBS User Guide*.
|
49968
50000
|
#
|
49969
50001
|
# When you complete a resize operation on your volume, you need to
|
49970
50002
|
# extend the volume's file-system size to take advantage of the new
|
49971
|
-
# storage capacity. For more information, see [Extend
|
49972
|
-
# system][
|
50003
|
+
# storage capacity. For more information, see [Extend the file
|
50004
|
+
# system][2].
|
49973
50005
|
#
|
49974
50006
|
# You can use CloudWatch Events to check the status of a modification to
|
49975
50007
|
# an EBS volume. For information about CloudWatch Events, see the
|
49976
|
-
# [Amazon CloudWatch Events User Guide][
|
50008
|
+
# [Amazon CloudWatch Events User Guide][3]. You can also track the
|
49977
50009
|
# status of a modification using DescribeVolumesModifications. For
|
49978
50010
|
# information about tracking status changes using either method, see
|
49979
|
-
# [Monitor the progress of volume modifications][
|
50011
|
+
# [Monitor the progress of volume modifications][4].
|
49980
50012
|
#
|
49981
50013
|
# With previous-generation instance types, resizing an EBS volume might
|
49982
50014
|
# require detaching and reattaching the volume or stopping and
|
@@ -49989,12 +50021,10 @@ module Aws::EC2
|
|
49989
50021
|
#
|
49990
50022
|
#
|
49991
50023
|
#
|
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
|
50024
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-modify-volume.html
|
50025
|
+
# [2]: https://docs.aws.amazon.com/ebs/latest/userguide/recognize-expanded-volume-linux.html
|
50026
|
+
# [3]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/
|
50027
|
+
# [4]: https://docs.aws.amazon.com/ebs/latest/userguide/monitoring-volume-modifications.html
|
49998
50028
|
#
|
49999
50029
|
# @option params [Boolean] :dry_run
|
50000
50030
|
# Checks whether you have the required permissions for the action,
|
@@ -50025,14 +50055,13 @@ module Aws::EC2
|
|
50025
50055
|
#
|
50026
50056
|
# @option params [String] :volume_type
|
50027
50057
|
# The target EBS volume type of the volume. For more information, see
|
50028
|
-
# [Amazon EBS volume types][1] in the *Amazon
|
50029
|
-
# Guide*.
|
50058
|
+
# [Amazon EBS volume types][1] in the *Amazon EBS User Guide*.
|
50030
50059
|
#
|
50031
50060
|
# Default: The existing type is retained.
|
50032
50061
|
#
|
50033
50062
|
#
|
50034
50063
|
#
|
50035
|
-
# [1]: https://docs.aws.amazon.com/
|
50064
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-volume-types.html
|
50036
50065
|
#
|
50037
50066
|
# @option params [Integer] :iops
|
50038
50067
|
# The target IOPS rate of the volume. This parameter is valid only for
|
@@ -50072,13 +50101,12 @@ module Aws::EC2
|
|
50072
50101
|
# Multi-Attach, you can attach the volume to up to 16 [ Nitro-based
|
50073
50102
|
# instances][1] in the same Availability Zone. This parameter is
|
50074
50103
|
# supported with `io1` and `io2` volumes only. For more information, see
|
50075
|
-
# [ Amazon EBS Multi-Attach][2] in the *Amazon
|
50076
|
-
# User Guide*.
|
50104
|
+
# [ Amazon EBS Multi-Attach][2] in the *Amazon EBS User Guide*.
|
50077
50105
|
#
|
50078
50106
|
#
|
50079
50107
|
#
|
50080
50108
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html#ec2-nitro-instances
|
50081
|
-
# [2]: https://docs.aws.amazon.com/
|
50109
|
+
# [2]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-volumes-multi.html
|
50082
50110
|
#
|
50083
50111
|
# @return [Types::ModifyVolumeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
50084
50112
|
#
|
@@ -51502,9 +51530,10 @@ module Aws::EC2
|
|
51502
51530
|
# @option params [required, String] :cidr
|
51503
51531
|
# The public IPv4 or IPv6 address range, in CIDR notation. The most
|
51504
51532
|
# specific IPv4 prefix that you can specify is /24. The most specific
|
51505
|
-
# IPv6
|
51506
|
-
#
|
51507
|
-
#
|
51533
|
+
# IPv6 address range that you can bring is /48 for CIDRs that are
|
51534
|
+
# publicly advertisable and /56 for CIDRs that are not publicly
|
51535
|
+
# advertisable. The address range cannot overlap with another address
|
51536
|
+
# range that you've brought to this or another Region.
|
51508
51537
|
#
|
51509
51538
|
# @option params [Types::CidrAuthorizationContext] :cidr_authorization_context
|
51510
51539
|
# A signed document that proves that you are authorized to bring the
|
@@ -52289,11 +52318,11 @@ module Aws::EC2
|
|
52289
52318
|
# on the same Outpost or in the Region of that Outpost. AMIs on an
|
52290
52319
|
# Outpost that include local snapshots can be used to launch instances
|
52291
52320
|
# on the same Outpost only. For more information, [Amazon EBS local
|
52292
|
-
# snapshots on Outposts][1] in the *Amazon
|
52321
|
+
# snapshots on Outposts][1] in the *Amazon EBS User Guide*.
|
52293
52322
|
#
|
52294
52323
|
#
|
52295
52324
|
#
|
52296
|
-
# [1]: https://docs.aws.amazon.com/
|
52325
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/snapshots-outposts.html#ami
|
52297
52326
|
#
|
52298
52327
|
# @option params [String] :description
|
52299
52328
|
# A description for your AMI.
|
@@ -54630,12 +54659,11 @@ module Aws::EC2
|
|
54630
54659
|
# After resetting the default KMS key to the Amazon Web Services managed
|
54631
54660
|
# KMS key, you can continue to encrypt by a customer managed KMS key by
|
54632
54661
|
# specifying it when you create the volume. For more information, see
|
54633
|
-
# [Amazon EBS encryption][1] in the *Amazon
|
54634
|
-
# Guide*.
|
54662
|
+
# [Amazon EBS encryption][1] in the *Amazon EBS User Guide*.
|
54635
54663
|
#
|
54636
54664
|
#
|
54637
54665
|
#
|
54638
|
-
# [1]: https://docs.aws.amazon.com/
|
54666
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption.html
|
54639
54667
|
#
|
54640
54668
|
# @option params [Boolean] :dry_run
|
54641
54669
|
# Checks whether you have the required permissions for the action,
|
@@ -54855,11 +54883,11 @@ module Aws::EC2
|
|
54855
54883
|
# Resets permission settings for the specified snapshot.
|
54856
54884
|
#
|
54857
54885
|
# For more information about modifying snapshot permissions, see [Share
|
54858
|
-
# a snapshot][1] in the *Amazon
|
54886
|
+
# a snapshot][1] in the *Amazon EBS User Guide*.
|
54859
54887
|
#
|
54860
54888
|
#
|
54861
54889
|
#
|
54862
|
-
# [1]: https://docs.aws.amazon.com/
|
54890
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-modifying-snapshot-permissions.html
|
54863
54891
|
#
|
54864
54892
|
# @option params [required, String] :attribute
|
54865
54893
|
# The attribute to reset. Currently, only the attribute for permission
|
@@ -55049,12 +55077,12 @@ module Aws::EC2
|
|
55049
55077
|
end
|
55050
55078
|
|
55051
55079
|
# Restores a snapshot from the Recycle Bin. For more information, see
|
55052
|
-
# [Restore snapshots from the Recycle Bin][1] in the *Amazon
|
55053
|
-
#
|
55080
|
+
# [Restore snapshots from the Recycle Bin][1] in the *Amazon EBS User
|
55081
|
+
# Guide*.
|
55054
55082
|
#
|
55055
55083
|
#
|
55056
55084
|
#
|
55057
|
-
# [1]: https://docs.aws.amazon.com/
|
55085
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/recycle-bin-working-with-snaps.html#recycle-bin-restore-snaps
|
55058
55086
|
#
|
55059
55087
|
# @option params [required, String] :snapshot_id
|
55060
55088
|
# The ID of the snapshot to restore.
|
@@ -55115,12 +55143,12 @@ module Aws::EC2
|
|
55115
55143
|
#
|
55116
55144
|
# For more information see [ Restore an archived snapshot][1] and [
|
55117
55145
|
# modify the restore period or restore type for a temporarily restored
|
55118
|
-
# snapshot][2] in the *Amazon
|
55146
|
+
# snapshot][2] in the *Amazon EBS User Guide*.
|
55119
55147
|
#
|
55120
55148
|
#
|
55121
55149
|
#
|
55122
|
-
# [1]: https://docs.aws.amazon.com/
|
55123
|
-
# [2]: https://docs.aws.amazon.com/
|
55150
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/working-with-snapshot-archiving.html#restore-archived-snapshot
|
55151
|
+
# [2]: https://docs.aws.amazon.com/ebs/latest/userguide/working-with-snapshot-archiving.html#modify-temp-restore-period
|
55124
55152
|
#
|
55125
55153
|
# @option params [required, String] :snapshot_id
|
55126
55154
|
# The ID of the snapshot to restore.
|
@@ -55407,8 +55435,7 @@ module Aws::EC2
|
|
55407
55435
|
#
|
55408
55436
|
# @option params [Integer] :from_port
|
55409
55437
|
# 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.
|
55438
|
+
# the protocol is ICMP, this is the ICMP type or -1 (all ICMP types).
|
55412
55439
|
#
|
55413
55440
|
# @option params [String] :group_id
|
55414
55441
|
# The ID of the security group.
|
@@ -55444,8 +55471,7 @@ module Aws::EC2
|
|
55444
55471
|
#
|
55445
55472
|
# @option params [Integer] :to_port
|
55446
55473
|
# 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.
|
55474
|
+
# the protocol is ICMP, this is the ICMP code or -1 (all ICMP codes).
|
55449
55475
|
#
|
55450
55476
|
# @option params [Boolean] :dry_run
|
55451
55477
|
# Checks whether you have the required permissions for the action,
|
@@ -58892,7 +58918,7 @@ module Aws::EC2
|
|
58892
58918
|
params: params,
|
58893
58919
|
config: config)
|
58894
58920
|
context[:gem_name] = 'aws-sdk-ec2'
|
58895
|
-
context[:gem_version] = '1.
|
58921
|
+
context[:gem_version] = '1.443.0'
|
58896
58922
|
Seahorse::Client::Request.new(handlers, context)
|
58897
58923
|
end
|
58898
58924
|
|