aws-sdk-ec2 1.222.0 → 1.223.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2c89194b4f8b7ff6c864bca1af40de1fac41d0e037118e84cf383f55da7c542a
4
- data.tar.gz: 4129ccfbff46d87d4cc8edec90dc6ced7b10cc5687e9eeb90a3a5d387ac88b79
3
+ metadata.gz: 5c63a5cb99a8f98ab73d5f13e14cb672437d5db47cd45d7a726c27c81508000a
4
+ data.tar.gz: 0c12e6b05223f35412f35b56235a3a985a5e236b88a2f1107aa007fcd9ce750e
5
5
  SHA512:
6
- metadata.gz: a620135de0d5555e35379bd320df5e1953ec5650fb9ac1c7d4b4b539621e7472da236cb3ec8a2d567dc1ddc939f7a5208d8de434b117dd43be787fd6206c791a
7
- data.tar.gz: 698611dfaeb5a15e364c2cf6684175fcf78e9a69bbf2dd069eb9fd391b84288138a7b68765659131ac9d26e369d4ce200b84e0ad2f80f8f8f97603a8a2ec0f4f
6
+ metadata.gz: 20e2b08fa113925d7fdf87b69b6bf96a1d7567d47b0faa343dec8a3e8762eb58e581b2791f3b77ae6d85b796c008cd0d8a5ed64df88a6c8329d089afe73e075d
7
+ data.tar.gz: a2ec48dd82e70d827167755761e930ffb72274dfbe97fba77471b4d9e311bbac6bd9f994b17d79022caa2fc3403415bcb52deeb3d09e08e70e036c744583ed2a
data/lib/aws-sdk-ec2.rb CHANGED
@@ -72,6 +72,6 @@ require_relative 'aws-sdk-ec2/customizations'
72
72
  # @!group service
73
73
  module Aws::EC2
74
74
 
75
- GEM_VERSION = '1.222.0'
75
+ GEM_VERSION = '1.223.0'
76
76
 
77
77
  end
@@ -10005,7 +10005,9 @@ module Aws::EC2
10005
10005
  # attributes to `true`\: `enableDnsHostnames` and `enableDnsSupport`.
10006
10006
  # Use ModifyVpcAttribute to set the VPC attributes.
10007
10007
  #
10008
- # Default: `true`
10008
+ # Private DNS is not supported for Amazon S3 interface endpoints.
10009
+ #
10010
+ # Default: `true` for supported endpoints
10009
10011
  #
10010
10012
  # @option params [Array<Types::TagSpecification>] :tag_specifications
10011
10013
  # The tags to associate with the endpoint.
@@ -12996,12 +12998,28 @@ module Aws::EC2
12996
12998
  req.send_request(options)
12997
12999
  end
12998
13000
 
12999
- # Deletes one or more specified VPC endpoints. Deleting a gateway
13000
- # endpoint also deletes the endpoint routes in the route tables that
13001
- # were associated with the endpoint. Deleting an interface endpoint or a
13002
- # Gateway Load Balancer endpoint deletes the endpoint network
13003
- # interfaces. Gateway Load Balancer endpoints can only be deleted if the
13004
- # routes that are associated with the endpoint are deleted.
13001
+ # Deletes one or more specified VPC endpoints. You can delete any of the
13002
+ # following types of VPC endpoints.
13003
+ #
13004
+ # * Gateway endpoint,
13005
+ #
13006
+ # * Gateway Load Balancer endpoint,
13007
+ #
13008
+ # * Interface endpoint
13009
+ #
13010
+ # The following rules apply when you delete a VPC endpoint:
13011
+ #
13012
+ # * When you delete a gateway endpoint, we delete the endpoint routes in
13013
+ # the route tables that are associated with the endpoint.
13014
+ #
13015
+ # * When you delete a Gateway Load Balancer endpoint, we delete the
13016
+ # endpoint network interfaces.
13017
+ #
13018
+ # You can only delete Gateway Load Balancer endpoints when the routes
13019
+ # that are associated with the endpoint are deleted.
13020
+ #
13021
+ # * When you delete an interface endpoint, we delete the endpoint
13022
+ # network interfaces.
13005
13023
  #
13006
13024
  # @option params [Boolean] :dry_run
13007
13025
  # Checks whether you have the required permissions for the action,
@@ -13752,6 +13770,70 @@ module Aws::EC2
13752
13770
  req.send_request(options)
13753
13771
  end
13754
13772
 
