aws-sdk-ec2 1.251.0 → 1.255.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1380,6 +1380,7 @@ module Aws::EC2
1380
1380
  KeyPairInfo = Shapes::StructureShape.new(name: 'KeyPairInfo')
1381
1381
  KeyPairList = Shapes::ListShape.new(name: 'KeyPairList')
1382
1382
  KeyPairName = Shapes::StringShape.new(name: 'KeyPairName')
1383
+ KeyType = Shapes::StringShape.new(name: 'KeyType')
1383
1384
  KmsKeyId = Shapes::StringShape.new(name: 'KmsKeyId')
1384
1385
  LastError = Shapes::StructureShape.new(name: 'LastError')
1385
1386
  LaunchPermission = Shapes::StructureShape.new(name: 'LaunchPermission')
@@ -3545,6 +3546,7 @@ module Aws::EC2
3545
3546
 
3546
3547
  CreateKeyPairRequest.add_member(:key_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "KeyName"))
3547
3548
  CreateKeyPairRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
3549
+ CreateKeyPairRequest.add_member(:key_type, Shapes::ShapeRef.new(shape: KeyType, location_name: "KeyType"))
3548
3550
  CreateKeyPairRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
3549
3551
  CreateKeyPairRequest.struct_class = Types::CreateKeyPairRequest
3550
3552
 
@@ -7803,6 +7805,7 @@ module Aws::EC2
7803
7805
  KeyPairInfo.add_member(:key_pair_id, Shapes::ShapeRef.new(shape: String, location_name: "keyPairId"))
7804
7806
  KeyPairInfo.add_member(:key_fingerprint, Shapes::ShapeRef.new(shape: String, location_name: "keyFingerprint"))
7805
7807
  KeyPairInfo.add_member(:key_name, Shapes::ShapeRef.new(shape: String, location_name: "keyName"))
7808
+ KeyPairInfo.add_member(:key_type, Shapes::ShapeRef.new(shape: KeyType, location_name: "keyType"))
7806
7809
  KeyPairInfo.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
7807
7810
  KeyPairInfo.struct_class = Types::KeyPairInfo
7808
7811
 
@@ -41,7 +41,8 @@ module Aws::EC2
41
41
  data[:dhcp_configurations]
42
42
  end
43
43
 
44
- # The ID of the account that owns the DHCP options set.
44
+ # The ID of the Amazon Web Services account that owns the DHCP options
45
+ # set.
45
46
  # @return [String]
46
47
  def owner_id
47
48
  data[:owner_id]
@@ -1545,7 +1545,8 @@ module Aws::EC2
1545
1545
  # * `network-interface-id` - \[EC2-VPC\] The ID of the network interface
1546
1546
  # that the address is associated with, if any.
1547
1547
  #
1548
- # * `network-interface-owner-id` - The account ID of the owner.
1548
+ # * `network-interface-owner-id` - The Amazon Web Services account ID of
1549
+ # the owner.
1549
1550
  #
1550
1551
  # * `private-ip-address` - \[EC2-VPC\] The private IP address associated
1551
1552
  # with the Elastic IP address.
@@ -41,7 +41,8 @@ module Aws::EC2
41
41
  data[:attachments]
42
42
  end
43
43
 
44
- # The ID of the account that owns the internet gateway.
44
+ # The ID of the Amazon Web Services account that owns the internet
45
+ # gateway.
45
46
  # @return [String]
46
47
  def owner_id
47
48
  data[:owner_id]
@@ -41,7 +41,7 @@ module Aws::EC2
41
41
  data[:key_fingerprint]
42
42
  end
43
43
 
44
- # An unencrypted PEM encoded RSA private key.
44
+ # An unencrypted PEM encoded RSA or ED25519 private key.
45
45
  # @return [String]
46
46
  def key_material
47
47
  data[:key_material]
@@ -41,15 +41,39 @@ module Aws::EC2
41
41
  data[:key_pair_id]
42
42
  end
43
43
 
44
- # If you used CreateKeyPair to create the key pair, this is the SHA-1
45
- # digest of the DER encoded private key. If you used ImportKeyPair to
46
- # provide Amazon Web Services the public key, this is the MD5 public key
47
- # fingerprint as specified in section 4 of RFC4716.
44
+ # If you used CreateKeyPair to create the key pair:
45
+ #
46
+ # * For RSA key pairs, the key fingerprint is the SHA-1 digest of the
47
+ # DER encoded private key.
48
+ #
49
+ # * For ED25519 key pairs, the key fingerprint is the base64-encoded
50
+ # SHA-256 digest, which is the default for OpenSSH, starting with
51
+ # [OpenSSH 6.8][1].
52
+ #
53
+ # If you used ImportKeyPair to provide Amazon Web Services the public
54
+ # key:
55
+ #
56
+ # * For RSA key pairs, the key fingerprint is the MD5 public key
57
+ # fingerprint as specified in section 4 of RFC4716.
58
+ #
59
+ # * For ED25519 key pairs, the key fingerprint is the base64-encoded
60
+ # SHA-256 digest, which is the default for OpenSSH, starting with
61
+ # [OpenSSH 6.8][1].
62
+ #
63
+ #
64
+ #
65
+ # [1]: http://www.openssh.com/txt/release-6.8
48
66
  # @return [String]
49
67
  def key_fingerprint
50
68
  data[:key_fingerprint]
51
69
  end
52
70
 
71
+ # The type of key pair.
72
+ # @return [String]
73
+ def key_type
74
+ data[:key_type]
75
+ end
76
+
53
77
  # Any tags applied to the key pair.
54
78
  # @return [Array<Types::Tag>]
55
79
  def tags
@@ -65,7 +65,7 @@ module Aws::EC2
65
65
  data[:vpc_id]
66
66
  end
67
67
 
68
- # The ID of the account that owns the network ACL.
68
+ # The ID of the Amazon Web Services account that owns the network ACL.
69
69
  # @return [String]
70
70
  def owner_id
71
71
  data[:owner_id]
@@ -83,7 +83,8 @@ module Aws::EC2
83
83
  data[:outpost_arn]
84
84
  end
85
85
 
86
- # The account ID of the owner of the network interface.
86
+ # The Amazon Web Services account ID of the owner of the network
87
+ # interface.
87
88
  # @return [String]
88
89
  def owner_id
89
90
  data[:owner_id]
@@ -121,8 +122,8 @@ module Aws::EC2
121
122
  data[:ipv_6_prefixes]
122
123
  end
123
124
 
124
- # The alias or account ID of the principal or service that created the
125
- # network interface.
125
+ # The alias or Amazon Web Services account ID of the principal or
126
+ # service that created the network interface.
126
127
  # @return [String]
127
128
  def requester_id
128
129
  data[:requester_id]
@@ -432,7 +432,8 @@ module Aws::EC2
432
432
  #
433
433
  # * `outpost-arn` - The Amazon Resource Name (ARN) of the Outpost.
434
434
  #
435
- # * `owner-id` - The account ID of the instance owner.
435
+ # * `owner-id` - The Amazon Web Services account ID of the instance
436
+ # owner.
436
437
  #
437
438
  # * `placement-group-name` - The name of the placement group for the
438
439
  # instance.
@@ -460,8 +461,8 @@ module Aws::EC2
460
461
  # terminate the instance). Similar to the state-reason-code filter.
461
462
  #
462
463
  # * `requester-id` - The ID of the entity that launched the instance on
463
- # your behalf (for example, Management Console, Auto Scaling, and so
464
- # on).
464
+ # your behalf (for example, Amazon Web Services Management Console,
465
+ # Auto Scaling, and so on).
465
466
  #
