aws-sdk-ec2 1.564.0 → 1.573.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 +4 -4
- data/CHANGELOG.md +45 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +1360 -168
- data/lib/aws-sdk-ec2/client_api.rb +444 -2
- data/lib/aws-sdk-ec2/instance.rb +1 -1
- data/lib/aws-sdk-ec2/network_interface.rb +6 -0
- data/lib/aws-sdk-ec2/resource.rb +21 -18
- data/lib/aws-sdk-ec2/security_group.rb +2 -2
- data/lib/aws-sdk-ec2/snapshot.rb +1 -1
- data/lib/aws-sdk-ec2/subnet.rb +6 -3
- data/lib/aws-sdk-ec2/types.rb +1761 -26
- data/lib/aws-sdk-ec2/volume.rb +1 -1
- data/lib/aws-sdk-ec2/vpc.rb +8 -5
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +420 -134
- data/sig/instance.rbs +2 -2
- data/sig/network_interface.rbs +3 -0
- data/sig/resource.rbs +18 -18
- data/sig/security_group.rbs +2 -2
- data/sig/snapshot.rbs +1 -1
- data/sig/subnet.rbs +3 -3
- data/sig/tag.rbs +1 -1
- data/sig/types.rbs +333 -30
- data/sig/volume.rbs +1 -1
- data/sig/vpc.rbs +5 -5
- metadata +3 -3
data/lib/aws-sdk-ec2/types.rb
CHANGED
|
@@ -5452,7 +5452,7 @@ module Aws::EC2
|
|
|
5452
5452
|
# @return [String]
|
|
5453
5453
|
#
|
|
5454
5454
|
# @!attribute [rw] availability_zone_id
|
|
5455
|
-
# The Availability Zone
|
|
5455
|
+
# The ID of the Availability Zone in which the capacity is reserved.
|
|
5456
5456
|
# @return [String]
|
|
5457
5457
|
#
|
|
5458
5458
|
# @!attribute [rw] instance_type
|
|
@@ -5552,15 +5552,14 @@ module Aws::EC2
|
|
|
5552
5552
|
# @return [String]
|
|
5553
5553
|
#
|
|
5554
5554
|
# @!attribute [rw] start_date
|
|
5555
|
-
# The date and time
|
|
5555
|
+
# The date and time the Capacity Reservation was started.
|
|
5556
5556
|
# @return [Time]
|
|
5557
5557
|
#
|
|
5558
5558
|
# @!attribute [rw] end_date
|
|
5559
|
-
# The date and time
|
|
5560
|
-
#
|
|
5561
|
-
#
|
|
5562
|
-
#
|
|
5563
|
-
# date and time.
|
|
5559
|
+
# The date and time the Capacity Reservation expires. When a Capacity
|
|
5560
|
+
# Reservation expires, the reserved capacity is released and you can
|
|
5561
|
+
# no longer launch instances into it. The Capacity Reservation's
|
|
5562
|
+
# state changes to `expired` when it reaches its end date and time.
|
|
5564
5563
|
# @return [Time]
|
|
5565
5564
|
#
|
|
5566
5565
|
# @!attribute [rw] end_date_type
|
|
@@ -5592,7 +5591,7 @@ module Aws::EC2
|
|
|
5592
5591
|
# @return [String]
|
|
5593
5592
|
#
|
|
5594
5593
|
# @!attribute [rw] create_date
|
|
5595
|
-
# The date and time
|
|
5594
|
+
# The date and time the Capacity Reservation was created.
|
|
5596
5595
|
# @return [Time]
|
|
5597
5596
|
#
|
|
5598
5597
|
# @!attribute [rw] tags
|
|
@@ -6213,6 +6212,73 @@ module Aws::EC2
|
|
|
6213
6212
|
include Aws::Structure
|
|
6214
6213
|
end
|
|
6215
6214
|
|
|
6215
|
+
# Information about the Capacity Reservation topology.
|
|
6216
|
+
#
|
|
6217
|
+
# @!attribute [rw] capacity_reservation_id
|
|
6218
|
+
# The ID of the Capacity Reservation.
|
|
6219
|
+
# @return [String]
|
|
6220
|
+
#
|
|
6221
|
+
# @!attribute [rw] capacity_block_id
|
|
6222
|
+
# The ID of the Capacity Block. This parameter is only supported for
|
|
6223
|
+
# UltraServer instances and identifies instances within the
|
|
6224
|
+
# UltraServer domain.
|
|
6225
|
+
# @return [String]
|
|
6226
|
+
#
|
|
6227
|
+
# @!attribute [rw] state
|
|
6228
|
+
# The current state of the Capacity Reservation. For the list of
|
|
6229
|
+
# possible states, see [DescribeCapacityReservations][1].
|
|
6230
|
+
#
|
|
6231
|
+
#
|
|
6232
|
+
#
|
|
6233
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeCapacityReservations.html
|
|
6234
|
+
# @return [String]
|
|
6235
|
+
#
|
|
6236
|
+
# @!attribute [rw] instance_type
|
|
6237
|
+
# The instance type.
|
|
6238
|
+
# @return [String]
|
|
6239
|
+
#
|
|
6240
|
+
# @!attribute [rw] group_name
|
|
6241
|
+
# The name of the placement group that the Capacity Reservation is in.
|
|
6242
|
+
# @return [String]
|
|
6243
|
+
#
|
|
6244
|
+
# @!attribute [rw] network_nodes
|
|
6245
|
+
# The network nodes. The nodes are hashed based on your account.
|
|
6246
|
+
# Capacity Reservations from different accounts running under the same
|
|
6247
|
+
# server will return a different hashed list of strings.
|
|
6248
|
+
#
|
|
6249
|
+
# The value is `null` or empty if:
|
|
6250
|
+
#
|
|
6251
|
+
# * The instance type is not supported.
|
|
6252
|
+
#
|
|
6253
|
+
# * The Capacity Reservation is in a state other than `active` or
|
|
6254
|
+
# `pending`.
|
|
6255
|
+
# @return [Array<String>]
|
|
6256
|
+
#
|
|
6257
|
+
# @!attribute [rw] availability_zone_id
|
|
6258
|
+
# The ID of the Availability Zone or Local Zone that the Capacity
|
|
6259
|
+
# Reservation is in.
|
|
6260
|
+
# @return [String]
|
|
6261
|
+
#
|
|
6262
|
+
# @!attribute [rw] availability_zone
|
|
6263
|
+
# The name of the Availability Zone or Local Zone that the Capacity
|
|
6264
|
+
# Reservation is in.
|
|
6265
|
+
# @return [String]
|
|
6266
|
+
#
|
|
6267
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CapacityReservationTopology AWS API Documentation
|
|
6268
|
+
#
|
|
6269
|
+
class CapacityReservationTopology < Struct.new(
|
|
6270
|
+
:capacity_reservation_id,
|
|
6271
|
+
:capacity_block_id,
|
|
6272
|
+
:state,
|
|
6273
|
+
:instance_type,
|
|
6274
|
+
:group_name,
|
|
6275
|
+
:network_nodes,
|
|
6276
|
+
:availability_zone_id,
|
|
6277
|
+
:availability_zone)
|
|
6278
|
+
SENSITIVE = []
|
|
6279
|
+
include Aws::Structure
|
|
6280
|
+
end
|
|
6281
|
+
|
|
6216
6282
|
# Describes a carrier gateway.
|
|
6217
6283
|
#
|
|
6218
6284
|
# @!attribute [rw] carrier_gateway_id
|
|
@@ -10792,6 +10858,178 @@ module Aws::EC2
|
|
|
10792
10858
|
include Aws::Structure
|
|
10793
10859
|
end
|
|
10794
10860
|
|
|
10861
|
+
# @!attribute [rw] dry_run
|
|
10862
|
+
# A check for whether you have the required permissions for the action
|
|
10863
|
+
# without actually making the request and provides an error response.
|
|
10864
|
+
# If you have the required permissions, the error response is
|
|
10865
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
10866
|
+
# @return [Boolean]
|
|
10867
|
+
#
|
|
10868
|
+
# @!attribute [rw] ipam_id
|
|
10869
|
+
# The ID of the IPAM that will serve as the source of the IP address
|
|
10870
|
+
# database for CIDR selection. The IPAM must be in the Advanced tier
|
|
10871
|
+
# to use this feature.
|
|
10872
|
+
# @return [String]
|
|
10873
|
+
#
|
|
10874
|
+
# @!attribute [rw] description
|
|
10875
|
+
# A description for the IPAM prefix list resolver to help you identify
|
|
10876
|
+
# its purpose and configuration.
|
|
10877
|
+
# @return [String]
|
|
10878
|
+
#
|
|
10879
|
+
# @!attribute [rw] address_family
|
|
10880
|
+
# The address family for the IPAM prefix list resolver. Valid values
|
|
10881
|
+
# are `ipv4` and `ipv6`. You must create separate resolvers for IPv4
|
|
10882
|
+
# and IPv6 CIDRs as they cannot be mixed in the same resolver.
|
|
10883
|
+
# @return [String]
|
|
10884
|
+
#
|
|
10885
|
+
# @!attribute [rw] rules
|
|
10886
|
+
# The CIDR selection rules for the resolver.
|
|
10887
|
+
#
|
|
10888
|
+
# CIDR selection rules define the business logic for selecting CIDRs
|
|
10889
|
+
# from IPAM. If a CIDR matches any of the rules, it will be included.
|
|
10890
|
+
# If a rule has multiple conditions, the CIDR has to match every
|
|
10891
|
+
# condition of that rule. You can create a prefix list resolver
|
|
10892
|
+
# without any CIDR selection rules, but it will generate empty
|
|
10893
|
+
# versions (containing no CIDRs) until you add rules.
|
|
10894
|
+
# @return [Array<Types::IpamPrefixListResolverRuleRequest>]
|
|
10895
|
+
#
|
|
10896
|
+
# @!attribute [rw] tag_specifications
|
|
10897
|
+
# The tags to apply to the IPAM prefix list resolver during creation.
|
|
10898
|
+
# Tags help you organize and manage your Amazon Web Services
|
|
10899
|
+
# resources.
|
|
10900
|
+
# @return [Array<Types::TagSpecification>]
|
|
10901
|
+
#
|
|
10902
|
+
# @!attribute [rw] client_token
|
|
10903
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
10904
|
+
# idempotency of the request. For more information, see [Ensuring
|
|
10905
|
+
# idempotency][1].
|
|
10906
|
+
#
|
|
10907
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
10908
|
+
# not need to pass this option.
|
|
10909
|
+
#
|
|
10910
|
+
#
|
|
10911
|
+
#
|
|
10912
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
|
10913
|
+
# @return [String]
|
|
10914
|
+
#
|
|
10915
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateIpamPrefixListResolverRequest AWS API Documentation
|
|
10916
|
+
#
|
|
10917
|
+
class CreateIpamPrefixListResolverRequest < Struct.new(
|
|
10918
|
+
:dry_run,
|
|
10919
|
+
:ipam_id,
|
|
10920
|
+
:description,
|
|
10921
|
+
:address_family,
|
|
10922
|
+
:rules,
|
|
10923
|
+
:tag_specifications,
|
|
10924
|
+
:client_token)
|
|
10925
|
+
SENSITIVE = []
|
|
10926
|
+
include Aws::Structure
|
|
10927
|
+
end
|
|
10928
|
+
|
|
10929
|
+
# @!attribute [rw] ipam_prefix_list_resolver
|
|
10930
|
+
# Information about the IPAM prefix list resolver that was created.
|
|
10931
|
+
# @return [Types::IpamPrefixListResolver]
|
|
10932
|
+
#
|
|
10933
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateIpamPrefixListResolverResult AWS API Documentation
|
|
10934
|
+
#
|
|
10935
|
+
class CreateIpamPrefixListResolverResult < Struct.new(
|
|
10936
|
+
:ipam_prefix_list_resolver)
|
|
10937
|
+
SENSITIVE = []
|
|
10938
|
+
include Aws::Structure
|
|
10939
|
+
end
|
|
10940
|
+
|
|
10941
|
+
# @!attribute [rw] dry_run
|
|
10942
|
+
# A check for whether you have the required permissions for the action
|
|
10943
|
+
# without actually making the request and provides an error response.
|
|
10944
|
+
# If you have the required permissions, the error response is
|
|
10945
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
10946
|
+
# @return [Boolean]
|
|
10947
|
+
#
|
|
10948
|
+
# @!attribute [rw] ipam_prefix_list_resolver_id
|
|
10949
|
+
# The ID of the IPAM prefix list resolver that will manage the
|
|
10950
|
+
# synchronization of CIDRs to the target prefix list.
|
|
10951
|
+
# @return [String]
|
|
10952
|
+
#
|
|
10953
|
+
# @!attribute [rw] prefix_list_id
|
|
10954
|
+
# The ID of the managed prefix list that will be synchronized with
|
|
10955
|
+
# CIDRs selected by the IPAM prefix list resolver. This prefix list
|
|
10956
|
+
# becomes an IPAM managed prefix list.
|
|
10957
|
+
#
|
|
10958
|
+
# An IPAM-managed prefix list is a customer-managed prefix list that
|
|
10959
|
+
# has been associated with an IPAM prefix list resolver target. When a
|
|
10960
|
+
# prefix list becomes IPAM managed, its CIDRs are automatically
|
|
10961
|
+
# synchronized based on the IPAM prefix list resolver's CIDR
|
|
10962
|
+
# selection rules, and direct CIDR modifications are restricted.
|
|
10963
|
+
# @return [String]
|
|
10964
|
+
#
|
|
10965
|
+
# @!attribute [rw] prefix_list_region
|
|
10966
|
+
# The Amazon Web Services Region where the prefix list is located.
|
|
10967
|
+
# This is required when referencing a prefix list in a different
|
|
10968
|
+
# Region.
|
|
10969
|
+
# @return [String]
|
|
10970
|
+
#
|
|
10971
|
+
# @!attribute [rw] desired_version
|
|
10972
|
+
# The specific version of the prefix list to target. If not specified,
|
|
10973
|
+
# the resolver will target the latest version.
|
|
10974
|
+
# @return [Integer]
|
|
10975
|
+
#
|
|
10976
|
+
# @!attribute [rw] track_latest_version
|
|
10977
|
+
# Indicates whether the resolver target should automatically track the
|
|
10978
|
+
# latest version of the prefix list. When enabled, the target will
|
|
10979
|
+
# always synchronize with the most current version of the prefix list.
|
|
10980
|
+
#
|
|
10981
|
+
# Choose this for automatic updates when you want your prefix lists to
|
|
10982
|
+
# stay current with infrastructure changes without manual
|
|
10983
|
+
# intervention.
|
|
10984
|
+
# @return [Boolean]
|
|
10985
|
+
#
|
|
10986
|
+
# @!attribute [rw] tag_specifications
|
|
10987
|
+
# The tags to apply to the IPAM prefix list resolver target during
|
|
10988
|
+
# creation. Tags help you organize and manage your Amazon Web Services
|
|
10989
|
+
# resources.
|
|
10990
|
+
# @return [Array<Types::TagSpecification>]
|
|
10991
|
+
#
|
|
10992
|
+
# @!attribute [rw] client_token
|
|
10993
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
10994
|
+
# idempotency of the request. For more information, see [Ensuring
|
|
10995
|
+
# idempotency][1].
|
|
10996
|
+
#
|
|
10997
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
10998
|
+
# not need to pass this option.
|
|
10999
|
+
#
|
|
11000
|
+
#
|
|
11001
|
+
#
|
|
11002
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
|
11003
|
+
# @return [String]
|
|
11004
|
+
#
|
|
11005
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateIpamPrefixListResolverTargetRequest AWS API Documentation
|
|
11006
|
+
#
|
|
11007
|
+
class CreateIpamPrefixListResolverTargetRequest < Struct.new(
|
|
11008
|
+
:dry_run,
|
|
11009
|
+
:ipam_prefix_list_resolver_id,
|
|
11010
|
+
:prefix_list_id,
|
|
11011
|
+
:prefix_list_region,
|
|
11012
|
+
:desired_version,
|
|
11013
|
+
:track_latest_version,
|
|
11014
|
+
:tag_specifications,
|
|
11015
|
+
:client_token)
|
|
11016
|
+
SENSITIVE = []
|
|
11017
|
+
include Aws::Structure
|
|
11018
|
+
end
|
|
11019
|
+
|
|
11020
|
+
# @!attribute [rw] ipam_prefix_list_resolver_target
|
|
11021
|
+
# Information about the IPAM prefix list resolver target that was
|
|
11022
|
+
# created.
|
|
11023
|
+
# @return [Types::IpamPrefixListResolverTarget]
|
|
11024
|
+
#
|
|
11025
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateIpamPrefixListResolverTargetResult AWS API Documentation
|
|
11026
|
+
#
|
|
11027
|
+
class CreateIpamPrefixListResolverTargetResult < Struct.new(
|
|
11028
|
+
:ipam_prefix_list_resolver_target)
|
|
11029
|
+
SENSITIVE = []
|
|
11030
|
+
include Aws::Structure
|
|
11031
|
+
end
|
|
11032
|
+
|
|
10795
11033
|
# @!attribute [rw] dry_run
|
|
10796
11034
|
# A check for whether you have the required permissions for the action
|
|
10797
11035
|
# without actually making the request and provides an error response.
|
|
@@ -10988,6 +11226,20 @@ module Aws::EC2
|
|
|
10988
11226
|
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
|
10989
11227
|
# @return [String]
|
|
10990
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
|
+
#
|
|
10991
11243
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateIpamScopeRequest AWS API Documentation
|
|
10992
11244
|
#
|
|
10993
11245
|
class CreateIpamScopeRequest < Struct.new(
|
|
@@ -10995,7 +11247,8 @@ module Aws::EC2
|
|
|
10995
11247
|
:ipam_id,
|
|
10996
11248
|
:description,
|
|
10997
11249
|
:tag_specifications,
|
|
10998
|
-
:client_token
|
|
11250
|
+
:client_token,
|
|
11251
|
+
:external_authority_configuration)
|
|
10999
11252
|
SENSITIVE = []
|
|
11000
11253
|
include Aws::Structure
|
|
11001
11254
|
end
|
|
@@ -17133,6 +17386,71 @@ module Aws::EC2
|
|
|
17133
17386
|
include Aws::Structure
|
|
17134
17387
|
end
|
|
17135
17388
|
|
|
17389
|
+
# @!attribute [rw] dry_run
|
|
17390
|
+
# A check for whether you have the required permissions for the action
|
|
17391
|
+
# without actually making the request and provides an error response.
|
|
17392
|
+
# If you have the required permissions, the error response is
|
|
17393
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
17394
|
+
# @return [Boolean]
|
|
17395
|
+
#
|
|
17396
|
+
# @!attribute [rw] ipam_prefix_list_resolver_id
|
|
17397
|
+
# The ID of the IPAM prefix list resolver to delete.
|
|
17398
|
+
# @return [String]
|
|
17399
|
+
#
|
|
17400
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteIpamPrefixListResolverRequest AWS API Documentation
|
|
17401
|
+
#
|
|
17402
|
+
class DeleteIpamPrefixListResolverRequest < Struct.new(
|
|
17403
|
+
:dry_run,
|
|
17404
|
+
:ipam_prefix_list_resolver_id)
|
|
17405
|
+
SENSITIVE = []
|
|
17406
|
+
include Aws::Structure
|
|
17407
|
+
end
|
|
17408
|
+
|
|
17409
|
+
# @!attribute [rw] ipam_prefix_list_resolver
|
|
17410
|
+
# Information about the IPAM prefix list resolver that was deleted.
|
|
17411
|
+
# @return [Types::IpamPrefixListResolver]
|
|
17412
|
+
#
|
|
17413
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteIpamPrefixListResolverResult AWS API Documentation
|
|
17414
|
+
#
|
|
17415
|
+
class DeleteIpamPrefixListResolverResult < Struct.new(
|
|
17416
|
+
:ipam_prefix_list_resolver)
|
|
17417
|
+
SENSITIVE = []
|
|
17418
|
+
include Aws::Structure
|
|
17419
|
+
end
|
|
17420
|
+
|
|
17421
|
+
# @!attribute [rw] dry_run
|
|
17422
|
+
# A check for whether you have the required permissions for the action
|
|
17423
|
+
# without actually making the request and provides an error response.
|
|
17424
|
+
# If you have the required permissions, the error response is
|
|
17425
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
17426
|
+
# @return [Boolean]
|
|
17427
|
+
#
|
|
17428
|
+
# @!attribute [rw] ipam_prefix_list_resolver_target_id
|
|
17429
|
+
# The ID of the IPAM prefix list resolver target to delete.
|
|
17430
|
+
# @return [String]
|
|
17431
|
+
#
|
|
17432
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteIpamPrefixListResolverTargetRequest AWS API Documentation
|
|
17433
|
+
#
|
|
17434
|
+
class DeleteIpamPrefixListResolverTargetRequest < Struct.new(
|
|
17435
|
+
:dry_run,
|
|
17436
|
+
:ipam_prefix_list_resolver_target_id)
|
|
17437
|
+
SENSITIVE = []
|
|
17438
|
+
include Aws::Structure
|
|
17439
|
+
end
|
|
17440
|
+
|
|
17441
|
+
# @!attribute [rw] ipam_prefix_list_resolver_target
|
|
17442
|
+
# Information about the IPAM prefix list resolver target that was
|
|
17443
|
+
# deleted.
|
|
17444
|
+
# @return [Types::IpamPrefixListResolverTarget]
|
|
17445
|
+
#
|
|
17446
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteIpamPrefixListResolverTargetResult AWS API Documentation
|
|
17447
|
+
#
|
|
17448
|
+
class DeleteIpamPrefixListResolverTargetResult < Struct.new(
|
|
17449
|
+
:ipam_prefix_list_resolver_target)
|
|
17450
|
+
SENSITIVE = []
|
|
17451
|
+
include Aws::Structure
|
|
17452
|
+
end
|
|
17453
|
+
|
|
17136
17454
|
# @!attribute [rw] dry_run
|
|
17137
17455
|
# A check for whether you have the required permissions for the action
|
|
17138
17456
|
# without actually making the request and provides an error response.
|
|
@@ -20853,6 +21171,86 @@ module Aws::EC2
|
|
|
20853
21171
|
include Aws::Structure
|
|
20854
21172
|
end
|
|
20855
21173
|
|
|
21174
|
+
# @!attribute [rw] dry_run
|
|
21175
|
+
# Checks whether you have the required permissions for the operation,
|
|
21176
|
+
# without actually making the request, and provides an error response.
|
|
21177
|
+
# If you have the required permissions, the error response is
|
|
21178
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
21179
|
+
# @return [Boolean]
|
|
21180
|
+
#
|
|
21181
|
+
# @!attribute [rw] next_token
|
|
21182
|
+
# The token returned from a previous paginated request. Pagination
|
|
21183
|
+
# continues from the end of the items returned by the previous
|
|
21184
|
+
# request.
|
|
21185
|
+
# @return [String]
|
|
21186
|
+
#
|
|
21187
|
+
# @!attribute [rw] max_results
|
|
21188
|
+
# The maximum number of items to return for this request. To get the
|
|
21189
|
+
# next page of items, make another request with the token returned in
|
|
21190
|
+
# the output. For more information, see [Pagination][1].
|
|
21191
|
+
#
|
|
21192
|
+
# You can't specify this parameter and the Capacity Reservation IDs
|
|
21193
|
+
# parameter in the same request.
|
|
21194
|
+
#
|
|
21195
|
+
# Default: `10`
|
|
21196
|
+
#
|
|
21197
|
+
#
|
|
21198
|
+
#
|
|
21199
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
|
21200
|
+
# @return [Integer]
|
|
21201
|
+
#
|
|
21202
|
+
# @!attribute [rw] capacity_reservation_ids
|
|
21203
|
+
# The Capacity Reservation IDs.
|
|
21204
|
+
#
|
|
21205
|
+
# Default: Describes all your Capacity Reservations.
|
|
21206
|
+
#
|
|
21207
|
+
# Constraints: Maximum 100 explicitly specified Capacity Reservation
|
|
21208
|
+
# IDs.
|
|
21209
|
+
# @return [Array<String>]
|
|
21210
|
+
#
|
|
21211
|
+
# @!attribute [rw] filters
|
|
21212
|
+
# The filters.
|
|
21213
|
+
#
|
|
21214
|
+
# * `availability-zone` - The name of the Availability Zone (for
|
|
21215
|
+
# example, `us-west-2a`) or Local Zone (for example,
|
|
21216
|
+
# `us-west-2-lax-1b`) that the Capacity Reservation is in.
|
|
21217
|
+
#
|
|
21218
|
+
# * `instance-type` - The instance type (for example, `p4d.24xlarge`)
|
|
21219
|
+
# or instance family (for example, `p4d*`). You can use the `*`
|
|
21220
|
+
# wildcard to match zero or more characters, or the `?` wildcard to
|
|
21221
|
+
# match zero or one character.
|
|
21222
|
+
# @return [Array<Types::Filter>]
|
|
21223
|
+
#
|
|
21224
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeCapacityReservationTopologyRequest AWS API Documentation
|
|
21225
|
+
#
|
|
21226
|
+
class DescribeCapacityReservationTopologyRequest < Struct.new(
|
|
21227
|
+
:dry_run,
|
|
21228
|
+
:next_token,
|
|
21229
|
+
:max_results,
|
|
21230
|
+
:capacity_reservation_ids,
|
|
21231
|
+
:filters)
|
|
21232
|
+
SENSITIVE = []
|
|
21233
|
+
include Aws::Structure
|
|
21234
|
+
end
|
|
21235
|
+
|
|
21236
|
+
# @!attribute [rw] next_token
|
|
21237
|
+
# The token to include in another request to get the next page of
|
|
21238
|
+
# items. This value is `null` when there are no more items to return.
|
|
21239
|
+
# @return [String]
|
|
21240
|
+
#
|
|
21241
|
+
# @!attribute [rw] capacity_reservations
|
|
21242
|
+
# Information about the topology of each Capacity Reservation.
|
|
21243
|
+
# @return [Array<Types::CapacityReservationTopology>]
|
|
21244
|
+
#
|
|
21245
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeCapacityReservationTopologyResult AWS API Documentation
|
|
21246
|
+
#
|
|
21247
|
+
class DescribeCapacityReservationTopologyResult < Struct.new(
|
|
21248
|
+
:next_token,
|
|
21249
|
+
:capacity_reservations)
|
|
21250
|
+
SENSITIVE = []
|
|
21251
|
+
include Aws::Structure
|
|
21252
|
+
end
|
|
21253
|
+
|
|
20856
21254
|
# @!attribute [rw] capacity_reservation_ids
|
|
20857
21255
|
# The ID of the Capacity Reservation.
|
|
20858
21256
|
# @return [Array<String>]
|
|
@@ -22133,6 +22531,10 @@ module Aws::EC2
|
|
|
22133
22531
|
# The Availability Zone.
|
|
22134
22532
|
# @return [String]
|
|
22135
22533
|
#
|
|
22534
|
+
# @!attribute [rw] availability_zone_id
|
|
22535
|
+
# The ID of the Availability Zone.
|
|
22536
|
+
# @return [String]
|
|
22537
|
+
#
|
|
22136
22538
|
# @!attribute [rw] state
|
|
22137
22539
|
# The state of fast snapshot restores.
|
|
22138
22540
|
# @return [String]
|
|
@@ -22189,6 +22591,7 @@ module Aws::EC2
|
|
|
22189
22591
|
class DescribeFastSnapshotRestoreSuccessItem < Struct.new(
|
|
22190
22592
|
:snapshot_id,
|
|
22191
22593
|
:availability_zone,
|
|
22594
|
+
:availability_zone_id,
|
|
22192
22595
|
:state,
|
|
22193
22596
|
:state_transition_reason,
|
|
22194
22597
|
:owner_id,
|
|
@@ -22205,7 +22608,11 @@ module Aws::EC2
|
|
|
22205
22608
|
# @!attribute [rw] filters
|
|
22206
22609
|
# The filters. The possible values are:
|
|
22207
22610
|
#
|
|
22208
|
-
# * `availability-zone`: The Availability Zone of the snapshot.
|
|
22611
|
+
# * `availability-zone`: The Availability Zone of the snapshot. For
|
|
22612
|
+
# example, `us-east-2a`.
|
|
22613
|
+
#
|
|
22614
|
+
# * `availability-zone-id`: The ID of the Availability Zone of the
|
|
22615
|
+
# snapshot. For example, `use2-az1`.
|
|
22209
22616
|
#
|
|
22210
22617
|
# * `owner-id`: The ID of the Amazon Web Services account that enabled
|
|
22211
22618
|
# fast snapshot restore on the snapshot.
|
|
@@ -23376,6 +23783,16 @@ module Aws::EC2
|
|
|
23376
23783
|
#
|
|
23377
23784
|
# * `state` - The state of the report (`available` \| `pending` \|
|
|
23378
23785
|
# `error`).
|
|
23786
|
+
#
|
|
23787
|
+
# * `tag:<key>` - The key/value combination of a tag assigned to the
|
|
23788
|
+
# resource. Use the tag key in the filter name and the tag value as
|
|
23789
|
+
# the filter value. For example, to find all resources that have a
|
|
23790
|
+
# tag with the key `Owner` and the value `TeamA`, specify
|
|
23791
|
+
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
|
23792
|
+
#
|
|
23793
|
+
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
|
23794
|
+
# filter to find all resources assigned a tag with a specific key,
|
|
23795
|
+
# regardless of the tag value.
|
|
23379
23796
|
# @return [Array<Types::Filter>]
|
|
23380
23797
|
#
|
|
23381
23798
|
# @!attribute [rw] dry_run
|
|
@@ -25521,6 +25938,132 @@ module Aws::EC2
|
|
|
25521
25938
|
include Aws::Structure
|
|
25522
25939
|
end
|
|
25523
25940
|
|
|
25941
|
+
# @!attribute [rw] dry_run
|
|
25942
|
+
# A check for whether you have the required permissions for the action
|
|
25943
|
+
# without actually making the request and provides an error response.
|
|
25944
|
+
# If you have the required permissions, the error response is
|
|
25945
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
25946
|
+
# @return [Boolean]
|
|
25947
|
+
#
|
|
25948
|
+
# @!attribute [rw] filters
|
|
25949
|
+
# One or more filters to limit the results.
|
|
25950
|
+
# @return [Array<Types::Filter>]
|
|
25951
|
+
#
|
|
25952
|
+
# @!attribute [rw] max_results
|
|
25953
|
+
# The maximum number of items to return for this request. To get the
|
|
25954
|
+
# next page of items, make another request with the token returned in
|
|
25955
|
+
# the output. For more information, see [Pagination][1].
|
|
25956
|
+
#
|
|
25957
|
+
#
|
|
25958
|
+
#
|
|
25959
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
|
25960
|
+
# @return [Integer]
|
|
25961
|
+
#
|
|
25962
|
+
# @!attribute [rw] next_token
|
|
25963
|
+
# The token for the next page of results.
|
|
25964
|
+
# @return [String]
|
|
25965
|
+
#
|
|
25966
|
+
# @!attribute [rw] ipam_prefix_list_resolver_target_ids
|
|
25967
|
+
# The IDs of the IPAM prefix list resolver Targets to describe. If not
|
|
25968
|
+
# specified, all targets in your account are described.
|
|
25969
|
+
# @return [Array<String>]
|
|
25970
|
+
#
|
|
25971
|
+
# @!attribute [rw] ipam_prefix_list_resolver_id
|
|
25972
|
+
# The ID of the IPAM prefix list resolver to filter targets by. Only
|
|
25973
|
+
# targets associated with this resolver will be returned.
|
|
25974
|
+
# @return [String]
|
|
25975
|
+
#
|
|
25976
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIpamPrefixListResolverTargetsRequest AWS API Documentation
|
|
25977
|
+
#
|
|
25978
|
+
class DescribeIpamPrefixListResolverTargetsRequest < Struct.new(
|
|
25979
|
+
:dry_run,
|
|
25980
|
+
:filters,
|
|
25981
|
+
:max_results,
|
|
25982
|
+
:next_token,
|
|
25983
|
+
:ipam_prefix_list_resolver_target_ids,
|
|
25984
|
+
:ipam_prefix_list_resolver_id)
|
|
25985
|
+
SENSITIVE = []
|
|
25986
|
+
include Aws::Structure
|
|
25987
|
+
end
|
|
25988
|
+
|
|
25989
|
+
# @!attribute [rw] next_token
|
|
25990
|
+
# The token to use to retrieve the next page of results. This value is
|
|
25991
|
+
# `null` when there are no more results to return.
|
|
25992
|
+
# @return [String]
|
|
25993
|
+
#
|
|
25994
|
+
# @!attribute [rw] ipam_prefix_list_resolver_targets
|
|
25995
|
+
# Information about the IPAM prefix list resolver Targets.
|
|
25996
|
+
# @return [Array<Types::IpamPrefixListResolverTarget>]
|
|
25997
|
+
#
|
|
25998
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIpamPrefixListResolverTargetsResult AWS API Documentation
|
|
25999
|
+
#
|
|
26000
|
+
class DescribeIpamPrefixListResolverTargetsResult < Struct.new(
|
|
26001
|
+
:next_token,
|
|
26002
|
+
:ipam_prefix_list_resolver_targets)
|
|
26003
|
+
SENSITIVE = []
|
|
26004
|
+
include Aws::Structure
|
|
26005
|
+
end
|
|
26006
|
+
|
|
26007
|
+
# @!attribute [rw] dry_run
|
|
26008
|
+
# A check for whether you have the required permissions for the action
|
|
26009
|
+
# without actually making the request and provides an error response.
|
|
26010
|
+
# If you have the required permissions, the error response is
|
|
26011
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
26012
|
+
# @return [Boolean]
|
|
26013
|
+
#
|
|
26014
|
+
# @!attribute [rw] filters
|
|
26015
|
+
# One or more filters to limit the results.
|
|
26016
|
+
# @return [Array<Types::Filter>]
|
|
26017
|
+
#
|
|
26018
|
+
# @!attribute [rw] max_results
|
|
26019
|
+
# The maximum number of items to return for this request. To get the
|
|
26020
|
+
# next page of items, make another request with the token returned in
|
|
26021
|
+
# the output. For more information, see [Pagination][1].
|
|
26022
|
+
#
|
|
26023
|
+
#
|
|
26024
|
+
#
|
|
26025
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
|
26026
|
+
# @return [Integer]
|
|
26027
|
+
#
|
|
26028
|
+
# @!attribute [rw] next_token
|
|
26029
|
+
# The token for the next page of results.
|
|
26030
|
+
# @return [String]
|
|
26031
|
+
#
|
|
26032
|
+
# @!attribute [rw] ipam_prefix_list_resolver_ids
|
|
26033
|
+
# The IDs of the IPAM prefix list resolvers to describe. If not
|
|
26034
|
+
# specified, all resolvers in your account are described.
|
|
26035
|
+
# @return [Array<String>]
|
|
26036
|
+
#
|
|
26037
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIpamPrefixListResolversRequest AWS API Documentation
|
|
26038
|
+
#
|
|
26039
|
+
class DescribeIpamPrefixListResolversRequest < Struct.new(
|
|
26040
|
+
:dry_run,
|
|
26041
|
+
:filters,
|
|
26042
|
+
:max_results,
|
|
26043
|
+
:next_token,
|
|
26044
|
+
:ipam_prefix_list_resolver_ids)
|
|
26045
|
+
SENSITIVE = []
|
|
26046
|
+
include Aws::Structure
|
|
26047
|
+
end
|
|
26048
|
+
|
|
26049
|
+
# @!attribute [rw] next_token
|
|
26050
|
+
# The token to use to retrieve the next page of results. This value is
|
|
26051
|
+
# `null` when there are no more results to return.
|
|
26052
|
+
# @return [String]
|
|
26053
|
+
#
|
|
26054
|
+
# @!attribute [rw] ipam_prefix_list_resolvers
|
|
26055
|
+
# Information about the IPAM prefix list resolvers.
|
|
26056
|
+
# @return [Array<Types::IpamPrefixListResolver>]
|
|
26057
|
+
#
|
|
26058
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIpamPrefixListResolversResult AWS API Documentation
|
|
26059
|
+
#
|
|
26060
|
+
class DescribeIpamPrefixListResolversResult < Struct.new(
|
|
26061
|
+
:next_token,
|
|
26062
|
+
:ipam_prefix_list_resolvers)
|
|
26063
|
+
SENSITIVE = []
|
|
26064
|
+
include Aws::Structure
|
|
26065
|
+
end
|
|
26066
|
+
|
|
25524
26067
|
# @!attribute [rw] dry_run
|
|
25525
26068
|
# A check for whether you have the required permissions for the action
|
|
25526
26069
|
# without actually making the request and provides an error response.
|
|
@@ -27560,6 +28103,9 @@ module Aws::EC2
|
|
|
27560
28103
|
# * `availability-zone` - The Availability Zone of the network
|
|
27561
28104
|
# interface.
|
|
27562
28105
|
#
|
|
28106
|
+
# * `availability-zone-id` - The ID of the Availability Zone of the
|
|
28107
|
+
# network interface.
|
|
28108
|
+
#
|
|
27563
28109
|
# * `description` - The description of the network interface.
|
|
27564
28110
|
#
|
|
27565
28111
|
# * `group-id` - The ID of a security group associated with the
|
|
@@ -34118,6 +34664,10 @@ module Aws::EC2
|
|
|
34118
34664
|
# The Availability Zone.
|
|
34119
34665
|
# @return [String]
|
|
34120
34666
|
#
|
|
34667
|
+
# @!attribute [rw] availability_zone_id
|
|
34668
|
+
# The ID of the Availability Zone.
|
|
34669
|
+
# @return [String]
|
|
34670
|
+
#
|
|
34121
34671
|
# @!attribute [rw] error
|
|
34122
34672
|
# The error.
|
|
34123
34673
|
# @return [Types::DisableFastSnapshotRestoreStateError]
|
|
@@ -34126,6 +34676,7 @@ module Aws::EC2
|
|
|
34126
34676
|
#
|
|
34127
34677
|
class DisableFastSnapshotRestoreStateErrorItem < Struct.new(
|
|
34128
34678
|
:availability_zone,
|
|
34679
|
+
:availability_zone_id,
|
|
34129
34680
|
:error)
|
|
34130
34681
|
SENSITIVE = []
|
|
34131
34682
|
include Aws::Structure
|
|
@@ -34141,6 +34692,10 @@ module Aws::EC2
|
|
|
34141
34692
|
# The Availability Zone.
|
|
34142
34693
|
# @return [String]
|
|
34143
34694
|
#
|
|
34695
|
+
# @!attribute [rw] availability_zone_id
|
|
34696
|
+
# The ID of the Availability Zone.
|
|
34697
|
+
# @return [String]
|
|
34698
|
+
#
|
|
34144
34699
|
# @!attribute [rw] state
|
|
34145
34700
|
# The state of fast snapshot restores for the snapshot.
|
|
34146
34701
|
# @return [String]
|
|
@@ -34197,6 +34752,7 @@ module Aws::EC2
|
|
|
34197
34752
|
class DisableFastSnapshotRestoreSuccessItem < Struct.new(
|
|
34198
34753
|
:snapshot_id,
|
|
34199
34754
|
:availability_zone,
|
|
34755
|
+
:availability_zone_id,
|
|
34200
34756
|
:state,
|
|
34201
34757
|
:state_transition_reason,
|
|
34202
34758
|
:owner_id,
|
|
@@ -34212,6 +34768,16 @@ module Aws::EC2
|
|
|
34212
34768
|
|
|
34213
34769
|
# @!attribute [rw] availability_zones
|
|
34214
34770
|
# One or more Availability Zones. For example, `us-east-2a`.
|
|
34771
|
+
#
|
|
34772
|
+
# Either `AvailabilityZone` or `AvailabilityZoneId` must be specified
|
|
34773
|
+
# in the request, but not both.
|
|
34774
|
+
# @return [Array<String>]
|
|
34775
|
+
#
|
|
34776
|
+
# @!attribute [rw] availability_zone_ids
|
|
34777
|
+
# One or more Availability Zone IDs. For example, `use2-az1`.
|
|
34778
|
+
#
|
|
34779
|
+
# Either `AvailabilityZone` or `AvailabilityZoneId` must be specified
|
|
34780
|
+
# in the request, but not both.
|
|
34215
34781
|
# @return [Array<String>]
|
|
34216
34782
|
#
|
|
34217
34783
|
# @!attribute [rw] source_snapshot_ids
|
|
@@ -34230,6 +34796,7 @@ module Aws::EC2
|
|
|
34230
34796
|
#
|
|
34231
34797
|
class DisableFastSnapshotRestoresRequest < Struct.new(
|
|
34232
34798
|
:availability_zones,
|
|
34799
|
+
:availability_zone_ids,
|
|
34233
34800
|
:source_snapshot_ids,
|
|
34234
34801
|
:dry_run)
|
|
34235
34802
|
SENSITIVE = []
|
|
@@ -35468,11 +36035,45 @@ module Aws::EC2
|
|
|
35468
36035
|
# Indicates whether to enable private DNS only for inbound endpoints.
|
|
35469
36036
|
# @return [Boolean]
|
|
35470
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
|
+
#
|
|
35471
36070
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DnsOptions AWS API Documentation
|
|
35472
36071
|
#
|
|
35473
36072
|
class DnsOptions < Struct.new(
|
|
35474
36073
|
:dns_record_ip_type,
|
|
35475
|
-
:private_dns_only_for_inbound_resolver_endpoint
|
|
36074
|
+
:private_dns_only_for_inbound_resolver_endpoint,
|
|
36075
|
+
:private_dns_preference,
|
|
36076
|
+
:private_dns_specified_domains)
|
|
35476
36077
|
SENSITIVE = []
|
|
35477
36078
|
include Aws::Structure
|
|
35478
36079
|
end
|
|
@@ -35491,11 +36092,44 @@ module Aws::EC2
|
|
|
35491
36092
|
# on-premises to the interface endpoint.
|
|
35492
36093
|
# @return [Boolean]
|
|
35493
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
|
+
#
|
|
35494
36126
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DnsOptionsSpecification AWS API Documentation
|
|
35495
36127
|
#
|
|
35496
36128
|
class DnsOptionsSpecification < Struct.new(
|
|
35497
36129
|
:dns_record_ip_type,
|
|
35498
|
-
:private_dns_only_for_inbound_resolver_endpoint
|
|
36130
|
+
:private_dns_only_for_inbound_resolver_endpoint,
|
|
36131
|
+
:private_dns_preference,
|
|
36132
|
+
:private_dns_specified_domains)
|
|
35499
36133
|
SENSITIVE = []
|
|
35500
36134
|
include Aws::Structure
|
|
35501
36135
|
end
|
|
@@ -36861,6 +37495,10 @@ module Aws::EC2
|
|
|
36861
37495
|
# The Availability Zone.
|
|
36862
37496
|
# @return [String]
|
|
36863
37497
|
#
|
|
37498
|
+
# @!attribute [rw] availability_zone_id
|
|
37499
|
+
# The ID of the Availability Zone.
|
|
37500
|
+
# @return [String]
|
|
37501
|
+
#
|
|
36864
37502
|
# @!attribute [rw] error
|
|
36865
37503
|
# The error.
|
|
36866
37504
|
# @return [Types::EnableFastSnapshotRestoreStateError]
|
|
@@ -36869,6 +37507,7 @@ module Aws::EC2
|
|
|
36869
37507
|
#
|
|
36870
37508
|
class EnableFastSnapshotRestoreStateErrorItem < Struct.new(
|
|
36871
37509
|
:availability_zone,
|
|
37510
|
+
:availability_zone_id,
|
|
36872
37511
|
:error)
|
|
36873
37512
|
SENSITIVE = []
|
|
36874
37513
|
include Aws::Structure
|
|
@@ -36884,6 +37523,10 @@ module Aws::EC2
|
|
|
36884
37523
|
# The Availability Zone.
|
|
36885
37524
|
# @return [String]
|
|
36886
37525
|
#
|
|
37526
|
+
# @!attribute [rw] availability_zone_id
|
|
37527
|
+
# The ID of the Availability Zone.
|
|
37528
|
+
# @return [String]
|
|
37529
|
+
#
|
|
36887
37530
|
# @!attribute [rw] state
|
|
36888
37531
|
# The state of fast snapshot restores.
|
|
36889
37532
|
# @return [String]
|
|
@@ -36940,6 +37583,7 @@ module Aws::EC2
|
|
|
36940
37583
|
class EnableFastSnapshotRestoreSuccessItem < Struct.new(
|
|
36941
37584
|
:snapshot_id,
|
|
36942
37585
|
:availability_zone,
|
|
37586
|
+
:availability_zone_id,
|
|
36943
37587
|
:state,
|
|
36944
37588
|
:state_transition_reason,
|
|
36945
37589
|
:owner_id,
|
|
@@ -36955,6 +37599,16 @@ module Aws::EC2
|
|
|
36955
37599
|
|
|
36956
37600
|
# @!attribute [rw] availability_zones
|
|
36957
37601
|
# One or more Availability Zones. For example, `us-east-2a`.
|
|
37602
|
+
#
|
|
37603
|
+
# Either `AvailabilityZone` or `AvailabilityZoneId` must be specified
|
|
37604
|
+
# in the request, but not both.
|
|
37605
|
+
# @return [Array<String>]
|
|
37606
|
+
#
|
|
37607
|
+
# @!attribute [rw] availability_zone_ids
|
|
37608
|
+
# One or more Availability Zone IDs. For example, `use2-az1`.
|
|
37609
|
+
#
|
|
37610
|
+
# Either `AvailabilityZone` or `AvailabilityZoneId` must be specified
|
|
37611
|
+
# in the request, but not both.
|
|
36958
37612
|
# @return [Array<String>]
|
|
36959
37613
|
#
|
|
36960
37614
|
# @!attribute [rw] source_snapshot_ids
|
|
@@ -36974,6 +37628,7 @@ module Aws::EC2
|
|
|
36974
37628
|
#
|
|
36975
37629
|
class EnableFastSnapshotRestoresRequest < Struct.new(
|
|
36976
37630
|
:availability_zones,
|
|
37631
|
+
:availability_zone_ids,
|
|
36977
37632
|
:source_snapshot_ids,
|
|
36978
37633
|
:dry_run)
|
|
36979
37634
|
SENSITIVE = []
|
|
@@ -38444,6 +39099,37 @@ module Aws::EC2
|
|
|
38444
39099
|
include Aws::Structure
|
|
38445
39100
|
end
|
|
38446
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
|
+
|
|
38447
39133
|
# Describes a Capacity Reservation Fleet that could not be cancelled.
|
|
38448
39134
|
#
|
|
38449
39135
|
# @!attribute [rw] capacity_reservation_fleet_id
|
|
@@ -41879,6 +42565,193 @@ module Aws::EC2
|
|
|
41879
42565
|
include Aws::Structure
|
|
41880
42566
|
end
|
|
41881
42567
|
|
|
42568
|
+
# @!attribute [rw] dry_run
|
|
42569
|
+
# A check for whether you have the required permissions for the action
|
|
42570
|
+
# without actually making the request and provides an error response.
|
|
42571
|
+
# If you have the required permissions, the error response is
|
|
42572
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
42573
|
+
# @return [Boolean]
|
|
42574
|
+
#
|
|
42575
|
+
# @!attribute [rw] ipam_prefix_list_resolver_id
|
|
42576
|
+
# The ID of the IPAM prefix list resolver whose rules you want to
|
|
42577
|
+
# retrieve.
|
|
42578
|
+
# @return [String]
|
|
42579
|
+
#
|
|
42580
|
+
# @!attribute [rw] filters
|
|
42581
|
+
# One or more filters to limit the results.
|
|
42582
|
+
# @return [Array<Types::Filter>]
|
|
42583
|
+
#
|
|
42584
|
+
# @!attribute [rw] max_results
|
|
42585
|
+
# The maximum number of items to return for this request. To get the
|
|
42586
|
+
# next page of items, make another request with the token returned in
|
|
42587
|
+
# the output. For more information, see [Pagination][1].
|
|
42588
|
+
#
|
|
42589
|
+
#
|
|
42590
|
+
#
|
|
42591
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
|
42592
|
+
# @return [Integer]
|
|
42593
|
+
#
|
|
42594
|
+
# @!attribute [rw] next_token
|
|
42595
|
+
# The token for the next page of results.
|
|
42596
|
+
# @return [String]
|
|
42597
|
+
#
|
|
42598
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetIpamPrefixListResolverRulesRequest AWS API Documentation
|
|
42599
|
+
#
|
|
42600
|
+
class GetIpamPrefixListResolverRulesRequest < Struct.new(
|
|
42601
|
+
:dry_run,
|
|
42602
|
+
:ipam_prefix_list_resolver_id,
|
|
42603
|
+
:filters,
|
|
42604
|
+
:max_results,
|
|
42605
|
+
:next_token)
|
|
42606
|
+
SENSITIVE = []
|
|
42607
|
+
include Aws::Structure
|
|
42608
|
+
end
|
|
42609
|
+
|
|
42610
|
+
# @!attribute [rw] rules
|
|
42611
|
+
# The CIDR selection rules for the IPAM prefix list resolver.
|
|
42612
|
+
# @return [Array<Types::IpamPrefixListResolverRule>]
|
|
42613
|
+
#
|
|
42614
|
+
# @!attribute [rw] next_token
|
|
42615
|
+
# The token to use to retrieve the next page of results. This value is
|
|
42616
|
+
# `null` when there are no more results to return.
|
|
42617
|
+
# @return [String]
|
|
42618
|
+
#
|
|
42619
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetIpamPrefixListResolverRulesResult AWS API Documentation
|
|
42620
|
+
#
|
|
42621
|
+
class GetIpamPrefixListResolverRulesResult < Struct.new(
|
|
42622
|
+
:rules,
|
|
42623
|
+
:next_token)
|
|
42624
|
+
SENSITIVE = []
|
|
42625
|
+
include Aws::Structure
|
|
42626
|
+
end
|
|
42627
|
+
|
|
42628
|
+
# @!attribute [rw] dry_run
|
|
42629
|
+
# A check for whether you have the required permissions for the action
|
|
42630
|
+
# without actually making the request and provides an error response.
|
|
42631
|
+
# If you have the required permissions, the error response is
|
|
42632
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
42633
|
+
# @return [Boolean]
|
|
42634
|
+
#
|
|
42635
|
+
# @!attribute [rw] ipam_prefix_list_resolver_id
|
|
42636
|
+
# The ID of the IPAM prefix list resolver whose version entries you
|
|
42637
|
+
# want to retrieve.
|
|
42638
|
+
# @return [String]
|
|
42639
|
+
#
|
|
42640
|
+
# @!attribute [rw] ipam_prefix_list_resolver_version
|
|
42641
|
+
# The version number of the resolver for which to retrieve CIDR
|
|
42642
|
+
# entries. If not specified, the latest version is used.
|
|
42643
|
+
# @return [Integer]
|
|
42644
|
+
#
|
|
42645
|
+
# @!attribute [rw] max_results
|
|
42646
|
+
# The maximum number of items to return for this request. To get the
|
|
42647
|
+
# next page of items, make another request with the token returned in
|
|
42648
|
+
# the output. For more information, see [Pagination][1].
|
|
42649
|
+
#
|
|
42650
|
+
#
|
|
42651
|
+
#
|
|
42652
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
|
42653
|
+
# @return [Integer]
|
|
42654
|
+
#
|
|
42655
|
+
# @!attribute [rw] next_token
|
|
42656
|
+
# The token for the next page of results.
|
|
42657
|
+
# @return [String]
|
|
42658
|
+
#
|
|
42659
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetIpamPrefixListResolverVersionEntriesRequest AWS API Documentation
|
|
42660
|
+
#
|
|
42661
|
+
class GetIpamPrefixListResolverVersionEntriesRequest < Struct.new(
|
|
42662
|
+
:dry_run,
|
|
42663
|
+
:ipam_prefix_list_resolver_id,
|
|
42664
|
+
:ipam_prefix_list_resolver_version,
|
|
42665
|
+
:max_results,
|
|
42666
|
+
:next_token)
|
|
42667
|
+
SENSITIVE = []
|
|
42668
|
+
include Aws::Structure
|
|
42669
|
+
end
|
|
42670
|
+
|
|
42671
|
+
# @!attribute [rw] entries
|
|
42672
|
+
# The CIDR entries for the specified resolver version.
|
|
42673
|
+
# @return [Array<Types::IpamPrefixListResolverVersionEntry>]
|
|
42674
|
+
#
|
|
42675
|
+
# @!attribute [rw] next_token
|
|
42676
|
+
# The token to use to retrieve the next page of results. This value is
|
|
42677
|
+
# `null` when there are no more results to return.
|
|
42678
|
+
# @return [String]
|
|
42679
|
+
#
|
|
42680
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetIpamPrefixListResolverVersionEntriesResult AWS API Documentation
|
|
42681
|
+
#
|
|
42682
|
+
class GetIpamPrefixListResolverVersionEntriesResult < Struct.new(
|
|
42683
|
+
:entries,
|
|
42684
|
+
:next_token)
|
|
42685
|
+
SENSITIVE = []
|
|
42686
|
+
include Aws::Structure
|
|
42687
|
+
end
|
|
42688
|
+
|
|
42689
|
+
# @!attribute [rw] dry_run
|
|
42690
|
+
# A check for whether you have the required permissions for the action
|
|
42691
|
+
# without actually making the request and provides an error response.
|
|
42692
|
+
# If you have the required permissions, the error response is
|
|
42693
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
42694
|
+
# @return [Boolean]
|
|
42695
|
+
#
|
|
42696
|
+
# @!attribute [rw] ipam_prefix_list_resolver_id
|
|
42697
|
+
# The ID of the IPAM prefix list resolver whose versions you want to
|
|
42698
|
+
# retrieve.
|
|
42699
|
+
# @return [String]
|
|
42700
|
+
#
|
|
42701
|
+
# @!attribute [rw] ipam_prefix_list_resolver_versions
|
|
42702
|
+
# Specific version numbers to retrieve. If not specified, all versions
|
|
42703
|
+
# are returned.
|
|
42704
|
+
# @return [Array<Integer>]
|
|
42705
|
+
#
|
|
42706
|
+
# @!attribute [rw] max_results
|
|
42707
|
+
# The maximum number of items to return for this request. To get the
|
|
42708
|
+
# next page of items, make another request with the token returned in
|
|
42709
|
+
# the output. For more information, see [Pagination][1].
|
|
42710
|
+
#
|
|
42711
|
+
#
|
|
42712
|
+
#
|
|
42713
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
|
42714
|
+
# @return [Integer]
|
|
42715
|
+
#
|
|
42716
|
+
# @!attribute [rw] filters
|
|
42717
|
+
# One or more filters to limit the results.
|
|
42718
|
+
# @return [Array<Types::Filter>]
|
|
42719
|
+
#
|
|
42720
|
+
# @!attribute [rw] next_token
|
|
42721
|
+
# The token for the next page of results.
|
|
42722
|
+
# @return [String]
|
|
42723
|
+
#
|
|
42724
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetIpamPrefixListResolverVersionsRequest AWS API Documentation
|
|
42725
|
+
#
|
|
42726
|
+
class GetIpamPrefixListResolverVersionsRequest < Struct.new(
|
|
42727
|
+
:dry_run,
|
|
42728
|
+
:ipam_prefix_list_resolver_id,
|
|
42729
|
+
:ipam_prefix_list_resolver_versions,
|
|
42730
|
+
:max_results,
|
|
42731
|
+
:filters,
|
|
42732
|
+
:next_token)
|
|
42733
|
+
SENSITIVE = []
|
|
42734
|
+
include Aws::Structure
|
|
42735
|
+
end
|
|
42736
|
+
|
|
42737
|
+
# @!attribute [rw] ipam_prefix_list_resolver_versions
|
|
42738
|
+
# Information about the IPAM prefix list resolver versions.
|
|
42739
|
+
# @return [Array<Types::IpamPrefixListResolverVersion>]
|
|
42740
|
+
#
|
|
42741
|
+
# @!attribute [rw] next_token
|
|
42742
|
+
# The token to use to retrieve the next page of results. This value is
|
|
42743
|
+
# `null` when there are no more results to return.
|
|
42744
|
+
# @return [String]
|
|
42745
|
+
#
|
|
42746
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetIpamPrefixListResolverVersionsResult AWS API Documentation
|
|
42747
|
+
#
|
|
42748
|
+
class GetIpamPrefixListResolverVersionsResult < Struct.new(
|
|
42749
|
+
:ipam_prefix_list_resolver_versions,
|
|
42750
|
+
:next_token)
|
|
42751
|
+
SENSITIVE = []
|
|
42752
|
+
include Aws::Structure
|
|
42753
|
+
end
|
|
42754
|
+
|
|
41882
42755
|
# @!attribute [rw] dry_run
|
|
41883
42756
|
# A check for whether you have the required permissions for the action
|
|
41884
42757
|
# without actually making the request and provides an error response.
|
|
@@ -48620,6 +49493,19 @@ module Aws::EC2
|
|
|
48620
49493
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-attribute-based-instance-type-selection.html#ec2fleet-abis-performance-protection
|
|
48621
49494
|
# @return [Types::BaselinePerformanceFactors]
|
|
48622
49495
|
#
|
|
49496
|
+
# @!attribute [rw] require_encryption_in_transit
|
|
49497
|
+
# Specifies whether instance types must support encrypting in-transit
|
|
49498
|
+
# traffic between instances. For more information, including the
|
|
49499
|
+
# supported instance types, see [Encryption in transit][1] in the
|
|
49500
|
+
# *Amazon EC2 User Guide*.
|
|
49501
|
+
#
|
|
49502
|
+
# Default: `false`
|
|
49503
|
+
#
|
|
49504
|
+
#
|
|
49505
|
+
#
|
|
49506
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/data-protection.html#encryption-transit
|
|
49507
|
+
# @return [Boolean]
|
|
49508
|
+
#
|
|
48623
49509
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceRequirements AWS API Documentation
|
|
48624
49510
|
#
|
|
48625
49511
|
class InstanceRequirements < Struct.new(
|
|
@@ -48647,7 +49533,8 @@ module Aws::EC2
|
|
|
48647
49533
|
:network_bandwidth_gbps,
|
|
48648
49534
|
:allowed_instance_types,
|
|
48649
49535
|
:max_spot_price_as_percentage_of_optimal_on_demand_price,
|
|
48650
|
-
:baseline_performance_factors
|
|
49536
|
+
:baseline_performance_factors,
|
|
49537
|
+
:require_encryption_in_transit)
|
|
48651
49538
|
SENSITIVE = []
|
|
48652
49539
|
include Aws::Structure
|
|
48653
49540
|
end
|
|
@@ -49111,6 +49998,19 @@ module Aws::EC2
|
|
|
49111
49998
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-attribute-based-instance-type-selection.html#ec2fleet-abis-performance-protection
|
|
49112
49999
|
# @return [Types::BaselinePerformanceFactorsRequest]
|
|
49113
50000
|
#
|
|
50001
|
+
# @!attribute [rw] require_encryption_in_transit
|
|
50002
|
+
# Specifies whether instance types must support encrypting in-transit
|
|
50003
|
+
# traffic between instances. For more information, including the
|
|
50004
|
+
# supported instance types, see [Encryption in transit][1] in the
|
|
50005
|
+
# *Amazon EC2 User Guide*.
|
|
50006
|
+
#
|
|
50007
|
+
# Default: `false`
|
|
50008
|
+
#
|
|
50009
|
+
#
|
|
50010
|
+
#
|
|
50011
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/data-protection.html#encryption-transit
|
|
50012
|
+
# @return [Boolean]
|
|
50013
|
+
#
|
|
49114
50014
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceRequirementsRequest AWS API Documentation
|
|
49115
50015
|
#
|
|
49116
50016
|
class InstanceRequirementsRequest < Struct.new(
|
|
@@ -49138,7 +50038,8 @@ module Aws::EC2
|
|
|
49138
50038
|
:network_bandwidth_gbps,
|
|
49139
50039
|
:allowed_instance_types,
|
|
49140
50040
|
:max_spot_price_as_percentage_of_optimal_on_demand_price,
|
|
49141
|
-
:baseline_performance_factors
|
|
50041
|
+
:baseline_performance_factors,
|
|
50042
|
+
:require_encryption_in_transit)
|
|
49142
50043
|
SENSITIVE = []
|
|
49143
50044
|
include Aws::Structure
|
|
49144
50045
|
end
|
|
@@ -49493,6 +50394,12 @@ module Aws::EC2
|
|
|
49493
50394
|
# The network nodes. The nodes are hashed based on your account.
|
|
49494
50395
|
# Instances from different accounts running under the same server will
|
|
49495
50396
|
# return a different hashed list of strings.
|
|
50397
|
+
#
|
|
50398
|
+
# The value is `null` or empty if:
|
|
50399
|
+
#
|
|
50400
|
+
# * The instance type is not supported.
|
|
50401
|
+
#
|
|
50402
|
+
# * The instance is in a state other than `running`.
|
|
49496
50403
|
# @return [Array<String>]
|
|
49497
50404
|
#
|
|
49498
50405
|
# @!attribute [rw] availability_zone
|
|
@@ -49507,8 +50414,8 @@ module Aws::EC2
|
|
|
49507
50414
|
#
|
|
49508
50415
|
# @!attribute [rw] capacity_block_id
|
|
49509
50416
|
# The ID of the Capacity Block. This parameter is only supported for
|
|
49510
|
-
#
|
|
49511
|
-
#
|
|
50417
|
+
# UltraServer instances and identifies instances within the
|
|
50418
|
+
# UltraServer domain.
|
|
49512
50419
|
# @return [String]
|
|
49513
50420
|
#
|
|
49514
50421
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceTopology AWS API Documentation
|
|
@@ -51004,6 +51911,612 @@ module Aws::EC2
|
|
|
51004
51911
|
include Aws::Structure
|
|
51005
51912
|
end
|
|
51006
51913
|
|
|
51914
|
+
# Describes an IPAM prefix list resolver.
|
|
51915
|
+
#
|
|
51916
|
+
# An IPAM prefix list resolver is a component that manages the
|
|
51917
|
+
# synchronization between IPAM's CIDR selection rules and
|
|
51918
|
+
# customer-managed prefix lists. It automates connectivity
|
|
51919
|
+
# configurations by selecting CIDRs from IPAM's database based on your
|
|
51920
|
+
# business logic and synchronizing them with prefix lists used in
|
|
51921
|
+
# resources such as VPC route tables and security groups.
|
|
51922
|
+
#
|
|
51923
|
+
# @!attribute [rw] owner_id
|
|
51924
|
+
# The ID of the Amazon Web Services account that owns the IPAM prefix
|
|
51925
|
+
# list resolver.
|
|
51926
|
+
# @return [String]
|
|
51927
|
+
#
|
|
51928
|
+
# @!attribute [rw] ipam_prefix_list_resolver_id
|
|
51929
|
+
# The ID of the IPAM prefix list resolver.
|
|
51930
|
+
# @return [String]
|
|
51931
|
+
#
|
|
51932
|
+
# @!attribute [rw] ipam_prefix_list_resolver_arn
|
|
51933
|
+
# The Amazon Resource Name (ARN) of the IPAM prefix list resolver.
|
|
51934
|
+
# @return [String]
|
|
51935
|
+
#
|
|
51936
|
+
# @!attribute [rw] ipam_arn
|
|
51937
|
+
# The Amazon Resource Name (ARN) of the IPAM associated with this
|
|
51938
|
+
# resolver.
|
|
51939
|
+
# @return [String]
|
|
51940
|
+
#
|
|
51941
|
+
# @!attribute [rw] ipam_region
|
|
51942
|
+
# The Amazon Web Services Region where the associated IPAM is located.
|
|
51943
|
+
# @return [String]
|
|
51944
|
+
#
|
|
51945
|
+
# @!attribute [rw] description
|
|
51946
|
+
# The description of the IPAM prefix list resolver.
|
|
51947
|
+
# @return [String]
|
|
51948
|
+
#
|
|
51949
|
+
# @!attribute [rw] address_family
|
|
51950
|
+
# The address family (IPv4 or IPv6) for the IPAM prefix list resolver.
|
|
51951
|
+
# @return [String]
|
|
51952
|
+
#
|
|
51953
|
+
# @!attribute [rw] state
|
|
51954
|
+
# The current state of the IPAM prefix list resolver. Valid values
|
|
51955
|
+
# include `create-in-progress`, `create-complete`, `create-failed`,
|
|
51956
|
+
# `modify-in-progress`, `modify-complete`, `modify-failed`,
|
|
51957
|
+
# `delete-in-progress`, `delete-complete`, and `delete-failed`.
|
|
51958
|
+
# @return [String]
|
|
51959
|
+
#
|
|
51960
|
+
# @!attribute [rw] tags
|
|
51961
|
+
# The tags assigned to the IPAM prefix list resolver.
|
|
51962
|
+
# @return [Array<Types::Tag>]
|
|
51963
|
+
#
|
|
51964
|
+
# @!attribute [rw] last_version_creation_status
|
|
51965
|
+
# The status for the last time a version was created.
|
|
51966
|
+
#
|
|
51967
|
+
# Each version is a snapshot of what CIDRs matched your rules at that
|
|
51968
|
+
# moment in time. The version number increments every time the CIDR
|
|
51969
|
+
# list changes due to infrastructure changes.
|
|
51970
|
+
# @return [String]
|
|
51971
|
+
#
|
|
51972
|
+
# @!attribute [rw] last_version_creation_status_message
|
|
51973
|
+
# The status message for the last time a version was created.
|
|
51974
|
+
#
|
|
51975
|
+
# Each version is a snapshot of what CIDRs matched your rules at that
|
|
51976
|
+
# moment in time. The version number increments every time the CIDR
|
|
51977
|
+
# list changes due to infrastructure changes.
|
|
51978
|
+
# @return [String]
|
|
51979
|
+
#
|
|
51980
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamPrefixListResolver AWS API Documentation
|
|
51981
|
+
#
|
|
51982
|
+
class IpamPrefixListResolver < Struct.new(
|
|
51983
|
+
:owner_id,
|
|
51984
|
+
:ipam_prefix_list_resolver_id,
|
|
51985
|
+
:ipam_prefix_list_resolver_arn,
|
|
51986
|
+
:ipam_arn,
|
|
51987
|
+
:ipam_region,
|
|
51988
|
+
:description,
|
|
51989
|
+
:address_family,
|
|
51990
|
+
:state,
|
|
51991
|
+
:tags,
|
|
51992
|
+
:last_version_creation_status,
|
|
51993
|
+
:last_version_creation_status_message)
|
|
51994
|
+
SENSITIVE = []
|
|
51995
|
+
include Aws::Structure
|
|
51996
|
+
end
|
|
51997
|
+
|
|
51998
|
+
# Describes a CIDR selection rule.
|
|
51999
|
+
#
|
|
52000
|
+
# CIDR selection rules define the business logic for selecting CIDRs
|
|
52001
|
+
# from IPAM. If a CIDR matches any of the rules, it will be included. If
|
|
52002
|
+
# a rule has multiple conditions, the CIDR has to match every condition
|
|
52003
|
+
# of that rule. You can create a prefix list resolver without any CIDR
|
|
52004
|
+
# selection rules, but it will generate empty versions (containing no
|
|
52005
|
+
# CIDRs) until you add rules.
|
|
52006
|
+
#
|
|
52007
|
+
# @!attribute [rw] rule_type
|
|
52008
|
+
# The type of CIDR selection rule. Valid values include `include` for
|
|
52009
|
+
# selecting CIDRs that match the conditions, and `exclude` for
|
|
52010
|
+
# excluding CIDRs that match the conditions.
|
|
52011
|
+
# @return [String]
|
|
52012
|
+
#
|
|
52013
|
+
# @!attribute [rw] static_cidr
|
|
52014
|
+
# A fixed list of CIDRs that do not change (like a manual list
|
|
52015
|
+
# replicated across Regions).
|
|
52016
|
+
# @return [String]
|
|
52017
|
+
#
|
|
52018
|
+
# @!attribute [rw] ipam_scope_id
|
|
52019
|
+
# The ID of the IPAM scope from which to select CIDRs. This determines
|
|
52020
|
+
# whether to select from public or private IP address space.
|
|
52021
|
+
# @return [String]
|
|
52022
|
+
#
|
|
52023
|
+
# @!attribute [rw] resource_type
|
|
52024
|
+
# For rules of type `ipam-resource-cidr`, this is the resource type.
|
|
52025
|
+
# @return [String]
|
|
52026
|
+
#
|
|
52027
|
+
# @!attribute [rw] conditions
|
|
52028
|
+
# The conditions that determine which CIDRs are selected by this rule.
|
|
52029
|
+
# Conditions specify criteria such as resource type, tags, account
|
|
52030
|
+
# IDs, and Regions.
|
|
52031
|
+
# @return [Array<Types::IpamPrefixListResolverRuleCondition>]
|
|
52032
|
+
#
|
|
52033
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamPrefixListResolverRule AWS API Documentation
|
|
52034
|
+
#
|
|
52035
|
+
class IpamPrefixListResolverRule < Struct.new(
|
|
52036
|
+
:rule_type,
|
|
52037
|
+
:static_cidr,
|
|
52038
|
+
:ipam_scope_id,
|
|
52039
|
+
:resource_type,
|
|
52040
|
+
:conditions)
|
|
52041
|
+
SENSITIVE = []
|
|
52042
|
+
include Aws::Structure
|
|
52043
|
+
end
|
|
52044
|
+
|
|
52045
|
+
# Describes a condition within a CIDR selection rule. Conditions define
|
|
52046
|
+
# the criteria for selecting CIDRs from IPAM's database based on
|
|
52047
|
+
# resource attributes.
|
|
52048
|
+
#
|
|
52049
|
+
# CIDR selection rules define the business logic for selecting CIDRs
|
|
52050
|
+
# from IPAM. If a CIDR matches any of the rules, it will be included. If
|
|
52051
|
+
# a rule has multiple conditions, the CIDR has to match every condition
|
|
52052
|
+
# of that rule. You can create a prefix list resolver without any CIDR
|
|
52053
|
+
# selection rules, but it will generate empty versions (containing no
|
|
52054
|
+
# CIDRs) until you add rules.
|
|
52055
|
+
#
|
|
52056
|
+
# There are three rule types. Only 2 of the 3 rule types support
|
|
52057
|
+
# conditions - **IPAM pool CIDR** and **Scope resource CIDR**. **Static
|
|
52058
|
+
# CIDR** rules cannot have conditions.
|
|
52059
|
+
#
|
|
52060
|
+
# * **Static CIDR**: A fixed list of CIDRs that do not change (like a
|
|
52061
|
+
# manual list replicated across Regions)
|
|
52062
|
+
#
|
|
52063
|
+
# * **IPAM pool CIDR**: CIDRs from specific IPAM pools (like all CIDRs
|
|
52064
|
+
# from your IPAM production pool)
|
|
52065
|
+
#
|
|
52066
|
+
# If you choose this option, choose the following:
|
|
52067
|
+
#
|
|
52068
|
+
# * **IPAM scope**: Select the IPAM scope to search for resources
|
|
52069
|
+
#
|
|
52070
|
+
# * **Conditions:**
|
|
52071
|
+
#
|
|
52072
|
+
# * **Property**
|
|
52073
|
+
#
|
|
52074
|
+
# * **IPAM pool ID**: Select an IPAM pool that contains the
|
|
52075
|
+
# resources
|
|
52076
|
+
#
|
|
52077
|
+
# * **CIDR** (like 10.24.34.0/23)
|
|
52078
|
+
# * **Operation**: Equals/Not equals
|
|
52079
|
+
#
|
|
52080
|
+
# * **Value**: The value on which to match the condition
|
|
52081
|
+
# * **Scope resource CIDR**: CIDRs from Amazon Web Services resources
|
|
52082
|
+
# like VPCs, subnets, EIPs within an IPAM scope
|
|
52083
|
+
#
|
|
52084
|
+
# If you choose this option, choose the following:
|
|
52085
|
+
#
|
|
52086
|
+
# * **IPAM scope**: Select the IPAM scope to search for resources
|
|
52087
|
+
#
|
|
52088
|
+
# * **Resource type**: Select a resource, like a VPC or subnet.
|
|
52089
|
+
#
|
|
52090
|
+
# * **Conditions**:
|
|
52091
|
+
#
|
|
52092
|
+
# * **Property**:
|
|
52093
|
+
#
|
|
52094
|
+
# * Resource ID: The unique ID of a resource (like
|
|
52095
|
+
# vpc-1234567890abcdef0)
|
|
52096
|
+
#
|
|
52097
|
+
# * Resource owner (like 111122223333)
|
|
52098
|
+
#
|
|
52099
|
+
# * Resource region (like us-east-1)
|
|
52100
|
+
#
|
|
52101
|
+
# * Resource tag (like key: name, value: dev-vpc-1)
|
|
52102
|
+
#
|
|
52103
|
+
# * CIDR (like 10.24.34.0/23)
|
|
52104
|
+
# * **Operation**: Equals/Not equals
|
|
52105
|
+
#
|
|
52106
|
+
# * **Value**: The value on which to match the condition
|
|
52107
|
+
#
|
|
52108
|
+
# @!attribute [rw] operation
|
|
52109
|
+
# The operation to perform when evaluating this condition. Valid
|
|
52110
|
+
# values include `equals`, `not-equals`, `contains`, and
|
|
52111
|
+
# `not-contains`.
|
|
52112
|
+
# @return [String]
|
|
52113
|
+
#
|
|
52114
|
+
# @!attribute [rw] ipam_pool_id
|
|
52115
|
+
# The ID of the IPAM pool to match against. This condition selects
|
|
52116
|
+
# CIDRs that belong to the specified IPAM pool.
|
|
52117
|
+
# @return [String]
|
|
52118
|
+
#
|
|
52119
|
+
# @!attribute [rw] resource_id
|
|
52120
|
+
# The ID of the Amazon Web Services resource to match against. This
|
|
52121
|
+
# condition selects CIDRs associated with the specified resource.
|
|
52122
|
+
# @return [String]
|
|
52123
|
+
#
|
|
52124
|
+
# @!attribute [rw] resource_owner
|
|
52125
|
+
# The Amazon Web Services account ID that owns the resources to match
|
|
52126
|
+
# against. This condition selects CIDRs from resources owned by the
|
|
52127
|
+
# specified account.
|
|
52128
|
+
# @return [String]
|
|
52129
|
+
#
|
|
52130
|
+
# @!attribute [rw] resource_region
|
|
52131
|
+
# The Amazon Web Services Region where the resources are located. This
|
|
52132
|
+
# condition selects CIDRs from resources in the specified Region.
|
|
52133
|
+
# @return [String]
|
|
52134
|
+
#
|
|
52135
|
+
# @!attribute [rw] resource_tag
|
|
52136
|
+
# A tag key-value pair to match against. This condition selects CIDRs
|
|
52137
|
+
# from resources that have the specified tag.
|
|
52138
|
+
# @return [Types::IpamResourceTag]
|
|
52139
|
+
#
|
|
52140
|
+
# @!attribute [rw] cidr
|
|
52141
|
+
# A CIDR block to match against. This condition selects CIDRs that
|
|
52142
|
+
# fall within or match the specified CIDR range.
|
|
52143
|
+
# @return [String]
|
|
52144
|
+
#
|
|
52145
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamPrefixListResolverRuleCondition AWS API Documentation
|
|
52146
|
+
#
|
|
52147
|
+
class IpamPrefixListResolverRuleCondition < Struct.new(
|
|
52148
|
+
:operation,
|
|
52149
|
+
:ipam_pool_id,
|
|
52150
|
+
:resource_id,
|
|
52151
|
+
:resource_owner,
|
|
52152
|
+
:resource_region,
|
|
52153
|
+
:resource_tag,
|
|
52154
|
+
:cidr)
|
|
52155
|
+
SENSITIVE = []
|
|
52156
|
+
include Aws::Structure
|
|
52157
|
+
end
|
|
52158
|
+
|
|
52159
|
+
# Describes a condition used when creating or modifying resolver rules.
|
|
52160
|
+
#
|
|
52161
|
+
# CIDR selection rules define the business logic for selecting CIDRs
|
|
52162
|
+
# from IPAM. If a CIDR matches any of the rules, it will be included. If
|
|
52163
|
+
# a rule has multiple conditions, the CIDR has to match every condition
|
|
52164
|
+
# of that rule. You can create a prefix list resolver without any CIDR
|
|
52165
|
+
# selection rules, but it will generate empty versions (containing no
|
|
52166
|
+
# CIDRs) until you add rules.
|
|
52167
|
+
#
|
|
52168
|
+
# There are three rule types. Only 2 of the 3 rule types support
|
|
52169
|
+
# conditions - **IPAM pool CIDR** and **Scope resource CIDR**. **Static
|
|
52170
|
+
# CIDR** rules cannot have conditions.
|
|
52171
|
+
#
|
|
52172
|
+
# * **Static CIDR**: A fixed list of CIDRs that do not change (like a
|
|
52173
|
+
# manual list replicated across Regions)
|
|
52174
|
+
#
|
|
52175
|
+
# * **IPAM pool CIDR**: CIDRs from specific IPAM pools (like all CIDRs
|
|
52176
|
+
# from your IPAM production pool)
|
|
52177
|
+
#
|
|
52178
|
+
# If you choose this option, choose the following:
|
|
52179
|
+
#
|
|
52180
|
+
# * **IPAM scope**: Select the IPAM scope to search for resources
|
|
52181
|
+
#
|
|
52182
|
+
# * **Conditions:**
|
|
52183
|
+
#
|
|
52184
|
+
# * **Property**
|
|
52185
|
+
#
|
|
52186
|
+
# * **IPAM pool ID**: Select an IPAM pool that contains the
|
|
52187
|
+
# resources
|
|
52188
|
+
#
|
|
52189
|
+
# * **CIDR** (like 10.24.34.0/23)
|
|
52190
|
+
# * **Operation**: Equals/Not equals
|
|
52191
|
+
#
|
|
52192
|
+
# * **Value**: The value on which to match the condition
|
|
52193
|
+
# * **Scope resource CIDR**: CIDRs from Amazon Web Services resources
|
|
52194
|
+
# like VPCs, subnets, EIPs within an IPAM scope
|
|
52195
|
+
#
|
|
52196
|
+
# If you choose this option, choose the following:
|
|
52197
|
+
#
|
|
52198
|
+
# * **IPAM scope**: Select the IPAM scope to search for resources
|
|
52199
|
+
#
|
|
52200
|
+
# * **Resource type**: Select a resource, like a VPC or subnet.
|
|
52201
|
+
#
|
|
52202
|
+
# * **Conditions**:
|
|
52203
|
+
#
|
|
52204
|
+
# * **Property**:
|
|
52205
|
+
#
|
|
52206
|
+
# * Resource ID: The unique ID of a resource (like
|
|
52207
|
+
# vpc-1234567890abcdef0)
|
|
52208
|
+
#
|
|
52209
|
+
# * Resource owner (like 111122223333)
|
|
52210
|
+
#
|
|
52211
|
+
# * Resource region (like us-east-1)
|
|
52212
|
+
#
|
|
52213
|
+
# * Resource tag (like key: name, value: dev-vpc-1)
|
|
52214
|
+
#
|
|
52215
|
+
# * CIDR (like 10.24.34.0/23)
|
|
52216
|
+
# * **Operation**: Equals/Not equals
|
|
52217
|
+
#
|
|
52218
|
+
# * **Value**: The value on which to match the condition
|
|
52219
|
+
#
|
|
52220
|
+
# @!attribute [rw] operation
|
|
52221
|
+
# The operation to perform when evaluating this condition.
|
|
52222
|
+
# @return [String]
|
|
52223
|
+
#
|
|
52224
|
+
# @!attribute [rw] ipam_pool_id
|
|
52225
|
+
# The ID of the IPAM pool to match against. This condition selects
|
|
52226
|
+
# CIDRs that belong to the specified IPAM pool.
|
|
52227
|
+
# @return [String]
|
|
52228
|
+
#
|
|
52229
|
+
# @!attribute [rw] resource_id
|
|
52230
|
+
# The ID of the Amazon Web Services resource to match against. This
|
|
52231
|
+
# condition selects CIDRs associated with the specified resource.
|
|
52232
|
+
# @return [String]
|
|
52233
|
+
#
|
|
52234
|
+
# @!attribute [rw] resource_owner
|
|
52235
|
+
# The Amazon Web Services account ID that owns the resources to match
|
|
52236
|
+
# against. This condition selects CIDRs from resources owned by the
|
|
52237
|
+
# specified account.
|
|
52238
|
+
# @return [String]
|
|
52239
|
+
#
|
|
52240
|
+
# @!attribute [rw] resource_region
|
|
52241
|
+
# The Amazon Web Services Region where the resources are located. This
|
|
52242
|
+
# condition selects CIDRs from resources in the specified Region.
|
|
52243
|
+
# @return [String]
|
|
52244
|
+
#
|
|
52245
|
+
# @!attribute [rw] resource_tag
|
|
52246
|
+
# A tag key-value pair to match against. This condition selects CIDRs
|
|
52247
|
+
# from resources that have the specified tag.
|
|
52248
|
+
# @return [Types::RequestIpamResourceTag]
|
|
52249
|
+
#
|
|
52250
|
+
# @!attribute [rw] cidr
|
|
52251
|
+
# A CIDR block to match against. This condition selects CIDRs that
|
|
52252
|
+
# fall within or match the specified CIDR range.
|
|
52253
|
+
# @return [String]
|
|
52254
|
+
#
|
|
52255
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamPrefixListResolverRuleConditionRequest AWS API Documentation
|
|
52256
|
+
#
|
|
52257
|
+
class IpamPrefixListResolverRuleConditionRequest < Struct.new(
|
|
52258
|
+
:operation,
|
|
52259
|
+
:ipam_pool_id,
|
|
52260
|
+
:resource_id,
|
|
52261
|
+
:resource_owner,
|
|
52262
|
+
:resource_region,
|
|
52263
|
+
:resource_tag,
|
|
52264
|
+
:cidr)
|
|
52265
|
+
SENSITIVE = []
|
|
52266
|
+
include Aws::Structure
|
|
52267
|
+
end
|
|
52268
|
+
|
|
52269
|
+
# Describes a CIDR selection rule to include in a request. This is used
|
|
52270
|
+
# when creating or modifying resolver rules.
|
|
52271
|
+
#
|
|
52272
|
+
# CIDR selection rules define the business logic for selecting CIDRs
|
|
52273
|
+
# from IPAM. If a CIDR matches any of the rules, it will be included. If
|
|
52274
|
+
# a rule has multiple conditions, the CIDR has to match every condition
|
|
52275
|
+
# of that rule. You can create a prefix list resolver without any CIDR
|
|
52276
|
+
# selection rules, but it will generate empty versions (containing no
|
|
52277
|
+
# CIDRs) until you add rules.
|
|
52278
|
+
#
|
|
52279
|
+
# There are three rule types. Only 2 of the 3 rule types support
|
|
52280
|
+
# conditions - **IPAM pool CIDR** and **Scope resource CIDR**. **Static
|
|
52281
|
+
# CIDR** rules cannot have conditions.
|
|
52282
|
+
#
|
|
52283
|
+
# * **Static CIDR**: A fixed list of CIDRs that do not change (like a
|
|
52284
|
+
# manual list replicated across Regions)
|
|
52285
|
+
#
|
|
52286
|
+
# * **IPAM pool CIDR**: CIDRs from specific IPAM pools (like all CIDRs
|
|
52287
|
+
# from your IPAM production pool)
|
|
52288
|
+
#
|
|
52289
|
+
# If you choose this option, choose the following:
|
|
52290
|
+
#
|
|
52291
|
+
# * **IPAM scope**: Select the IPAM scope to search for resources
|
|
52292
|
+
#
|
|
52293
|
+
# * **Conditions:**
|
|
52294
|
+
#
|
|
52295
|
+
# * **Property**
|
|
52296
|
+
#
|
|
52297
|
+
# * **IPAM pool ID**: Select an IPAM pool that contains the
|
|
52298
|
+
# resources
|
|
52299
|
+
#
|
|
52300
|
+
# * **CIDR** (like 10.24.34.0/23)
|
|
52301
|
+
# * **Operation**: Equals/Not equals
|
|
52302
|
+
#
|
|
52303
|
+
# * **Value**: The value on which to match the condition
|
|
52304
|
+
# * **Scope resource CIDR**: CIDRs from Amazon Web Services resources
|
|
52305
|
+
# like VPCs, subnets, EIPs within an IPAM scope
|
|
52306
|
+
#
|
|
52307
|
+
# If you choose this option, choose the following:
|
|
52308
|
+
#
|
|
52309
|
+
# * **IPAM scope**: Select the IPAM scope to search for resources
|
|
52310
|
+
#
|
|
52311
|
+
# * **Resource type**: Select a resource, like a VPC or subnet.
|
|
52312
|
+
#
|
|
52313
|
+
# * **Conditions**:
|
|
52314
|
+
#
|
|
52315
|
+
# * **Property**:
|
|
52316
|
+
#
|
|
52317
|
+
# * Resource ID: The unique ID of a resource (like
|
|
52318
|
+
# vpc-1234567890abcdef0)
|
|
52319
|
+
#
|
|
52320
|
+
# * Resource owner (like 111122223333)
|
|
52321
|
+
#
|
|
52322
|
+
# * Resource region (like us-east-1)
|
|
52323
|
+
#
|
|
52324
|
+
# * Resource tag (like key: name, value: dev-vpc-1)
|
|
52325
|
+
#
|
|
52326
|
+
# * CIDR (like 10.24.34.0/23)
|
|
52327
|
+
# * **Operation**: Equals/Not equals
|
|
52328
|
+
#
|
|
52329
|
+
# * **Value**: The value on which to match the condition
|
|
52330
|
+
#
|
|
52331
|
+
# @!attribute [rw] rule_type
|
|
52332
|
+
# The type of CIDR selection rule. Valid values include `include` for
|
|
52333
|
+
# selecting CIDRs that match the conditions, and `exclude` for
|
|
52334
|
+
# excluding CIDRs that match the conditions.
|
|
52335
|
+
# @return [String]
|
|
52336
|
+
#
|
|
52337
|
+
# @!attribute [rw] static_cidr
|
|
52338
|
+
# A fixed list of CIDRs that do not change (like a manual list
|
|
52339
|
+
# replicated across Regions).
|
|
52340
|
+
# @return [String]
|
|
52341
|
+
#
|
|
52342
|
+
# @!attribute [rw] ipam_scope_id
|
|
52343
|
+
# The ID of the IPAM scope from which to select CIDRs. This determines
|
|
52344
|
+
# whether to select from public or private IP address space.
|
|
52345
|
+
# @return [String]
|
|
52346
|
+
#
|
|
52347
|
+
# @!attribute [rw] resource_type
|
|
52348
|
+
# For rules of type `ipam-resource-cidr`, this is the resource type.
|
|
52349
|
+
# @return [String]
|
|
52350
|
+
#
|
|
52351
|
+
# @!attribute [rw] conditions
|
|
52352
|
+
# The conditions that determine which CIDRs are selected by this rule.
|
|
52353
|
+
# Conditions specify criteria such as resource type, tags, account
|
|
52354
|
+
# IDs, and Regions.
|
|
52355
|
+
# @return [Array<Types::IpamPrefixListResolverRuleConditionRequest>]
|
|
52356
|
+
#
|
|
52357
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamPrefixListResolverRuleRequest AWS API Documentation
|
|
52358
|
+
#
|
|
52359
|
+
class IpamPrefixListResolverRuleRequest < Struct.new(
|
|
52360
|
+
:rule_type,
|
|
52361
|
+
:static_cidr,
|
|
52362
|
+
:ipam_scope_id,
|
|
52363
|
+
:resource_type,
|
|
52364
|
+
:conditions)
|
|
52365
|
+
SENSITIVE = []
|
|
52366
|
+
include Aws::Structure
|
|
52367
|
+
end
|
|
52368
|
+
|
|
52369
|
+
# Describes an IPAM prefix list resolver target.
|
|
52370
|
+
#
|
|
52371
|
+
# An IPAM prefix list resolver target is an association between a
|
|
52372
|
+
# specific customer-managed prefix list and an IPAM prefix list
|
|
52373
|
+
# resolver. The target enables the resolver to synchronize CIDRs
|
|
52374
|
+
# selected by its rules into the specified prefix list, which can then
|
|
52375
|
+
# be referenced in Amazon Web Services resources.
|
|
52376
|
+
#
|
|
52377
|
+
# @!attribute [rw] ipam_prefix_list_resolver_target_id
|
|
52378
|
+
# The ID of the IPAM prefix list resolver target.
|
|
52379
|
+
# @return [String]
|
|
52380
|
+
#
|
|
52381
|
+
# @!attribute [rw] ipam_prefix_list_resolver_target_arn
|
|
52382
|
+
# The Amazon Resource Name (ARN) of the IPAM prefix list resolver
|
|
52383
|
+
# target.
|
|
52384
|
+
# @return [String]
|
|
52385
|
+
#
|
|
52386
|
+
# @!attribute [rw] ipam_prefix_list_resolver_id
|
|
52387
|
+
# The ID of the IPAM prefix list resolver associated with this target.
|
|
52388
|
+
# @return [String]
|
|
52389
|
+
#
|
|
52390
|
+
# @!attribute [rw] owner_id
|
|
52391
|
+
# The ID of the Amazon Web Services account that owns the IPAM prefix
|
|
52392
|
+
# list resolver target.
|
|
52393
|
+
# @return [String]
|
|
52394
|
+
#
|
|
52395
|
+
# @!attribute [rw] prefix_list_id
|
|
52396
|
+
# The ID of the managed prefix list associated with this target.
|
|
52397
|
+
# @return [String]
|
|
52398
|
+
#
|
|
52399
|
+
# @!attribute [rw] prefix_list_region
|
|
52400
|
+
# The Amazon Web Services Region where the prefix list associated with
|
|
52401
|
+
# this target is located.
|
|
52402
|
+
# @return [String]
|
|
52403
|
+
#
|
|
52404
|
+
# @!attribute [rw] desired_version
|
|
52405
|
+
# The desired version of the prefix list that this target should
|
|
52406
|
+
# synchronize with.
|
|
52407
|
+
# @return [Integer]
|
|
52408
|
+
#
|
|
52409
|
+
# @!attribute [rw] last_synced_version
|
|
52410
|
+
# The version of the prefix list that was last successfully
|
|
52411
|
+
# synchronized by this target.
|
|
52412
|
+
# @return [Integer]
|
|
52413
|
+
#
|
|
52414
|
+
# @!attribute [rw] track_latest_version
|
|
52415
|
+
# Indicates whether this target automatically tracks the latest
|
|
52416
|
+
# version of the prefix list.
|
|
52417
|
+
# @return [Boolean]
|
|
52418
|
+
#
|
|
52419
|
+
# @!attribute [rw] state_message
|
|
52420
|
+
# A message describing the current state of the IPAM prefix list
|
|
52421
|
+
# resolver target, including any error information.
|
|
52422
|
+
# @return [String]
|
|
52423
|
+
#
|
|
52424
|
+
# @!attribute [rw] state
|
|
52425
|
+
# The current state of the IPAM prefix list resolver target. Valid
|
|
52426
|
+
# values include `create-in-progress`, `create-complete`,
|
|
52427
|
+
# `create-failed`, `modify-in-progress`, `modify-complete`,
|
|
52428
|
+
# `modify-failed`, `delete-in-progress`, `delete-complete`, and
|
|
52429
|
+
# `delete-failed`.
|
|
52430
|
+
# @return [String]
|
|
52431
|
+
#
|
|
52432
|
+
# @!attribute [rw] tags
|
|
52433
|
+
# The tags assigned to the IPAM prefix list resolver target.
|
|
52434
|
+
# @return [Array<Types::Tag>]
|
|
52435
|
+
#
|
|
52436
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamPrefixListResolverTarget AWS API Documentation
|
|
52437
|
+
#
|
|
52438
|
+
class IpamPrefixListResolverTarget < Struct.new(
|
|
52439
|
+
:ipam_prefix_list_resolver_target_id,
|
|
52440
|
+
:ipam_prefix_list_resolver_target_arn,
|
|
52441
|
+
:ipam_prefix_list_resolver_id,
|
|
52442
|
+
:owner_id,
|
|
52443
|
+
:prefix_list_id,
|
|
52444
|
+
:prefix_list_region,
|
|
52445
|
+
:desired_version,
|
|
52446
|
+
:last_synced_version,
|
|
52447
|
+
:track_latest_version,
|
|
52448
|
+
:state_message,
|
|
52449
|
+
:state,
|
|
52450
|
+
:tags)
|
|
52451
|
+
SENSITIVE = []
|
|
52452
|
+
include Aws::Structure
|
|
52453
|
+
end
|
|
52454
|
+
|
|
52455
|
+
# Describes a version of an IPAM prefix list resolver.
|
|
52456
|
+
#
|
|
52457
|
+
# Each version is a snapshot of what CIDRs matched your rules at that
|
|
52458
|
+
# moment in time. The version number increments every time the CIDR list
|
|
52459
|
+
# changes due to infrastructure changes.
|
|
52460
|
+
#
|
|
52461
|
+
# **Version example:**
|
|
52462
|
+
#
|
|
52463
|
+
# **Initial State (Version 1)**
|
|
52464
|
+
#
|
|
52465
|
+
# Production environment:
|
|
52466
|
+
#
|
|
52467
|
+
# * vpc-prod-web (10.1.0.0/16) - tagged env=prod
|
|
52468
|
+
#
|
|
52469
|
+
# * vpc-prod-db (10.2.0.0/16) - tagged env=prod
|
|
52470
|
+
#
|
|
52471
|
+
# Resolver rule: Include all VPCs tagged env=prod
|
|
52472
|
+
#
|
|
52473
|
+
# **Version 1 CIDRs:** 10.1.0.0/16, 10.2.0.0/16
|
|
52474
|
+
#
|
|
52475
|
+
# **Infrastructure Change (Version 2)**
|
|
52476
|
+
#
|
|
52477
|
+
# New VPC added:
|
|
52478
|
+
#
|
|
52479
|
+
# * vpc-prod-api (10.3.0.0/16) - tagged env=prod
|
|
52480
|
+
#
|
|
52481
|
+
# ^
|
|
52482
|
+
#
|
|
52483
|
+
# IPAM automatically detects the change and creates a new version.
|
|
52484
|
+
#
|
|
52485
|
+
# **Version 2 CIDRs:** 10.1.0.0/16, 10.2.0.0/16, 10.3.0.0/16
|
|
52486
|
+
#
|
|
52487
|
+
# @!attribute [rw] version
|
|
52488
|
+
# The version number of the IPAM prefix list resolver.
|
|
52489
|
+
#
|
|
52490
|
+
# Each version is a snapshot of what CIDRs matched your rules at that
|
|
52491
|
+
# moment in time. The version number increments every time the CIDR
|
|
52492
|
+
# list changes due to infrastructure changes.
|
|
52493
|
+
# @return [Integer]
|
|
52494
|
+
#
|
|
52495
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamPrefixListResolverVersion AWS API Documentation
|
|
52496
|
+
#
|
|
52497
|
+
class IpamPrefixListResolverVersion < Struct.new(
|
|
52498
|
+
:version)
|
|
52499
|
+
SENSITIVE = []
|
|
52500
|
+
include Aws::Structure
|
|
52501
|
+
end
|
|
52502
|
+
|
|
52503
|
+
# Describes a CIDR entry in a specific version of an IPAM prefix list
|
|
52504
|
+
# resolver. This represents a CIDR that was selected and synchronized at
|
|
52505
|
+
# a particular point in time.
|
|
52506
|
+
#
|
|
52507
|
+
# @!attribute [rw] cidr
|
|
52508
|
+
# The CIDR block that was selected and synchronized in this resolver
|
|
52509
|
+
# version.
|
|
52510
|
+
# @return [String]
|
|
52511
|
+
#
|
|
52512
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamPrefixListResolverVersionEntry AWS API Documentation
|
|
52513
|
+
#
|
|
52514
|
+
class IpamPrefixListResolverVersionEntry < Struct.new(
|
|
52515
|
+
:cidr)
|
|
52516
|
+
SENSITIVE = []
|
|
52517
|
+
include Aws::Structure
|
|
52518
|
+
end
|
|
52519
|
+
|
|
51007
52520
|
# The security group that the resource with the public IP address is in.
|
|
51008
52521
|
#
|
|
51009
52522
|
# @!attribute [rw] group_name
|
|
@@ -51350,9 +52863,9 @@ module Aws::EC2
|
|
|
51350
52863
|
#
|
|
51351
52864
|
# * `isolate-in-progress` - Amazon Web Services account that created
|
|
51352
52865
|
# the resource discovery association has been removed and the
|
|
51353
|
-
# resource discovery
|
|
52866
|
+
# resource discovery association is being isolated.
|
|
51354
52867
|
#
|
|
51355
|
-
# * `isolate-complete` - Resource discovery isolation is complete
|
|
52868
|
+
# * `isolate-complete` - Resource discovery isolation is complete.
|
|
51356
52869
|
#
|
|
51357
52870
|
# * `restore-in-progress` - Resource discovery is being restored.
|
|
51358
52871
|
# @return [String]
|
|
@@ -51469,6 +52982,23 @@ module Aws::EC2
|
|
|
51469
52982
|
# name and `TeamA` for the filter value.
|
|
51470
52983
|
# @return [Array<Types::Tag>]
|
|
51471
52984
|
#
|
|
52985
|
+
# @!attribute [rw] external_authority_configuration
|
|
52986
|
+
# The external authority configuration for this IPAM scope, if
|
|
52987
|
+
# configured.
|
|
52988
|
+
#
|
|
52989
|
+
# The configuration that links an Amazon VPC IPAM scope to an external
|
|
52990
|
+
# authority system. It specifies the type of external system and the
|
|
52991
|
+
# external resource identifier that identifies your account or
|
|
52992
|
+
# instance in that system.
|
|
52993
|
+
#
|
|
52994
|
+
# In IPAM, an external authority is a third-party IP address
|
|
52995
|
+
# management system that provides CIDR blocks when you provision
|
|
52996
|
+
# address space for top-level IPAM pools. This allows you to use your
|
|
52997
|
+
# existing IP management system to control which address ranges are
|
|
52998
|
+
# allocated to Amazon Web Services while using Amazon VPC IPAM to
|
|
52999
|
+
# manage subnets within those ranges.
|
|
53000
|
+
# @return [Types::IpamScopeExternalAuthorityConfiguration]
|
|
53001
|
+
#
|
|
51472
53002
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamScope AWS API Documentation
|
|
51473
53003
|
#
|
|
51474
53004
|
class IpamScope < Struct.new(
|
|
@@ -51482,7 +53012,40 @@ module Aws::EC2
|
|
|
51482
53012
|
:description,
|
|
51483
53013
|
:pool_count,
|
|
51484
53014
|
:state,
|
|
51485
|
-
:tags
|
|
53015
|
+
:tags,
|
|
53016
|
+
:external_authority_configuration)
|
|
53017
|
+
SENSITIVE = []
|
|
53018
|
+
include Aws::Structure
|
|
53019
|
+
end
|
|
53020
|
+
|
|
53021
|
+
# The configuration that links an Amazon VPC IPAM scope to an external
|
|
53022
|
+
# authority system. It specifies the type of external system and the
|
|
53023
|
+
# external resource identifier that identifies your account or instance
|
|
53024
|
+
# in that system.
|
|
53025
|
+
#
|
|
53026
|
+
# In IPAM, an external authority is a third-party IP address management
|
|
53027
|
+
# system that provides CIDR blocks when you provision address space for
|
|
53028
|
+
# top-level IPAM pools. This allows you to use your existing IP
|
|
53029
|
+
# management system to control which address ranges are allocated to
|
|
53030
|
+
# Amazon Web Services while using Amazon VPC IPAM to manage subnets
|
|
53031
|
+
# within those ranges.
|
|
53032
|
+
#
|
|
53033
|
+
# @!attribute [rw] type
|
|
53034
|
+
# The type of external authority managing this scope. Currently
|
|
53035
|
+
# supports `Infoblox` for integration with Infoblox Universal DDI.
|
|
53036
|
+
# @return [String]
|
|
53037
|
+
#
|
|
53038
|
+
# @!attribute [rw] external_resource_identifier
|
|
53039
|
+
# The identifier for the external resource managing this scope. For
|
|
53040
|
+
# Infoblox integrations, this is the Infoblox resource identifier in
|
|
53041
|
+
# the format `<version>.identity.account.<entity_realm>.<entity_id>`.
|
|
53042
|
+
# @return [String]
|
|
53043
|
+
#
|
|
53044
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamScopeExternalAuthorityConfiguration AWS API Documentation
|
|
53045
|
+
#
|
|
53046
|
+
class IpamScopeExternalAuthorityConfiguration < Struct.new(
|
|
53047
|
+
:type,
|
|
53048
|
+
:external_resource_identifier)
|
|
51486
53049
|
SENSITIVE = []
|
|
51487
53050
|
include Aws::Structure
|
|
51488
53051
|
end
|
|
@@ -54990,6 +56553,25 @@ module Aws::EC2
|
|
|
54990
56553
|
# The ID of the owner of the prefix list.
|
|
54991
56554
|
# @return [String]
|
|
54992
56555
|
#
|
|
56556
|
+
# @!attribute [rw] ipam_prefix_list_resolver_target_id
|
|
56557
|
+
# The ID of the IPAM prefix list resolver target associated with this
|
|
56558
|
+
# managed prefix list. When set, this prefix list becomes an IPAM
|
|
56559
|
+
# managed prefix list.
|
|
56560
|
+
#
|
|
56561
|
+
# An IPAM-managed prefix list is a customer-managed prefix list that
|
|
56562
|
+
# has been associated with an IPAM prefix list resolver target. When a
|
|
56563
|
+
# prefix list becomes IPAM managed, its CIDRs are automatically
|
|
56564
|
+
# synchronized based on the IPAM prefix list resolver's CIDR
|
|
56565
|
+
# selection rules, and direct CIDR modifications are restricted.
|
|
56566
|
+
# @return [String]
|
|
56567
|
+
#
|
|
56568
|
+
# @!attribute [rw] ipam_prefix_list_resolver_sync_enabled
|
|
56569
|
+
# Indicates whether synchronization with an IPAM prefix list resolver
|
|
56570
|
+
# is enabled for this managed prefix list. When enabled, the prefix
|
|
56571
|
+
# list CIDRs are automatically updated based on the resolver's CIDR
|
|
56572
|
+
# selection rules.
|
|
56573
|
+
# @return [Boolean]
|
|
56574
|
+
#
|
|
54993
56575
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ManagedPrefixList AWS API Documentation
|
|
54994
56576
|
#
|
|
54995
56577
|
class ManagedPrefixList < Struct.new(
|
|
@@ -55002,7 +56584,9 @@ module Aws::EC2
|
|
|
55002
56584
|
:max_entries,
|
|
55003
56585
|
:version,
|
|
55004
56586
|
:tags,
|
|
55005
|
-
:owner_id
|
|
56587
|
+
:owner_id,
|
|
56588
|
+
:ipam_prefix_list_resolver_target_id,
|
|
56589
|
+
:ipam_prefix_list_resolver_sync_enabled)
|
|
55006
56590
|
SENSITIVE = []
|
|
55007
56591
|
include Aws::Structure
|
|
55008
56592
|
end
|
|
@@ -57143,6 +58727,112 @@ module Aws::EC2
|
|
|
57143
58727
|
include Aws::Structure
|
|
57144
58728
|
end
|
|
57145
58729
|
|
|
58730
|
+
# @!attribute [rw] dry_run
|
|
58731
|
+
# A check for whether you have the required permissions for the action
|
|
58732
|
+
# without actually making the request and provides an error response.
|
|
58733
|
+
# If you have the required permissions, the error response is
|
|
58734
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
58735
|
+
# @return [Boolean]
|
|
58736
|
+
#
|
|
58737
|
+
# @!attribute [rw] ipam_prefix_list_resolver_id
|
|
58738
|
+
# The ID of the IPAM prefix list resolver to modify.
|
|
58739
|
+
# @return [String]
|
|
58740
|
+
#
|
|
58741
|
+
# @!attribute [rw] description
|
|
58742
|
+
# A new description for the IPAM prefix list resolver.
|
|
58743
|
+
# @return [String]
|
|
58744
|
+
#
|
|
58745
|
+
# @!attribute [rw] rules
|
|
58746
|
+
# The updated CIDR selection rules for the resolver. These rules
|
|
58747
|
+
# replace the existing rules entirely.
|
|
58748
|
+
# @return [Array<Types::IpamPrefixListResolverRuleRequest>]
|
|
58749
|
+
#
|
|
58750
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIpamPrefixListResolverRequest AWS API Documentation
|
|
58751
|
+
#
|
|
58752
|
+
class ModifyIpamPrefixListResolverRequest < Struct.new(
|
|
58753
|
+
:dry_run,
|
|
58754
|
+
:ipam_prefix_list_resolver_id,
|
|
58755
|
+
:description,
|
|
58756
|
+
:rules)
|
|
58757
|
+
SENSITIVE = []
|
|
58758
|
+
include Aws::Structure
|
|
58759
|
+
end
|
|
58760
|
+
|
|
58761
|
+
# @!attribute [rw] ipam_prefix_list_resolver
|
|
58762
|
+
# Information about the modified IPAM prefix list resolver.
|
|
58763
|
+
# @return [Types::IpamPrefixListResolver]
|
|
58764
|
+
#
|
|
58765
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIpamPrefixListResolverResult AWS API Documentation
|
|
58766
|
+
#
|
|
58767
|
+
class ModifyIpamPrefixListResolverResult < Struct.new(
|
|
58768
|
+
:ipam_prefix_list_resolver)
|
|
58769
|
+
SENSITIVE = []
|
|
58770
|
+
include Aws::Structure
|
|
58771
|
+
end
|
|
58772
|
+
|
|
58773
|
+
# @!attribute [rw] dry_run
|
|
58774
|
+
# A check for whether you have the required permissions for the action
|
|
58775
|
+
# without actually making the request and provides an error response.
|
|
58776
|
+
# If you have the required permissions, the error response is
|
|
58777
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
58778
|
+
# @return [Boolean]
|
|
58779
|
+
#
|
|
58780
|
+
# @!attribute [rw] ipam_prefix_list_resolver_target_id
|
|
58781
|
+
# The ID of the IPAM prefix list resolver target to modify.
|
|
58782
|
+
# @return [String]
|
|
58783
|
+
#
|
|
58784
|
+
# @!attribute [rw] desired_version
|
|
58785
|
+
# The desired version of the prefix list to target. This allows you to
|
|
58786
|
+
# pin the target to a specific version.
|
|
58787
|
+
# @return [Integer]
|
|
58788
|
+
#
|
|
58789
|
+
# @!attribute [rw] track_latest_version
|
|
58790
|
+
# Indicates whether the resolver target should automatically track the
|
|
58791
|
+
# latest version of the prefix list. When enabled, the target will
|
|
58792
|
+
# always synchronize with the most current version.
|
|
58793
|
+
#
|
|
58794
|
+
# Choose this for automatic updates when you want your prefix lists to
|
|
58795
|
+
# stay current with infrastructure changes without manual
|
|
58796
|
+
# intervention.
|
|
58797
|
+
# @return [Boolean]
|
|
58798
|
+
#
|
|
58799
|
+
# @!attribute [rw] client_token
|
|
58800
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
58801
|
+
# idempotency of the request. For more information, see [Ensuring
|
|
58802
|
+
# idempotency][1].
|
|
58803
|
+
#
|
|
58804
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
58805
|
+
# not need to pass this option.
|
|
58806
|
+
#
|
|
58807
|
+
#
|
|
58808
|
+
#
|
|
58809
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
|
58810
|
+
# @return [String]
|
|
58811
|
+
#
|
|
58812
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIpamPrefixListResolverTargetRequest AWS API Documentation
|
|
58813
|
+
#
|
|
58814
|
+
class ModifyIpamPrefixListResolverTargetRequest < Struct.new(
|
|
58815
|
+
:dry_run,
|
|
58816
|
+
:ipam_prefix_list_resolver_target_id,
|
|
58817
|
+
:desired_version,
|
|
58818
|
+
:track_latest_version,
|
|
58819
|
+
:client_token)
|
|
58820
|
+
SENSITIVE = []
|
|
58821
|
+
include Aws::Structure
|
|
58822
|
+
end
|
|
58823
|
+
|
|
58824
|
+
# @!attribute [rw] ipam_prefix_list_resolver_target
|
|
58825
|
+
# Information about the modified IPAM prefix list resolver target.
|
|
58826
|
+
# @return [Types::IpamPrefixListResolverTarget]
|
|
58827
|
+
#
|
|
58828
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIpamPrefixListResolverTargetResult AWS API Documentation
|
|
58829
|
+
#
|
|
58830
|
+
class ModifyIpamPrefixListResolverTargetResult < Struct.new(
|
|
58831
|
+
:ipam_prefix_list_resolver_target)
|
|
58832
|
+
SENSITIVE = []
|
|
58833
|
+
include Aws::Structure
|
|
58834
|
+
end
|
|
58835
|
+
|
|
57146
58836
|
# @!attribute [rw] dry_run
|
|
57147
58837
|
# A check for whether you have the required permissions for the action
|
|
57148
58838
|
# without actually making the request and provides an error response.
|
|
@@ -57407,12 +59097,32 @@ module Aws::EC2
|
|
|
57407
59097
|
# The description of the scope you want to modify.
|
|
57408
59098
|
# @return [String]
|
|
57409
59099
|
#
|
|
59100
|
+
# @!attribute [rw] external_authority_configuration
|
|
59101
|
+
# The configuration that links an Amazon VPC IPAM scope to an external
|
|
59102
|
+
# authority system. It specifies the type of external system and the
|
|
59103
|
+
# external resource identifier that identifies your account or
|
|
59104
|
+
# instance in that system.
|
|
59105
|
+
#
|
|
59106
|
+
# In IPAM, an external authority is a third-party IP address
|
|
59107
|
+
# management system that provides CIDR blocks when you provision
|
|
59108
|
+
# address space for top-level IPAM pools. This allows you to use your
|
|
59109
|
+
# existing IP management system to control which address ranges are
|
|
59110
|
+
# allocated to Amazon Web Services while using Amazon VPC IPAM to
|
|
59111
|
+
# manage subnets within those ranges.
|
|
59112
|
+
# @return [Types::ExternalAuthorityConfiguration]
|
|
59113
|
+
#
|
|
59114
|
+
# @!attribute [rw] remove_external_authority_configuration
|
|
59115
|
+
# Remove the external authority configuration. `true` to remove.
|
|
59116
|
+
# @return [Boolean]
|
|
59117
|
+
#
|
|
57410
59118
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIpamScopeRequest AWS API Documentation
|
|
57411
59119
|
#
|
|
57412
59120
|
class ModifyIpamScopeRequest < Struct.new(
|
|
57413
59121
|
:dry_run,
|
|
57414
59122
|
:ipam_scope_id,
|
|
57415
|
-
:description
|
|
59123
|
+
:description,
|
|
59124
|
+
:external_authority_configuration,
|
|
59125
|
+
:remove_external_authority_configuration)
|
|
57416
59126
|
SENSITIVE = []
|
|
57417
59127
|
include Aws::Structure
|
|
57418
59128
|
end
|
|
@@ -57590,6 +59300,13 @@ module Aws::EC2
|
|
|
57590
59300
|
# support the new maximum size.
|
|
57591
59301
|
# @return [Integer]
|
|
57592
59302
|
#
|
|
59303
|
+
# @!attribute [rw] ipam_prefix_list_resolver_sync_enabled
|
|
59304
|
+
# Indicates whether synchronization with an IPAM prefix list resolver
|
|
59305
|
+
# should be enabled for this managed prefix list. When enabled, the
|
|
59306
|
+
# prefix list CIDRs are automatically updated based on the associated
|
|
59307
|
+
# resolver's CIDR selection rules.
|
|
59308
|
+
# @return [Boolean]
|
|
59309
|
+
#
|
|
57593
59310
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyManagedPrefixListRequest AWS API Documentation
|
|
57594
59311
|
#
|
|
57595
59312
|
class ModifyManagedPrefixListRequest < Struct.new(
|
|
@@ -57599,7 +59316,8 @@ module Aws::EC2
|
|
|
57599
59316
|
:prefix_list_name,
|
|
57600
59317
|
:add_entries,
|
|
57601
59318
|
:remove_entries,
|
|
57602
|
-
:max_entries
|
|
59319
|
+
:max_entries,
|
|
59320
|
+
:ipam_prefix_list_resolver_sync_enabled)
|
|
57603
59321
|
SENSITIVE = []
|
|
57604
59322
|
include Aws::Structure
|
|
57605
59323
|
end
|
|
@@ -61752,6 +63470,10 @@ module Aws::EC2
|
|
|
61752
63470
|
# The subnets associated with this network interface.
|
|
61753
63471
|
# @return [Array<String>]
|
|
61754
63472
|
#
|
|
63473
|
+
# @!attribute [rw] availability_zone_id
|
|
63474
|
+
# The ID of the Availability Zone.
|
|
63475
|
+
# @return [String]
|
|
63476
|
+
#
|
|
61755
63477
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NetworkInterface AWS API Documentation
|
|
61756
63478
|
#
|
|
61757
63479
|
class NetworkInterface < Struct.new(
|
|
@@ -61785,7 +63507,8 @@ module Aws::EC2
|
|
|
61785
63507
|
:ipv_6_native,
|
|
61786
63508
|
:ipv_6_address,
|
|
61787
63509
|
:operator,
|
|
61788
|
-
:associated_subnets
|
|
63510
|
+
:associated_subnets,
|
|
63511
|
+
:availability_zone_id)
|
|
61789
63512
|
SENSITIVE = []
|
|
61790
63513
|
include Aws::Structure
|
|
61791
63514
|
end
|
|
@@ -63691,8 +65414,8 @@ module Aws::EC2
|
|
|
63691
65414
|
# @!attribute [rw] state
|
|
63692
65415
|
# The verification state of the VPC endpoint service.
|
|
63693
65416
|
#
|
|
63694
|
-
#
|
|
63695
|
-
#
|
|
65417
|
+
# Consumers of the endpoint service can use the private name only when
|
|
65418
|
+
# the state is `verified`.
|
|
63696
65419
|
# @return [String]
|
|
63697
65420
|
#
|
|
63698
65421
|
# @!attribute [rw] type
|
|
@@ -79709,6 +81432,15 @@ module Aws::EC2
|
|
|
79709
81432
|
# @!attribute [rw] vpc_peering
|
|
79710
81433
|
# @return [Types::VpcEncryptionControlExclusion]
|
|
79711
81434
|
#
|
|
81435
|
+
# @!attribute [rw] lambda
|
|
81436
|
+
# @return [Types::VpcEncryptionControlExclusion]
|
|
81437
|
+
#
|
|
81438
|
+
# @!attribute [rw] vpc_lattice
|
|
81439
|
+
# @return [Types::VpcEncryptionControlExclusion]
|
|
81440
|
+
#
|
|
81441
|
+
# @!attribute [rw] elastic_file_system
|
|
81442
|
+
# @return [Types::VpcEncryptionControlExclusion]
|
|
81443
|
+
#
|
|
79712
81444
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcEncryptionControlExclusions AWS API Documentation
|
|
79713
81445
|
#
|
|
79714
81446
|
class VpcEncryptionControlExclusions < Struct.new(
|
|
@@ -79716,7 +81448,10 @@ module Aws::EC2
|
|
|
79716
81448
|
:egress_only_internet_gateway,
|
|
79717
81449
|
:nat_gateway,
|
|
79718
81450
|
:virtual_private_gateway,
|
|
79719
|
-
:vpc_peering
|
|
81451
|
+
:vpc_peering,
|
|
81452
|
+
:lambda,
|
|
81453
|
+
:vpc_lattice,
|
|
81454
|
+
:elastic_file_system)
|
|
79720
81455
|
SENSITIVE = []
|
|
79721
81456
|
include Aws::Structure
|
|
79722
81457
|
end
|