13773
+ # Describes the attributes of the specified Elastic IP addresses. For
13774
+ # requirements, see [Using reverse DNS for email applications][1].
13775
+ #
13776
+ #
13777
+ #
13778
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html#Using_Elastic_Addressing_Reverse_DNS
13779
+ #
13780
+ # @option params [Array<String>] :allocation_ids
13781
+ # \[EC2-VPC\] The allocation IDs.
13782
+ #
13783
+ # @option params [String] :attribute
13784
+ # The attribute of the IP address.
13785
+ #
13786
+ # @option params [String] :next_token
13787
+ # The token for the next page of results.
13788
+ #
13789
+ # @option params [Integer] :max_results
13790
+ # The maximum number of results to return with a single call. To
13791
+ # retrieve the remaining results, make another call with the returned
13792
+ # `nextToken` value.
13793
+ #
13794
+ # @option params [Boolean] :dry_run
13795
+ # Checks whether you have the required permissions for the action,
13796
+ # without actually making the request, and provides an error response.
13797
+ # If you have the required permissions, the error response is
13798
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
13799
+ #
13800
+ # @return [Types::DescribeAddressesAttributeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13801
+ #
13802
+ # * {Types::DescribeAddressesAttributeResult#addresses #addresses} => Array&lt;Types::AddressAttribute&gt;
13803
+ # * {Types::DescribeAddressesAttributeResult#next_token #next_token} => String
13804
+ #
13805
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
13806
+ #
13807
+ # @example Request syntax with placeholder values
13808
+ #
13809
+ # resp = client.describe_addresses_attribute({
13810
+ # allocation_ids: ["AllocationId"],
13811
+ # attribute: "domain-name", # accepts domain-name
13812
+ # next_token: "NextToken",
13813
+ # max_results: 1,
13814
+ # dry_run: false,
13815
+ # })
13816
+ #
13817
+ # @example Response structure
13818
+ #
13819
+ # resp.addresses #=> Array
13820
+ # resp.addresses[0].public_ip #=> String
13821
+ # resp.addresses[0].allocation_id #=> String
13822
+ # resp.addresses[0].ptr_record #=> String
13823
+ # resp.addresses[0].ptr_record_update.value #=> String
13824
+ # resp.addresses[0].ptr_record_update.status #=> String
13825
+ # resp.addresses[0].ptr_record_update.reason #=> String
13826
+ # resp.next_token #=> String
13827
+ #
13828
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeAddressesAttribute AWS API Documentation
13829
+ #
13830
+ # @overload describe_addresses_attribute(params = {})
13831
+ # @param [Hash] params ({})
13832
+ def describe_addresses_attribute(params = {}, options = {})
13833
+ req = build_request(:describe_addresses_attribute, params)
13834
+ req.send_request(options)
13835
+ end
13836
+
13755
13837
  # Describes the longer ID format settings for all resource types in a
13756
13838
  # specific Region. This request is useful for performing a quick audit
13757
13839
  # to determine whether a specific Region is fully opted in for longer
@@ -26811,13 +26893,13 @@ module Aws::EC2
26811
26893
 
26812
26894
  # Describes available services to which you can create a VPC endpoint.
26813
26895
  #
26814
- # When the service provider and the consumer have different accounts
26896
+ # When the service provider and the consumer have different accounts in
26815
26897
  # multiple Availability Zones, and the consumer views the VPC endpoint
26816
26898
  # service information, the response only includes the common
26817
26899
  # Availability Zones. For example, when the service provider account
26818
26900
  # uses `us-east-1a` and `us-east-1c` and the consumer uses `us-east-1a`
26819
- # and us-east-1a and us-east-1b, the response includes the VPC endpoint
26820
- # services in the common Availability Zone, `us-east-1a`.
26901
+ # and `us-east-1b`, the response includes the VPC endpoint services in
26902
+ # the common Availability Zone, `us-east-1a`.
26821
26903
  #
26822
26904
  # @option params [Boolean] :dry_run
26823
26905
  # Checks whether you have the required permissions for the action,
@@ -31317,6 +31399,55 @@ module Aws::EC2
31317
31399
  req.send_request(options)
31318
31400
  end
31319
31401
 
31402
+ # Modifies an attribute of the specified Elastic IP address. For
31403
+ # requirements, see [Using reverse DNS for email applications][1].
31404
+ #
31405
+ #
31406
+ #
31407
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html#Using_Elastic_Addressing_Reverse_DNS
31408
+ #
31409
+ # @option params [required, String] :allocation_id
31410
+ # \[EC2-VPC\] The allocation ID.
31411
+ #
31412
+ # @option params [String] :domain_name
31413
+ # The domain name to modify for the IP address.
31414
+ #
31415
+ # @option params [Boolean] :dry_run
31416
+ # Checks whether you have the required permissions for the action,
31417
+ # without actually making the request, and provides an error response.
31418
+ # If you have the required permissions, the error response is
31419
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
31420
+ #
31421
+ # @return [Types::ModifyAddressAttributeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
31422
+ #
31423
+ # * {Types::ModifyAddressAttributeResult#address #address} => Types::AddressAttribute
31424
+ #
31425
+ # @example Request syntax with placeholder values
31426
+ #
31427
+ # resp = client.modify_address_attribute({
31428
+ # allocation_id: "AllocationId", # required
31429
+ # domain_name: "String",
31430
+ # dry_run: false,
31431
+ # })
31432
+ #
31433
+ # @example Response structure
31434
+ #
31435
+ # resp.address.public_ip #=> String
31436
+ # resp.address.allocation_id #=> String
31437
+ # resp.address.ptr_record #=> String
31438
+ # resp.address.ptr_record_update.value #=> String
31439
+ # resp.address.ptr_record_update.status #=> String
31440
+ # resp.address.ptr_record_update.reason #=> String
31441
+ #
31442
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyAddressAttribute AWS API Documentation
31443
+ #
31444
+ # @overload modify_address_attribute(params = {})
31445
+ # @param [Hash] params ({})
31446
+ def modify_address_attribute(params = {}, options = {})
31447
+ req = build_request(:modify_address_attribute, params)
31448
+ req.send_request(options)
31449
+ end
31450
+
31320
31451
  # Changes the opt-in status of the Local Zone and Wavelength Zone group
