aws-sdk-ec2 1.463.0 → 1.464.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c1c5ef797e5b815aa7eacc569e9f769c2278795401750a119e857f9e6c0150cb
4
- data.tar.gz: 6062a469bc181c982dbb135f9467f4ecd0e5fb0393a22e7a9d3f4b1d3a97bd8d
3
+ metadata.gz: b8d205e9dd89ae51beb51e9ba200a071c61ad315848a265714422bafda89f5d5
4
+ data.tar.gz: fd5064bcad166b73d519ee89542efb855c4fbda0c01ec86e0a0b33ef77e331e4
5
5
  SHA512:
6
- metadata.gz: cac5953b021166d56ebb1d03437c37ea1939fd2b99dd532887c2a731c5d7c28595131e0ac673932721207675f10cc417a0b0383b4d1c3426250c35c261189ed6
7
- data.tar.gz: a35be5fb8aa44a7f928768277fc95eb559170bfa3c75472332aedf239d3ac69d268a18c63cf7a7a700d58d9e87f318bd5f995803ef556853e95e0bd873568006
6
+ metadata.gz: c038a4fa0fd531f9e62d3a593537005f4f91c850bb459410154e718cef34e1f31f75598afd1ea73e484136dac1f9bcbab02746fb512034ed8a48dcdaf84cb932
7
+ data.tar.gz: 0471afc72c5cc4b61550fa06008ea2fd0d0657c3e2cb5772a900e1774a5a663ea95efae5e18784d572d8d460353dca8d678ea590a1f984c84ca85b9a58d367dd
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.464.0 (2024-07-02)
5
+ ------------------
6
+
7
+ * Feature - Documentation updates for Elastic Compute Cloud (EC2).
8
+
4
9
  1.463.0 (2024-06-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.463.0
1
+ 1.464.0
@@ -316,6 +316,15 @@ module Aws::EC2
316
316
  #
317
317
  # @option options [String] :session_token
318
318
  #
319
+ # @option options [Array] :sigv4a_signing_region_set
320
+ # A list of regions that should be signed with SigV4a signing. When
321
+ # not passed, a default `:sigv4a_signing_region_set` is searched for
322
+ # in the following locations:
323
+ #
324
+ # * `Aws.config[:sigv4a_signing_region_set]`
325
+ # * `ENV['AWS_SIGV4A_SIGNING_REGION_SET']`
326
+ # * `~/.aws/config`
327
+ #
319
328
  # @option options [Boolean] :stub_responses (false)
320
329
  # Causes the client to return stubbed responses. By default
321
330
  # fake responses are generated and returned. You can specify
@@ -7144,16 +7153,14 @@ module Aws::EC2
7144
7153
  # VPC will be associated with the endpoint.
7145
7154
  #
7146
7155
  # @option params [Boolean] :preserve_client_ip
7147
- # Indicates whether your client's IP address is preserved as the
7148
- # source. The value is `true` or `false`.
7156
+ # Indicates whether the client IP address is preserved as the source.
7157
+ # The following are the possible values.
7149
7158
  #
7150
- # * If `true`, your client's IP address is used when you connect to a
7151
- # resource.
7159
+ # * `true` - Use the client IP address as the source.
7152
7160
  #
7153
- # * If `false`, the elastic network interface IP address is used when
7154
- # you connect to a resource.
7161
+ # * `false` - Use the network interface IP address as the source.
7155
7162
  #
7156
- # Default: `true`
7163
+ # Default: `false`
7157
7164
  #
7158
7165
  # @option params [String] :client_token
7159
7166
  # Unique, case-sensitive identifier that you provide to ensure the
@@ -14176,7 +14183,14 @@ module Aws::EC2
14176
14183
  # action can appear to complete, but eventually fails.
14177
14184
  #
14178
14185
  # @option params [String] :outpost_arn
14179
- # The Amazon Resource Name (ARN) of the Outpost.
14186
+ # The Amazon Resource Name (ARN) of the Outpost on which to create the
14187
+ # volume.
14188
+ #
14189
+ # If you intend to use a volume with an instance running on an outpost,
14190
+ # then you must create the volume on the same outpost as the instance.
14191
+ # You can't use a volume created in an Amazon Web Services Region with
14192
+ # an instance on an Amazon Web Services outpost, or the other way
14193
+ # around.
14180
14194
  #
14181
14195
  # @option params [Integer] :size
14182
14196
  # The size of the volume, in GiBs. You must specify either a snapshot ID
@@ -36281,7 +36295,8 @@ module Aws::EC2
36281
36295
  # \| `io2` \| `st1` \| `sc1`\| `standard`)
36282
36296
  #
36283
36297
  # @option params [Array<String>] :volume_ids
36284
- # The volume IDs.
36298
+ # The volume IDs. If not specified, then all volumes are included in the
36299
+ # response.
36285
36300
  #
36286
36301
  # @option params [Boolean] :dry_run
36287
36302
  # Checks whether you have the required permissions for the action,
@@ -47267,10 +47282,14 @@ module Aws::EC2
47267
47282
  # option with a PV instance can make it unreachable.
47268
47283
  #
47269
47284
  # @option params [Types::BlobAttributeValue] :user_data
47270
- # Changes the instance's user data to the specified value. If you are
47271
- # using an Amazon Web Services SDK or command line tool, base64-encoding
47272
- # is performed for you, and you can load the text from a file.
47273
- # Otherwise, you must provide base64-encoded text.
47285
+ # Changes the instance's user data to the specified value. User data
47286
+ # must be base64-encoded. Depending on the tool or SDK that you're
47287
+ # using, the base64-encoding might be performed for you. For more
47288
+ # information, see [Work with instance user data][1].
47289
+ #
47290
+ #
47291
+ #
47292
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-add-user-data.html
47274
47293
  #
47275
47294
  # @option params [String] :value
47276
47295
  # A new value for the attribute. Use only with the `kernel`, `ramdisk`,
@@ -47980,7 +47999,7 @@ module Aws::EC2
47980
47999
  # group_name: "PlacementGroupName",
47981
48000
  # host_id: "DedicatedHostId",
47982
48001
  # instance_id: "InstanceId", # required
47983
- # tenancy: "dedicated", # accepts dedicated, host
48002
+ # tenancy: "default", # accepts default, dedicated, host
47984
48003
  # partition_number: 1,
47985
48004
  # host_resource_group_arn: "String",
47986
48005
  # group_id: "PlacementGroupId",
@@ -56341,16 +56360,14 @@ module Aws::EC2
56341
56360
  # part of the network interface instead of using this parameter.
56342
56361
  #
56343
56362
  # @option params [String] :user_data
56344
- # The user data script to make available to the instance. For more
56345
- # information, see [Run commands on your Amazon EC2 instance at
56346
- # launch][1] in the *Amazon EC2 User Guide*. If you are using a command
56347
- # line tool, base64-encoding is performed for you, and you can load the
56348
- # text from a file. Otherwise, you must provide base64-encoded text.
56349
- # User data is limited to 16 KB.
56363
+ # The user data to make available to the instance. User data must be
56364
+ # base64-encoded. Depending on the tool or SDK that you're using, the
56365
+ # base64-encoding might be performed for you. For more information, see
56366
+ # [Work with instance user data][1].
56350
56367
  #
56351
56368
  #
56352
56369
  #
56353
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/user-data.html
56370
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-add-user-data.html
56354
56371
  #
56355
56372
  # @option params [String] :additional_info
56356
56373
  # Reserved.
@@ -59471,7 +59488,7 @@ module Aws::EC2
59471
59488
  params: params,
59472
59489
  config: config)
