aws-sdk-ec2 1.571.0 → 1.572.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: 9827800a415d2e1c7ce254a9ca51fa966acfc48c063cd4bc675e4b0fc8de95ad
4
- data.tar.gz: 420338da49eb71fc23802e7cac7feb17e04538659758d8ff9b8ab7184d9325e7
3
+ metadata.gz: 45d247022e00770698c4dd6a66d16831c22a01b2638b07a90c65a9ece2457757
4
+ data.tar.gz: fc9cc06e62ece765209c9679673ec762be1b43b47965be07f3d5afcba4095037
5
5
  SHA512:
6
- metadata.gz: 0bcaf6e3a695b154c4502c27dbab6cc7873facc17b478c6d7b91e7e148aa0f59f5321635492400601fe93ff3e13dcf2166de5d66756f7c3c8bfe195fcdc41eba
7
- data.tar.gz: c05cdb7ba252ba1b1a07426d9eec4ba3abdd66f613c1de74df7bf830571e5e612b56bcc65ba444108ea916612624c9e30126daab934901399f19e9a7247f635e
6
+ metadata.gz: c92e130c8e01b91abbe263534de480251d50c0148c5fd8583e111ca53da9ea7bea9e129bc9f257a0f2aabd4205df3f9ec8d32773b26c8ff62b1d297747da8a29
7
+ data.tar.gz: f4d4ba22a2a9ecdccfd2720677c98a5d28cc00fff7a39f002832c040c2f320c450ec6e0cae4c0075c54e47f656f8dddc52fd8a67367e0ba23feb9cb90a247d05
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.572.0 (2025-11-07)
5
+ ------------------
6
+
7
+ * Feature - Adds PrivateDnsPreference and PrivateDnsSpecifiedDomains to control private DNS resolution for resource and service network VPC endpoints and IpamScopeExternalAuthorityConfiguration to integrate Amazon VPC IPAM with a third-party IPAM service
8
+
4
9
  1.571.0 (2025-11-06)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.571.0
1
+ 1.572.0
@@ -9754,6 +9754,19 @@ module Aws::EC2
9754
9754
  #
9755
9755
  # [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
9756
9756
  #
9757
+ # @option params [Types::ExternalAuthorityConfiguration] :external_authority_configuration
9758
+ # The configuration that links an Amazon VPC IPAM scope to an external
9759
+ # authority system. It specifies the type of external system and the
9760
+ # external resource identifier that identifies your account or instance
9761
+ # in that system.
9762
+ #
9763
+ # In IPAM, an external authority is a third-party IP address management
9764
+ # system that provides CIDR blocks when you provision address space for
9765
+ # top-level IPAM pools. This allows you to use your existing IP
9766
+ # management system to control which address ranges are allocated to
9767
+ # Amazon Web Services while using Amazon VPC IPAM to manage subnets
9768
+ # within those ranges.
9769
+ #
9757
9770
  # @return [Types::CreateIpamScopeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9758
9771
  #
9759
9772
  # * {Types::CreateIpamScopeResult#ipam_scope #ipam_scope} => Types::IpamScope
@@ -9776,6 +9789,10 @@ module Aws::EC2
9776
9789
  # },
9777
9790
  # ],
9778
9791
  # client_token: "String",
9792
+ # external_authority_configuration: {
9793
+ # type: "infoblox", # accepts infoblox
9794
+ # external_resource_identifier: "String",
9795
+ # },
9779
9796
  # })
9780
9797
  #
9781
9798
  # @example Response structure
@@ -9793,6 +9810,8 @@ module Aws::EC2
9793
9810
  # resp.ipam_scope.tags #=> Array
9794
9811
  # resp.ipam_scope.tags[0].key #=> String
9795
9812
  # resp.ipam_scope.tags[0].value #=> String
9813
+ # resp.ipam_scope.external_authority_configuration.type #=> String, one of "infoblox"
9814
+ # resp.ipam_scope.external_authority_configuration.external_resource_identifier #=> String
9796
9815
  #
9797
9816
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateIpamScope AWS API Documentation
9798
9817
  #
@@ -17572,6 +17591,8 @@ module Aws::EC2
17572
17591
  # dns_options: {
17573
17592
  # dns_record_ip_type: "ipv4", # accepts ipv4, dualstack, ipv6, service-defined
17574
17593
  # private_dns_only_for_inbound_resolver_endpoint: false,
17594
+ # private_dns_preference: "String",
17595
+ # private_dns_specified_domains: ["String"],
17575
17596
  # },
17576
17597
  # client_token: "String",
17577
17598
  # private_dns_enabled: false,
@@ -17616,6 +17637,9 @@ module Aws::EC2
17616
17637
  # resp.vpc_endpoint.ip_address_type #=> String, one of "ipv4", "dualstack", "ipv6"
17617
17638
  # resp.vpc_endpoint.dns_options.dns_record_ip_type #=> String, one of "ipv4", "dualstack", "ipv6", "service-defined"
17618
17639
  # resp.vpc_endpoint.dns_options.private_dns_only_for_inbound_resolver_endpoint #=> Boolean