31321
31452
  # for your account.
31322
31453
  #
@@ -34315,6 +34446,8 @@ module Aws::EC2
34315
34446
  # (Interface endpoint) Indicates whether a private hosted zone is
34316
34447
  # associated with the VPC.
34317
34448
  #
34449
+ # Private DNS is not supported for Amazon S3 interface endpoints.
34450
+ #
34318
34451
  # @return [Types::ModifyVpcEndpointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
34319
34452
  #
34320
34453
  # * {Types::ModifyVpcEndpointResult#return #return} => Boolean
@@ -37722,6 +37855,55 @@ module Aws::EC2
37722
37855
  req.send_request(options)
37723
37856
  end
37724
37857
 
37858
+ # Resets the attribute of the specified IP address. For requirements,
37859
+ # see [Using reverse DNS for email applications][1].
37860
+ #
37861
+ #
37862
+ #
37863
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html#Using_Elastic_Addressing_Reverse_DNS
37864
+ #
37865
+ # @option params [required, String] :allocation_id
37866
+ # \[EC2-VPC\] The allocation ID.
37867
+ #
37868
+ # @option params [required, String] :attribute
37869
+ # The attribute of the IP address.
37870
+ #
37871
+ # @option params [Boolean] :dry_run
37872
+ # Checks whether you have the required permissions for the action,
37873
+ # without actually making the request, and provides an error response.
37874
+ # If you have the required permissions, the error response is
37875
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
37876
+ #
37877
+ # @return [Types::ResetAddressAttributeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
37878
+ #
37879
+ # * {Types::ResetAddressAttributeResult#address #address} => Types::AddressAttribute
37880
+ #
37881
+ # @example Request syntax with placeholder values
37882
+ #
37883
+ # resp = client.reset_address_attribute({
37884
+ # allocation_id: "AllocationId", # required
37885
+ # attribute: "domain-name", # required, accepts domain-name
37886
+ # dry_run: false,
37887
+ # })
37888
+ #
37889
+ # @example Response structure
37890
+ #
37891
+ # resp.address.public_ip #=> String
37892
+ # resp.address.allocation_id #=> String
37893
+ # resp.address.ptr_record #=> String
37894
+ # resp.address.ptr_record_update.value #=> String
37895
+ # resp.address.ptr_record_update.status #=> String
37896
+ # resp.address.ptr_record_update.reason #=> String
37897
+ #
37898
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ResetAddressAttribute AWS API Documentation
37899
+ #
37900
+ # @overload reset_address_attribute(params = {})
37901
+ # @param [Hash] params ({})
37902
+ def reset_address_attribute(params = {}, options = {})
37903
+ req = build_request(:reset_address_attribute, params)
37904
+ req.send_request(options)
37905
+ end
37906
+
37725
37907
  # Resets the default customer master key (CMK) for EBS encryption for
37726
37908
  # your account in this Region to the AWS managed CMK for EBS.
37727
37909
  #
@@ -40890,7 +41072,7 @@ module Aws::EC2
40890
41072
  params: params,
40891
41073
  config: config)
40892
41074
  context[:gem_name] = 'aws-sdk-ec2'
40893
- context[:gem_version] = '1.222.0'
41075
+ context[:gem_version] = '1.223.0'
40894
41076
  Seahorse::Client::Request.new(handlers, context)
40895
41077
  end
40896
41078
 
@@ -37,7 +37,11 @@ module Aws::EC2
37
37
  AddPrefixListEntries = Shapes::ListShape.new(name: 'AddPrefixListEntries')
38
38
  AddPrefixListEntry = Shapes::StructureShape.new(name: 'AddPrefixListEntry')
39
39
  Address = Shapes::StructureShape.new(name: 'Address')
40
+ AddressAttribute = Shapes::StructureShape.new(name: 'AddressAttribute')
41
+ AddressAttributeName = Shapes::StringShape.new(name: 'AddressAttributeName')
40
42
  AddressList = Shapes::ListShape.new(name: 'AddressList')
43
+ AddressMaxResults = Shapes::IntegerShape.new(name: 'AddressMaxResults')
44
+ AddressSet = Shapes::ListShape.new(name: 'AddressSet')
41
45
  AdvertiseByoipCidrRequest = Shapes::StructureShape.new(name: 'AdvertiseByoipCidrRequest')
42
46
  AdvertiseByoipCidrResult = Shapes::StructureShape.new(name: 'AdvertiseByoipCidrResult')
43
47
  Affinity = Shapes::StringShape.new(name: 'Affinity')
@@ -47,6 +51,7 @@ module Aws::EC2
47
51
  AllocateHostsResult = Shapes::StructureShape.new(name: 'AllocateHostsResult')
48
52
  AllocationId = Shapes::StringShape.new(name: 'AllocationId')
49
53
  AllocationIdList = Shapes::ListShape.new(name: 'AllocationIdList')