466
467
  # * `reservation-id` - The ID of the instance's reservation. A
467
468
  # reservation ID is created any time you launch an instance. A
@@ -99,7 +99,7 @@ module Aws::EC2
99
99
  # },
100
100
  # ],
101
101
  # image_id: "ImageId",
102
- # instance_type: "t1.micro", # accepts t1.micro, t2.nano, t2.micro, t2.small, t2.medium, t2.large, t2.xlarge, t2.2xlarge, t3.nano, t3.micro, t3.small, t3.medium, t3.large, t3.xlarge, t3.2xlarge, t3a.nano, t3a.micro, t3a.small, t3a.medium, t3a.large, t3a.xlarge, t3a.2xlarge, t4g.nano, t4g.micro, t4g.small, t4g.medium, t4g.large, t4g.xlarge, t4g.2xlarge, m1.small, m1.medium, m1.large, m1.xlarge, m3.medium, m3.large, m3.xlarge, m3.2xlarge, m4.large, m4.xlarge, m4.2xlarge, m4.4xlarge, m4.10xlarge, m4.16xlarge, m2.xlarge, m2.2xlarge, m2.4xlarge, cr1.8xlarge, r3.large, r3.xlarge, r3.2xlarge, r3.4xlarge, r3.8xlarge, r4.large, r4.xlarge, r4.2xlarge, r4.4xlarge, r4.8xlarge, r4.16xlarge, r5.large, r5.xlarge, r5.2xlarge, r5.4xlarge, r5.8xlarge, r5.12xlarge, r5.16xlarge, r5.24xlarge, r5.metal, r5a.large, r5a.xlarge, r5a.2xlarge, r5a.4xlarge, r5a.8xlarge, r5a.12xlarge, r5a.16xlarge, r5a.24xlarge, r5b.large, r5b.xlarge, r5b.2xlarge, r5b.4xlarge, r5b.8xlarge, r5b.12xlarge, r5b.16xlarge, r5b.24xlarge, r5b.metal, r5d.large, r5d.xlarge, r5d.2xlarge, r5d.4xlarge, r5d.8xlarge, r5d.12xlarge, r5d.16xlarge, r5d.24xlarge, r5d.metal, r5ad.large, r5ad.xlarge, r5ad.2xlarge, r5ad.4xlarge, r5ad.8xlarge, r5ad.12xlarge, r5ad.16xlarge, r5ad.24xlarge, r6g.metal, r6g.medium, r6g.large, r6g.xlarge, r6g.2xlarge, r6g.4xlarge, r6g.8xlarge, r6g.12xlarge, r6g.16xlarge, r6gd.metal, r6gd.medium, r6gd.large, r6gd.xlarge, r6gd.2xlarge, r6gd.4xlarge, r6gd.8xlarge, r6gd.12xlarge, r6gd.16xlarge, x1.16xlarge, x1.32xlarge, x1e.xlarge, x1e.2xlarge, x1e.4xlarge, x1e.8xlarge, x1e.16xlarge, x1e.32xlarge, i2.xlarge, i2.2xlarge, i2.4xlarge, i2.8xlarge, i3.large, i3.xlarge, i3.2xlarge, i3.4xlarge, i3.8xlarge, i3.16xlarge, i3.metal, i3en.large, i3en.xlarge, i3en.2xlarge, i3en.3xlarge, i3en.6xlarge, i3en.12xlarge, i3en.24xlarge, i3en.metal, hi1.4xlarge, hs1.8xlarge, c1.medium, c1.xlarge, c3.large, c3.xlarge, c3.2xlarge, c3.4xlarge, c3.8xlarge, c4.large, c4.xlarge, c4.2xlarge, c4.4xlarge, c4.8xlarge, c5.large, c5.xlarge, c5.2xlarge, c5.4xlarge, c5.9xlarge, c5.12xlarge, c5.18xlarge, c5.24xlarge, c5.metal, c5a.large, c5a.xlarge, c5a.2xlarge, c5a.4xlarge, c5a.8xlarge, c5a.12xlarge, c5a.16xlarge, c5a.24xlarge, c5ad.large, c5ad.xlarge, c5ad.2xlarge, c5ad.4xlarge, c5ad.8xlarge, c5ad.12xlarge, c5ad.16xlarge, c5ad.24xlarge, c5d.large, c5d.xlarge, c5d.2xlarge, c5d.4xlarge, c5d.9xlarge, c5d.12xlarge, c5d.18xlarge, c5d.24xlarge, c5d.metal, c5n.large, c5n.xlarge, c5n.2xlarge, c5n.4xlarge, c5n.9xlarge, c5n.18xlarge, c5n.metal, c6g.metal, c6g.medium, c6g.large, c6g.xlarge, c6g.2xlarge, c6g.4xlarge, c6g.8xlarge, c6g.12xlarge, c6g.16xlarge, c6gd.metal, c6gd.medium, c6gd.large, c6gd.xlarge, c6gd.2xlarge, c6gd.4xlarge, c6gd.8xlarge, c6gd.12xlarge, c6gd.16xlarge, c6gn.medium, c6gn.large, c6gn.xlarge, c6gn.2xlarge, c6gn.4xlarge, c6gn.8xlarge, c6gn.12xlarge, c6gn.16xlarge, cc1.4xlarge, cc2.8xlarge, g2.2xlarge, g2.8xlarge, g3.4xlarge, g3.8xlarge, g3.16xlarge, g3s.xlarge, g4ad.4xlarge, g4ad.8xlarge, g4ad.16xlarge, g4dn.xlarge, g4dn.2xlarge, g4dn.4xlarge, g4dn.8xlarge, g4dn.12xlarge, g4dn.16xlarge, g4dn.metal, cg1.4xlarge, p2.xlarge, p2.8xlarge, p2.16xlarge, p3.2xlarge, p3.8xlarge, p3.16xlarge, p3dn.24xlarge, p4d.24xlarge, d2.xlarge, d2.2xlarge, d2.4xlarge, d2.8xlarge, d3.xlarge, d3.2xlarge, d3.4xlarge, d3.8xlarge, d3en.xlarge, d3en.2xlarge, d3en.4xlarge, d3en.6xlarge, d3en.8xlarge, d3en.12xlarge, f1.2xlarge, f1.4xlarge, f1.16xlarge, m5.large, m5.xlarge, m5.2xlarge, m5.4xlarge, m5.8xlarge, m5.12xlarge, m5.16xlarge, m5.24xlarge, m5.metal, m5a.large, m5a.xlarge, m5a.2xlarge, m5a.4xlarge, m5a.8xlarge, m5a.12xlarge, m5a.16xlarge, m5a.24xlarge, m5d.large, m5d.xlarge, m5d.2xlarge, m5d.4xlarge, m5d.8xlarge, m5d.12xlarge, m5d.16xlarge, m5d.24xlarge, m5d.metal, m5ad.large, m5ad.xlarge, m5ad.2xlarge, m5ad.4xlarge, m5ad.8xlarge, m5ad.12xlarge, m5ad.16xlarge, m5ad.24xlarge, m5zn.large, m5zn.xlarge, m5zn.2xlarge, m5zn.3xlarge, m5zn.6xlarge, m5zn.12xlarge, m5zn.metal, h1.2xlarge, h1.4xlarge, h1.8xlarge, h1.16xlarge, z1d.large, z1d.xlarge, z1d.2xlarge, z1d.3xlarge, z1d.6xlarge, z1d.12xlarge, z1d.metal, u-6tb1.56xlarge, u-6tb1.112xlarge, u-9tb1.112xlarge, u-12tb1.112xlarge, u-6tb1.metal, u-9tb1.metal, u-12tb1.metal, u-18tb1.metal, u-24tb1.metal, a1.medium, a1.large, a1.xlarge, a1.2xlarge, a1.4xlarge, a1.metal, m5dn.large, m5dn.xlarge, m5dn.2xlarge, m5dn.4xlarge, m5dn.8xlarge, m5dn.12xlarge, m5dn.16xlarge, m5dn.24xlarge, m5dn.metal, m5n.large, m5n.xlarge, m5n.2xlarge, m5n.4xlarge, m5n.8xlarge, m5n.12xlarge, m5n.16xlarge, m5n.24xlarge, m5n.metal, r5dn.large, r5dn.xlarge, r5dn.2xlarge, r5dn.4xlarge, r5dn.8xlarge, r5dn.12xlarge, r5dn.16xlarge, r5dn.24xlarge, r5dn.metal, r5n.large, r5n.xlarge, r5n.2xlarge, r5n.4xlarge, r5n.8xlarge, r5n.12xlarge, r5n.16xlarge, r5n.24xlarge, r5n.metal, inf1.xlarge, inf1.2xlarge, inf1.6xlarge, inf1.24xlarge, m6g.metal, m6g.medium, m6g.large, m6g.xlarge, m6g.2xlarge, m6g.4xlarge, m6g.8xlarge, m6g.12xlarge, m6g.16xlarge, m6gd.metal, m6gd.medium, m6gd.large, m6gd.xlarge, m6gd.2xlarge, m6gd.4xlarge, m6gd.8xlarge, m6gd.12xlarge, m6gd.16xlarge, mac1.metal, x2gd.medium, x2gd.large, x2gd.xlarge, x2gd.2xlarge, x2gd.4xlarge, x2gd.8xlarge, x2gd.12xlarge, x2gd.16xlarge, x2gd.metal
102
+ # instance_type: "t1.micro", # accepts t1.micro, t2.nano, t2.micro, t2.small, t2.medium, t2.large, t2.xlarge, t2.2xlarge, t3.nano, t3.micro, t3.small, t3.medium, t3.large, t3.xlarge, t3.2xlarge, t3a.nano, t3a.micro, t3a.small, t3a.medium, t3a.large, t3a.xlarge, t3a.2xlarge, t4g.nano, t4g.micro, t4g.small, t4g.medium, t4g.large, t4g.xlarge, t4g.2xlarge, m1.small, m1.medium, m1.large, m1.xlarge, m3.medium, m3.large, m3.xlarge, m3.2xlarge, m4.large, m4.xlarge, m4.2xlarge, m4.4xlarge, m4.10xlarge, m4.16xlarge, m2.xlarge, m2.2xlarge, m2.4xlarge, cr1.8xlarge, r3.large, r3.xlarge, r3.2xlarge, r3.4xlarge, r3.8xlarge, r4.large, r4.xlarge, r4.2xlarge, r4.4xlarge, r4.8xlarge, r4.16xlarge, r5.large, r5.xlarge, r5.2xlarge, r5.4xlarge, r5.8xlarge, r5.12xlarge, r5.16xlarge, r5.24xlarge, r5.metal, r5a.large, r5a.xlarge, r5a.2xlarge, r5a.4xlarge, r5a.8xlarge, r5a.12xlarge, r5a.16xlarge, r5a.24xlarge, r5b.large, r5b.xlarge, r5b.2xlarge, r5b.4xlarge, r5b.8xlarge, r5b.12xlarge, r5b.16xlarge, r5b.24xlarge, r5b.metal, r5d.large, r5d.xlarge, r5d.2xlarge, r5d.4xlarge, r5d.8xlarge, r5d.12xlarge, r5d.16xlarge, r5d.24xlarge, r5d.metal, r5ad.large, r5ad.xlarge, r5ad.2xlarge, r5ad.4xlarge, r5ad.8xlarge, r5ad.12xlarge, r5ad.16xlarge, r5ad.24xlarge, r6g.metal, r6g.medium, r6g.large, r6g.xlarge, r6g.2xlarge, r6g.4xlarge, r6g.8xlarge, r6g.12xlarge, r6g.16xlarge, r6gd.metal, r6gd.medium, r6gd.large, r6gd.xlarge, r6gd.2xlarge, r6gd.4xlarge, r6gd.8xlarge, r6gd.12xlarge, r6gd.16xlarge, x1.16xlarge, x1.32xlarge, x1e.xlarge, x1e.2xlarge, x1e.4xlarge, x1e.8xlarge, x1e.16xlarge, x1e.32xlarge, i2.xlarge, i2.2xlarge, i2.4xlarge, i2.8xlarge, i3.large, i3.xlarge, i3.2xlarge, i3.4xlarge, i3.8xlarge, i3.16xlarge, i3.metal, i3en.large, i3en.xlarge, i3en.2xlarge, i3en.3xlarge, i3en.6xlarge, i3en.12xlarge, i3en.24xlarge, i3en.metal, hi1.4xlarge, hs1.8xlarge, c1.medium, c1.xlarge, c3.large, c3.xlarge, c3.2xlarge, c3.4xlarge, c3.8xlarge, c4.large, c4.xlarge, c4.2xlarge, c4.4xlarge, c4.8xlarge, c5.large, c5.xlarge, c5.2xlarge, c5.4xlarge, c5.9xlarge, c5.12xlarge, c5.18xlarge, c5.24xlarge, c5.metal, c5a.large, c5a.xlarge, c5a.2xlarge, c5a.4xlarge, c5a.8xlarge, c5a.12xlarge, c5a.16xlarge, c5a.24xlarge, c5ad.large, c5ad.xlarge, c5ad.2xlarge, c5ad.4xlarge, c5ad.8xlarge, c5ad.12xlarge, c5ad.16xlarge, c5ad.24xlarge, c5d.large, c5d.xlarge, c5d.2xlarge, c5d.4xlarge, c5d.9xlarge, c5d.12xlarge, c5d.18xlarge, c5d.24xlarge, c5d.metal, c5n.large, c5n.xlarge, c5n.2xlarge, c5n.4xlarge, c5n.9xlarge, c5n.18xlarge, c5n.metal, c6g.metal, c6g.medium, c6g.large, c6g.xlarge, c6g.2xlarge, c6g.4xlarge, c6g.8xlarge, c6g.12xlarge, c6g.16xlarge, c6gd.metal, c6gd.medium, c6gd.large, c6gd.xlarge, c6gd.2xlarge, c6gd.4xlarge, c6gd.8xlarge, c6gd.12xlarge, c6gd.16xlarge, c6gn.medium, c6gn.large, c6gn.xlarge, c6gn.2xlarge, c6gn.4xlarge, c6gn.8xlarge, c6gn.12xlarge, c6gn.16xlarge, cc1.4xlarge, cc2.8xlarge, g2.2xlarge, g2.8xlarge, g3.4xlarge, g3.8xlarge, g3.16xlarge, g3s.xlarge, g4ad.xlarge, g4ad.2xlarge, g4ad.4xlarge, g4ad.8xlarge, g4ad.16xlarge, g4dn.xlarge, g4dn.2xlarge, g4dn.4xlarge, g4dn.8xlarge, g4dn.12xlarge, g4dn.16xlarge, g4dn.metal, cg1.4xlarge, p2.xlarge, p2.8xlarge, p2.16xlarge, p3.2xlarge, p3.8xlarge, p3.16xlarge, p3dn.24xlarge, p4d.24xlarge, d2.xlarge, d2.2xlarge, d2.4xlarge, d2.8xlarge, d3.xlarge, d3.2xlarge, d3.4xlarge, d3.8xlarge, d3en.xlarge, d3en.2xlarge, d3en.4xlarge, d3en.6xlarge, d3en.8xlarge, d3en.12xlarge, f1.2xlarge, f1.4xlarge, f1.16xlarge, m5.large, m5.xlarge, m5.2xlarge, m5.4xlarge, m5.8xlarge, m5.12xlarge, m5.16xlarge, m5.24xlarge, m5.metal, m5a.large, m5a.xlarge, m5a.2xlarge, m5a.4xlarge, m5a.8xlarge, m5a.12xlarge, m5a.16xlarge, m5a.24xlarge, m5d.large, m5d.xlarge, m5d.2xlarge, m5d.4xlarge, m5d.8xlarge, m5d.12xlarge, m5d.16xlarge, m5d.24xlarge, m5d.metal, m5ad.large, m5ad.xlarge, m5ad.2xlarge, m5ad.4xlarge, m5ad.8xlarge, m5ad.12xlarge, m5ad.16xlarge, m5ad.24xlarge, m5zn.large, m5zn.xlarge, m5zn.2xlarge, m5zn.3xlarge, m5zn.6xlarge, m5zn.12xlarge, m5zn.metal, h1.2xlarge, h1.4xlarge, h1.8xlarge, h1.16xlarge, z1d.large, z1d.xlarge, z1d.2xlarge, z1d.3xlarge, z1d.6xlarge, z1d.12xlarge, z1d.metal, u-6tb1.56xlarge, u-6tb1.112xlarge, u-9tb1.112xlarge, u-12tb1.112xlarge, u-6tb1.metal, u-9tb1.metal, u-12tb1.metal, u-18tb1.metal, u-24tb1.metal, a1.medium, a1.large, a1.xlarge, a1.2xlarge, a1.4xlarge, a1.metal, m5dn.large, m5dn.xlarge, m5dn.2xlarge, m5dn.4xlarge, m5dn.8xlarge, m5dn.12xlarge, m5dn.16xlarge, m5dn.24xlarge, m5dn.metal, m5n.large, m5n.xlarge, m5n.2xlarge, m5n.4xlarge, m5n.8xlarge, m5n.12xlarge, m5n.16xlarge, m5n.24xlarge, m5n.metal, r5dn.large, r5dn.xlarge, r5dn.2xlarge, r5dn.4xlarge, r5dn.8xlarge, r5dn.12xlarge, r5dn.16xlarge, r5dn.24xlarge, r5dn.metal, r5n.large, r5n.xlarge, r5n.2xlarge, r5n.4xlarge, r5n.8xlarge, r5n.12xlarge, r5n.16xlarge, r5n.24xlarge, r5n.metal, inf1.xlarge, inf1.2xlarge, inf1.6xlarge, inf1.24xlarge, m6g.metal, m6g.medium, m6g.large, m6g.xlarge, m6g.2xlarge, m6g.4xlarge, m6g.8xlarge, m6g.12xlarge, m6g.16xlarge, m6gd.metal, m6gd.medium, m6gd.large, m6gd.xlarge, m6gd.2xlarge, m6gd.4xlarge, m6gd.8xlarge, m6gd.12xlarge, m6gd.16xlarge, mac1.metal, x2gd.medium, x2gd.large, x2gd.xlarge, x2gd.2xlarge, x2gd.4xlarge, x2gd.8xlarge, x2gd.12xlarge, x2gd.16xlarge, x2gd.metal
103
103
  # ipv_6_address_count: 1,