17640
+ # resp.vpc_endpoint.dns_options.private_dns_preference #=> String
17641
+ # resp.vpc_endpoint.dns_options.private_dns_specified_domains #=> Array
17642
+ # resp.vpc_endpoint.dns_options.private_dns_specified_domains[0] #=> String
17619
17643
  # resp.vpc_endpoint.private_dns_enabled #=> Boolean
17620
17644
  # resp.vpc_endpoint.requester_managed #=> Boolean
17621
17645
  # resp.vpc_endpoint.network_interface_ids #=> Array
@@ -19504,6 +19528,8 @@ module Aws::EC2
19504
19528
  # resp.ipam_scope.tags #=> Array
19505
19529
  # resp.ipam_scope.tags[0].key #=> String
19506
19530
  # resp.ipam_scope.tags[0].value #=> String
19531
+ # resp.ipam_scope.external_authority_configuration.type #=> String, one of "infoblox"
19532
+ # resp.ipam_scope.external_authority_configuration.external_resource_identifier #=> String
19507
19533
  #
19508
19534
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteIpamScope AWS API Documentation
19509
19535
  #
@@ -31773,6 +31799,8 @@ module Aws::EC2
31773
31799
  # resp.ipam_scopes[0].tags #=> Array
31774
31800
  # resp.ipam_scopes[0].tags[0].key #=> String
31775
31801
  # resp.ipam_scopes[0].tags[0].value #=> String
31802
+ # resp.ipam_scopes[0].external_authority_configuration.type #=> String, one of "infoblox"
31803
+ # resp.ipam_scopes[0].external_authority_configuration.external_resource_identifier #=> String
31776
31804
  #
31777
31805
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIpamScopes AWS API Documentation
31778
31806
  #
@@ -43676,6 +43704,9 @@ module Aws::EC2
43676
43704
  # resp.vpc_endpoints[0].ip_address_type #=> String, one of "ipv4", "dualstack", "ipv6"
43677
43705
  # resp.vpc_endpoints[0].dns_options.dns_record_ip_type #=> String, one of "ipv4", "dualstack", "ipv6", "service-defined"
43678
43706
  # resp.vpc_endpoints[0].dns_options.private_dns_only_for_inbound_resolver_endpoint #=> Boolean
43707
+ # resp.vpc_endpoints[0].dns_options.private_dns_preference #=> String
43708
+ # resp.vpc_endpoints[0].dns_options.private_dns_specified_domains #=> Array
43709
+ # resp.vpc_endpoints[0].dns_options.private_dns_specified_domains[0] #=> String
43679
43710
  # resp.vpc_endpoints[0].private_dns_enabled #=> Boolean
43680
43711
  # resp.vpc_endpoints[0].requester_managed #=> Boolean
43681
43712
  # resp.vpc_endpoints[0].network_interface_ids #=> Array
@@ -56908,6 +56939,22 @@ module Aws::EC2
56908
56939
  # @option params [String] :description
56909
56940
  # The description of the scope you want to modify.
56910
56941
  #
56942
+ # @option params [Types::ExternalAuthorityConfiguration] :external_authority_configuration
56943
+ # The configuration that links an Amazon VPC IPAM scope to an external
56944
+ # authority system. It specifies the type of external system and the
56945
+ # external resource identifier that identifies your account or instance
56946
+ # in that system.
56947
+ #
56948
+ # In IPAM, an external authority is a third-party IP address management
56949
+ # system that provides CIDR blocks when you provision address space for
56950
+ # top-level IPAM pools. This allows you to use your existing IP
56951
+ # management system to control which address ranges are allocated to
56952
+ # Amazon Web Services while using Amazon VPC IPAM to manage subnets
56953
+ # within those ranges.
56954
+ #
56955
+ # @option params [Boolean] :remove_external_authority_configuration
56956
+ # Remove the external authority configuration. `true` to remove.
56957
+ #
56911
56958
  # @return [Types::ModifyIpamScopeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
56912
56959
  #
56913
56960
  # * {Types::ModifyIpamScopeResult#ipam_scope #ipam_scope} => Types::IpamScope
@@ -56918,6 +56965,11 @@ module Aws::EC2
56918
56965
  # dry_run: false,
56919
56966
  # ipam_scope_id: "IpamScopeId", # required
56920
56967
  # description: "String",
56968
+ # external_authority_configuration: {
56969
+ # type: "infoblox", # accepts infoblox
56970
+ # external_resource_identifier: "String",
56971
+ # },
56972
+ # remove_external_authority_configuration: false,
56921
56973
  # })
56922
56974
  #
56923
56975
  # @example Response structure
@@ -56935,6 +56987,8 @@ module Aws::EC2
56935
56987
  # resp.ipam_scope.tags #=> Array
56936
56988
  # resp.ipam_scope.tags[0].key #=> String
56937
56989
  # resp.ipam_scope.tags[0].value #=> String
56990
+ # resp.ipam_scope.external_authority_configuration.type #=> String, one of "infoblox"
56991
+ # resp.ipam_scope.external_authority_configuration.external_resource_identifier #=> String
56938
56992
  #
56939
56993
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIpamScope AWS API Documentation
56940
56994
  #
@@ -59879,6 +59933,8 @@ module Aws::EC2
59879
59933
  # dns_options: {
59880
59934
  # dns_record_ip_type: "ipv4", # accepts ipv4, dualstack, ipv6, service-defined
59881
59935
  # private_dns_only_for_inbound_resolver_endpoint: false,