54
+ AllocationIds = Shapes::ListShape.new(name: 'AllocationIds')
50
55
  AllocationState = Shapes::StringShape.new(name: 'AllocationState')
51
56
  AllocationStrategy = Shapes::StringShape.new(name: 'AllocationStrategy')
52
57
  AllowedPrincipal = Shapes::StructureShape.new(name: 'AllowedPrincipal')
@@ -531,6 +536,8 @@ module Aws::EC2
531
536
  DeregisterTransitGatewayMulticastGroupSourcesResult = Shapes::StructureShape.new(name: 'DeregisterTransitGatewayMulticastGroupSourcesResult')
532
537
  DescribeAccountAttributesRequest = Shapes::StructureShape.new(name: 'DescribeAccountAttributesRequest')
533
538
  DescribeAccountAttributesResult = Shapes::StructureShape.new(name: 'DescribeAccountAttributesResult')
539
+ DescribeAddressesAttributeRequest = Shapes::StructureShape.new(name: 'DescribeAddressesAttributeRequest')
540
+ DescribeAddressesAttributeResult = Shapes::StructureShape.new(name: 'DescribeAddressesAttributeResult')
534
541
  DescribeAddressesRequest = Shapes::StructureShape.new(name: 'DescribeAddressesRequest')
535
542
  DescribeAddressesResult = Shapes::StructureShape.new(name: 'DescribeAddressesResult')
536
543
  DescribeAggregateIdFormatRequest = Shapes::StructureShape.new(name: 'DescribeAggregateIdFormatRequest')
@@ -1404,6 +1411,8 @@ module Aws::EC2
1404
1411
  MemoryInfo = Shapes::StructureShape.new(name: 'MemoryInfo')
1405
1412
  MemorySize = Shapes::IntegerShape.new(name: 'MemorySize')
1406
1413
  MillisecondDateTime = Shapes::TimestampShape.new(name: 'MillisecondDateTime')
1414
+ ModifyAddressAttributeRequest = Shapes::StructureShape.new(name: 'ModifyAddressAttributeRequest')
1415
+ ModifyAddressAttributeResult = Shapes::StructureShape.new(name: 'ModifyAddressAttributeResult')
1407
1416
  ModifyAvailabilityZoneGroupRequest = Shapes::StructureShape.new(name: 'ModifyAvailabilityZoneGroupRequest')
1408
1417
  ModifyAvailabilityZoneGroupResult = Shapes::StructureShape.new(name: 'ModifyAvailabilityZoneGroupResult')
1409
1418
  ModifyAvailabilityZoneOptInStatus = Shapes::StringShape.new(name: 'ModifyAvailabilityZoneOptInStatus')
@@ -1656,6 +1665,7 @@ module Aws::EC2
1656
1665
  ProvisionByoipCidrRequest = Shapes::StructureShape.new(name: 'ProvisionByoipCidrRequest')
1657
1666
  ProvisionByoipCidrResult = Shapes::StructureShape.new(name: 'ProvisionByoipCidrResult')
1658
1667
  ProvisionedBandwidth = Shapes::StructureShape.new(name: 'ProvisionedBandwidth')
1668
+ PtrUpdateStatus = Shapes::StructureShape.new(name: 'PtrUpdateStatus')
1659
1669
  PublicIpAddress = Shapes::StringShape.new(name: 'PublicIpAddress')
1660
1670
  PublicIpStringList = Shapes::ListShape.new(name: 'PublicIpStringList')
1661
1671
  PublicIpv4Pool = Shapes::StructureShape.new(name: 'PublicIpv4Pool')
@@ -1763,6 +1773,8 @@ module Aws::EC2
1763
1773
  ReservedInstancesOfferingIdStringList = Shapes::ListShape.new(name: 'ReservedInstancesOfferingIdStringList')
1764
1774
  ReservedInstancesOfferingList = Shapes::ListShape.new(name: 'ReservedInstancesOfferingList')
1765
1775
  ReservedIntancesIds = Shapes::ListShape.new(name: 'ReservedIntancesIds')
1776
+ ResetAddressAttributeRequest = Shapes::StructureShape.new(name: 'ResetAddressAttributeRequest')
1777
+ ResetAddressAttributeResult = Shapes::StructureShape.new(name: 'ResetAddressAttributeResult')
1766
1778
  ResetEbsDefaultKmsKeyIdRequest = Shapes::StructureShape.new(name: 'ResetEbsDefaultKmsKeyIdRequest')
1767
1779
  ResetEbsDefaultKmsKeyIdResult = Shapes::StructureShape.new(name: 'ResetEbsDefaultKmsKeyIdResult')
1768
1780
  ResetFpgaImageAttributeName = Shapes::StringShape.new(name: 'ResetFpgaImageAttributeName')
@@ -2302,8 +2314,16 @@ module Aws::EC2
2302
2314
  Address.add_member(:carrier_ip, Shapes::ShapeRef.new(shape: String, location_name: "carrierIp"))
2303
2315
  Address.struct_class = Types::Address
2304
2316
 