59473
59490
  context[:gem_name] = 'aws-sdk-ec2'
59474
- context[:gem_version] = '1.463.0'
59491
+ context[:gem_version] = '1.464.0'
59475
59492
  Seahorse::Client::Request.new(handlers, context)
59476
59493
  end
59477
59494
 
@@ -1169,10 +1169,14 @@ module Aws::EC2
1169
1169
  # This option is supported only for HVM instances. Specifying this
1170
1170
  # option with a PV instance can make it unreachable.
1171
1171
  # @option options [Types::BlobAttributeValue] :user_data
1172
- # Changes the instance's user data to the specified value. If you are
1173
- # using an Amazon Web Services SDK or command line tool, base64-encoding
1174
- # is performed for you, and you can load the text from a file.
1175
- # Otherwise, you must provide base64-encoded text.
1172
+ # Changes the instance's user data to the specified value. User data
1173
+ # must be base64-encoded. Depending on the tool or SDK that you're
1174
+ # using, the base64-encoding might be performed for you. For more
1175
+ # information, see [Work with instance user data][1].
1176
+ #
1177
+ #
1178
+ #
1179
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-add-user-data.html
1176
1180
  # @option options [String] :value
1177
1181
  # A new value for the attribute. Use only with the `kernel`, `ramdisk`,
1178
1182
  # `userData`, `disableApiTermination`, or
@@ -1656,7 +1660,8 @@ module Aws::EC2
1656
1660
  # * `volume-type` - The Amazon EBS volume type (`gp2` \| `gp3` \| `io1`