104
104
  # ipv_6_addresses: [
105
105
  # {
@@ -597,6 +597,7 @@ module Aws::EC2
597
597
  # keypair = ec2.create_key_pair({
598
598
  # key_name: "String", # required
599
599
  # dry_run: false,
600
+ # key_type: "rsa", # accepts rsa, ed25519
600
601
  # tag_specifications: [
601
602
  # {
602
603
  # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
@@ -619,6 +620,11 @@ module Aws::EC2
619
620
  # without actually making the request, and provides an error response.
620
621
  # If you have the required permissions, the error response is
621
622
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
623
+ # @option options [String] :key_type
624
+ # The type of key pair. Note that ED25519 keys are not supported for
625
+ # Windows instances, EC2 Instance Connect, and EC2 Serial Console.
626
+ #
627
+ # Default: `rsa`
622
628
  # @option options [Array<Types::TagSpecification>] :tag_specifications
623
629
  # The tags to apply to the new key pair.
624
630
  # @return [KeyPair]
@@ -1494,9 +1500,9 @@ module Aws::EC2
1494
1500
  # If you have the required permissions, the error response is
1495
1501
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
1496
1502
  # @option options [String] :peer_owner_id
1497
- # The account ID of the owner of the accepter VPC.
1503
+ # The Amazon Web Services account ID of the owner of the accepter VPC.
1498
1504
  #
