aws-sdk-ec2 1.382.0 → 1.383.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: 39ec103af60f907ea0760746280002ff41ee1b8cf0453716e1cdcf4fdeee8b9e
4
- data.tar.gz: 627c2dfda6fb8b146c938c27669dc19d109fa0551c5fec12c78e67b2ceaf4d7d
3
+ metadata.gz: 5bfc3fd79febff6f4e759c26ad0afcc3822eeabd987f03feaec7313749a07024
4
+ data.tar.gz: f0dccb160d4856ff317fd2ba37c15f3d90a006037e89200af275f3da2329bea9
5
5
  SHA512:
6
- metadata.gz: 8f8f811991af5de804f27c57990bcd1715a79ed536af8d76c6e9d7248559e902cd8cf685b1070bca9a937eec96f3821516e3d801addbbe362ab9f42bbe2f4f0e
7
- data.tar.gz: 22af94741265bfe3071b101a51b258f90c994c1fdb590b9cb174960be9ec9185f826b520502baef0cb9241259760731517b75fc99f7a7eed48aed66b3daf36eb
6
+ metadata.gz: b2df820332b4074f4fdb2d6977f0a07f459f2fab927e95139a54b1ac27534f995b810352847c31d2b805fd0889368a0909e24bd6bed9e3dfef74b1001a6f500a
7
+ data.tar.gz: be192ee7bb827dc32bf598f2b9f377df2f97d1e78ab9310cc6d7b0694f1373a484c1313bcb8684a30f466218f13f1408ad6f3d07d5d53d4e512d3bd7eef844bb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.383.0 (2023-06-13)
5
+ ------------------
6
+
7
+ * Feature - This release introduces a new feature, EC2 Instance Connect Endpoint, that enables you to connect to a resource over TCP, without requiring the resource to have a public IPv4 address.
8
+
4
9
  1.382.0 (2023-06-05)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.382.0
1
+ 1.383.0
@@ -40,22 +40,19 @@ module Aws::EC2
40
40
  data[:instance_id]
41
41
  end
42
42
 
43
- # The ID representing the allocation of the address for use with
44
- # EC2-VPC.
43
+ # The ID representing the allocation of the address.
45
44
  # @return [String]
46
45
  def allocation_id
47
46
  data[:allocation_id]
48
47
  end
49
48
 
50
- # The ID representing the association of the address with an instance in
51
- # a VPC.
49
+ # The ID representing the association of the address with an instance.
52
50
  # @return [String]
53
51
  def association_id
54
52
  data[:association_id]
55
53
  end
56
54
 
57
- # Indicates whether this Elastic IP address is for use with instances in
58
- # EC2-Classic (`standard`) or instances in a VPC (`vpc`).
55
+ # The network (`vpc`).
59
56
  # @return [String]
60
57
  def domain
61
58
  data[:domain]
@@ -270,36 +267,30 @@ module Aws::EC2
270
267
  # })
271
268
  # @param [Hash] options ({})
272
269
  # @option options [String] :allocation_id
273
- # \[EC2-VPC\] The allocation ID. This is required for EC2-VPC.
270
+ # The allocation ID. This is required.
274
271
  # @option options [String] :instance_id
275
272
  # The ID of the instance. The instance must have exactly one attached
276
- # network interface. For EC2-VPC, you can specify either the instance ID
277
- # or the network interface ID, but not both. For EC2-Classic, you must
278
- # specify an instance ID and the instance must be in the running state.
273
+ # network interface. You can specify either the instance ID or the
274
+ # network interface ID, but not both.
279
275
  # @option options [Boolean] :allow_reassociation
280
- # \[EC2-VPC\] For a VPC in an EC2-Classic account, specify true to allow
281
- # an Elastic IP address that is already associated with an instance or
282
- # network interface to be reassociated with the specified instance or
283
- # network interface. Otherwise, the operation fails. In a VPC in an
284
- # EC2-VPC-only account, reassociation is automatic, therefore you can
285
- # specify false to ensure the operation fails if the Elastic IP address
286
- # is already associated with another resource.
276
+ # Reassociation is automatic, but you can specify false to ensure the
277
+ # operation fails if the Elastic IP address is already associated with
278
+ # another resource.
287
279
  # @option options [Boolean] :dry_run
288
280
  # Checks whether you have the required permissions for the action,
289
281
  # without actually making the request, and provides an error response.
290
282
  # If you have the required permissions, the error response is
291
283
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
292
284
  # @option options [String] :network_interface_id
293
- # \[EC2-VPC\] The ID of the network interface. If the instance has more
294
- # than one network interface, you must specify a network interface ID.
285
+ # The ID of the network interface. If the instance has more than one
286
+ # network interface, you must specify a network interface ID.
295
287
  #
296
- # For EC2-VPC, you can specify either the instance ID or the network
297
- # interface ID, but not both.
288
+ # You can specify either the instance ID or the network interface ID,
289
+ # but not both.
298
290
  # @option options [String] :private_ip_address
299
- # \[EC2-VPC\] The primary or secondary private IP address to associate
300
- # with the Elastic IP address. If no private IP address is specified,
301
- # the Elastic IP address is associated with the primary private IP
302
- # address.
291
+ # The primary or secondary private IP address to associate with the
292
+ # Elastic IP address. If no private IP address is specified, the Elastic
293
+ # IP address is associated with the primary private IP address.
303
294
  # @return [Types::AssociateAddressResult]
304
295
  def associate(options = {})
305
296
  options = options.merge(public_ip: @public_ip)
@@ -317,7 +308,7 @@ module Aws::EC2
317
308
  # })
318
309
  # @param [Hash] options ({})
319
310
  # @option options [String] :association_id
320
- # \[EC2-VPC\] The association ID. Required for EC2-VPC.
311
+ # The association ID. This parameter is required.
321
312
  # @option options [Boolean] :dry_run
322
313
  # Checks whether you have the required permissions for the action,
323
314
  # without actually making the request, and provides an error response.
@@ -341,7 +332,7 @@ module Aws::EC2
341
332
  # })
342
333
  # @param [Hash] options ({})
343
334
  # @option options [String] :allocation_id
344
- # \[EC2-VPC\] The allocation ID. Required for EC2-VPC.
335
+ # The allocation ID. This parameter is required.
345
336
  # @option options [String] :network_border_group
346
337
  # The set of Availability Zones, Local Zones, or Wavelength Zones from
347
338
  # which Amazon Web Services advertises IP addresses.