1657
1661
  # \| `io2` \| `st1` \| `sc1`\| `standard`)
1658
1662
  # @option options [Array<String>] :volume_ids
1659
- # The volume IDs.
1663
+ # The volume IDs. If not specified, then all volumes are included in the
1664
+ # response.
1660
1665
  # @option options [Boolean] :dry_run
1661
1666
  # Checks whether you have the required permissions for the action,
1662
1667
  # without actually making the request, and provides an error response.
@@ -403,16 +403,14 @@ module Aws::EC2
403
403
  # If you specify a network interface, you must specify any subnets as
404
404
  # part of the network interface instead of using this parameter.
405
405
  # @option options [String] :user_data
406
- # The user data script to make available to the instance. For more
407
- # information, see [Run commands on your Amazon EC2 instance at
408
- # launch][1] in the *Amazon EC2 User Guide*. If you are using a command
409
- # line tool, base64-encoding is performed for you, and you can load the
410
- # text from a file. Otherwise, you must provide base64-encoded text.
411
- # User data is limited to 16 KB.
406
+ # The user data to make available to the instance. User data must be
407
+ # base64-encoded. Depending on the tool or SDK that you're using, the
408
+ # base64-encoding might be performed for you. For more information, see
409
+ # [Work with instance user data][1].
412
410
  #
413
411
  #
414
412
  #
415
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/user-data.html
413
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-add-user-data.html
416
414
  # @option options [String] :additional_info
417
415
  # Reserved.
418
416
  # @option options [String] :client_token
@@ -1519,7 +1517,14 @@ module Aws::EC2
1519
1517
  # Therefore, if you specify an ID, alias, or ARN that is not valid, the
1520
1518
  # action can appear to complete, but eventually fails.
1521
1519
  # @option options [String] :outpost_arn
1522
- # The Amazon Resource Name (ARN) of the Outpost.
1520
+ # The Amazon Resource Name (ARN) of the Outpost on which to create the
1521
+ # volume.
1522
+ #
1523
+ # If you intend to use a volume with an instance running on an outpost,
1524
+ # then you must create the volume on the same outpost as the instance.
1525
+ # You can't use a volume created in an Amazon Web Services Region with
1526
+ # an instance on an Amazon Web Services outpost, or the other way
1527
+ # around.
1523
1528
  # @option options [Integer] :size
1524
1529
  # The size of the volume, in GiBs. You must specify either a snapshot ID
1525
1530
  # or a volume size. If you specify a snapshot, the default is the
@@ -4056,7 +4061,8 @@ module Aws::EC2
4056
4061
  # * `volume-type` - The Amazon EBS volume type (`gp2` \| `gp3` \| `io1`
4057
4062
  # \| `io2` \| `st1` \| `sc1`\| `standard`)
4058
4063
  # @option options [Array<String>] :volume_ids
4059
- # The volume IDs.
4064
+ # The volume IDs. If not specified, then all volumes are included in the
4065
+ # response.
4060
4066
  # @option options [Boolean] :dry_run
4061
4067
  # Checks whether you have the required permissions for the action,
4062
4068
  # without actually making the request, and provides an error response.
@@ -633,16 +633,14 @@ module Aws::EC2
633
633
  #
634
634
  # Default: Amazon EC2 uses the default security group.
635
635
  # @option options [String] :user_data
636
- # The user data script to make available to the instance. For more
637
- # information, see [Run commands on your Amazon EC2 instance at
638
- # launch][1] in the *Amazon EC2 User Guide*. If you are using a command
639
- # line tool, base64-encoding is performed for you, and you can load the
640
- # text from a file. Otherwise, you must provide base64-encoded text.
641
- # User data is limited to 16 KB.
636
+ # The user data to make available to the instance. User data must be
637
+ # base64-encoded. Depending on the tool or SDK that you're using, the
638
+ # base64-encoding might be performed for you. For more information, see
639
+ # [Work with instance user data][1].
642
640
  #
643
641
  #
644
642
  #
645
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/user-data.html
643
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-add-user-data.html
646
644
  # @option options [String] :additional_info
647
645
  # Reserved.
648
646
  # @option options [String] :client_token
@@ -3814,7 +3814,31 @@ module Aws::EC2
3814
3814
  # @return [String]
3815
3815
  #
3816
3816
  # @!attribute [rw] state