2317
+ AddressAttribute.add_member(:public_ip, Shapes::ShapeRef.new(shape: PublicIpAddress, location_name: "publicIp"))
2318
+ AddressAttribute.add_member(:allocation_id, Shapes::ShapeRef.new(shape: AllocationId, location_name: "allocationId"))
2319
+ AddressAttribute.add_member(:ptr_record, Shapes::ShapeRef.new(shape: String, location_name: "ptrRecord"))
2320
+ AddressAttribute.add_member(:ptr_record_update, Shapes::ShapeRef.new(shape: PtrUpdateStatus, location_name: "ptrRecordUpdate"))
2321
+ AddressAttribute.struct_class = Types::AddressAttribute
2322
+
2305
2323
  AddressList.member = Shapes::ShapeRef.new(shape: Address, location_name: "item")
2306
2324
 
2325
+ AddressSet.member = Shapes::ShapeRef.new(shape: AddressAttribute, location_name: "item")
2326
+
2307
2327
  AdvertiseByoipCidrRequest.add_member(:cidr, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Cidr"))
2308
2328
  AdvertiseByoipCidrRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
2309
2329
  AdvertiseByoipCidrRequest.struct_class = Types::AdvertiseByoipCidrRequest
@@ -2345,6 +2365,8 @@ module Aws::EC2
2345
2365
 
2346
2366
  AllocationIdList.member = Shapes::ShapeRef.new(shape: AllocationId, location_name: "AllocationId")
2347
2367
 
2368
+ AllocationIds.member = Shapes::ShapeRef.new(shape: AllocationId, location_name: "item")
2369
+
2348
2370
  AllowedPrincipal.add_member(:principal_type, Shapes::ShapeRef.new(shape: PrincipalType, location_name: "principalType"))
2349
2371
  AllowedPrincipal.add_member(:principal, Shapes::ShapeRef.new(shape: String, location_name: "principal"))
2350
2372
  AllowedPrincipal.struct_class = Types::AllowedPrincipal
@@ -4275,6 +4297,17 @@ module Aws::EC2
4275
4297
  DescribeAccountAttributesResult.add_member(:account_attributes, Shapes::ShapeRef.new(shape: AccountAttributeList, location_name: "accountAttributeSet"))
4276
4298
  DescribeAccountAttributesResult.struct_class = Types::DescribeAccountAttributesResult
4277
4299
 
4300
+ DescribeAddressesAttributeRequest.add_member(:allocation_ids, Shapes::ShapeRef.new(shape: AllocationIds, location_name: "AllocationId"))
4301
+ DescribeAddressesAttributeRequest.add_member(:attribute, Shapes::ShapeRef.new(shape: AddressAttributeName, location_name: "Attribute"))
4302
+ DescribeAddressesAttributeRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
4303
+ DescribeAddressesAttributeRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: AddressMaxResults, location_name: "MaxResults"))
4304
+ DescribeAddressesAttributeRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
4305
+ DescribeAddressesAttributeRequest.struct_class = Types::DescribeAddressesAttributeRequest
4306
+
4307
+ DescribeAddressesAttributeResult.add_member(:addresses, Shapes::ShapeRef.new(shape: AddressSet, location_name: "addressSet"))
4308
+ DescribeAddressesAttributeResult.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
4309
+ DescribeAddressesAttributeResult.struct_class = Types::DescribeAddressesAttributeResult
4310
+
4278
4311
  DescribeAddressesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filter"))
4279
4312
  DescribeAddressesRequest.add_member(:public_ips, Shapes::ShapeRef.new(shape: PublicIpStringList, location_name: "PublicIp"))
4280
4313
  DescribeAddressesRequest.add_member(:allocation_ids, Shapes::ShapeRef.new(shape: AllocationIdList, location_name: "AllocationId"))
@@ -7698,6 +7731,14 @@ module Aws::EC2
7698
7731
  MemoryInfo.add_member(:size_in_mi_b, Shapes::ShapeRef.new(shape: MemorySize, location_name: "sizeInMiB"))
7699
7732
  MemoryInfo.struct_class = Types::MemoryInfo
7700
7733
 
7734
+ ModifyAddressAttributeRequest.add_member(:allocation_id, Shapes::ShapeRef.new(shape: AllocationId, required: true, location_name: "AllocationId"))
7735
+ ModifyAddressAttributeRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: String, location_name: "DomainName"))
7736
+ ModifyAddressAttributeRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
7737
+ ModifyAddressAttributeRequest.struct_class = Types::ModifyAddressAttributeRequest
7738
+
7739
+ ModifyAddressAttributeResult.add_member(:address, Shapes::ShapeRef.new(shape: AddressAttribute, location_name: "address"))
7740
+ ModifyAddressAttributeResult.struct_class = Types::ModifyAddressAttributeResult
7741
+
7701
7742
  ModifyAvailabilityZoneGroupRequest.add_member(:group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "GroupName"))
7702
7743
  ModifyAvailabilityZoneGroupRequest.add_member(:opt_in_status, Shapes::ShapeRef.new(shape: ModifyAvailabilityZoneOptInStatus, required: true, location_name: "OptInStatus"))
7703
7744
  ModifyAvailabilityZoneGroupRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
@@ -8666,6 +8707,11 @@ module Aws::EC2
8666
8707
  ProvisionedBandwidth.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "status"))