59936
+ # private_dns_preference: "String",
59937
+ # private_dns_specified_domains: ["String"],
59882
59938
  # },
59883
59939
  # private_dns_enabled: false,
59884
59940
  # subnet_configurations: [
@@ -69083,7 +69139,7 @@ module Aws::EC2
69083
69139
  tracer: tracer
69084
69140
  )
69085
69141
  context[:gem_name] = 'aws-sdk-ec2'
69086
- context[:gem_version] = '1.571.0'
69142
+ context[:gem_version] = '1.572.0'
69087
69143
  Seahorse::Client::Request.new(handlers, context)
69088
69144
  end
69089
69145
 
@@ -1604,6 +1604,7 @@ module Aws::EC2
1604
1604
  ExportVerifiedAccessInstanceClientConfigurationRequest = Shapes::StructureShape.new(name: 'ExportVerifiedAccessInstanceClientConfigurationRequest')
1605
1605
  ExportVerifiedAccessInstanceClientConfigurationResult = Shapes::StructureShape.new(name: 'ExportVerifiedAccessInstanceClientConfigurationResult')
1606
1606
  ExportVmTaskId = Shapes::StringShape.new(name: 'ExportVmTaskId')
1607
+ ExternalAuthorityConfiguration = Shapes::StructureShape.new(name: 'ExternalAuthorityConfiguration')
1607
1608
  FailedCapacityReservationFleetCancellationResult = Shapes::StructureShape.new(name: 'FailedCapacityReservationFleetCancellationResult')
1608
1609
  FailedCapacityReservationFleetCancellationResultSet = Shapes::ListShape.new(name: 'FailedCapacityReservationFleetCancellationResultSet')
1609
1610
  FailedQueuedPurchaseDeletion = Shapes::StructureShape.new(name: 'FailedQueuedPurchaseDeletion')
@@ -2216,6 +2217,8 @@ module Aws::EC2
2216
2217
  IpamResourceTagList = Shapes::ListShape.new(name: 'IpamResourceTagList')
2217
2218
  IpamResourceType = Shapes::StringShape.new(name: 'IpamResourceType')
2218
2219
  IpamScope = Shapes::StructureShape.new(name: 'IpamScope')
2220
+ IpamScopeExternalAuthorityConfiguration = Shapes::StructureShape.new(name: 'IpamScopeExternalAuthorityConfiguration')
2221
+ IpamScopeExternalAuthorityType = Shapes::StringShape.new(name: 'IpamScopeExternalAuthorityType')
2219
2222
  IpamScopeId = Shapes::StringShape.new(name: 'IpamScopeId')
2220
2223
  IpamScopeSet = Shapes::ListShape.new(name: 'IpamScopeSet')
2221
2224
  IpamScopeState = Shapes::StringShape.new(name: 'IpamScopeState')
@@ -2851,6 +2854,7 @@ module Aws::EC2
2851
2854
  PrivateDnsNameOptionsOnLaunch = Shapes::StructureShape.new(name: 'PrivateDnsNameOptionsOnLaunch')
2852
2855
  PrivateDnsNameOptionsRequest = Shapes::StructureShape.new(name: 'PrivateDnsNameOptionsRequest')
2853
2856
  PrivateDnsNameOptionsResponse = Shapes::StructureShape.new(name: 'PrivateDnsNameOptionsResponse')
2857
+ PrivateDnsSpecifiedDomainSet = Shapes::ListShape.new(name: 'PrivateDnsSpecifiedDomainSet')
2854
2858
  PrivateIpAddressConfigSet = Shapes::ListShape.new(name: 'PrivateIpAddressConfigSet')
2855
2859
  PrivateIpAddressCount = Shapes::IntegerShape.new(name: 'PrivateIpAddressCount')
2856
2860
  PrivateIpAddressSpecification = Shapes::StructureShape.new(name: 'PrivateIpAddressSpecification')
@@ -5762,6 +5766,7 @@ module Aws::EC2
5762
5766
  CreateIpamScopeRequest.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
5763
5767
  CreateIpamScopeRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
5764
5768
  CreateIpamScopeRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
5769
+ CreateIpamScopeRequest.add_member(:external_authority_configuration, Shapes::ShapeRef.new(shape: ExternalAuthorityConfiguration, location_name: "ExternalAuthorityConfiguration"))
5765
5770
  CreateIpamScopeRequest.struct_class = Types::CreateIpamScopeRequest
5766
5771
 
5767
5772
  CreateIpamScopeResult.add_member(:ipam_scope, Shapes::ShapeRef.new(shape: IpamScope, location_name: "ipamScope"))
@@ -9776,10 +9781,14 @@ module Aws::EC2
9776
9781
 
9777
9782
  DnsOptions.add_member(:dns_record_ip_type, Shapes::ShapeRef.new(shape: DnsRecordIpType, location_name: "dnsRecordIpType"))
9778
9783
  DnsOptions.add_member(:private_dns_only_for_inbound_resolver_endpoint, Shapes::ShapeRef.new(shape: Boolean, location_name: "privateDnsOnlyForInboundResolverEndpoint"))