1499
- # Default: Your account ID
1505
+ # Default: Your Amazon Web Services account ID
1500
1506
  # @option options [String] :peer_vpc_id
1501
1507
  # The ID of the VPC with which you are creating the VPC peering
1502
1508
  # connection. You must specify this parameter in the request.
@@ -1741,7 +1747,8 @@ module Aws::EC2
1741
1747
  # * `network-interface-id` - \[EC2-VPC\] The ID of the network interface
1742
1748
  # that the address is associated with, if any.
1743
1749
  #
1744
- # * `network-interface-owner-id` - The account ID of the owner.
1750
+ # * `network-interface-owner-id` - The Amazon Web Services account ID of
1751
+ # the owner.
1745
1752
  #
1746
1753
  # * `private-ip-address` - \[EC2-VPC\] The private IP address associated
1747
1754
  # with the Elastic IP address.
@@ -1824,7 +1831,8 @@ module Aws::EC2
1824
1831
  #
1825
1832
  # * `value` - The value for one of the options.
1826
1833
  #
1827
- # * `owner-id` - The ID of the account that owns the DHCP options set.
1834
+ # * `owner-id` - The ID of the Amazon Web Services account that owns the
1835
+ # DHCP options set.
1828
1836
  #
1829
1837
  # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned to
1830
1838
  # the resource. Use the tag key in the filter name and the tag value
@@ -2242,7 +2250,8 @@ module Aws::EC2
2242
2250
  #
2243
2251
  # * `outpost-arn` - The Amazon Resource Name (ARN) of the Outpost.
2244
2252
  #
2245
- # * `owner-id` - The account ID of the instance owner.
2253
+ # * `owner-id` - The Amazon Web Services account ID of the instance
2254
+ # owner.
2246
2255
  #
2247
2256
  # * `placement-group-name` - The name of the placement group for the
2248
2257
  # instance.
@@ -2270,8 +2279,8 @@ module Aws::EC2
2270
2279
  # terminate the instance). Similar to the state-reason-code filter.
2271
2280
  #
2272
2281
  # * `requester-id` - The ID of the entity that launched the instance on
2273
- # your behalf (for example, Management Console, Auto Scaling, and so
2274
- # on).
2282
+ # your behalf (for example, Amazon Web Services Management Console,
2283
+ # Auto Scaling, and so on).
2275
2284
  #
2276
2285
  # * `reservation-id` - The ID of the instance's reservation. A
2277
2286
  # reservation ID is created any time you launch an instance. A
@@ -2382,7 +2391,8 @@ module Aws::EC2
2382
2391
  #
2383
2392
  # * `internet-gateway-id` - The ID of the Internet gateway.
2384
2393
  #
2385
- # * `owner-id` - The ID of the account that owns the internet gateway.
2394
+ # * `owner-id` - The ID of the Amazon Web Services account that owns the
2395
+ # internet gateway.
2386
2396
  #
2387
2397
  # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned to
2388
2398
  # the resource. Use the tag key in the filter name and the tag value
@@ -2621,7 +2631,8 @@ module Aws::EC2
2621
2631
  #
2622
2632
  # * `network-acl-id` - The ID of the network ACL.
2623
2633
  #
2624
- # * `owner-id` - The ID of the account that owns the network ACL.
2634
+ # * `owner-id` - The ID of the Amazon Web Services account that owns the
2635
+ # network ACL.
2625
2636
  #
2626
2637
  # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned to
2627
2638
  # the resource. Use the tag key in the filter name and the tag value
@@ -2753,7 +2764,8 @@ module Aws::EC2
2753
2764
  #
2754
2765
  # * `network-interface-id` - The ID of the network interface.
2755
2766
  #
2756
- # * `owner-id` - The account ID of the network interface owner.
2767
+ # * `owner-id` - The Amazon Web Services account ID of the network
2768
+ # interface owner.
2757
2769
  #
2758
2770
  # * `private-ip-address` - The private IPv4 address or addresses of the
2759
2771
  # network interface.
@@ -2761,12 +2773,12 @@ module Aws::EC2
2761
2773
  # * `private-dns-name` - The private DNS name of the network interface
2762
2774
  # (IPv4).
2763
2775
  #
2764
- # * `requester-id` - The alias or account ID of the principal or service
2765
- # that created the network interface.
2776
+ # * `requester-id` - The alias or Amazon Web Services account ID of the
2777
+ # principal or service that created the network interface.
2766
2778
  #
2767
2779
  # * `requester-managed` - Indicates whether the network interface is
2768
- # being managed by an Amazon Web Service (for example, Management
2769
- # Console, Auto Scaling, and so on).
2780
+ # being managed by an Amazon Web Service (for example, Amazon Web
2781
+ # Services Management Console, Auto Scaling, and so on).
2770
2782
  #
2771
2783
  # * `source-dest-check` - Indicates whether the network interface
2772
2784
  # performs source/destination checking. A value of `true` means
@@ -2939,7 +2951,8 @@ module Aws::EC2
2939
2951
  # route table for the VPC (`true` \| `false`). Route tables that do
2940
2952
  # not have an association ID are not returned in the response.
2941
2953
  #
2942
- # * `owner-id` - The ID of the account that owns the route table.
2954
+ # * `owner-id` - The ID of the Amazon Web Services account that owns the
2955
+ # route table.
2943
2956
  #
2944
2957
  # * `route-table-id` - The ID of the route table.
2945
2958
  #
@@ -3194,13 +3207,13 @@ module Aws::EC2
3194
3207
  # `false`)
3195
3208
  #
3196
3209
  # * `owner-alias` - The owner alias, from an Amazon-maintained list
3197
- # (`amazon`). This is not the user-configured account alias set using
3198
- # the IAM console. We recommend that you use the related parameter
3199
- # instead of this filter.
3200
- #
3201
- # * `owner-id` - The account ID of the owner. We recommend that you use
3210
+ # (`amazon`). This is not the user-configured Amazon Web Services
3211
+ # account alias set using the IAM console. We recommend that you use
3202
3212
  # the related parameter instead of this filter.
3203
3213
  #
3214
+ # * `owner-id` - The Amazon Web Services account ID of the owner. We
3215
+ # recommend that you use the related parameter instead of this filter.
3216
+ #
3204
3217
  # * `progress` - The progress of the snapshot, as a percentage (for
3205
3218
  # example, 80%).
3206
3219
  #
@@ -3226,9 +3239,11 @@ module Aws::EC2
3226
3239
  # * `volume-size` - The size of the volume, in GiB.
3227
3240
  # @option options [Array<String>] :owner_ids
3228
3241
  # Scopes the results to snapshots with the specified owners. You can
3229
- # specify a combination of account IDs, `self`, and `amazon`.
3242
+ # specify a combination of Amazon Web Services account IDs, `self`, and
3243
+ # `amazon`.
3230
3244
  # @option options [Array<String>] :restorable_by_user_ids
3231
- # The IDs of the accounts that can create volumes from the snapshot.
3245
+ # The IDs of the Amazon Web Services accounts that can create volumes
3246
+ # from the snapshot.
3232
3247
  # @option options [Array<String>] :snapshot_ids
3233
3248
  # The snapshot IDs.
3234
3249
  #
@@ -3312,7 +3327,8 @@ module Aws::EC2
3312
3327
  #
3313
3328
  # * `outpost-arn` - The Amazon Resource Name (ARN) of the Outpost.
3314
3329
  #
3315
- # * `owner-id` - The ID of the account that owns the subnet.
3330
+ # * `owner-id` - The ID of the Amazon Web Services account that owns the
3331
+ # subnet.
3316
3332
  #
3317
3333
  # * `state` - The state of the subnet (`pending` \| `available`).
3318
3334
  #
@@ -3504,7 +3520,8 @@ module Aws::EC2
3504
3520
  # * `network-interface-id` - \[EC2-VPC\] The ID of the network interface
3505
3521
  # that the address is associated with, if any.
3506
3522
  #
3507
- # * `network-interface-owner-id` - The account ID of the owner.
3523
+ # * `network-interface-owner-id` - The Amazon Web Services account ID of
3524
+ # the owner.
3508
3525
  #
3509
3526
  # * `private-ip-address` - \[EC2-VPC\] The private IP address associated
3510
3527
  # with the Elastic IP address.
@@ -3580,8 +3597,8 @@ module Aws::EC2
3580
3597
  # * `accepter-vpc-info.cidr-block` - The IPv4 CIDR block of the accepter
3581
3598
  # VPC.
3582
3599
  #
3583
- # * `accepter-vpc-info.owner-id` - The ID of the account that owns the
3584
- # accepter VPC.
3600
+ # * `accepter-vpc-info.owner-id` - The ID of the Amazon Web Services
3601
+ # account that owns the accepter VPC.
3585
3602
  #
3586
3603
  # * `accepter-vpc-info.vpc-id` - The ID of the accepter VPC.
3587
3604
  #
@@ -3591,8 +3608,8 @@ module Aws::EC2
3591
3608
  # * `requester-vpc-info.cidr-block` - The IPv4 CIDR block of the
3592
3609
  # requester's VPC.
3593
3610
  #
3594
- # * `requester-vpc-info.owner-id` - The ID of the account that owns the
3595
- # requester VPC.
3611
+ # * `requester-vpc-info.owner-id` - The ID of the Amazon Web Services
3612
+ # account that owns the requester VPC.
3596
3613
  #
3597
3614
  # * `requester-vpc-info.vpc-id` - The ID of the requester VPC.
3598
3615
  #
@@ -3688,7 +3705,8 @@ module Aws::EC2
3688
3705
  #
3689
3706
  # * `is-default` - Indicates whether the VPC is the default VPC.
3690
3707
  #
3691
- # * `owner-id` - The ID of the account that owns the VPC.
3708
+ # * `owner-id` - The ID of the Amazon Web Services account that owns the
3709
+ # VPC.
3692
3710
  #
3693
3711
  # * `state` - The state of the VPC (`pending` \| `available`).
3694
3712
  #
@@ -72,7 +72,7 @@ module Aws::EC2
72
72
  data[:instance_id]
73
73
  end
74
74
 
75
- # The ID of account that owns the instance.
75
+ # The ID of Amazon Web Services account that owns the instance.
76
76
  # @return [String]
77
77
  def instance_owner_id
78
78
  data[:instance_owner_id]
@@ -53,7 +53,7 @@ module Aws::EC2
53
53
  data[:vpc_id]
54
54
  end
55
55
 
56
- # The ID of the account that owns the route table.
56
+ # The ID of the Amazon Web Services account that owns the route table.
57
57
  # @return [String]
58
58
  def owner_id
59
59
  data[:owner_id]
@@ -67,7 +67,7 @@ module Aws::EC2
67
67
  data[:kms_key_id]
68
68
  end
69
69
 
70
- # The ID of the account that owns the EBS snapshot.
70
+ # The ID of the Amazon Web Services account that owns the EBS snapshot.
71
71
  # @return [String]
72
72
  def owner_id
73
73
  data[:owner_id]
@@ -116,8 +116,8 @@ module Aws::EC2
116
116
  end
117
117
 
118
118
  # The Amazon Web Services owner alias, from an Amazon-maintained list
119
- # (`amazon`). This is not the user-configured account alias set using
120
- # the IAM console.
119
+ # (`amazon`). This is not the user-configured Amazon Web Services
120
+ # account alias set using the IAM console.
121
121
  # @return [String]
122
122
  def owner_alias
123
123
  data[:owner_alias]
@@ -100,7 +100,7 @@ module Aws::EC2
100
100
  data[:vpc_id]
101
101
  end
102
102
 
103
- # The ID of the account that owns the subnet.
103
+ # The ID of the Amazon Web Services account that owns the subnet.
104
104
  # @return [String]
105
105
  def owner_id
106
106
  data[:owner_id]
@@ -294,7 +294,7 @@ module Aws::EC2
294
294
  # },
295
295
  # ],
296
296
  # image_id: "ImageId",
297
- # instance_type: "t1.micro", # accepts t1.micro, t2.nano, t2.micro, t2.small, t2.medium, t2.large, t2.xlarge, t2.2xlarge, t3.nano, t3.micro, t3.small, t3.medium, t3.large, t3.xlarge, t3.2xlarge, t3a.nano, t3a.micro, t3a.small, t3a.medium, t3a.large, t3a.xlarge, t3a.2xlarge, t4g.nano, t4g.micro, t4g.small, t4g.medium, t4g.large, t4g.xlarge, t4g.2xlarge, m1.small, m1.medium, m1.large, m1.xlarge, m3.medium, m3.large, m3.xlarge, m3.2xlarge, m4.large, m4.xlarge, m4.2xlarge, m4.4xlarge, m4.10xlarge, m4.16xlarge, m2.xlarge, m2.2xlarge, m2.4xlarge, cr1.8xlarge, r3.large, r3.xlarge, r3.2xlarge, r3.4xlarge, r3.8xlarge, r4.large, r4.xlarge, r4.2xlarge, r4.4xlarge, r4.8xlarge, r4.16xlarge, r5.large, r5.xlarge, r5.2xlarge, r5.4xlarge, r5.8xlarge, r5.12xlarge, r5.16xlarge, r5.24xlarge, r5.metal, r5a.large, r5a.xlarge, r5a.2xlarge, r5a.4xlarge, r5a.8xlarge, r5a.12xlarge, r5a.16xlarge, r5a.24xlarge, r5b.large, r5b.xlarge, r5b.2xlarge, r5b.4xlarge, r5b.8xlarge, r5b.12xlarge, r5b.16xlarge, r5b.24xlarge, r5b.metal, r5d.large, r5d.xlarge, r5d.2xlarge, r5d.4xlarge, r5d.8xlarge, r5d.12xlarge, r5d.16xlarge, r5d.24xlarge, r5d.metal, r5ad.large, r5ad.xlarge, r5ad.2xlarge, r5ad.4xlarge, r5ad.8xlarge, r5ad.12xlarge, r5ad.16xlarge, r5ad.24xlarge, r6g.metal, r6g.medium, r6g.large, r6g.xlarge, r6g.2xlarge, r6g.4xlarge, r6g.8xlarge, r6g.12xlarge, r6g.16xlarge, r6gd.metal, r6gd.medium, r6gd.large, r6gd.xlarge, r6gd.2xlarge, r6gd.4xlarge, r6gd.8xlarge, r6gd.12xlarge, r6gd.16xlarge, x1.16xlarge, x1.32xlarge, x1e.xlarge, x1e.2xlarge, x1e.4xlarge, x1e.8xlarge, x1e.16xlarge, x1e.32xlarge, i2.xlarge, i2.2xlarge, i2.4xlarge, i2.8xlarge, i3.large, i3.xlarge, i3.2xlarge, i3.4xlarge, i3.8xlarge, i3.16xlarge, i3.metal, i3en.large, i3en.xlarge, i3en.2xlarge, i3en.3xlarge, i3en.6xlarge, i3en.12xlarge, i3en.24xlarge, i3en.metal, hi1.4xlarge, hs1.8xlarge, c1.medium, c1.xlarge, c3.large, c3.xlarge, c3.2xlarge, c3.4xlarge, c3.8xlarge, c4.large, c4.xlarge, c4.2xlarge, c4.4xlarge, c4.8xlarge, c5.large, c5.xlarge, c5.2xlarge, c5.4xlarge, c5.9xlarge, c5.12xlarge, c5.18xlarge, c5.24xlarge, c5.metal, c5a.large, c5a.xlarge, c5a.2xlarge, c5a.4xlarge, c5a.8xlarge, c5a.12xlarge, c5a.16xlarge, c5a.24xlarge, c5ad.large, c5ad.xlarge, c5ad.2xlarge, c5ad.4xlarge, c5ad.8xlarge, c5ad.12xlarge, c5ad.16xlarge, c5ad.24xlarge, c5d.large, c5d.xlarge, c5d.2xlarge, c5d.4xlarge, c5d.9xlarge, c5d.12xlarge, c5d.18xlarge, c5d.24xlarge, c5d.metal, c5n.large, c5n.xlarge, c5n.2xlarge, c5n.4xlarge, c5n.9xlarge, c5n.18xlarge, c5n.metal, c6g.metal, c6g.medium, c6g.large, c6g.xlarge, c6g.2xlarge, c6g.4xlarge, c6g.8xlarge, c6g.12xlarge, c6g.16xlarge, c6gd.metal, c6gd.medium, c6gd.large, c6gd.xlarge, c6gd.2xlarge, c6gd.4xlarge, c6gd.8xlarge, c6gd.12xlarge, c6gd.16xlarge, c6gn.medium, c6gn.large, c6gn.xlarge, c6gn.2xlarge, c6gn.4xlarge, c6gn.8xlarge, c6gn.12xlarge, c6gn.16xlarge, cc1.4xlarge, cc2.8xlarge, g2.2xlarge, g2.8xlarge, g3.4xlarge, g3.8xlarge, g3.16xlarge, g3s.xlarge, g4ad.4xlarge, g4ad.8xlarge, g4ad.16xlarge, g4dn.xlarge, g4dn.2xlarge, g4dn.4xlarge, g4dn.8xlarge, g4dn.12xlarge, g4dn.16xlarge, g4dn.metal, cg1.4xlarge, p2.xlarge, p2.8xlarge, p2.16xlarge, p3.2xlarge, p3.8xlarge, p3.16xlarge, p3dn.24xlarge, p4d.24xlarge, d2.xlarge, d2.2xlarge, d2.4xlarge, d2.8xlarge, d3.xlarge, d3.2xlarge, d3.4xlarge, d3.8xlarge, d3en.xlarge, d3en.2xlarge, d3en.4xlarge, d3en.6xlarge, d3en.8xlarge, d3en.12xlarge, f1.2xlarge, f1.4xlarge, f1.16xlarge, m5.large, m5.xlarge, m5.2xlarge, m5.4xlarge, m5.8xlarge, m5.12xlarge, m5.16xlarge, m5.24xlarge, m5.metal, m5a.large, m5a.xlarge, m5a.2xlarge, m5a.4xlarge, m5a.8xlarge, m5a.12xlarge, m5a.16xlarge, m5a.24xlarge, m5d.large, m5d.xlarge, m5d.2xlarge, m5d.4xlarge, m5d.8xlarge, m5d.12xlarge, m5d.16xlarge, m5d.24xlarge, m5d.metal, m5ad.large, m5ad.xlarge, m5ad.2xlarge, m5ad.4xlarge, m5ad.8xlarge, m5ad.12xlarge, m5ad.16xlarge, m5ad.24xlarge, m5zn.large, m5zn.xlarge, m5zn.2xlarge, m5zn.3xlarge, m5zn.6xlarge, m5zn.12xlarge, m5zn.metal, h1.2xlarge, h1.4xlarge, h1.8xlarge, h1.16xlarge, z1d.large, z1d.xlarge, z1d.2xlarge, z1d.3xlarge, z1d.6xlarge, z1d.12xlarge, z1d.metal, u-6tb1.56xlarge, u-6tb1.112xlarge, u-9tb1.112xlarge, u-12tb1.112xlarge, u-6tb1.metal, u-9tb1.metal, u-12tb1.metal, u-18tb1.metal, u-24tb1.metal, a1.medium, a1.large, a1.xlarge, a1.2xlarge, a1.4xlarge, a1.metal, m5dn.large, m5dn.xlarge, m5dn.2xlarge, m5dn.4xlarge, m5dn.8xlarge, m5dn.12xlarge, m5dn.16xlarge, m5dn.24xlarge, m5dn.metal, m5n.large, m5n.xlarge, m5n.2xlarge, m5n.4xlarge, m5n.8xlarge, m5n.12xlarge, m5n.16xlarge, m5n.24xlarge, m5n.metal, r5dn.large, r5dn.xlarge, r5dn.2xlarge, r5dn.4xlarge, r5dn.8xlarge, r5dn.12xlarge, r5dn.16xlarge, r5dn.24xlarge, r5dn.metal, r5n.large, r5n.xlarge, r5n.2xlarge, r5n.4xlarge, r5n.8xlarge, r5n.12xlarge, r5n.16xlarge, r5n.24xlarge, r5n.metal, inf1.xlarge, inf1.2xlarge, inf1.6xlarge, inf1.24xlarge, m6g.metal, m6g.medium, m6g.large, m6g.xlarge, m6g.2xlarge, m6g.4xlarge, m6g.8xlarge, m6g.12xlarge, m6g.16xlarge, m6gd.metal, m6gd.medium, m6gd.large, m6gd.xlarge, m6gd.2xlarge, m6gd.4xlarge, m6gd.8xlarge, m6gd.12xlarge, m6gd.16xlarge, mac1.metal, x2gd.medium, x2gd.large, x2gd.xlarge, x2gd.2xlarge, x2gd.4xlarge, x2gd.8xlarge, x2gd.12xlarge, x2gd.16xlarge, x2gd.metal
297
+ # instance_type: "t1.micro", # accepts t1.micro, t2.nano, t2.micro, t2.small, t2.medium, t2.large, t2.xlarge, t2.2xlarge, t3.nano, t3.micro, t3.small, t3.medium, t3.large, t3.xlarge, t3.2xlarge, t3a.nano, t3a.micro, t3a.small, t3a.medium, t3a.large, t3a.xlarge, t3a.2xlarge, t4g.nano, t4g.micro, t4g.small, t4g.medium, t4g.large, t4g.xlarge, t4g.2xlarge, m1.small, m1.medium, m1.large, m1.xlarge, m3.medium, m3.large, m3.xlarge, m3.2xlarge, m4.large, m4.xlarge, m4.2xlarge, m4.4xlarge, m4.10xlarge, m4.16xlarge, m2.xlarge, m2.2xlarge, m2.4xlarge, cr1.8xlarge, r3.large, r3.xlarge, r3.2xlarge, r3.4xlarge, r3.8xlarge, r4.large, r4.xlarge, r4.2xlarge, r4.4xlarge, r4.8xlarge, r4.16xlarge, r5.large, r5.xlarge, r5.2xlarge, r5.4xlarge, r5.8xlarge, r5.12xlarge, r5.16xlarge, r5.24xlarge, r5.metal, r5a.large, r5a.xlarge, r5a.2xlarge, r5a.4xlarge, r5a.8xlarge, r5a.12xlarge, r5a.16xlarge, r5a.24xlarge, r5b.large, r5b.xlarge, r5b.2xlarge, r5b.4xlarge, r5b.8xlarge, r5b.12xlarge, r5b.16xlarge, r5b.24xlarge, r5b.metal, r5d.large, r5d.xlarge, r5d.2xlarge, r5d.4xlarge, r5d.8xlarge, r5d.12xlarge, r5d.16xlarge, r5d.24xlarge, r5d.metal, r5ad.large, r5ad.xlarge, r5ad.2xlarge, r5ad.4xlarge, r5ad.8xlarge, r5ad.12xlarge, r5ad.16xlarge, r5ad.24xlarge, r6g.metal, r6g.medium, r6g.large, r6g.xlarge, r6g.2xlarge, r6g.4xlarge, r6g.8xlarge, r6g.12xlarge, r6g.16xlarge, r6gd.metal, r6gd.medium, r6gd.large, r6gd.xlarge, r6gd.2xlarge, r6gd.4xlarge, r6gd.8xlarge, r6gd.12xlarge, r6gd.16xlarge, x1.16xlarge, x1.32xlarge, x1e.xlarge, x1e.2xlarge, x1e.4xlarge, x1e.8xlarge, x1e.16xlarge, x1e.32xlarge, i2.xlarge, i2.2xlarge, i2.4xlarge, i2.8xlarge, i3.large, i3.xlarge, i3.2xlarge, i3.4xlarge, i3.8xlarge, i3.16xlarge, i3.metal, i3en.large, i3en.xlarge, i3en.2xlarge, i3en.3xlarge, i3en.6xlarge, i3en.12xlarge, i3en.24xlarge, i3en.metal, hi1.4xlarge, hs1.8xlarge, c1.medium, c1.xlarge, c3.large, c3.xlarge, c3.2xlarge, c3.4xlarge, c3.8xlarge, c4.large, c4.xlarge, c4.2xlarge, c4.4xlarge, c4.8xlarge, c5.large, c5.xlarge, c5.2xlarge, c5.4xlarge, c5.9xlarge, c5.12xlarge, c5.18xlarge, c5.24xlarge, c5.metal, c5a.large, c5a.xlarge, c5a.2xlarge, c5a.4xlarge, c5a.8xlarge, c5a.12xlarge, c5a.16xlarge, c5a.24xlarge, c5ad.large, c5ad.xlarge, c5ad.2xlarge, c5ad.4xlarge, c5ad.8xlarge, c5ad.12xlarge, c5ad.16xlarge, c5ad.24xlarge, c5d.large, c5d.xlarge, c5d.2xlarge, c5d.4xlarge, c5d.9xlarge, c5d.12xlarge, c5d.18xlarge, c5d.24xlarge, c5d.metal, c5n.large, c5n.xlarge, c5n.2xlarge, c5n.4xlarge, c5n.9xlarge, c5n.18xlarge, c5n.metal, c6g.metal, c6g.medium, c6g.large, c6g.xlarge, c6g.2xlarge, c6g.4xlarge, c6g.8xlarge, c6g.12xlarge, c6g.16xlarge, c6gd.metal, c6gd.medium, c6gd.large, c6gd.xlarge, c6gd.2xlarge, c6gd.4xlarge, c6gd.8xlarge, c6gd.12xlarge, c6gd.16xlarge, c6gn.medium, c6gn.large, c6gn.xlarge, c6gn.2xlarge, c6gn.4xlarge, c6gn.8xlarge, c6gn.12xlarge, c6gn.16xlarge, cc1.4xlarge, cc2.8xlarge, g2.2xlarge, g2.8xlarge, g3.4xlarge, g3.8xlarge, g3.16xlarge, g3s.xlarge, g4ad.xlarge, g4ad.2xlarge, g4ad.4xlarge, g4ad.8xlarge, g4ad.16xlarge, g4dn.xlarge, g4dn.2xlarge, g4dn.4xlarge, g4dn.8xlarge, g4dn.12xlarge, g4dn.16xlarge, g4dn.metal, cg1.4xlarge, p2.xlarge, p2.8xlarge, p2.16xlarge, p3.2xlarge, p3.8xlarge, p3.16xlarge, p3dn.24xlarge, p4d.24xlarge, d2.xlarge, d2.2xlarge, d2.4xlarge, d2.8xlarge, d3.xlarge, d3.2xlarge, d3.4xlarge, d3.8xlarge, d3en.xlarge, d3en.2xlarge, d3en.4xlarge, d3en.6xlarge, d3en.8xlarge, d3en.12xlarge, f1.2xlarge, f1.4xlarge, f1.16xlarge, m5.large, m5.xlarge, m5.2xlarge, m5.4xlarge, m5.8xlarge, m5.12xlarge, m5.16xlarge, m5.24xlarge, m5.metal, m5a.large, m5a.xlarge, m5a.2xlarge, m5a.4xlarge, m5a.8xlarge, m5a.12xlarge, m5a.16xlarge, m5a.24xlarge, m5d.large, m5d.xlarge, m5d.2xlarge, m5d.4xlarge, m5d.8xlarge, m5d.12xlarge, m5d.16xlarge, m5d.24xlarge, m5d.metal, m5ad.large, m5ad.xlarge, m5ad.2xlarge, m5ad.4xlarge, m5ad.8xlarge, m5ad.12xlarge, m5ad.16xlarge, m5ad.24xlarge, m5zn.large, m5zn.xlarge, m5zn.2xlarge, m5zn.3xlarge, m5zn.6xlarge, m5zn.12xlarge, m5zn.metal, h1.2xlarge, h1.4xlarge, h1.8xlarge, h1.16xlarge, z1d.large, z1d.xlarge, z1d.2xlarge, z1d.3xlarge, z1d.6xlarge, z1d.12xlarge, z1d.metal, u-6tb1.56xlarge, u-6tb1.112xlarge, u-9tb1.112xlarge, u-12tb1.112xlarge, u-6tb1.metal, u-9tb1.metal, u-12tb1.metal, u-18tb1.metal, u-24tb1.metal, a1.medium, a1.large, a1.xlarge, a1.2xlarge, a1.4xlarge, a1.metal, m5dn.large, m5dn.xlarge, m5dn.2xlarge, m5dn.4xlarge, m5dn.8xlarge, m5dn.12xlarge, m5dn.16xlarge, m5dn.24xlarge, m5dn.metal, m5n.large, m5n.xlarge, m5n.2xlarge, m5n.4xlarge, m5n.8xlarge, m5n.12xlarge, m5n.16xlarge, m5n.24xlarge, m5n.metal, r5dn.large, r5dn.xlarge, r5dn.2xlarge, r5dn.4xlarge, r5dn.8xlarge, r5dn.12xlarge, r5dn.16xlarge, r5dn.24xlarge, r5dn.metal, r5n.large, r5n.xlarge, r5n.2xlarge, r5n.4xlarge, r5n.8xlarge, r5n.12xlarge, r5n.16xlarge, r5n.24xlarge, r5n.metal, inf1.xlarge, inf1.2xlarge, inf1.6xlarge, inf1.24xlarge, m6g.metal, m6g.medium, m6g.large, m6g.xlarge, m6g.2xlarge, m6g.4xlarge, m6g.8xlarge, m6g.12xlarge, m6g.16xlarge, m6gd.metal, m6gd.medium, m6gd.large, m6gd.xlarge, m6gd.2xlarge, m6gd.4xlarge, m6gd.8xlarge, m6gd.12xlarge, m6gd.16xlarge, mac1.metal, x2gd.medium, x2gd.large, x2gd.xlarge, x2gd.2xlarge, x2gd.4xlarge, x2gd.8xlarge, x2gd.12xlarge, x2gd.16xlarge, x2gd.metal
298
298
  # ipv_6_address_count: 1,
299
299
  # ipv_6_addresses: [
300
300
  # {
@@ -1198,7 +1198,8 @@ module Aws::EC2
1198
1198
  #
1199
1199
  # * `outpost-arn` - The Amazon Resource Name (ARN) of the Outpost.
1200
1200
  #
1201
- # * `owner-id` - The account ID of the instance owner.
1201
+ # * `owner-id` - The Amazon Web Services account ID of the instance
1202
+ # owner.
1202
1203
  #
1203
1204
  # * `placement-group-name` - The name of the placement group for the
1204
1205
  # instance.
@@ -1226,8 +1227,8 @@ module Aws::EC2
1226
1227
  # terminate the instance). Similar to the state-reason-code filter.
1227
1228
  #
1228
1229
  # * `requester-id` - The ID of the entity that launched the instance on
1229
- # your behalf (for example, Management Console, Auto Scaling, and so
1230
- # on).
1230
+ # your behalf (for example, Amazon Web Services Management Console,
1231
+ # Auto Scaling, and so on).
1231
1232
  #
1232
1233
  # * `reservation-id` - The ID of the instance's reservation. A
1233
1234
  # reservation ID is created any time you launch an instance. A
@@ -1455,7 +1456,8 @@ module Aws::EC2
1455
1456
  #
1456
1457
  # * `network-interface-id` - The ID of the network interface.
1457
1458
  #
1458
- # * `owner-id` - The account ID of the network interface owner.
1459
+ # * `owner-id` - The Amazon Web Services account ID of the network
1460
+ # interface owner.
1459
1461
  #
1460
1462
  # * `private-ip-address` - The private IPv4 address or addresses of the
1461
1463
  # network interface.
@@ -1463,12 +1465,12 @@ module Aws::EC2
1463
1465
  # * `private-dns-name` - The private DNS name of the network interface
1464
1466
  # (IPv4).
1465
1467
  #
1466
- # * `requester-id` - The alias or account ID of the principal or service
1467
- # that created the network interface.
1468
+ # * `requester-id` - The alias or Amazon Web Services account ID of the
1469
+ # principal or service that created the network interface.
1468
1470
  #
1469
1471
  # * `requester-managed` - Indicates whether the network interface is
1470
- # being managed by an Amazon Web Service (for example, Management
1471
- # Console, Auto Scaling, and so on).
1472
+ # being managed by an Amazon Web Service (for example, Amazon Web
1473
+ # Services Management Console, Auto Scaling, and so on).
1472
1474
  #
1473
1475
  # * `source-dest-check` - Indicates whether the network interface
1474
1476
  # performs source/destination checking. A value of `true` means