8667
8708
  ProvisionedBandwidth.struct_class = Types::ProvisionedBandwidth
8668
8709
 
8710
+ PtrUpdateStatus.add_member(:value, Shapes::ShapeRef.new(shape: String, location_name: "value"))
8711
+ PtrUpdateStatus.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "status"))
8712
+ PtrUpdateStatus.add_member(:reason, Shapes::ShapeRef.new(shape: String, location_name: "reason"))
8713
+ PtrUpdateStatus.struct_class = Types::PtrUpdateStatus
8714
+
8669
8715
  PublicIpStringList.member = Shapes::ShapeRef.new(shape: String, location_name: "PublicIp")
8670
8716
 
8671
8717
  PublicIpv4Pool.add_member(:pool_id, Shapes::ShapeRef.new(shape: String, location_name: "poolId"))
@@ -9141,6 +9187,14 @@ module Aws::EC2
9141
9187
 
9142
9188
  ReservedIntancesIds.member = Shapes::ShapeRef.new(shape: ReservedInstancesId, location_name: "item")
9143
9189
 
9190
+ ResetAddressAttributeRequest.add_member(:allocation_id, Shapes::ShapeRef.new(shape: AllocationId, required: true, location_name: "AllocationId"))
9191
+ ResetAddressAttributeRequest.add_member(:attribute, Shapes::ShapeRef.new(shape: AddressAttributeName, required: true, location_name: "Attribute"))
9192
+ ResetAddressAttributeRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
9193
+ ResetAddressAttributeRequest.struct_class = Types::ResetAddressAttributeRequest
9194
+
9195
+ ResetAddressAttributeResult.add_member(:address, Shapes::ShapeRef.new(shape: AddressAttribute, location_name: "address"))
9196
+ ResetAddressAttributeResult.struct_class = Types::ResetAddressAttributeResult
9197
+
9144
9198
  ResetEbsDefaultKmsKeyIdRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
9145
9199
  ResetEbsDefaultKmsKeyIdRequest.struct_class = Types::ResetEbsDefaultKmsKeyIdRequest
9146
9200
 
@@ -12183,6 +12237,20 @@ module Aws::EC2
12183
12237
  o.output = Shapes::ShapeRef.new(shape: DescribeAddressesResult)
12184
12238
  end)
12185
12239
 
12240
+ api.add_operation(:describe_addresses_attribute, Seahorse::Model::Operation.new.tap do |o|
12241
+ o.name = "DescribeAddressesAttribute"
12242
+ o.http_method = "POST"
12243
+ o.http_request_uri = "/"
12244
+ o.input = Shapes::ShapeRef.new(shape: DescribeAddressesAttributeRequest)
12245
+ o.output = Shapes::ShapeRef.new(shape: DescribeAddressesAttributeResult)
12246
+ o[:pager] = Aws::Pager.new(
12247
+ limit_key: "max_results",
12248
+ tokens: {
12249
+ "next_token" => "next_token"
12250
+ }
12251
+ )
12252
+ end)
12253
+
12186
12254
  api.add_operation(:describe_aggregate_id_format, Seahorse::Model::Operation.new.tap do |o|
12187
12255
  o.name = "DescribeAggregateIdFormat"
12188
12256
  o.http_method = "POST"
@@ -14140,6 +14208,14 @@ module Aws::EC2
14140
14208
  o.output = Shapes::ShapeRef.new(shape: ImportVolumeResult)
14141
14209
  end)
14142
14210
 
14211
+ api.add_operation(:modify_address_attribute, Seahorse::Model::Operation.new.tap do |o|
14212
+ o.name = "ModifyAddressAttribute"
14213
+ o.http_method = "POST"
14214
+ o.http_request_uri = "/"
14215
+ o.input = Shapes::ShapeRef.new(shape: ModifyAddressAttributeRequest)
14216
+ o.output = Shapes::ShapeRef.new(shape: ModifyAddressAttributeResult)
14217
+ end)
14218
+
14143
14219
  api.add_operation(:modify_availability_zone_group, Seahorse::Model::Operation.new.tap do |o|
14144
14220
  o.name = "ModifyAvailabilityZoneGroup"
14145
14221
  o.http_method = "POST"
@@ -14700,6 +14776,14 @@ module Aws::EC2
14700
14776
  o.output = Shapes::ShapeRef.new(shape: RequestSpotInstancesResult)
14701
14777
  end)
14702
14778
 