9784
+ DnsOptions.add_member(:private_dns_preference, Shapes::ShapeRef.new(shape: String, location_name: "privateDnsPreference"))
9785
+ DnsOptions.add_member(:private_dns_specified_domains, Shapes::ShapeRef.new(shape: PrivateDnsSpecifiedDomainSet, location_name: "privateDnsSpecifiedDomainSet"))
9779
9786
  DnsOptions.struct_class = Types::DnsOptions
9780
9787
 
9781
9788
  DnsOptionsSpecification.add_member(:dns_record_ip_type, Shapes::ShapeRef.new(shape: DnsRecordIpType, location_name: "DnsRecordIpType"))
9782
9789
  DnsOptionsSpecification.add_member(:private_dns_only_for_inbound_resolver_endpoint, Shapes::ShapeRef.new(shape: Boolean, location_name: "PrivateDnsOnlyForInboundResolverEndpoint"))
9790
+ DnsOptionsSpecification.add_member(:private_dns_preference, Shapes::ShapeRef.new(shape: String, location_name: "PrivateDnsPreference"))
9791
+ DnsOptionsSpecification.add_member(:private_dns_specified_domains, Shapes::ShapeRef.new(shape: PrivateDnsSpecifiedDomainSet, location_name: "PrivateDnsSpecifiedDomain"))
9783
9792
  DnsOptionsSpecification.struct_class = Types::DnsOptionsSpecification
9784
9793
 
9785
9794
  DnsServersOptionsModifyStructure.add_member(:custom_dns_servers, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "CustomDnsServers"))
@@ -10326,6 +10335,10 @@ module Aws::EC2
10326
10335
  ExportVerifiedAccessInstanceClientConfigurationResult.add_member(:open_vpn_configurations, Shapes::ShapeRef.new(shape: VerifiedAccessInstanceOpenVpnClientConfigurationList, location_name: "openVpnConfigurationSet"))
10327
10336
  ExportVerifiedAccessInstanceClientConfigurationResult.struct_class = Types::ExportVerifiedAccessInstanceClientConfigurationResult
10328
10337
 
10338
+ ExternalAuthorityConfiguration.add_member(:type, Shapes::ShapeRef.new(shape: IpamScopeExternalAuthorityType, location_name: "Type"))
10339
+ ExternalAuthorityConfiguration.add_member(:external_resource_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ExternalResourceIdentifier"))
10340
+ ExternalAuthorityConfiguration.struct_class = Types::ExternalAuthorityConfiguration
10341
+
10329
10342
  FailedCapacityReservationFleetCancellationResult.add_member(:capacity_reservation_fleet_id, Shapes::ShapeRef.new(shape: CapacityReservationFleetId, location_name: "capacityReservationFleetId"))
10330
10343
  FailedCapacityReservationFleetCancellationResult.add_member(:cancel_capacity_reservation_fleet_error, Shapes::ShapeRef.new(shape: CancelCapacityReservationFleetError, location_name: "cancelCapacityReservationFleetError"))
10331
10344
  FailedCapacityReservationFleetCancellationResult.struct_class = Types::FailedCapacityReservationFleetCancellationResult
@@ -12722,8 +12735,13 @@ module Aws::EC2
12722
12735
  IpamScope.add_member(:pool_count, Shapes::ShapeRef.new(shape: Integer, location_name: "poolCount"))
12723
12736
  IpamScope.add_member(:state, Shapes::ShapeRef.new(shape: IpamScopeState, location_name: "state"))
12724
12737
  IpamScope.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
12738
+ IpamScope.add_member(:external_authority_configuration, Shapes::ShapeRef.new(shape: IpamScopeExternalAuthorityConfiguration, location_name: "externalAuthorityConfiguration"))
12725
12739
  IpamScope.struct_class = Types::IpamScope
12726
12740
 
12741
+ IpamScopeExternalAuthorityConfiguration.add_member(:type, Shapes::ShapeRef.new(shape: IpamScopeExternalAuthorityType, location_name: "type"))
12742
+ IpamScopeExternalAuthorityConfiguration.add_member(:external_resource_identifier, Shapes::ShapeRef.new(shape: String, location_name: "externalResourceIdentifier"))
12743
+ IpamScopeExternalAuthorityConfiguration.struct_class = Types::IpamScopeExternalAuthorityConfiguration
12744
+
12727
12745
  IpamScopeSet.member = Shapes::ShapeRef.new(shape: IpamScope, location_name: "item")
12728
12746
 
12729
12747
  IpamSet.member = Shapes::ShapeRef.new(shape: Ipam, location_name: "item")
@@ -13813,6 +13831,8 @@ module Aws::EC2
13813
13831
  ModifyIpamScopeRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
13814
13832
  ModifyIpamScopeRequest.add_member(:ipam_scope_id, Shapes::ShapeRef.new(shape: IpamScopeId, required: true, location_name: "IpamScopeId"))
13815
13833
  ModifyIpamScopeRequest.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
13834
+ ModifyIpamScopeRequest.add_member(:external_authority_configuration, Shapes::ShapeRef.new(shape: ExternalAuthorityConfiguration, location_name: "ExternalAuthorityConfiguration"))
13835
+ ModifyIpamScopeRequest.add_member(:remove_external_authority_configuration, Shapes::ShapeRef.new(shape: Boolean, location_name: "RemoveExternalAuthorityConfiguration"))
13816
13836
  ModifyIpamScopeRequest.struct_class = Types::ModifyIpamScopeRequest
13817
13837
 
13818
13838
  ModifyIpamScopeResult.add_member(:ipam_scope, Shapes::ShapeRef.new(shape: IpamScope, location_name: "ipamScope"))
@@ -15063,6 +15083,8 @@ module Aws::EC2
15063
15083
  PrivateDnsNameOptionsResponse.add_member(:enable_resource_name_dns_aaaa_record, Shapes::ShapeRef.new(shape: Boolean, location_name: "enableResourceNameDnsAAAARecord"))
15064
15084
  PrivateDnsNameOptionsResponse.struct_class = Types::PrivateDnsNameOptionsResponse
15065
15085
 
15086
+ PrivateDnsSpecifiedDomainSet.member = Shapes::ShapeRef.new(shape: String, location_name: "item")
15087
+
15066
15088
  PrivateIpAddressConfigSet.member = Shapes::ShapeRef.new(shape: ScheduledInstancesPrivateIpAddressConfig, location_name: "PrivateIpAddressConfigSet")
15067
15089
 
15068
15090
  PrivateIpAddressSpecification.add_member(:primary, Shapes::ShapeRef.new(shape: Boolean, location_name: "primary"))
@@ -11226,6 +11226,20 @@ module Aws::EC2
11226
11226
  # [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
11227
11227
  # @return [String]
11228
11228
  #
11229
+ # @!attribute [rw] external_authority_configuration
11230
+ # The configuration that links an Amazon VPC IPAM scope to an external
11231
+ # authority system. It specifies the type of external system and the
11232
+ # external resource identifier that identifies your account or
11233
+ # instance in that system.
11234
+ #
11235
+ # In IPAM, an external authority is a third-party IP address
11236
+ # management system that provides CIDR blocks when you provision
11237
+ # address space for top-level IPAM pools. This allows you to use your
11238
+ # existing IP management system to control which address ranges are
11239
+ # allocated to Amazon Web Services while using Amazon VPC IPAM to
11240
+ # manage subnets within those ranges.
11241
+ # @return [Types::ExternalAuthorityConfiguration]
11242
+ #
11229
11243
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateIpamScopeRequest AWS API Documentation
11230
11244
  #
11231
11245
  class CreateIpamScopeRequest < Struct.new(
@@ -11233,7 +11247,8 @@ module Aws::EC2
11233
11247
  :ipam_id,
11234
11248
  :description,
11235
11249
  :tag_specifications,
11236
- :client_token)
11250
+ :client_token,
11251
+ :external_authority_configuration)
11237
11252
  SENSITIVE = []