3817
- # The state of the address pool.
3817
+ # The state of the address range.
3818
+ #
3819
+ # * `advertised`: The address range is being advertised to the
3820
+ # internet by Amazon Web Services.
3821
+ #
3822
+ # * `deprovisioned`: The address range is deprovisioned.
3823
+ #
3824
+ # * `failed-deprovision`: The request to deprovision the address range
3825
+ # was unsuccessful. Ensure that all EIPs from the range have been
3826
+ # deallocated and try again.
3827
+ #
3828
+ # * `failed-provision`: The request to provision the address range was
3829
+ # unsuccessful.
3830
+ #
3831
+ # * `pending-deprovision`: You’ve submitted a request to deprovision
3832
+ # an address range and it's pending.
3833
+ #
3834
+ # * `pending-provision`: You’ve submitted a request to provision an
3835
+ # address range and it's pending.
3836
+ #
3837
+ # * `provisioned`: The address range is provisioned and can be
3838
+ # advertised. The range is not currently advertised.
3839
+ #
3840
+ # * `provisioned-not-publicly-advertisable`: The address range is
3841
+ # provisioned and cannot be advertised.
3818
3842
  # @return [String]
3819
3843
  #
3820
3844
  # @!attribute [rw] network_border_group
@@ -8288,16 +8312,14 @@ module Aws::EC2
8288
8312
  # @return [Array<String>]
8289
8313
  #
8290
8314
  # @!attribute [rw] preserve_client_ip
8291
- # Indicates whether your client's IP address is preserved as the
8292
- # source. The value is `true` or `false`.
8315
+ # Indicates whether the client IP address is preserved as the source.
8316
+ # The following are the possible values.
8293
8317
  #
8294
- # * If `true`, your client's IP address is used when you connect to a
8295
- # resource.
8318
+ # * `true` - Use the client IP address as the source.
8296
8319
  #
8297
- # * If `false`, the elastic network interface IP address is used when
8298
- # you connect to a resource.
8320
+ # * `false` - Use the network interface IP address as the source.
8299
8321
  #
8300
- # Default: `true`
8322
+ # Default: `false`
8301
8323
  # @return [Boolean]
8302
8324
  #
8303
8325
  # @!attribute [rw] client_token
@@ -12498,7 +12520,14 @@ module Aws::EC2
12498
12520
  # @return [String]
12499
12521
  #
12500
12522
  # @!attribute [rw] outpost_arn
12501
- # The Amazon Resource Name (ARN) of the Outpost.
12523
+ # The Amazon Resource Name (ARN) of the Outpost on which to create the
12524
+ # volume.
12525
+ #
12526
+ # If you intend to use a volume with an instance running on an
12527
+ # outpost, then you must create the volume on the same outpost as the
12528
+ # instance. You can't use a volume created in an Amazon Web Services
12529
+ # Region with an instance on an Amazon Web Services outpost, or the
12530
+ # other way around.
12502
12531
  # @return [String]
12503
12532
  #
12504
12533
  # @!attribute [rw] size
@@ -27196,7 +27225,8 @@ module Aws::EC2
27196
27225
  # @return [Array<Types::Filter>]
27197
27226
  #
27198
27227
  # @!attribute [rw] volume_ids
27199
- # The volume IDs.
27228
+ # The volume IDs. If not specified, then all volumes are included in
27229
+ # the response.
27200
27230
  # @return [Array<String>]
27201
27231
  #
27202
27232
  # @!attribute [rw] dry_run
@@ -40911,7 +40941,7 @@ module Aws::EC2
40911
40941
  # The parameter accepts an integer, which Amazon EC2 interprets as a
40912
40942
  # percentage.
40913
40943
  #
40914
- # If you set `DesiredCapacityType` to `vcpu` or `memory-mib`, the
40944
+ # If you set `TargetCapacityUnitType` to `vcpu` or `memory-mib`, the
40915
40945
  # price protection threshold is based on the per vCPU or per memory
40916
40946
  # price instead of the per instance price.
40917
40947
  #
@@ -41386,7 +41416,7 @@ module Aws::EC2
41386
41416
  # The parameter accepts an integer, which Amazon EC2 interprets as a
41387
41417
  # percentage.
41388
41418
  #
41389
- # If you set `DesiredCapacityType` to `vcpu` or `memory-mib`, the
41419
+ # If you set `TargetCapacityUnitType` to `vcpu` or `memory-mib`, the
41390
41420
  # price protection threshold is based on the per vCPU or per memory
41391
41421
  # price instead of the per instance price.
41392
41422
  #
@@ -47863,10 +47893,14 @@ module Aws::EC2
47863
47893
  # @return [Types::AttributeValue]
47864
47894
  #
47865
47895
  # @!attribute [rw] user_data