14779
+ api.add_operation(:reset_address_attribute, Seahorse::Model::Operation.new.tap do |o|
14780
+ o.name = "ResetAddressAttribute"
14781
+ o.http_method = "POST"
14782
+ o.http_request_uri = "/"
14783
+ o.input = Shapes::ShapeRef.new(shape: ResetAddressAttributeRequest)
14784
+ o.output = Shapes::ShapeRef.new(shape: ResetAddressAttributeResult)
14785
+ end)
14786
+
14703
14787
  api.add_operation(:reset_ebs_default_kms_key_id, Seahorse::Model::Operation.new.tap do |o|
14704
14788
  o.name = "ResetEbsDefaultKmsKeyId"
14705
14789
  o.http_method = "POST"
@@ -467,6 +467,35 @@ module Aws::EC2
467
467
  include Aws::Structure
468
468
  end
469
469
 
470
+ # The attributes associated with an Elastic IP address.
471
+ #
472
+ # @!attribute [rw] public_ip
473
+ # The public IP address.
474
+ # @return [String]
475
+ #
476
+ # @!attribute [rw] allocation_id
477
+ # \[EC2-VPC\] The allocation ID.
478
+ # @return [String]
479
+ #
480
+ # @!attribute [rw] ptr_record
481
+ # The pointer (PTR) record for the IP address.
482
+ # @return [String]
483
+ #
484
+ # @!attribute [rw] ptr_record_update
485
+ # The updated PTR record for the IP address.
486
+ # @return [Types::PtrUpdateStatus]
487
+ #
488
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AddressAttribute AWS API Documentation
489
+ #
490
+ class AddressAttribute < Struct.new(
491
+ :public_ip,
492
+ :allocation_id,
493
+ :ptr_record,
494
+ :ptr_record_update)
495
+ SENSITIVE = []
496
+ include Aws::Structure
497
+ end
498
+
470
499
  # @note When making an API call, you may pass AdvertiseByoipCidrRequest
471
500
  # data as a hash:
472
501
  #
@@ -10585,7 +10614,9 @@ module Aws::EC2
10585
10614
  # attributes to `true`\: `enableDnsHostnames` and `enableDnsSupport`.
10586
10615
  # Use ModifyVpcAttribute to set the VPC attributes.
10587
10616
  #
10588
- # Default: `true`
10617
+ # Private DNS is not supported for Amazon S3 interface endpoints.
10618
+ #
10619
+ # Default: `true` for supported endpoints
10589
10620
  # @return [Boolean]
10590
10621
  #
10591
10622
  # @!attribute [rw] tag_specifications
@@ -13785,6 +13816,72 @@ module Aws::EC2
13785
13816
  include Aws::Structure
13786
13817
  end
13787
13818
 
13819
+ # @note When making an API call, you may pass DescribeAddressesAttributeRequest
13820
+ # data as a hash:
13821
+ #
13822
+ # {
13823
+ # allocation_ids: ["AllocationId"],
13824
+ # attribute: "domain-name", # accepts domain-name
13825
+ # next_token: "NextToken",
13826
+ # max_results: 1,
13827
+ # dry_run: false,
13828
+ # }
13829
+ #
13830
+ # @!attribute [rw] allocation_ids
13831
+ # \[EC2-VPC\] The allocation IDs.
13832
+ # @return [Array<String>]
13833
+ #
13834
+ # @!attribute [rw] attribute
13835
+ # The attribute of the IP address.
13836
+ # @return [String]
13837
+ #
13838
+ # @!attribute [rw] next_token
13839
+ # The token for the next page of results.
13840
+ # @return [String]
13841
+ #
13842
+ # @!attribute [rw] max_results
13843
+ # The maximum number of results to return with a single call. To
13844
+ # retrieve the remaining results, make another call with the returned
13845
+ # `nextToken` value.
13846
+ # @return [Integer]
13847
+ #
13848
+ # @!attribute [rw] dry_run
13849
+ # Checks whether you have the required permissions for the action,
13850
+ # without actually making the request, and provides an error response.
13851
+ # If you have the required permissions, the error response is
13852
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
13853
+ # @return [Boolean]
13854
+ #
13855
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeAddressesAttributeRequest AWS API Documentation
13856
+ #
13857
+ class DescribeAddressesAttributeRequest < Struct.new(
13858
+ :allocation_ids,
13859
+ :attribute,
13860
+ :next_token,
13861
+ :max_results,
13862
+ :dry_run)
13863
+ SENSITIVE = []
13864
+ include Aws::Structure
13865
+ end
13866
+
13867
+ # @!attribute [rw] addresses
13868
+ # Information about the IP addresses.
13869
+ # @return [Array<Types::AddressAttribute>]
13870
+ #
13871
+ # @!attribute [rw] next_token
13872
+ # The token to use to retrieve the next page of results. This value is
13873
+ # `null` when there are no more results to return.
13874
+ # @return [String]
13875
+ #
13876
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeAddressesAttributeResult AWS API Documentation
13877
+ #
13878
+ class DescribeAddressesAttributeResult < Struct.new(
13879
+ :addresses,
13880
+ :next_token)
13881
+ SENSITIVE = []
13882
+ include Aws::Structure
13883
+ end
13884
+
13788
13885
  # @note When making an API call, you may pass DescribeAddressesRequest
13789
13886
  # data as a hash:
13790
13887
  #
@@ -36547,6 +36644,52 @@ module Aws::EC2
36547
36644
  include Aws::Structure
36548
36645
  end
36549
36646
 
36647
+ # @note When making an API call, you may pass ModifyAddressAttributeRequest
36648
+ # data as a hash:
36649
+ #
36650
+ # {
36651
+ # allocation_id: "AllocationId", # required
36652
+ # domain_name: "String",
36653
+ # dry_run: false,
36654
+ # }
36655
+ #
36656
+ # @!attribute [rw] allocation_id
36657
+ # \[EC2-VPC\] The allocation ID.
36658
+ # @return [String]
36659
+ #
36660
+ # @!attribute [rw] domain_name
36661
+ # The domain name to modify for the IP address.
36662
+ # @return [String]
36663
+ #
36664
+ # @!attribute [rw] dry_run
36665
+ # Checks whether you have the required permissions for the action,
36666
+ # without actually making the request, and provides an error response.
36667
+ # If you have the required permissions, the error response is
36668
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
36669
+ # @return [Boolean]
36670
+ #
36671
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyAddressAttributeRequest AWS API Documentation
36672
+ #
36673
+ class ModifyAddressAttributeRequest < Struct.new(
36674
+ :allocation_id,
36675
+ :domain_name,
36676
+ :dry_run)
36677
+ SENSITIVE = []
36678
+ include Aws::Structure
36679
+ end
36680
+
36681
+ # @!attribute [rw] address
36682
+ # Information about the Elastic IP address.
36683
+ # @return [Types::AddressAttribute]
36684
+ #
36685
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyAddressAttributeResult AWS API Documentation
36686
+ #
36687
+ class ModifyAddressAttributeResult < Struct.new(
36688
+ :address)
36689
+ SENSITIVE = []
36690
+ include Aws::Structure
36691
+ end
36692
+
36550
36693
  # @note When making an API call, you may pass ModifyAvailabilityZoneGroupRequest
36551
36694
  # data as a hash:
36552
36695
  #
@@ -39316,6 +39459,8 @@ module Aws::EC2
39316
39459
  # @!attribute [rw] private_dns_enabled
39317
39460
  # (Interface endpoint) Indicates whether a private hosted zone is
39318
39461
  # associated with the VPC.
39462
+ #
39463
+ # Private DNS is not supported for Amazon S3 interface endpoints.
39319
39464
  # @return [Boolean]
39320
39465
  #
39321
39466
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpcEndpointRequest AWS API Documentation
@@ -42376,6 +42521,31 @@ module Aws::EC2
42376
42521
  include Aws::Structure
42377
42522
  end
42378
42523
 
42524
+ # The status of an updated pointer (PTR) record for an Elastic IP
42525
+ # address.
42526
+ #
42527
+ # @!attribute [rw] value
42528
+ # The value for the PTR record update.
42529
+ # @return [String]
42530
+ #
42531
+ # @!attribute [rw] status
42532
+ # The status of the PTR record update.
42533
+ # @return [String]
42534
+ #
42535
+ # @!attribute [rw] reason
42536
+ # The reason for the PTR record update.
42537
+ # @return [String]
42538
+ #
42539
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PtrUpdateStatus AWS API Documentation
42540
+ #
42541
+ class PtrUpdateStatus < Struct.new(
42542
+ :value,
42543
+ :status,
42544
+ :reason)
42545
+ SENSITIVE = []
42546
+ include Aws::Structure
42547
+ end
42548
+
42379
42549
  # Describes an IPv4 address pool.
42380
42550
  #
42381
42551
  # @!attribute [rw] pool_id
@@ -45585,6 +45755,52 @@ module Aws::EC2
45585
45755
  include Aws::Structure
45586
45756
  end
45587
45757
 
45758
+ # @note When making an API call, you may pass ResetAddressAttributeRequest
45759
+ # data as a hash:
45760
+ #
45761
+ # {
45762
+ # allocation_id: "AllocationId", # required
45763
+ # attribute: "domain-name", # required, accepts domain-name
45764
+ # dry_run: false,
45765
+ # }
45766
+ #
45767
+ # @!attribute [rw] allocation_id
45768
+ # \[EC2-VPC\] The allocation ID.
45769
+ # @return [String]
45770
+ #
45771
+ # @!attribute [rw] attribute
45772
+ # The attribute of the IP address.
45773
+ # @return [String]
45774
+ #
45775
+ # @!attribute [rw] dry_run
45776
+ # Checks whether you have the required permissions for the action,
45777
+ # without actually making the request, and provides an error response.
45778
+ # If you have the required permissions, the error response is
45779
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
45780
+ # @return [Boolean]
45781
+ #
45782
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ResetAddressAttributeRequest AWS API Documentation
45783
+ #
45784
+ class ResetAddressAttributeRequest < Struct.new(
45785
+ :allocation_id,
45786
+ :attribute,
45787
+ :dry_run)
45788
+ SENSITIVE = []
45789
+ include Aws::Structure
45790
+ end
45791
+
45792
+ # @!attribute [rw] address
45793
+ # Information about the IP address.
45794
+ # @return [Types::AddressAttribute]
45795
+ #
45796
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ResetAddressAttributeResult AWS API Documentation
45797
+ #
45798
+ class ResetAddressAttributeResult < Struct.new(
45799
+ :address)
45800
+ SENSITIVE = []
45801
+ include Aws::Structure
45802
+ end
45803
+
45588
45804
  # @note When making an API call, you may pass ResetEbsDefaultKmsKeyIdRequest
45589
45805
  # data as a hash:
45590
45806
  #
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.222.0
4
+ version: 1.223.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: 2021-02-02 00:00:00.000000000 Z
11
+ date: 2021-02-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4