11238
11253
  include Aws::Structure
11239
11254
  end
@@ -36020,11 +36035,45 @@ module Aws::EC2
36020
36035
  # Indicates whether to enable private DNS only for inbound endpoints.
36021
36036
  # @return [Boolean]
36022
36037
  #
36038
+ # @!attribute [rw] private_dns_preference
36039
+ # The preference for which private domains have a private hosted zone
36040
+ # created for and associated with the specified VPC. Only supported
36041
+ # when private DNS is enabled and when the VPC endpoint type is
36042
+ # ServiceNetwork or Resource.
36043
+ #
36044
+ # * `ALL_DOMAINS` - VPC Lattice provisions private hosted zones for
36045
+ # all custom domain names.
36046
+ #
36047
+ # * `VERIFIED_DOMAINS_ONLY` - VPC Lattice provisions a private hosted
36048
+ # zone only if custom domain name has been verified by the provider.
36049
+ #
36050
+ # * `VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS` - VPC Lattice provisions
36051
+ # private hosted zones for all verified custom domain names and
36052
+ # other domain names that the resource consumer specifies. The
36053
+ # resource consumer specifies the domain names in the
36054
+ # PrivateDnsSpecifiedDomains parameter.
36055
+ #
36056
+ # * `SPECIFIED_DOMAINS_ONLY` - VPC Lattice provisions a private hosted
36057
+ # zone for domain names specified by the resource consumer. The
36058
+ # resource consumer specifies the domain names in the
36059
+ # PrivateDnsSpecifiedDomains parameter.
36060
+ # @return [String]
36061
+ #
36062
+ # @!attribute [rw] private_dns_specified_domains
36063
+ # Indicates which of the private domains to create private hosted
36064
+ # zones for and associate with the specified VPC. Only supported when
36065
+ # private DNS is enabled and the private DNS preference is
36066
+ # `VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS` or
36067
+ # `SPECIFIED_DOMAINS_ONLY`.
36068
+ # @return [Array<String>]
36069
+ #
36023
36070
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DnsOptions AWS API Documentation
36024
36071
  #
36025
36072
  class DnsOptions < Struct.new(
36026
36073
  :dns_record_ip_type,
36027
- :private_dns_only_for_inbound_resolver_endpoint)
36074
+ :private_dns_only_for_inbound_resolver_endpoint,
36075
+ :private_dns_preference,
36076
+ :private_dns_specified_domains)
36028
36077
  SENSITIVE = []
36029
36078
  include Aws::Structure
36030
36079
  end
@@ -36043,11 +36092,44 @@ module Aws::EC2
36043
36092
  # on-premises to the interface endpoint.
36044
36093
  # @return [Boolean]
36045
36094
  #
36095
+ # @!attribute [rw] private_dns_preference
36096
+ # The preference for which private domains have a private hosted zone
36097
+ # created for and associated with the specified VPC. Only supported
36098
+ # when private DNS is enabled and when the VPC endpoint type is
36099
+ # ServiceNetwork or Resource.
36100
+ #
36101
+ # * `ALL_DOMAINS` - VPC Lattice provisions private hosted zones for
36102
+ # all custom domain names.
36103
+ #
36104
+ # * `VERIFIED_DOMAINS_ONLY` - VPC Lattice provisions a private hosted
36105
+ # zone only if custom domain name has been verified by the provider.
36106
+ #
36107
+ # * `VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS` - VPC Lattice provisions
36108
+ # private hosted zones for all verified custom domain names and
36109
+ # other domain names that the resource consumer specifies. The
36110
+ # resource consumer specifies the domain names in the
36111
+ # PrivateDnsSpecifiedDomains parameter.
36112
+ #
36113
+ # * `SPECIFIED_DOMAINS_ONLY` - VPC Lattice provisions a private hosted
36114
+ # zone for domain names specified by the resource consumer. The
36115
+ # resource consumer specifies the domain names in the
36116
+ # PrivateDnsSpecifiedDomains parameter.
36117
+ # @return [String]
36118
+ #
36119
+ # @!attribute [rw] private_dns_specified_domains
36120
+ # Indicates which of the private domains to create private hosted
36121
+ # zones for and associate with the specified VPC. Only supported when
36122
+ # private DNS is enabled and the private DNS preference is
36123
+ # verified-domains-and-specified-domains or specified-domains-only.
36124
+ # @return [Array<String>]
36125
+ #
36046
36126
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DnsOptionsSpecification AWS API Documentation
36047
36127
  #
36048
36128
  class DnsOptionsSpecification < Struct.new(
36049
36129
  :dns_record_ip_type,
36050
- :private_dns_only_for_inbound_resolver_endpoint)
36130
+ :private_dns_only_for_inbound_resolver_endpoint,
36131
+ :private_dns_preference,
36132
+ :private_dns_specified_domains)
36051
36133
  SENSITIVE = []
36052
36134
  include Aws::Structure
36053
36135
  end
@@ -39017,6 +39099,37 @@ module Aws::EC2
39017
39099
  include Aws::Structure
39018
39100
  end
39019
39101
 
39102
+ # The configuration that links an Amazon VPC IPAM scope to an external
39103
+ # authority system. It specifies the type of external system and the
39104
+ # external resource identifier that identifies your account or instance
39105
+ # in that system.
39106
+ #
39107
+ # For more information, see [Integrate VPC IPAM with Infoblox
39108
+ # infrastructure][1] in the *Amazon VPC IPAM User Guide*..
39109
+ #
39110
+ #
39111
+ #
39112
+ # [1]: https://docs.aws.amazon.com/vpc/latest/ipam/integrate-infoblox-ipam.html
39113
+ #
39114
+ # @!attribute [rw] type
39115
+ # The type of external authority.
39116
+ # @return [String]
39117
+ #
39118
+ # @!attribute [rw] external_resource_identifier
39119
+ # The identifier for the external resource managing this scope. For
39120
+ # Infoblox integrations, this is the Infoblox resource identifier in
39121
+ # the format `<version>.identity.account.<entity_realm>.<entity_id>`.
39122
+ # @return [String]
39123
+ #
39124
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ExternalAuthorityConfiguration AWS API Documentation
39125
+ #
39126
+ class ExternalAuthorityConfiguration < Struct.new(
39127
+ :type,
39128
+ :external_resource_identifier)
39129
+ SENSITIVE = []
39130
+ include Aws::Structure
39131
+ end
39132
+
39020
39133
  # Describes a Capacity Reservation Fleet that could not be cancelled.
39021
39134
  #
39022
39135
  # @!attribute [rw] capacity_reservation_fleet_id
@@ -52841,6 +52954,23 @@ module Aws::EC2
52841
52954
  # name and `TeamA` for the filter value.
52842
52955
  # @return [Array<Types::Tag>]
52843
52956
  #
52957
+ # @!attribute [rw] external_authority_configuration
52958
+ # The external authority configuration for this IPAM scope, if
52959
+ # configured.
52960
+ #
52961
+ # The configuration that links an Amazon VPC IPAM scope to an external
52962
+ # authority system. It specifies the type of external system and the
52963
+ # external resource identifier that identifies your account or
52964
+ # instance in that system.
52965
+ #
52966
+ # In IPAM, an external authority is a third-party IP address
52967
+ # management system that provides CIDR blocks when you provision
52968
+ # address space for top-level IPAM pools. This allows you to use your
52969
+ # existing IP management system to control which address ranges are
52970
+ # allocated to Amazon Web Services while using Amazon VPC IPAM to
52971
+ # manage subnets within those ranges.
52972
+ # @return [Types::IpamScopeExternalAuthorityConfiguration]
52973
+ #
52844
52974
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamScope AWS API Documentation
52845
52975
  #
52846
52976
  class IpamScope < Struct.new(
@@ -52854,7 +52984,40 @@ module Aws::EC2
52854
52984
  :description,
52855
52985
  :pool_count,
52856
52986
  :state,
52857
- :tags)
52987
+ :tags,
52988
+ :external_authority_configuration)
52989
+ SENSITIVE = []
52990
+ include Aws::Structure
52991
+ end
52992
+
52993
+ # The configuration that links an Amazon VPC IPAM scope to an external
52994
+ # authority system. It specifies the type of external system and the
52995
+ # external resource identifier that identifies your account or instance
52996
+ # in that system.
52997
+ #
52998
+ # In IPAM, an external authority is a third-party IP address management
52999
+ # system that provides CIDR blocks when you provision address space for
53000
+ # top-level IPAM pools. This allows you to use your existing IP
53001
+ # management system to control which address ranges are allocated to
53002
+ # Amazon Web Services while using Amazon VPC IPAM to manage subnets
53003
+ # within those ranges.
53004
+ #
53005
+ # @!attribute [rw] type
53006
+ # The type of external authority managing this scope. Currently
53007
+ # supports `Infoblox` for integration with Infoblox Universal DDI.
53008
+ # @return [String]
53009
+ #
53010
+ # @!attribute [rw] external_resource_identifier
53011
+ # The identifier for the external resource managing this scope. For
53012
+ # Infoblox integrations, this is the Infoblox resource identifier in
53013
+ # the format `<version>.identity.account.<entity_realm>.<entity_id>`.
53014
+ # @return [String]
53015
+ #
53016
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamScopeExternalAuthorityConfiguration AWS API Documentation
53017
+ #
53018
+ class IpamScopeExternalAuthorityConfiguration < Struct.new(
53019
+ :type,
53020
+ :external_resource_identifier)
52858
53021
  SENSITIVE = []
52859
53022
  include Aws::Structure
52860
53023
  end
@@ -58906,12 +59069,32 @@ module Aws::EC2
58906
59069
  # The description of the scope you want to modify.
58907
59070
  # @return [String]
58908
59071
  #
59072
+ # @!attribute [rw] external_authority_configuration
59073
+ # The configuration that links an Amazon VPC IPAM scope to an external
59074
+ # authority system. It specifies the type of external system and the
59075
+ # external resource identifier that identifies your account or
59076
+ # instance in that system.
59077
+ #
59078
+ # In IPAM, an external authority is a third-party IP address
59079
+ # management system that provides CIDR blocks when you provision
59080
+ # address space for top-level IPAM pools. This allows you to use your
59081
+ # existing IP management system to control which address ranges are
59082
+ # allocated to Amazon Web Services while using Amazon VPC IPAM to
59083
+ # manage subnets within those ranges.
59084
+ # @return [Types::ExternalAuthorityConfiguration]
59085
+ #
59086
+ # @!attribute [rw] remove_external_authority_configuration
59087
+ # Remove the external authority configuration. `true` to remove.
59088
+ # @return [Boolean]
59089
+ #
58909
59090
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIpamScopeRequest AWS API Documentation
58910
59091
  #
58911
59092
  class ModifyIpamScopeRequest < Struct.new(
58912
59093
  :dry_run,
58913
59094
  :ipam_scope_id,
58914
- :description)
59095
+ :description,
59096
+ :external_authority_configuration,
59097
+ :remove_external_authority_configuration)
58915
59098
  SENSITIVE = []
58916
59099
  include Aws::Structure
58917
59100
  end
@@ -65203,8 +65386,8 @@ module Aws::EC2
65203
65386
  # @!attribute [rw] state
65204
65387
  # The verification state of the VPC endpoint service.
65205
65388
  #
65206
- # &gt;Consumers of the endpoint service can use the private name only
65207
- # when the state is `verified`.
65389
+ # Consumers of the endpoint service can use the private name only when
65390
+ # the state is `verified`.
65208
65391
  # @return [String]
65209
65392
  #
65210
65393
  # @!attribute [rw] type
data/lib/aws-sdk-ec2.rb CHANGED
@@ -78,7 +78,7 @@ module Aws::EC2
78
78
  autoload :VpcPeeringConnection, 'aws-sdk-ec2/vpc_peering_connection'
79
79
  autoload :VpcAddress, 'aws-sdk-ec2/vpc_address'
80
80
 
81
- GEM_VERSION = '1.571.0'
81
+ GEM_VERSION = '1.572.0'
82
82
 
83
83
  end
84
84
 
data/sig/client.rbs CHANGED
@@ -2176,7 +2176,11 @@ module Aws
2176
2176
  ]?
2177
2177
  },
2178
2178
  ],
2179
- ?client_token: ::String
2179
+ ?client_token: ::String,
2180
+ ?external_authority_configuration: {
2181
+ type: ("infoblox")?,
2182
+ external_resource_identifier: ::String?
2183
+ }
2180
2184
  ) -> _CreateIpamScopeResponseSuccess
2181
2185
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIpamScopeResponseSuccess
2182
2186
 
@@ -4404,7 +4408,9 @@ module Aws
4404
4408
  ?ip_address_type: ("ipv4" | "dualstack" | "ipv6"),
4405
4409
  ?dns_options: {
4406
4410
  dns_record_ip_type: ("ipv4" | "dualstack" | "ipv6" | "service-defined")?,
4407
- private_dns_only_for_inbound_resolver_endpoint: bool?
4411
+ private_dns_only_for_inbound_resolver_endpoint: bool?,
4412
+ private_dns_preference: ::String?,
4413
+ private_dns_specified_domains: Array[::String]?
4408
4414
  },
4409
4415
  ?client_token: ::String,
4410
4416
  ?private_dns_enabled: bool,
@@ -12027,7 +12033,12 @@ module Aws
12027
12033
  def modify_ipam_scope: (
12028
12034
  ?dry_run: bool,
12029
12035
  ipam_scope_id: ::String,
12030
- ?description: ::String
12036
+ ?description: ::String,
12037
+ ?external_authority_configuration: {
12038
+ type: ("infoblox")?,
12039
+ external_resource_identifier: ::String?
12040
+ },
12041
+ ?remove_external_authority_configuration: bool
12031
12042
  ) -> _ModifyIpamScopeResponseSuccess
12032
12043
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyIpamScopeResponseSuccess
12033
12044
 
@@ -12752,7 +12763,9 @@ module Aws
12752
12763
  ?ip_address_type: ("ipv4" | "dualstack" | "ipv6"),
12753
12764
  ?dns_options: {
12754
12765
  dns_record_ip_type: ("ipv4" | "dualstack" | "ipv6" | "service-defined")?,
12755
- private_dns_only_for_inbound_resolver_endpoint: bool?
12766
+ private_dns_only_for_inbound_resolver_endpoint: bool?,
12767
+ private_dns_preference: ::String?,
12768
+ private_dns_specified_domains: Array[::String]?
12756
12769
  },
12757
12770
  ?private_dns_enabled: bool,
12758
12771
  ?subnet_configurations: Array[
data/sig/types.rbs CHANGED
@@ -2435,6 +2435,7 @@ module Aws::EC2
2435
2435
  attr_accessor description: ::String
2436
2436
  attr_accessor tag_specifications: ::Array[Types::TagSpecification]
2437
2437
  attr_accessor client_token: ::String
2438
+ attr_accessor external_authority_configuration: Types::ExternalAuthorityConfiguration
2438
2439
  SENSITIVE: []
2439
2440
  end
2440
2441
 
@@ -7931,12 +7932,16 @@ module Aws::EC2
7931
7932
  class DnsOptions
7932
7933
  attr_accessor dns_record_ip_type: ("ipv4" | "dualstack" | "ipv6" | "service-defined")
7933
7934
  attr_accessor private_dns_only_for_inbound_resolver_endpoint: bool
7935
+ attr_accessor private_dns_preference: ::String
7936
+ attr_accessor private_dns_specified_domains: ::Array[::String]
7934
7937
  SENSITIVE: []
7935
7938
  end
7936
7939
 
7937
7940
  class DnsOptionsSpecification
7938
7941
  attr_accessor dns_record_ip_type: ("ipv4" | "dualstack" | "ipv6" | "service-defined")
7939
7942
  attr_accessor private_dns_only_for_inbound_resolver_endpoint: bool
7943
+ attr_accessor private_dns_preference: ::String
7944
+ attr_accessor private_dns_specified_domains: ::Array[::String]
7940
7945
  SENSITIVE: []
7941
7946
  end
7942
7947
 
@@ -8610,6 +8615,12 @@ module Aws::EC2
8610
8615
  SENSITIVE: []
8611
8616
  end
8612
8617
 
8618
+ class ExternalAuthorityConfiguration
8619
+ attr_accessor type: ("infoblox")
8620
+ attr_accessor external_resource_identifier: ::String
8621
+ SENSITIVE: []
8622
+ end
8623
+
8613
8624
  class FailedCapacityReservationFleetCancellationResult
8614
8625
  attr_accessor capacity_reservation_fleet_id: ::String
8615
8626
  attr_accessor cancel_capacity_reservation_fleet_error: Types::CancelCapacityReservationFleetError
@@ -11343,6 +11354,13 @@ module Aws::EC2
11343
11354
  attr_accessor pool_count: ::Integer
11344
11355
  attr_accessor state: ("create-in-progress" | "create-complete" | "create-failed" | "modify-in-progress" | "modify-complete" | "modify-failed" | "delete-in-progress" | "delete-complete" | "delete-failed" | "isolate-in-progress" | "isolate-complete" | "restore-in-progress")
11345
11356
  attr_accessor tags: ::Array[Types::Tag]
11357
+ attr_accessor external_authority_configuration: Types::IpamScopeExternalAuthorityConfiguration
11358
+ SENSITIVE: []
11359
+ end
11360
+
11361
+ class IpamScopeExternalAuthorityConfiguration
11362
+ attr_accessor type: ("infoblox")
11363
+ attr_accessor external_resource_identifier: ::String
11346
11364
  SENSITIVE: []
11347
11365
  end
11348
11366
 
@@ -12616,6 +12634,8 @@ module Aws::EC2
12616
12634
  attr_accessor dry_run: bool
12617
12635
  attr_accessor ipam_scope_id: ::String
12618
12636
  attr_accessor description: ::String
12637
+ attr_accessor external_authority_configuration: Types::ExternalAuthorityConfiguration
12638
+ attr_accessor remove_external_authority_configuration: bool
12619
12639
  SENSITIVE: []
12620
12640
  end
12621
12641
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ec2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.571.0
4
+ version: 1.572.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services