47866
- # Changes the instance's user data to the specified value. If you are
47867
- # using an Amazon Web Services SDK or command line tool,
47868
- # base64-encoding is performed for you, and you can load the text from
47869
- # a file. Otherwise, you must provide base64-encoded text.
47896
+ # Changes the instance's user data to the specified value. User data
47897
+ # must be base64-encoded. Depending on the tool or SDK that you're
47898
+ # using, the base64-encoding might be performed for you. For more
47899
+ # information, see [Work with instance user data][1].
47900
+ #
47901
+ #
47902
+ #
47903
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-add-user-data.html
47870
47904
  # @return [Types::BlobAttributeValue]
47871
47905
  #
47872
47906
  # @!attribute [rw] value
@@ -59105,16 +59139,14 @@ module Aws::EC2
59105
59139
  # @return [String]
59106
59140
  #
59107
59141
  # @!attribute [rw] user_data
59108
- # The user data script to make available to the instance. For more
59109
- # information, see [Run commands on your Amazon EC2 instance at
59110
- # launch][1] in the *Amazon EC2 User Guide*. If you are using a
59111
- # command line tool, base64-encoding is performed for you, and you can
59112
- # load the text from a file. Otherwise, you must provide
59113
- # base64-encoded text. User data is limited to 16 KB.
59142
+ # The user data to make available to the instance. User data must be
59143
+ # base64-encoded. Depending on the tool or SDK that you're using, the
59144
+ # base64-encoding might be performed for you. For more information,
59145
+ # see [Work with instance user data][1].
59114
59146
  #
59115
59147
  #
59116
59148
  #
59117
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/user-data.html
59149
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-add-user-data.html
59118
59150
  # @return [String]
59119
59151
  #
59120
59152
  # @!attribute [rw] additional_info
data/lib/aws-sdk-ec2.rb CHANGED
@@ -76,6 +76,6 @@ require_relative 'aws-sdk-ec2/customizations'
76
76
  # @!group service
77
77
  module Aws::EC2
78
78
 
79
- GEM_VERSION = '1.463.0'
79
+ GEM_VERSION = '1.464.0'
80
80
 
81
81
  end
data/sig/client.rbs CHANGED
@@ -48,6 +48,7 @@ module Aws
48
48
  ?sdk_ua_app_id: String,
49
49
  ?secret_access_key: String,
50
50
  ?session_token: String,
51
+ ?sigv4a_signing_region_set: Array[String],
51
52
  ?stub_responses: untyped,
52
53
  ?token_provider: untyped,
53
54
  ?use_dualstack_endpoint: bool,
@@ -10135,7 +10136,7 @@ module Aws
10135
10136
  ?group_name: ::String,
10136
10137
  ?host_id: ::String,
10137
10138
  instance_id: ::String,
10138
- ?tenancy: ("dedicated" | "host"),
10139
+ ?tenancy: ("default" | "dedicated" | "host"),
10139
10140
  ?partition_number: ::Integer,
10140
10141
  ?host_resource_group_arn: ::String,
10141
10142
  ?group_id: ::String
data/sig/resource.rbs CHANGED
@@ -48,6 +48,7 @@ module Aws
48
48
  ?sdk_ua_app_id: String,
49
49
  ?secret_access_key: String,
50
50
  ?session_token: String,
51
+ ?sigv4a_signing_region_set: Array[String],
51
52
  ?stub_responses: untyped,
52
53
  ?token_provider: untyped,
53
54
  ?use_dualstack_endpoint: bool,
data/sig/types.rbs CHANGED
@@ -10579,7 +10579,7 @@ module Aws::EC2
10579
10579
  attr_accessor group_name: ::String
10580
10580
  attr_accessor host_id: ::String
10581
10581
  attr_accessor instance_id: ::String
10582
- attr_accessor tenancy: ("dedicated" | "host")
10582
+ attr_accessor tenancy: ("default" | "dedicated" | "host")
10583
10583
  attr_accessor partition_number: ::Integer
10584
10584
  attr_accessor host_resource_group_arn: ::String
10585
10585
  attr_accessor group_id: ::String
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ec2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.463.0
4
+ version: 1.464.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-25 00:00:00.000000000 Z
11
+ date: 2024-07-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.199.0
22
+ version: 3.201.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,21 +29,21 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.199.0
32
+ version: 3.201.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '1.1'
39
+ version: '1.5'
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '1.1'
46
+ version: '1.5'
47
47
  description: Official AWS Ruby gem for Amazon Elastic Compute Cloud (Amazon EC2).
48
48
  This gem is part of the AWS SDK for Ruby.
49
49
  email: