aws-sdk-ec2 1.566.0 → 1.568.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +1279 -160
- data/lib/aws-sdk-ec2/client_api.rb +407 -0
- data/lib/aws-sdk-ec2/instance.rb +1 -1
- data/lib/aws-sdk-ec2/resource.rb +17 -17
- 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 +2 -2
- data/lib/aws-sdk-ec2/types.rb +1473 -27
- data/lib/aws-sdk-ec2/volume.rb +1 -1
- data/lib/aws-sdk-ec2/vpc.rb +5 -5
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +366 -104
- data/sig/instance.rbs +1 -1
- data/sig/resource.rbs +17 -17
- data/sig/security_group.rbs +2 -2
- data/sig/snapshot.rbs +1 -1
- data/sig/subnet.rbs +2 -2
- data/sig/tag.rbs +1 -1
- data/sig/types.rbs +278 -5
- data/sig/volume.rbs +1 -1
- data/sig/vpc.rbs +5 -5
- metadata +1 -1
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.
|
|
@@ -17133,6 +17371,71 @@ module Aws::EC2
|
|
|
17133
17371
|
include Aws::Structure
|
|
17134
17372
|
end
|
|
17135
17373
|
|
|
17374
|
+
# @!attribute [rw] dry_run
|
|
17375
|
+
# A check for whether you have the required permissions for the action
|
|
17376
|
+
# without actually making the request and provides an error response.
|
|
17377
|
+
# If you have the required permissions, the error response is
|
|
17378
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
17379
|
+
# @return [Boolean]
|
|
17380
|
+
#
|
|
17381
|
+
# @!attribute [rw] ipam_prefix_list_resolver_id
|
|
17382
|
+
# The ID of the IPAM prefix list resolver to delete.
|
|
17383
|
+
# @return [String]
|
|
17384
|
+
#
|
|
17385
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteIpamPrefixListResolverRequest AWS API Documentation
|
|
17386
|
+
#
|
|
17387
|
+
class DeleteIpamPrefixListResolverRequest < Struct.new(
|
|
17388
|
+
:dry_run,
|
|
17389
|
+
:ipam_prefix_list_resolver_id)
|
|
17390
|
+
SENSITIVE = []
|
|
17391
|
+
include Aws::Structure
|
|
17392
|
+
end
|
|
17393
|
+
|
|
17394
|
+
# @!attribute [rw] ipam_prefix_list_resolver
|
|
17395
|
+
# Information about the IPAM prefix list resolver that was deleted.
|
|
17396
|
+
# @return [Types::IpamPrefixListResolver]
|
|
17397
|
+
#
|
|
17398
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteIpamPrefixListResolverResult AWS API Documentation
|
|
17399
|
+
#
|
|
17400
|
+
class DeleteIpamPrefixListResolverResult < Struct.new(
|
|
17401
|
+
:ipam_prefix_list_resolver)
|
|
17402
|
+
SENSITIVE = []
|
|
17403
|
+
include Aws::Structure
|
|
17404
|
+
end
|
|
17405
|
+
|
|
17406
|
+
# @!attribute [rw] dry_run
|
|
17407
|
+
# A check for whether you have the required permissions for the action
|
|
17408
|
+
# without actually making the request and provides an error response.
|
|
17409
|
+
# If you have the required permissions, the error response is
|
|
17410
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
17411
|
+
# @return [Boolean]
|
|
17412
|
+
#
|
|
17413
|
+
# @!attribute [rw] ipam_prefix_list_resolver_target_id
|
|
17414
|
+
# The ID of the IPAM prefix list resolver target to delete.
|
|
17415
|
+
# @return [String]
|
|
17416
|
+
#
|
|
17417
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteIpamPrefixListResolverTargetRequest AWS API Documentation
|
|
17418
|
+
#
|
|
17419
|
+
class DeleteIpamPrefixListResolverTargetRequest < Struct.new(
|
|
17420
|
+
:dry_run,
|
|
17421
|
+
:ipam_prefix_list_resolver_target_id)
|
|
17422
|
+
SENSITIVE = []
|
|
17423
|
+
include Aws::Structure
|
|
17424
|
+
end
|
|
17425
|
+
|
|
17426
|
+
# @!attribute [rw] ipam_prefix_list_resolver_target
|
|
17427
|
+
# Information about the IPAM prefix list resolver target that was
|
|
17428
|
+
# deleted.
|
|
17429
|
+
# @return [Types::IpamPrefixListResolverTarget]
|
|
17430
|
+
#
|
|
17431
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteIpamPrefixListResolverTargetResult AWS API Documentation
|
|
17432
|
+
#
|
|
17433
|
+
class DeleteIpamPrefixListResolverTargetResult < Struct.new(
|
|
17434
|
+
:ipam_prefix_list_resolver_target)
|
|
17435
|
+
SENSITIVE = []
|
|
17436
|
+
include Aws::Structure
|
|
17437
|
+
end
|
|
17438
|
+
|
|
17136
17439
|
# @!attribute [rw] dry_run
|
|
17137
17440
|
# A check for whether you have the required permissions for the action
|
|
17138
17441
|
# without actually making the request and provides an error response.
|
|
@@ -20853,6 +21156,86 @@ module Aws::EC2
|
|
|
20853
21156
|
include Aws::Structure
|
|
20854
21157
|
end
|
|
20855
21158
|
|
|
21159
|
+
# @!attribute [rw] dry_run
|
|
21160
|
+
# Checks whether you have the required permissions for the operation,
|
|
21161
|
+
# without actually making the request, and provides an error response.
|
|
21162
|
+
# If you have the required permissions, the error response is
|
|
21163
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
21164
|
+
# @return [Boolean]
|
|
21165
|
+
#
|
|
21166
|
+
# @!attribute [rw] next_token
|
|
21167
|
+
# The token returned from a previous paginated request. Pagination
|
|
21168
|
+
# continues from the end of the items returned by the previous
|
|
21169
|
+
# request.
|
|
21170
|
+
# @return [String]
|
|
21171
|
+
#
|
|
21172
|
+
# @!attribute [rw] max_results
|
|
21173
|
+
# The maximum number of items to return for this request. To get the
|
|
21174
|
+
# next page of items, make another request with the token returned in
|
|
21175
|
+
# the output. For more information, see [Pagination][1].
|
|
21176
|
+
#
|
|
21177
|
+
# You can't specify this parameter and the Capacity Reservation IDs
|
|
21178
|
+
# parameter in the same request.
|
|
21179
|
+
#
|
|
21180
|
+
# Default: `10`
|
|
21181
|
+
#
|
|
21182
|
+
#
|
|
21183
|
+
#
|
|
21184
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
|
21185
|
+
# @return [Integer]
|
|
21186
|
+
#
|
|
21187
|
+
# @!attribute [rw] capacity_reservation_ids
|
|
21188
|
+
# The Capacity Reservation IDs.
|
|
21189
|
+
#
|
|
21190
|
+
# Default: Describes all your Capacity Reservations.
|
|
21191
|
+
#
|
|
21192
|
+
# Constraints: Maximum 100 explicitly specified Capacity Reservation
|
|
21193
|
+
# IDs.
|
|
21194
|
+
# @return [Array<String>]
|
|
21195
|
+
#
|
|
21196
|
+
# @!attribute [rw] filters
|
|
21197
|
+
# The filters.
|
|
21198
|
+
#
|
|
21199
|
+
# * `availability-zone` - The name of the Availability Zone (for
|
|
21200
|
+
# example, `us-west-2a`) or Local Zone (for example,
|
|
21201
|
+
# `us-west-2-lax-1b`) that the Capacity Reservation is in.
|
|
21202
|
+
#
|
|
21203
|
+
# * `instance-type` - The instance type (for example, `p4d.24xlarge`)
|
|
21204
|
+
# or instance family (for example, `p4d*`). You can use the `*`
|
|
21205
|
+
# wildcard to match zero or more characters, or the `?` wildcard to
|
|
21206
|
+
# match zero or one character.
|
|
21207
|
+
# @return [Array<Types::Filter>]
|
|
21208
|
+
#
|
|
21209
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeCapacityReservationTopologyRequest AWS API Documentation
|
|
21210
|
+
#
|
|
21211
|
+
class DescribeCapacityReservationTopologyRequest < Struct.new(
|
|
21212
|
+
:dry_run,
|
|
21213
|
+
:next_token,
|
|
21214
|
+
:max_results,
|
|
21215
|
+
:capacity_reservation_ids,
|
|
21216
|
+
:filters)
|
|
21217
|
+
SENSITIVE = []
|
|
21218
|
+
include Aws::Structure
|
|
21219
|
+
end
|
|
21220
|
+
|
|
21221
|
+
# @!attribute [rw] next_token
|
|
21222
|
+
# The token to include in another request to get the next page of
|
|
21223
|
+
# items. This value is `null` when there are no more items to return.
|
|
21224
|
+
# @return [String]
|
|
21225
|
+
#
|
|
21226
|
+
# @!attribute [rw] capacity_reservations
|
|
21227
|
+
# Information about the topology of each Capacity Reservation.
|
|
21228
|
+
# @return [Array<Types::CapacityReservationTopology>]
|
|
21229
|
+
#
|
|
21230
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeCapacityReservationTopologyResult AWS API Documentation
|
|
21231
|
+
#
|
|
21232
|
+
class DescribeCapacityReservationTopologyResult < Struct.new(
|
|
21233
|
+
:next_token,
|
|
21234
|
+
:capacity_reservations)
|
|
21235
|
+
SENSITIVE = []
|
|
21236
|
+
include Aws::Structure
|
|
21237
|
+
end
|
|
21238
|
+
|
|
20856
21239
|
# @!attribute [rw] capacity_reservation_ids
|
|
20857
21240
|
# The ID of the Capacity Reservation.
|
|
20858
21241
|
# @return [Array<String>]
|
|
@@ -23376,6 +23759,16 @@ module Aws::EC2
|
|
|
23376
23759
|
#
|
|
23377
23760
|
# * `state` - The state of the report (`available` \| `pending` \|
|
|
23378
23761
|
# `error`).
|
|
23762
|
+
#
|
|
23763
|
+
# * `tag:<key>` - The key/value combination of a tag assigned to the
|
|
23764
|
+
# resource. Use the tag key in the filter name and the tag value as
|
|
23765
|
+
# the filter value. For example, to find all resources that have a
|
|
23766
|
+
# tag with the key `Owner` and the value `TeamA`, specify
|
|
23767
|
+
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
|
23768
|
+
#
|
|
23769
|
+
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
|
23770
|
+
# filter to find all resources assigned a tag with a specific key,
|
|
23771
|
+
# regardless of the tag value.
|
|
23379
23772
|
# @return [Array<Types::Filter>]
|
|
23380
23773
|
#
|
|
23381
23774
|
# @!attribute [rw] dry_run
|
|
@@ -25521,6 +25914,132 @@ module Aws::EC2
|
|
|
25521
25914
|
include Aws::Structure
|
|
25522
25915
|
end
|
|
25523
25916
|
|
|
25917
|
+
# @!attribute [rw] dry_run
|
|
25918
|
+
# A check for whether you have the required permissions for the action
|
|
25919
|
+
# without actually making the request and provides an error response.
|
|
25920
|
+
# If you have the required permissions, the error response is
|
|
25921
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
25922
|
+
# @return [Boolean]
|
|
25923
|
+
#
|
|
25924
|
+
# @!attribute [rw] filters
|
|
25925
|
+
# One or more filters to limit the results.
|
|
25926
|
+
# @return [Array<Types::Filter>]
|
|
25927
|
+
#
|
|
25928
|
+
# @!attribute [rw] max_results
|
|
25929
|
+
# The maximum number of items to return for this request. To get the
|
|
25930
|
+
# next page of items, make another request with the token returned in
|
|
25931
|
+
# the output. For more information, see [Pagination][1].
|
|
25932
|
+
#
|
|
25933
|
+
#
|
|
25934
|
+
#
|
|
25935
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
|
25936
|
+
# @return [Integer]
|
|
25937
|
+
#
|
|
25938
|
+
# @!attribute [rw] next_token
|
|
25939
|
+
# The token for the next page of results.
|
|
25940
|
+
# @return [String]
|
|
25941
|
+
#
|
|
25942
|
+
# @!attribute [rw] ipam_prefix_list_resolver_target_ids
|
|
25943
|
+
# The IDs of the IPAM prefix list resolver Targets to describe. If not
|
|
25944
|
+
# specified, all targets in your account are described.
|
|
25945
|
+
# @return [Array<String>]
|
|
25946
|
+
#
|
|
25947
|
+
# @!attribute [rw] ipam_prefix_list_resolver_id
|
|
25948
|
+
# The ID of the IPAM prefix list resolver to filter targets by. Only
|
|
25949
|
+
# targets associated with this resolver will be returned.
|
|
25950
|
+
# @return [String]
|
|
25951
|
+
#
|
|
25952
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIpamPrefixListResolverTargetsRequest AWS API Documentation
|
|
25953
|
+
#
|
|
25954
|
+
class DescribeIpamPrefixListResolverTargetsRequest < Struct.new(
|
|
25955
|
+
:dry_run,
|
|
25956
|
+
:filters,
|
|
25957
|
+
:max_results,
|
|
25958
|
+
:next_token,
|
|
25959
|
+
:ipam_prefix_list_resolver_target_ids,
|
|
25960
|
+
:ipam_prefix_list_resolver_id)
|
|
25961
|
+
SENSITIVE = []
|
|
25962
|
+
include Aws::Structure
|
|
25963
|
+
end
|
|
25964
|
+
|
|
25965
|
+
# @!attribute [rw] next_token
|
|
25966
|
+
# The token to use to retrieve the next page of results. This value is
|
|
25967
|
+
# `null` when there are no more results to return.
|
|
25968
|
+
# @return [String]
|
|
25969
|
+
#
|
|
25970
|
+
# @!attribute [rw] ipam_prefix_list_resolver_targets
|
|
25971
|
+
# Information about the IPAM prefix list resolver Targets.
|
|
25972
|
+
# @return [Array<Types::IpamPrefixListResolverTarget>]
|
|
25973
|
+
#
|
|
25974
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIpamPrefixListResolverTargetsResult AWS API Documentation
|
|
25975
|
+
#
|
|
25976
|
+
class DescribeIpamPrefixListResolverTargetsResult < Struct.new(
|
|
25977
|
+
:next_token,
|
|
25978
|
+
:ipam_prefix_list_resolver_targets)
|
|
25979
|
+
SENSITIVE = []
|
|
25980
|
+
include Aws::Structure
|
|
25981
|
+
end
|
|
25982
|
+
|
|
25983
|
+
# @!attribute [rw] dry_run
|
|
25984
|
+
# A check for whether you have the required permissions for the action
|
|
25985
|
+
# without actually making the request and provides an error response.
|
|
25986
|
+
# If you have the required permissions, the error response is
|
|
25987
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
25988
|
+
# @return [Boolean]
|
|
25989
|
+
#
|
|
25990
|
+
# @!attribute [rw] filters
|
|
25991
|
+
# One or more filters to limit the results.
|
|
25992
|
+
# @return [Array<Types::Filter>]
|
|
25993
|
+
#
|
|
25994
|
+
# @!attribute [rw] max_results
|
|
25995
|
+
# The maximum number of items to return for this request. To get the
|
|
25996
|
+
# next page of items, make another request with the token returned in
|
|
25997
|
+
# the output. For more information, see [Pagination][1].
|
|
25998
|
+
#
|
|
25999
|
+
#
|
|
26000
|
+
#
|
|
26001
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
|
26002
|
+
# @return [Integer]
|
|
26003
|
+
#
|
|
26004
|
+
# @!attribute [rw] next_token
|
|
26005
|
+
# The token for the next page of results.
|
|
26006
|
+
# @return [String]
|
|
26007
|
+
#
|
|
26008
|
+
# @!attribute [rw] ipam_prefix_list_resolver_ids
|
|
26009
|
+
# The IDs of the IPAM prefix list resolvers to describe. If not
|
|
26010
|
+
# specified, all resolvers in your account are described.
|
|
26011
|
+
# @return [Array<String>]
|
|
26012
|
+
#
|
|
26013
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIpamPrefixListResolversRequest AWS API Documentation
|
|
26014
|
+
#
|
|
26015
|
+
class DescribeIpamPrefixListResolversRequest < Struct.new(
|
|
26016
|
+
:dry_run,
|
|
26017
|
+
:filters,
|
|
26018
|
+
:max_results,
|
|
26019
|
+
:next_token,
|
|
26020
|
+
:ipam_prefix_list_resolver_ids)
|
|
26021
|
+
SENSITIVE = []
|
|
26022
|
+
include Aws::Structure
|
|
26023
|
+
end
|
|
26024
|
+
|
|
26025
|
+
# @!attribute [rw] next_token
|
|
26026
|
+
# The token to use to retrieve the next page of results. This value is
|
|
26027
|
+
# `null` when there are no more results to return.
|
|
26028
|
+
# @return [String]
|
|
26029
|
+
#
|
|
26030
|
+
# @!attribute [rw] ipam_prefix_list_resolvers
|
|
26031
|
+
# Information about the IPAM prefix list resolvers.
|
|
26032
|
+
# @return [Array<Types::IpamPrefixListResolver>]
|
|
26033
|
+
#
|
|
26034
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIpamPrefixListResolversResult AWS API Documentation
|
|
26035
|
+
#
|
|
26036
|
+
class DescribeIpamPrefixListResolversResult < Struct.new(
|
|
26037
|
+
:next_token,
|
|
26038
|
+
:ipam_prefix_list_resolvers)
|
|
26039
|
+
SENSITIVE = []
|
|
26040
|
+
include Aws::Structure
|
|
26041
|
+
end
|
|
26042
|
+
|
|
25524
26043
|
# @!attribute [rw] dry_run
|
|
25525
26044
|
# A check for whether you have the required permissions for the action
|
|
25526
26045
|
# without actually making the request and provides an error response.
|
|
@@ -29101,21 +29620,11 @@ module Aws::EC2
|
|
|
29101
29620
|
#
|
|
29102
29621
|
# * `group-owner-id`: The group owner ID.
|
|
29103
29622
|
#
|
|
29104
|
-
# * `vpc-id`: The ID of the associated VPC.
|
|
29105
|
-
#
|
|
29106
|
-
# * `vpc-owner-id`: The account ID of the VPC owner.
|
|
29107
|
-
#
|
|
29108
29623
|
# * `state`: The state of the association.
|
|
29109
29624
|
#
|
|
29110
|
-
# * `
|
|
29111
|
-
# resource. Use the tag key in the filter name and the tag value as
|
|
29112
|
-
# the filter value. For example, to find all resources that have a
|
|
29113
|
-
# tag with the key `Owner` and the value `TeamA`, specify
|
|
29114
|
-
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
|
29625
|
+
# * `vpc-id`: The ID of the associated VPC.
|
|
29115
29626
|
#
|
|
29116
|
-
# * `
|
|
29117
|
-
# filter to find all resources assigned a tag with a specific key,
|
|
29118
|
-
# regardless of the tag value.
|
|
29627
|
+
# * `vpc-owner-id`: The account ID of the VPC owner.
|
|
29119
29628
|
# @return [Array<Types::Filter>]
|
|
29120
29629
|
#
|
|
29121
29630
|
# @!attribute [rw] next_token
|
|
@@ -41892,6 +42401,193 @@ module Aws::EC2
|
|
|
41892
42401
|
include Aws::Structure
|
|
41893
42402
|
end
|
|
41894
42403
|
|
|
42404
|
+
# @!attribute [rw] dry_run
|
|
42405
|
+
# A check for whether you have the required permissions for the action
|
|
42406
|
+
# without actually making the request and provides an error response.
|
|
42407
|
+
# If you have the required permissions, the error response is
|
|
42408
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
42409
|
+
# @return [Boolean]
|
|
42410
|
+
#
|
|
42411
|
+
# @!attribute [rw] ipam_prefix_list_resolver_id
|
|
42412
|
+
# The ID of the IPAM prefix list resolver whose rules you want to
|
|
42413
|
+
# retrieve.
|
|
42414
|
+
# @return [String]
|
|
42415
|
+
#
|
|
42416
|
+
# @!attribute [rw] filters
|
|
42417
|
+
# One or more filters to limit the results.
|
|
42418
|
+
# @return [Array<Types::Filter>]
|
|
42419
|
+
#
|
|
42420
|
+
# @!attribute [rw] max_results
|
|
42421
|
+
# The maximum number of items to return for this request. To get the
|
|
42422
|
+
# next page of items, make another request with the token returned in
|
|
42423
|
+
# the output. For more information, see [Pagination][1].
|
|
42424
|
+
#
|
|
42425
|
+
#
|
|
42426
|
+
#
|
|
42427
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
|
42428
|
+
# @return [Integer]
|
|
42429
|
+
#
|
|
42430
|
+
# @!attribute [rw] next_token
|
|
42431
|
+
# The token for the next page of results.
|
|
42432
|
+
# @return [String]
|
|
42433
|
+
#
|
|
42434
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetIpamPrefixListResolverRulesRequest AWS API Documentation
|
|
42435
|
+
#
|
|
42436
|
+
class GetIpamPrefixListResolverRulesRequest < Struct.new(
|
|
42437
|
+
:dry_run,
|
|
42438
|
+
:ipam_prefix_list_resolver_id,
|
|
42439
|
+
:filters,
|
|
42440
|
+
:max_results,
|
|
42441
|
+
:next_token)
|
|
42442
|
+
SENSITIVE = []
|
|
42443
|
+
include Aws::Structure
|
|
42444
|
+
end
|
|
42445
|
+
|
|
42446
|
+
# @!attribute [rw] rules
|
|
42447
|
+
# The CIDR selection rules for the IPAM prefix list resolver.
|
|
42448
|
+
# @return [Array<Types::IpamPrefixListResolverRule>]
|
|
42449
|
+
#
|
|
42450
|
+
# @!attribute [rw] next_token
|
|
42451
|
+
# The token to use to retrieve the next page of results. This value is
|
|
42452
|
+
# `null` when there are no more results to return.
|
|
42453
|
+
# @return [String]
|
|
42454
|
+
#
|
|
42455
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetIpamPrefixListResolverRulesResult AWS API Documentation
|
|
42456
|
+
#
|
|
42457
|
+
class GetIpamPrefixListResolverRulesResult < Struct.new(
|
|
42458
|
+
:rules,
|
|
42459
|
+
:next_token)
|
|
42460
|
+
SENSITIVE = []
|
|
42461
|
+
include Aws::Structure
|
|
42462
|
+
end
|
|
42463
|
+
|
|
42464
|
+
# @!attribute [rw] dry_run
|
|
42465
|
+
# A check for whether you have the required permissions for the action
|
|
42466
|
+
# without actually making the request and provides an error response.
|
|
42467
|
+
# If you have the required permissions, the error response is
|
|
42468
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
42469
|
+
# @return [Boolean]
|
|
42470
|
+
#
|
|
42471
|
+
# @!attribute [rw] ipam_prefix_list_resolver_id
|
|
42472
|
+
# The ID of the IPAM prefix list resolver whose version entries you
|
|
42473
|
+
# want to retrieve.
|
|
42474
|
+
# @return [String]
|
|
42475
|
+
#
|
|
42476
|
+
# @!attribute [rw] ipam_prefix_list_resolver_version
|
|
42477
|
+
# The version number of the resolver for which to retrieve CIDR
|
|
42478
|
+
# entries. If not specified, the latest version is used.
|
|
42479
|
+
# @return [Integer]
|
|
42480
|
+
#
|
|
42481
|
+
# @!attribute [rw] max_results
|
|
42482
|
+
# The maximum number of items to return for this request. To get the
|
|
42483
|
+
# next page of items, make another request with the token returned in
|
|
42484
|
+
# the output. For more information, see [Pagination][1].
|
|
42485
|
+
#
|
|
42486
|
+
#
|
|
42487
|
+
#
|
|
42488
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
|
42489
|
+
# @return [Integer]
|
|
42490
|
+
#
|
|
42491
|
+
# @!attribute [rw] next_token
|
|
42492
|
+
# The token for the next page of results.
|
|
42493
|
+
# @return [String]
|
|
42494
|
+
#
|
|
42495
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetIpamPrefixListResolverVersionEntriesRequest AWS API Documentation
|
|
42496
|
+
#
|
|
42497
|
+
class GetIpamPrefixListResolverVersionEntriesRequest < Struct.new(
|
|
42498
|
+
:dry_run,
|
|
42499
|
+
:ipam_prefix_list_resolver_id,
|
|
42500
|
+
:ipam_prefix_list_resolver_version,
|
|
42501
|
+
:max_results,
|
|
42502
|
+
:next_token)
|
|
42503
|
+
SENSITIVE = []
|
|
42504
|
+
include Aws::Structure
|
|
42505
|
+
end
|
|
42506
|
+
|
|
42507
|
+
# @!attribute [rw] entries
|
|
42508
|
+
# The CIDR entries for the specified resolver version.
|
|
42509
|
+
# @return [Array<Types::IpamPrefixListResolverVersionEntry>]
|
|
42510
|
+
#
|
|
42511
|
+
# @!attribute [rw] next_token
|
|
42512
|
+
# The token to use to retrieve the next page of results. This value is
|
|
42513
|
+
# `null` when there are no more results to return.
|
|
42514
|
+
# @return [String]
|
|
42515
|
+
#
|
|
42516
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetIpamPrefixListResolverVersionEntriesResult AWS API Documentation
|
|
42517
|
+
#
|
|
42518
|
+
class GetIpamPrefixListResolverVersionEntriesResult < Struct.new(
|
|
42519
|
+
:entries,
|
|
42520
|
+
:next_token)
|
|
42521
|
+
SENSITIVE = []
|
|
42522
|
+
include Aws::Structure
|
|
42523
|
+
end
|
|
42524
|
+
|
|
42525
|
+
# @!attribute [rw] dry_run
|
|
42526
|
+
# A check for whether you have the required permissions for the action
|
|
42527
|
+
# without actually making the request and provides an error response.
|
|
42528
|
+
# If you have the required permissions, the error response is
|
|
42529
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
42530
|
+
# @return [Boolean]
|
|
42531
|
+
#
|
|
42532
|
+
# @!attribute [rw] ipam_prefix_list_resolver_id
|
|
42533
|
+
# The ID of the IPAM prefix list resolver whose versions you want to
|
|
42534
|
+
# retrieve.
|
|
42535
|
+
# @return [String]
|
|
42536
|
+
#
|
|
42537
|
+
# @!attribute [rw] ipam_prefix_list_resolver_versions
|
|
42538
|
+
# Specific version numbers to retrieve. If not specified, all versions
|
|
42539
|
+
# are returned.
|
|
42540
|
+
# @return [Array<Integer>]
|
|
42541
|
+
#
|
|
42542
|
+
# @!attribute [rw] max_results
|
|
42543
|
+
# The maximum number of items to return for this request. To get the
|
|
42544
|
+
# next page of items, make another request with the token returned in
|
|
42545
|
+
# the output. For more information, see [Pagination][1].
|
|
42546
|
+
#
|
|
42547
|
+
#
|
|
42548
|
+
#
|
|
42549
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
|
42550
|
+
# @return [Integer]
|
|
42551
|
+
#
|
|
42552
|
+
# @!attribute [rw] filters
|
|
42553
|
+
# One or more filters to limit the results.
|
|
42554
|
+
# @return [Array<Types::Filter>]
|
|
42555
|
+
#
|
|
42556
|
+
# @!attribute [rw] next_token
|
|
42557
|
+
# The token for the next page of results.
|
|
42558
|
+
# @return [String]
|
|
42559
|
+
#
|
|
42560
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetIpamPrefixListResolverVersionsRequest AWS API Documentation
|
|
42561
|
+
#
|
|
42562
|
+
class GetIpamPrefixListResolverVersionsRequest < Struct.new(
|
|
42563
|
+
:dry_run,
|
|
42564
|
+
:ipam_prefix_list_resolver_id,
|
|
42565
|
+
:ipam_prefix_list_resolver_versions,
|
|
42566
|
+
:max_results,
|
|
42567
|
+
:filters,
|
|
42568
|
+
:next_token)
|
|
42569
|
+
SENSITIVE = []
|
|
42570
|
+
include Aws::Structure
|
|
42571
|
+
end
|
|
42572
|
+
|
|
42573
|
+
# @!attribute [rw] ipam_prefix_list_resolver_versions
|
|
42574
|
+
# Information about the IPAM prefix list resolver versions.
|
|
42575
|
+
# @return [Array<Types::IpamPrefixListResolverVersion>]
|
|
42576
|
+
#
|
|
42577
|
+
# @!attribute [rw] next_token
|
|
42578
|
+
# The token to use to retrieve the next page of results. This value is
|
|
42579
|
+
# `null` when there are no more results to return.
|
|
42580
|
+
# @return [String]
|
|
42581
|
+
#
|
|
42582
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetIpamPrefixListResolverVersionsResult AWS API Documentation
|
|
42583
|
+
#
|
|
42584
|
+
class GetIpamPrefixListResolverVersionsResult < Struct.new(
|
|
42585
|
+
:ipam_prefix_list_resolver_versions,
|
|
42586
|
+
:next_token)
|
|
42587
|
+
SENSITIVE = []
|
|
42588
|
+
include Aws::Structure
|
|
42589
|
+
end
|
|
42590
|
+
|
|
41895
42591
|
# @!attribute [rw] dry_run
|
|
41896
42592
|
# A check for whether you have the required permissions for the action
|
|
41897
42593
|
# without actually making the request and provides an error response.
|
|
@@ -49506,6 +50202,12 @@ module Aws::EC2
|
|
|
49506
50202
|
# The network nodes. The nodes are hashed based on your account.
|
|
49507
50203
|
# Instances from different accounts running under the same server will
|
|
49508
50204
|
# return a different hashed list of strings.
|
|
50205
|
+
#
|
|
50206
|
+
# The value is `null` or empty if:
|
|
50207
|
+
#
|
|
50208
|
+
# * The instance type is not supported.
|
|
50209
|
+
#
|
|
50210
|
+
# * The instance is in a state other than `running`.
|
|
49509
50211
|
# @return [Array<String>]
|
|
49510
50212
|
#
|
|
49511
50213
|
# @!attribute [rw] availability_zone
|
|
@@ -49520,8 +50222,8 @@ module Aws::EC2
|
|
|
49520
50222
|
#
|
|
49521
50223
|
# @!attribute [rw] capacity_block_id
|
|
49522
50224
|
# The ID of the Capacity Block. This parameter is only supported for
|
|
49523
|
-
#
|
|
49524
|
-
#
|
|
50225
|
+
# UltraServer instances and identifies instances within the
|
|
50226
|
+
# UltraServer domain.
|
|
49525
50227
|
# @return [String]
|
|
49526
50228
|
#
|
|
49527
50229
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceTopology AWS API Documentation
|
|
@@ -51017,6 +51719,603 @@ module Aws::EC2
|
|
|
51017
51719
|
include Aws::Structure
|
|
51018
51720
|
end
|
|
51019
51721
|
|
|
51722
|
+
# Describes an IPAM prefix list resolver.
|
|
51723
|
+
#
|
|
51724
|
+
# An IPAM prefix list resolver is a component that manages the
|
|
51725
|
+
# synchronization between IPAM's CIDR selection rules and
|
|
51726
|
+
# customer-managed prefix lists. It automates connectivity
|
|
51727
|
+
# configurations by selecting CIDRs from IPAM's database based on your
|
|
51728
|
+
# business logic and synchronizing them with prefix lists used in
|
|
51729
|
+
# resources such as VPC route tables and security groups.
|
|
51730
|
+
#
|
|
51731
|
+
# @!attribute [rw] owner_id
|
|
51732
|
+
# The ID of the Amazon Web Services account that owns the IPAM prefix
|
|
51733
|
+
# list resolver.
|
|
51734
|
+
# @return [String]
|
|
51735
|
+
#
|
|
51736
|
+
# @!attribute [rw] ipam_prefix_list_resolver_id
|
|
51737
|
+
# The ID of the IPAM prefix list resolver.
|
|
51738
|
+
# @return [String]
|
|
51739
|
+
#
|
|
51740
|
+
# @!attribute [rw] ipam_prefix_list_resolver_arn
|
|
51741
|
+
# The Amazon Resource Name (ARN) of the IPAM prefix list resolver.
|
|
51742
|
+
# @return [String]
|
|
51743
|
+
#
|
|
51744
|
+
# @!attribute [rw] ipam_arn
|
|
51745
|
+
# The Amazon Resource Name (ARN) of the IPAM associated with this
|
|
51746
|
+
# resolver.
|
|
51747
|
+
# @return [String]
|
|
51748
|
+
#
|
|
51749
|
+
# @!attribute [rw] ipam_region
|
|
51750
|
+
# The Amazon Web Services Region where the associated IPAM is located.
|
|
51751
|
+
# @return [String]
|
|
51752
|
+
#
|
|
51753
|
+
# @!attribute [rw] description
|
|
51754
|
+
# The description of the IPAM prefix list resolver.
|
|
51755
|
+
# @return [String]
|
|
51756
|
+
#
|
|
51757
|
+
# @!attribute [rw] address_family
|
|
51758
|
+
# The address family (IPv4 or IPv6) for the IPAM prefix list resolver.
|
|
51759
|
+
# @return [String]
|
|
51760
|
+
#
|
|
51761
|
+
# @!attribute [rw] state
|
|
51762
|
+
# The current state of the IPAM prefix list resolver. Valid values
|
|
51763
|
+
# include `create-in-progress`, `create-complete`, `create-failed`,
|
|
51764
|
+
# `modify-in-progress`, `modify-complete`, `modify-failed`,
|
|
51765
|
+
# `delete-in-progress`, `delete-complete`, and `delete-failed`.
|
|
51766
|
+
# @return [String]
|
|
51767
|
+
#
|
|
51768
|
+
# @!attribute [rw] tags
|
|
51769
|
+
# The tags assigned to the IPAM prefix list resolver.
|
|
51770
|
+
# @return [Array<Types::Tag>]
|
|
51771
|
+
#
|
|
51772
|
+
# @!attribute [rw] last_version_creation_status
|
|
51773
|
+
# The status for the last time a version was created.
|
|
51774
|
+
#
|
|
51775
|
+
# Each version is a snapshot of what CIDRs matched your rules at that
|
|
51776
|
+
# moment in time. The version number increments every time the CIDR
|
|
51777
|
+
# list changes due to infrastructure changes.
|
|
51778
|
+
# @return [String]
|
|
51779
|
+
#
|
|
51780
|
+
# @!attribute [rw] last_version_creation_status_message
|
|
51781
|
+
# The status message for the last time a version was created.
|
|
51782
|
+
#
|
|
51783
|
+
# Each version is a snapshot of what CIDRs matched your rules at that
|
|
51784
|
+
# moment in time. The version number increments every time the CIDR
|
|
51785
|
+
# list changes due to infrastructure changes.
|
|
51786
|
+
# @return [String]
|
|
51787
|
+
#
|
|
51788
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamPrefixListResolver AWS API Documentation
|
|
51789
|
+
#
|
|
51790
|
+
class IpamPrefixListResolver < Struct.new(
|
|
51791
|
+
:owner_id,
|
|
51792
|
+
:ipam_prefix_list_resolver_id,
|
|
51793
|
+
:ipam_prefix_list_resolver_arn,
|
|
51794
|
+
:ipam_arn,
|
|
51795
|
+
:ipam_region,
|
|
51796
|
+
:description,
|
|
51797
|
+
:address_family,
|
|
51798
|
+
:state,
|
|
51799
|
+
:tags,
|
|
51800
|
+
:last_version_creation_status,
|
|
51801
|
+
:last_version_creation_status_message)
|
|
51802
|
+
SENSITIVE = []
|
|
51803
|
+
include Aws::Structure
|
|
51804
|
+
end
|
|
51805
|
+
|
|
51806
|
+
# Describes a CIDR selection rule.
|
|
51807
|
+
#
|
|
51808
|
+
# CIDR selection rules define the business logic for selecting CIDRs
|
|
51809
|
+
# from IPAM. If a CIDR matches any of the rules, it will be included. If
|
|
51810
|
+
# a rule has multiple conditions, the CIDR has to match every condition
|
|
51811
|
+
# of that rule. You can create a prefix list resolver without any CIDR
|
|
51812
|
+
# selection rules, but it will generate empty versions (containing no
|
|
51813
|
+
# CIDRs) until you add rules.
|
|
51814
|
+
#
|
|
51815
|
+
# @!attribute [rw] rule_type
|
|
51816
|
+
# The type of CIDR selection rule. Valid values include `include` for
|
|
51817
|
+
# selecting CIDRs that match the conditions, and `exclude` for
|
|
51818
|
+
# excluding CIDRs that match the conditions.
|
|
51819
|
+
# @return [String]
|
|
51820
|
+
#
|
|
51821
|
+
# @!attribute [rw] static_cidr
|
|
51822
|
+
# A fixed list of CIDRs that do not change (like a manual list
|
|
51823
|
+
# replicated across Regions).
|
|
51824
|
+
# @return [String]
|
|
51825
|
+
#
|
|
51826
|
+
# @!attribute [rw] ipam_scope_id
|
|
51827
|
+
# The ID of the IPAM scope from which to select CIDRs. This determines
|
|
51828
|
+
# whether to select from public or private IP address space.
|
|
51829
|
+
# @return [String]
|
|
51830
|
+
#
|
|
51831
|
+
# @!attribute [rw] resource_type
|
|
51832
|
+
# For rules of type `ipam-resource-cidr`, this is the resource type.
|
|
51833
|
+
# @return [String]
|
|
51834
|
+
#
|
|
51835
|
+
# @!attribute [rw] conditions
|
|
51836
|
+
# The conditions that determine which CIDRs are selected by this rule.
|
|
51837
|
+
# Conditions specify criteria such as resource type, tags, account
|
|
51838
|
+
# IDs, and Regions.
|
|
51839
|
+
# @return [Array<Types::IpamPrefixListResolverRuleCondition>]
|
|
51840
|
+
#
|
|
51841
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamPrefixListResolverRule AWS API Documentation
|
|
51842
|
+
#
|
|
51843
|
+
class IpamPrefixListResolverRule < Struct.new(
|
|
51844
|
+
:rule_type,
|
|
51845
|
+
:static_cidr,
|
|
51846
|
+
:ipam_scope_id,
|
|
51847
|
+
:resource_type,
|
|
51848
|
+
:conditions)
|
|
51849
|
+
SENSITIVE = []
|
|
51850
|
+
include Aws::Structure
|
|
51851
|
+
end
|
|
51852
|
+
|
|
51853
|
+
# Describes a condition within a CIDR selection rule. Conditions define
|
|
51854
|
+
# the criteria for selecting CIDRs from IPAM's database based on
|
|
51855
|
+
# resource attributes.
|
|
51856
|
+
#
|
|
51857
|
+
# CIDR selection rules define the business logic for selecting CIDRs
|
|
51858
|
+
# from IPAM. If a CIDR matches any of the rules, it will be included. If
|
|
51859
|
+
# a rule has multiple conditions, the CIDR has to match every condition
|
|
51860
|
+
# of that rule. You can create a prefix list resolver without any CIDR
|
|
51861
|
+
# selection rules, but it will generate empty versions (containing no
|
|
51862
|
+
# CIDRs) until you add rules.
|
|
51863
|
+
#
|
|
51864
|
+
# There are three rule types:
|
|
51865
|
+
#
|
|
51866
|
+
# * **Static CIDR**: A fixed list of CIDRs that do not change (like a
|
|
51867
|
+
# manual list replicated across Regions).
|
|
51868
|
+
#
|
|
51869
|
+
# * **IPAM pool CIDR**: CIDRs from specific IPAM pools (like all CIDRs
|
|
51870
|
+
# from your IPAM production pool).
|
|
51871
|
+
#
|
|
51872
|
+
# * **Scope resource CIDR**: CIDRs for Amazon Web Services resources
|
|
51873
|
+
# like VPCs, subnets, and EIPs within a specific IPAM scope.
|
|
51874
|
+
#
|
|
51875
|
+
# Condition availability by resource type:
|
|
51876
|
+
#
|
|
51877
|
+
# * Only 2 of the 3 rule types support conditions - **IPAM pool CIDR**
|
|
51878
|
+
# and **Scope resource CIDR**. **Static CIDR** rules cannot have
|
|
51879
|
+
# conditions.
|
|
51880
|
+
#
|
|
51881
|
+
# * Condition available for the **IPAM pool CIDR** resource type:
|
|
51882
|
+
#
|
|
51883
|
+
# * Property:
|
|
51884
|
+
#
|
|
51885
|
+
# * IPAM Pool ID
|
|
51886
|
+
#
|
|
51887
|
+
# * CIDR (like 10.24.34.0/23)
|
|
51888
|
+
# * Operation: Equals/Not equals
|
|
51889
|
+
#
|
|
51890
|
+
# * Value: The value on which to match the condition
|
|
51891
|
+
# * Conditions for the **Scope resource CIDR** resource type:
|
|
51892
|
+
#
|
|
51893
|
+
# * Property:
|
|
51894
|
+
#
|
|
51895
|
+
# * Resource ID: The unique ID of a resource (like
|
|
51896
|
+
# vpc-1234567890abcdef0)
|
|
51897
|
+
#
|
|
51898
|
+
# * Resource type (like VPC or Subnet)
|
|
51899
|
+
#
|
|
51900
|
+
# * Resource owner (like 111122223333)
|
|
51901
|
+
#
|
|
51902
|
+
# * Resource region (like us-east-1)
|
|
51903
|
+
#
|
|
51904
|
+
# * Resource tag (like key: name, value: dev-vpc-1)
|
|
51905
|
+
#
|
|
51906
|
+
# * CIDR (like 10.24.34.0/23)
|
|
51907
|
+
# * Operation: Equals/Not equals
|
|
51908
|
+
#
|
|
51909
|
+
# * Value: The value on which to match the condition
|
|
51910
|
+
# * When setting conditions for a rule, one or more conditions is
|
|
51911
|
+
# required.
|
|
51912
|
+
#
|
|
51913
|
+
# @!attribute [rw] operation
|
|
51914
|
+
# The operation to perform when evaluating this condition. Valid
|
|
51915
|
+
# values include `equals`, `not-equals`, `contains`, and
|
|
51916
|
+
# `not-contains`.
|
|
51917
|
+
# @return [String]
|
|
51918
|
+
#
|
|
51919
|
+
# @!attribute [rw] ipam_pool_id
|
|
51920
|
+
# The ID of the IPAM pool to match against. This condition selects
|
|
51921
|
+
# CIDRs that belong to the specified IPAM pool.
|
|
51922
|
+
# @return [String]
|
|
51923
|
+
#
|
|
51924
|
+
# @!attribute [rw] resource_id
|
|
51925
|
+
# The ID of the Amazon Web Services resource to match against. This
|
|
51926
|
+
# condition selects CIDRs associated with the specified resource.
|
|
51927
|
+
# @return [String]
|
|
51928
|
+
#
|
|
51929
|
+
# @!attribute [rw] resource_owner
|
|
51930
|
+
# The Amazon Web Services account ID that owns the resources to match
|
|
51931
|
+
# against. This condition selects CIDRs from resources owned by the
|
|
51932
|
+
# specified account.
|
|
51933
|
+
# @return [String]
|
|
51934
|
+
#
|
|
51935
|
+
# @!attribute [rw] resource_region
|
|
51936
|
+
# The Amazon Web Services Region where the resources are located. This
|
|
51937
|
+
# condition selects CIDRs from resources in the specified Region.
|
|
51938
|
+
# @return [String]
|
|
51939
|
+
#
|
|
51940
|
+
# @!attribute [rw] resource_tag
|
|
51941
|
+
# A tag key-value pair to match against. This condition selects CIDRs
|
|
51942
|
+
# from resources that have the specified tag.
|
|
51943
|
+
# @return [Types::IpamResourceTag]
|
|
51944
|
+
#
|
|
51945
|
+
# @!attribute [rw] cidr
|
|
51946
|
+
# A CIDR block to match against. This condition selects CIDRs that
|
|
51947
|
+
# fall within or match the specified CIDR range.
|
|
51948
|
+
# @return [String]
|
|
51949
|
+
#
|
|
51950
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamPrefixListResolverRuleCondition AWS API Documentation
|
|
51951
|
+
#
|
|
51952
|
+
class IpamPrefixListResolverRuleCondition < Struct.new(
|
|
51953
|
+
:operation,
|
|
51954
|
+
:ipam_pool_id,
|
|
51955
|
+
:resource_id,
|
|
51956
|
+
:resource_owner,
|
|
51957
|
+
:resource_region,
|
|
51958
|
+
:resource_tag,
|
|
51959
|
+
:cidr)
|
|
51960
|
+
SENSITIVE = []
|
|
51961
|
+
include Aws::Structure
|
|
51962
|
+
end
|
|
51963
|
+
|
|
51964
|
+
# Describes a condition used when creating or modifying resolver rules.
|
|
51965
|
+
#
|
|
51966
|
+
# CIDR selection rules define the business logic for selecting CIDRs
|
|
51967
|
+
# from IPAM. If a CIDR matches any of the rules, it will be included. If
|
|
51968
|
+
# a rule has multiple conditions, the CIDR has to match every condition
|
|
51969
|
+
# of that rule. You can create a prefix list resolver without any CIDR
|
|
51970
|
+
# selection rules, but it will generate empty versions (containing no
|
|
51971
|
+
# CIDRs) until you add rules.
|
|
51972
|
+
#
|
|
51973
|
+
# There are three rule types:
|
|
51974
|
+
#
|
|
51975
|
+
# * **Static CIDR**: A fixed list of CIDRs that do not change (like a
|
|
51976
|
+
# manual list replicated across Regions).
|
|
51977
|
+
#
|
|
51978
|
+
# * **IPAM pool CIDR**: CIDRs from specific IPAM pools (like all CIDRs
|
|
51979
|
+
# from your IPAM production pool).
|
|
51980
|
+
#
|
|
51981
|
+
# * **Scope resource CIDR**: CIDRs for Amazon Web Services resources
|
|
51982
|
+
# like VPCs, subnets, and EIPs within a specific IPAM scope.
|
|
51983
|
+
#
|
|
51984
|
+
# Condition availability by resource type:
|
|
51985
|
+
#
|
|
51986
|
+
# * Only 2 of the 3 rule types support conditions - **IPAM pool CIDR**
|
|
51987
|
+
# and **Scope resource CIDR**. **Static CIDR** rules cannot have
|
|
51988
|
+
# conditions.
|
|
51989
|
+
#
|
|
51990
|
+
# * Condition available for the **IPAM pool CIDR** resource type:
|
|
51991
|
+
#
|
|
51992
|
+
# * Property:
|
|
51993
|
+
#
|
|
51994
|
+
# * IPAM Pool ID
|
|
51995
|
+
#
|
|
51996
|
+
# * CIDR (like 10.24.34.0/23)
|
|
51997
|
+
# * Operation: Equals/Not equals
|
|
51998
|
+
#
|
|
51999
|
+
# * Value: The value on which to match the condition
|
|
52000
|
+
# * Conditions for the **Scope resource CIDR** resource type:
|
|
52001
|
+
#
|
|
52002
|
+
# * Property:
|
|
52003
|
+
#
|
|
52004
|
+
# * Resource ID: The unique ID of a resource (like
|
|
52005
|
+
# vpc-1234567890abcdef0)
|
|
52006
|
+
#
|
|
52007
|
+
# * Resource type (like VPC or Subnet)
|
|
52008
|
+
#
|
|
52009
|
+
# * Resource owner (like 111122223333)
|
|
52010
|
+
#
|
|
52011
|
+
# * Resource region (like us-east-1)
|
|
52012
|
+
#
|
|
52013
|
+
# * Resource tag (like key: name, value: dev-vpc-1)
|
|
52014
|
+
#
|
|
52015
|
+
# * CIDR (like 10.24.34.0/23)
|
|
52016
|
+
# * Operation: Equals/Not equals
|
|
52017
|
+
#
|
|
52018
|
+
# * Value: The value on which to match the condition
|
|
52019
|
+
# * When setting conditions for a rule, one or more conditions is
|
|
52020
|
+
# required.
|
|
52021
|
+
#
|
|
52022
|
+
# @!attribute [rw] operation
|
|
52023
|
+
# The operation to perform when evaluating this condition.
|
|
52024
|
+
# @return [String]
|
|
52025
|
+
#
|
|
52026
|
+
# @!attribute [rw] ipam_pool_id
|
|
52027
|
+
# The ID of the IPAM pool to match against. This condition selects
|
|
52028
|
+
# CIDRs that belong to the specified IPAM pool.
|
|
52029
|
+
# @return [String]
|
|
52030
|
+
#
|
|
52031
|
+
# @!attribute [rw] resource_id
|
|
52032
|
+
# The ID of the Amazon Web Services resource to match against. This
|
|
52033
|
+
# condition selects CIDRs associated with the specified resource.
|
|
52034
|
+
# @return [String]
|
|
52035
|
+
#
|
|
52036
|
+
# @!attribute [rw] resource_owner
|
|
52037
|
+
# The Amazon Web Services account ID that owns the resources to match
|
|
52038
|
+
# against. This condition selects CIDRs from resources owned by the
|
|
52039
|
+
# specified account.
|
|
52040
|
+
# @return [String]
|
|
52041
|
+
#
|
|
52042
|
+
# @!attribute [rw] resource_region
|
|
52043
|
+
# The Amazon Web Services Region where the resources are located. This
|
|
52044
|
+
# condition selects CIDRs from resources in the specified Region.
|
|
52045
|
+
# @return [String]
|
|
52046
|
+
#
|
|
52047
|
+
# @!attribute [rw] resource_tag
|
|
52048
|
+
# A tag key-value pair to match against. This condition selects CIDRs
|
|
52049
|
+
# from resources that have the specified tag.
|
|
52050
|
+
# @return [Types::RequestIpamResourceTag]
|
|
52051
|
+
#
|
|
52052
|
+
# @!attribute [rw] cidr
|
|
52053
|
+
# A CIDR block to match against. This condition selects CIDRs that
|
|
52054
|
+
# fall within or match the specified CIDR range.
|
|
52055
|
+
# @return [String]
|
|
52056
|
+
#
|
|
52057
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamPrefixListResolverRuleConditionRequest AWS API Documentation
|
|
52058
|
+
#
|
|
52059
|
+
class IpamPrefixListResolverRuleConditionRequest < Struct.new(
|
|
52060
|
+
:operation,
|
|
52061
|
+
:ipam_pool_id,
|
|
52062
|
+
:resource_id,
|
|
52063
|
+
:resource_owner,
|
|
52064
|
+
:resource_region,
|
|
52065
|
+
:resource_tag,
|
|
52066
|
+
:cidr)
|
|
52067
|
+
SENSITIVE = []
|
|
52068
|
+
include Aws::Structure
|
|
52069
|
+
end
|
|
52070
|
+
|
|
52071
|
+
# Describes a CIDR selection rule to include in a request. This is used
|
|
52072
|
+
# when creating or modifying resolver rules.
|
|
52073
|
+
#
|
|
52074
|
+
# CIDR selection rules define the business logic for selecting CIDRs
|
|
52075
|
+
# from IPAM. If a CIDR matches any of the rules, it will be included. If
|
|
52076
|
+
# a rule has multiple conditions, the CIDR has to match every condition
|
|
52077
|
+
# of that rule. You can create a prefix list resolver without any CIDR
|
|
52078
|
+
# selection rules, but it will generate empty versions (containing no
|
|
52079
|
+
# CIDRs) until you add rules.
|
|
52080
|
+
#
|
|
52081
|
+
# There are three rule types:
|
|
52082
|
+
#
|
|
52083
|
+
# * **Static CIDR**: A fixed list of CIDRs that do not change (like a
|
|
52084
|
+
# manual list replicated across Regions).
|
|
52085
|
+
#
|
|
52086
|
+
# * **IPAM pool CIDR**: CIDRs from specific IPAM pools (like all CIDRs
|
|
52087
|
+
# from your IPAM production pool).
|
|
52088
|
+
#
|
|
52089
|
+
# * **Scope resource CIDR**: CIDRs for Amazon Web Services resources
|
|
52090
|
+
# like VPCs, subnets, and EIPs within a specific IPAM scope.
|
|
52091
|
+
#
|
|
52092
|
+
# Condition availability by resource type:
|
|
52093
|
+
#
|
|
52094
|
+
# * Only 2 of the 3 rule types support conditions - **IPAM pool CIDR**
|
|
52095
|
+
# and **Scope resource CIDR**. **Static CIDR** rules cannot have
|
|
52096
|
+
# conditions.
|
|
52097
|
+
#
|
|
52098
|
+
# * Condition available for the **IPAM pool CIDR** resource type:
|
|
52099
|
+
#
|
|
52100
|
+
# * Property:
|
|
52101
|
+
#
|
|
52102
|
+
# * IPAM Pool ID
|
|
52103
|
+
#
|
|
52104
|
+
# * CIDR (like 10.24.34.0/23)
|
|
52105
|
+
# * Operation: Equals/Not equals
|
|
52106
|
+
#
|
|
52107
|
+
# * Value: The value on which to match the condition
|
|
52108
|
+
# * Conditions for the **Scope resource CIDR** resource type:
|
|
52109
|
+
#
|
|
52110
|
+
# * Property:
|
|
52111
|
+
#
|
|
52112
|
+
# * Resource ID: The unique ID of a resource (like
|
|
52113
|
+
# vpc-1234567890abcdef0)
|
|
52114
|
+
#
|
|
52115
|
+
# * Resource type (like VPC or Subnet)
|
|
52116
|
+
#
|
|
52117
|
+
# * Resource owner (like 111122223333)
|
|
52118
|
+
#
|
|
52119
|
+
# * Resource region (like us-east-1)
|
|
52120
|
+
#
|
|
52121
|
+
# * Resource tag (like key: name, value: dev-vpc-1)
|
|
52122
|
+
#
|
|
52123
|
+
# * CIDR (like 10.24.34.0/23)
|
|
52124
|
+
# * Operation: Equals/Not equals
|
|
52125
|
+
#
|
|
52126
|
+
# * Value: The value on which to match the condition
|
|
52127
|
+
# * When setting conditions for a rule, one or more conditions is
|
|
52128
|
+
# required.
|
|
52129
|
+
#
|
|
52130
|
+
# @!attribute [rw] rule_type
|
|
52131
|
+
# The type of CIDR selection rule. Valid values include `include` for
|
|
52132
|
+
# selecting CIDRs that match the conditions, and `exclude` for
|
|
52133
|
+
# excluding CIDRs that match the conditions.
|
|
52134
|
+
# @return [String]
|
|
52135
|
+
#
|
|
52136
|
+
# @!attribute [rw] static_cidr
|
|
52137
|
+
# A fixed list of CIDRs that do not change (like a manual list
|
|
52138
|
+
# replicated across Regions).
|
|
52139
|
+
# @return [String]
|
|
52140
|
+
#
|
|
52141
|
+
# @!attribute [rw] ipam_scope_id
|
|
52142
|
+
# The ID of the IPAM scope from which to select CIDRs. This determines
|
|
52143
|
+
# whether to select from public or private IP address space.
|
|
52144
|
+
# @return [String]
|
|
52145
|
+
#
|
|
52146
|
+
# @!attribute [rw] resource_type
|
|
52147
|
+
# For rules of type `ipam-resource-cidr`, this is the resource type.
|
|
52148
|
+
# @return [String]
|
|
52149
|
+
#
|
|
52150
|
+
# @!attribute [rw] conditions
|
|
52151
|
+
# The conditions that determine which CIDRs are selected by this rule.
|
|
52152
|
+
# Conditions specify criteria such as resource type, tags, account
|
|
52153
|
+
# IDs, and Regions.
|
|
52154
|
+
# @return [Array<Types::IpamPrefixListResolverRuleConditionRequest>]
|
|
52155
|
+
#
|
|
52156
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamPrefixListResolverRuleRequest AWS API Documentation
|
|
52157
|
+
#
|
|
52158
|
+
class IpamPrefixListResolverRuleRequest < Struct.new(
|
|
52159
|
+
:rule_type,
|
|
52160
|
+
:static_cidr,
|
|
52161
|
+
:ipam_scope_id,
|
|
52162
|
+
:resource_type,
|
|
52163
|
+
:conditions)
|
|
52164
|
+
SENSITIVE = []
|
|
52165
|
+
include Aws::Structure
|
|
52166
|
+
end
|
|
52167
|
+
|
|
52168
|
+
# Describes an IPAM prefix list resolver target.
|
|
52169
|
+
#
|
|
52170
|
+
# An IPAM prefix list resolver target is an association between a
|
|
52171
|
+
# specific customer-managed prefix list and an IPAM prefix list
|
|
52172
|
+
# resolver. The target enables the resolver to synchronize CIDRs
|
|
52173
|
+
# selected by its rules into the specified prefix list, which can then
|
|
52174
|
+
# be referenced in Amazon Web Services resources.
|
|
52175
|
+
#
|
|
52176
|
+
# @!attribute [rw] ipam_prefix_list_resolver_target_id
|
|
52177
|
+
# The ID of the IPAM prefix list resolver target.
|
|
52178
|
+
# @return [String]
|
|
52179
|
+
#
|
|
52180
|
+
# @!attribute [rw] ipam_prefix_list_resolver_target_arn
|
|
52181
|
+
# The Amazon Resource Name (ARN) of the IPAM prefix list resolver
|
|
52182
|
+
# target.
|
|
52183
|
+
# @return [String]
|
|
52184
|
+
#
|
|
52185
|
+
# @!attribute [rw] ipam_prefix_list_resolver_id
|
|
52186
|
+
# The ID of the IPAM prefix list resolver associated with this target.
|
|
52187
|
+
# @return [String]
|
|
52188
|
+
#
|
|
52189
|
+
# @!attribute [rw] owner_id
|
|
52190
|
+
# The ID of the Amazon Web Services account that owns the IPAM prefix
|
|
52191
|
+
# list resolver target.
|
|
52192
|
+
# @return [String]
|
|
52193
|
+
#
|
|
52194
|
+
# @!attribute [rw] prefix_list_id
|
|
52195
|
+
# The ID of the managed prefix list associated with this target.
|
|
52196
|
+
# @return [String]
|
|
52197
|
+
#
|
|
52198
|
+
# @!attribute [rw] prefix_list_region
|
|
52199
|
+
# The Amazon Web Services Region where the prefix list associated with
|
|
52200
|
+
# this target is located.
|
|
52201
|
+
# @return [String]
|
|
52202
|
+
#
|
|
52203
|
+
# @!attribute [rw] desired_version
|
|
52204
|
+
# The desired version of the prefix list that this target should
|
|
52205
|
+
# synchronize with.
|
|
52206
|
+
# @return [Integer]
|
|
52207
|
+
#
|
|
52208
|
+
# @!attribute [rw] last_synced_version
|
|
52209
|
+
# The version of the prefix list that was last successfully
|
|
52210
|
+
# synchronized by this target.
|
|
52211
|
+
# @return [Integer]
|
|
52212
|
+
#
|
|
52213
|
+
# @!attribute [rw] track_latest_version
|
|
52214
|
+
# Indicates whether this target automatically tracks the latest
|
|
52215
|
+
# version of the prefix list.
|
|
52216
|
+
# @return [Boolean]
|
|
52217
|
+
#
|
|
52218
|
+
# @!attribute [rw] state_message
|
|
52219
|
+
# A message describing the current state of the IPAM prefix list
|
|
52220
|
+
# resolver target, including any error information.
|
|
52221
|
+
# @return [String]
|
|
52222
|
+
#
|
|
52223
|
+
# @!attribute [rw] state
|
|
52224
|
+
# The current state of the IPAM prefix list resolver target. Valid
|
|
52225
|
+
# values include `create-in-progress`, `create-complete`,
|
|
52226
|
+
# `create-failed`, `modify-in-progress`, `modify-complete`,
|
|
52227
|
+
# `modify-failed`, `delete-in-progress`, `delete-complete`, and
|
|
52228
|
+
# `delete-failed`.
|
|
52229
|
+
# @return [String]
|
|
52230
|
+
#
|
|
52231
|
+
# @!attribute [rw] tags
|
|
52232
|
+
# The tags assigned to the IPAM prefix list resolver target.
|
|
52233
|
+
# @return [Array<Types::Tag>]
|
|
52234
|
+
#
|
|
52235
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamPrefixListResolverTarget AWS API Documentation
|
|
52236
|
+
#
|
|
52237
|
+
class IpamPrefixListResolverTarget < Struct.new(
|
|
52238
|
+
:ipam_prefix_list_resolver_target_id,
|
|
52239
|
+
:ipam_prefix_list_resolver_target_arn,
|
|
52240
|
+
:ipam_prefix_list_resolver_id,
|
|
52241
|
+
:owner_id,
|
|
52242
|
+
:prefix_list_id,
|
|
52243
|
+
:prefix_list_region,
|
|
52244
|
+
:desired_version,
|
|
52245
|
+
:last_synced_version,
|
|
52246
|
+
:track_latest_version,
|
|
52247
|
+
:state_message,
|
|
52248
|
+
:state,
|
|
52249
|
+
:tags)
|
|
52250
|
+
SENSITIVE = []
|
|
52251
|
+
include Aws::Structure
|
|
52252
|
+
end
|
|
52253
|
+
|
|
52254
|
+
# Describes a version of an IPAM prefix list resolver.
|
|
52255
|
+
#
|
|
52256
|
+
# Each version is a snapshot of what CIDRs matched your rules at that
|
|
52257
|
+
# moment in time. The version number increments every time the CIDR list
|
|
52258
|
+
# changes due to infrastructure changes.
|
|
52259
|
+
#
|
|
52260
|
+
# **Version example:**
|
|
52261
|
+
#
|
|
52262
|
+
# **Initial State (Version 1)**
|
|
52263
|
+
#
|
|
52264
|
+
# Production environment:
|
|
52265
|
+
#
|
|
52266
|
+
# * vpc-prod-web (10.1.0.0/16) - tagged env=prod
|
|
52267
|
+
#
|
|
52268
|
+
# * vpc-prod-db (10.2.0.0/16) - tagged env=prod
|
|
52269
|
+
#
|
|
52270
|
+
# Resolver rule: Include all VPCs tagged env=prod
|
|
52271
|
+
#
|
|
52272
|
+
# **Version 1 CIDRs:** 10.1.0.0/16, 10.2.0.0/16
|
|
52273
|
+
#
|
|
52274
|
+
# **Infrastructure Change (Version 2)**
|
|
52275
|
+
#
|
|
52276
|
+
# New VPC added:
|
|
52277
|
+
#
|
|
52278
|
+
# * vpc-prod-api (10.3.0.0/16) - tagged env=prod
|
|
52279
|
+
#
|
|
52280
|
+
# ^
|
|
52281
|
+
#
|
|
52282
|
+
# IPAM automatically detects the change and creates a new version.
|
|
52283
|
+
#
|
|
52284
|
+
# **Version 2 CIDRs:** 10.1.0.0/16, 10.2.0.0/16, 10.3.0.0/16
|
|
52285
|
+
#
|
|
52286
|
+
# @!attribute [rw] version
|
|
52287
|
+
# The version number of the IPAM prefix list resolver.
|
|
52288
|
+
#
|
|
52289
|
+
# Each version is a snapshot of what CIDRs matched your rules at that
|
|
52290
|
+
# moment in time. The version number increments every time the CIDR
|
|
52291
|
+
# list changes due to infrastructure changes.
|
|
52292
|
+
# @return [Integer]
|
|
52293
|
+
#
|
|
52294
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamPrefixListResolverVersion AWS API Documentation
|
|
52295
|
+
#
|
|
52296
|
+
class IpamPrefixListResolverVersion < Struct.new(
|
|
52297
|
+
:version)
|
|
52298
|
+
SENSITIVE = []
|
|
52299
|
+
include Aws::Structure
|
|
52300
|
+
end
|
|
52301
|
+
|
|
52302
|
+
# Describes a CIDR entry in a specific version of an IPAM prefix list
|
|
52303
|
+
# resolver. This represents a CIDR that was selected and synchronized at
|
|
52304
|
+
# a particular point in time.
|
|
52305
|
+
#
|
|
52306
|
+
# @!attribute [rw] cidr
|
|
52307
|
+
# The CIDR block that was selected and synchronized in this resolver
|
|
52308
|
+
# version.
|
|
52309
|
+
# @return [String]
|
|
52310
|
+
#
|
|
52311
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamPrefixListResolverVersionEntry AWS API Documentation
|
|
52312
|
+
#
|
|
52313
|
+
class IpamPrefixListResolverVersionEntry < Struct.new(
|
|
52314
|
+
:cidr)
|
|
52315
|
+
SENSITIVE = []
|
|
52316
|
+
include Aws::Structure
|
|
52317
|
+
end
|
|
52318
|
+
|
|
51020
52319
|
# The security group that the resource with the public IP address is in.
|
|
51021
52320
|
#
|
|
51022
52321
|
# @!attribute [rw] group_name
|
|
@@ -51363,9 +52662,9 @@ module Aws::EC2
|
|
|
51363
52662
|
#
|
|
51364
52663
|
# * `isolate-in-progress` - Amazon Web Services account that created
|
|
51365
52664
|
# the resource discovery association has been removed and the
|
|
51366
|
-
# resource discovery
|
|
52665
|
+
# resource discovery association is being isolated.
|
|
51367
52666
|
#
|
|
51368
|
-
# * `isolate-complete` - Resource discovery isolation is complete
|
|
52667
|
+
# * `isolate-complete` - Resource discovery isolation is complete.
|
|
51369
52668
|
#
|
|
51370
52669
|
# * `restore-in-progress` - Resource discovery is being restored.
|
|
51371
52670
|
# @return [String]
|
|
@@ -55003,6 +56302,25 @@ module Aws::EC2
|
|
|
55003
56302
|
# The ID of the owner of the prefix list.
|
|
55004
56303
|
# @return [String]
|
|
55005
56304
|
#
|
|
56305
|
+
# @!attribute [rw] ipam_prefix_list_resolver_target_id
|
|
56306
|
+
# The ID of the IPAM prefix list resolver target associated with this
|
|
56307
|
+
# managed prefix list. When set, this prefix list becomes an IPAM
|
|
56308
|
+
# managed prefix list.
|
|
56309
|
+
#
|
|
56310
|
+
# An IPAM-managed prefix list is a customer-managed prefix list that
|
|
56311
|
+
# has been associated with an IPAM prefix list resolver target. When a
|
|
56312
|
+
# prefix list becomes IPAM managed, its CIDRs are automatically
|
|
56313
|
+
# synchronized based on the IPAM prefix list resolver's CIDR
|
|
56314
|
+
# selection rules, and direct CIDR modifications are restricted.
|
|
56315
|
+
# @return [String]
|
|
56316
|
+
#
|
|
56317
|
+
# @!attribute [rw] ipam_prefix_list_resolver_sync_enabled
|
|
56318
|
+
# Indicates whether synchronization with an IPAM prefix list resolver
|
|
56319
|
+
# is enabled for this managed prefix list. When enabled, the prefix
|
|
56320
|
+
# list CIDRs are automatically updated based on the resolver's CIDR
|
|
56321
|
+
# selection rules.
|
|
56322
|
+
# @return [Boolean]
|
|
56323
|
+
#
|
|
55006
56324
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ManagedPrefixList AWS API Documentation
|
|
55007
56325
|
#
|
|
55008
56326
|
class ManagedPrefixList < Struct.new(
|
|
@@ -55015,7 +56333,9 @@ module Aws::EC2
|
|
|
55015
56333
|
:max_entries,
|
|
55016
56334
|
:version,
|
|
55017
56335
|
:tags,
|
|
55018
|
-
:owner_id
|
|
56336
|
+
:owner_id,
|
|
56337
|
+
:ipam_prefix_list_resolver_target_id,
|
|
56338
|
+
:ipam_prefix_list_resolver_sync_enabled)
|
|
55019
56339
|
SENSITIVE = []
|
|
55020
56340
|
include Aws::Structure
|
|
55021
56341
|
end
|
|
@@ -57156,6 +58476,112 @@ module Aws::EC2
|
|
|
57156
58476
|
include Aws::Structure
|
|
57157
58477
|
end
|
|
57158
58478
|
|
|
58479
|
+
# @!attribute [rw] dry_run
|
|
58480
|
+
# A check for whether you have the required permissions for the action
|
|
58481
|
+
# without actually making the request and provides an error response.
|
|
58482
|
+
# If you have the required permissions, the error response is
|
|
58483
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
58484
|
+
# @return [Boolean]
|
|
58485
|
+
#
|
|
58486
|
+
# @!attribute [rw] ipam_prefix_list_resolver_id
|
|
58487
|
+
# The ID of the IPAM prefix list resolver to modify.
|
|
58488
|
+
# @return [String]
|
|
58489
|
+
#
|
|
58490
|
+
# @!attribute [rw] description
|
|
58491
|
+
# A new description for the IPAM prefix list resolver.
|
|
58492
|
+
# @return [String]
|
|
58493
|
+
#
|
|
58494
|
+
# @!attribute [rw] rules
|
|
58495
|
+
# The updated CIDR selection rules for the resolver. These rules
|
|
58496
|
+
# replace the existing rules entirely.
|
|
58497
|
+
# @return [Array<Types::IpamPrefixListResolverRuleRequest>]
|
|
58498
|
+
#
|
|
58499
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIpamPrefixListResolverRequest AWS API Documentation
|
|
58500
|
+
#
|
|
58501
|
+
class ModifyIpamPrefixListResolverRequest < Struct.new(
|
|
58502
|
+
:dry_run,
|
|
58503
|
+
:ipam_prefix_list_resolver_id,
|
|
58504
|
+
:description,
|
|
58505
|
+
:rules)
|
|
58506
|
+
SENSITIVE = []
|
|
58507
|
+
include Aws::Structure
|
|
58508
|
+
end
|
|
58509
|
+
|
|
58510
|
+
# @!attribute [rw] ipam_prefix_list_resolver
|
|
58511
|
+
# Information about the modified IPAM prefix list resolver.
|
|
58512
|
+
# @return [Types::IpamPrefixListResolver]
|
|
58513
|
+
#
|
|
58514
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIpamPrefixListResolverResult AWS API Documentation
|
|
58515
|
+
#
|
|
58516
|
+
class ModifyIpamPrefixListResolverResult < Struct.new(
|
|
58517
|
+
:ipam_prefix_list_resolver)
|
|
58518
|
+
SENSITIVE = []
|
|
58519
|
+
include Aws::Structure
|
|
58520
|
+
end
|
|
58521
|
+
|
|
58522
|
+
# @!attribute [rw] dry_run
|
|
58523
|
+
# A check for whether you have the required permissions for the action
|
|
58524
|
+
# without actually making the request and provides an error response.
|
|
58525
|
+
# If you have the required permissions, the error response is
|
|
58526
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
58527
|
+
# @return [Boolean]
|
|
58528
|
+
#
|
|
58529
|
+
# @!attribute [rw] ipam_prefix_list_resolver_target_id
|
|
58530
|
+
# The ID of the IPAM prefix list resolver target to modify.
|
|
58531
|
+
# @return [String]
|
|
58532
|
+
#
|
|
58533
|
+
# @!attribute [rw] desired_version
|
|
58534
|
+
# The desired version of the prefix list to target. This allows you to
|
|
58535
|
+
# pin the target to a specific version.
|
|
58536
|
+
# @return [Integer]
|
|
58537
|
+
#
|
|
58538
|
+
# @!attribute [rw] track_latest_version
|
|
58539
|
+
# Indicates whether the resolver target should automatically track the
|
|
58540
|
+
# latest version of the prefix list. When enabled, the target will
|
|
58541
|
+
# always synchronize with the most current version.
|
|
58542
|
+
#
|
|
58543
|
+
# Choose this for automatic updates when you want your prefix lists to
|
|
58544
|
+
# stay current with infrastructure changes without manual
|
|
58545
|
+
# intervention.
|
|
58546
|
+
# @return [Boolean]
|
|
58547
|
+
#
|
|
58548
|
+
# @!attribute [rw] client_token
|
|
58549
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
58550
|
+
# idempotency of the request. For more information, see [Ensuring
|
|
58551
|
+
# idempotency][1].
|
|
58552
|
+
#
|
|
58553
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
58554
|
+
# not need to pass this option.
|
|
58555
|
+
#
|
|
58556
|
+
#
|
|
58557
|
+
#
|
|
58558
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
|
58559
|
+
# @return [String]
|
|
58560
|
+
#
|
|
58561
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIpamPrefixListResolverTargetRequest AWS API Documentation
|
|
58562
|
+
#
|
|
58563
|
+
class ModifyIpamPrefixListResolverTargetRequest < Struct.new(
|
|
58564
|
+
:dry_run,
|
|
58565
|
+
:ipam_prefix_list_resolver_target_id,
|
|
58566
|
+
:desired_version,
|
|
58567
|
+
:track_latest_version,
|
|
58568
|
+
:client_token)
|
|
58569
|
+
SENSITIVE = []
|
|
58570
|
+
include Aws::Structure
|
|
58571
|
+
end
|
|
58572
|
+
|
|
58573
|
+
# @!attribute [rw] ipam_prefix_list_resolver_target
|
|
58574
|
+
# Information about the modified IPAM prefix list resolver target.
|
|
58575
|
+
# @return [Types::IpamPrefixListResolverTarget]
|
|
58576
|
+
#
|
|
58577
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIpamPrefixListResolverTargetResult AWS API Documentation
|
|
58578
|
+
#
|
|
58579
|
+
class ModifyIpamPrefixListResolverTargetResult < Struct.new(
|
|
58580
|
+
:ipam_prefix_list_resolver_target)
|
|
58581
|
+
SENSITIVE = []
|
|
58582
|
+
include Aws::Structure
|
|
58583
|
+
end
|
|
58584
|
+
|
|
57159
58585
|
# @!attribute [rw] dry_run
|
|
57160
58586
|
# A check for whether you have the required permissions for the action
|
|
57161
58587
|
# without actually making the request and provides an error response.
|
|
@@ -57603,6 +59029,13 @@ module Aws::EC2
|
|
|
57603
59029
|
# support the new maximum size.
|
|
57604
59030
|
# @return [Integer]
|
|
57605
59031
|
#
|
|
59032
|
+
# @!attribute [rw] ipam_prefix_list_resolver_sync_enabled
|
|
59033
|
+
# Indicates whether synchronization with an IPAM prefix list resolver
|
|
59034
|
+
# should be enabled for this managed prefix list. When enabled, the
|
|
59035
|
+
# prefix list CIDRs are automatically updated based on the associated
|
|
59036
|
+
# resolver's CIDR selection rules.
|
|
59037
|
+
# @return [Boolean]
|
|
59038
|
+
#
|
|
57606
59039
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyManagedPrefixListRequest AWS API Documentation
|
|
57607
59040
|
#
|
|
57608
59041
|
class ModifyManagedPrefixListRequest < Struct.new(
|
|
@@ -57612,7 +59045,8 @@ module Aws::EC2
|
|
|
57612
59045
|
:prefix_list_name,
|
|
57613
59046
|
:add_entries,
|
|
57614
59047
|
:remove_entries,
|
|
57615
|
-
:max_entries
|
|
59048
|
+
:max_entries,
|
|
59049
|
+
:ipam_prefix_list_resolver_sync_enabled)
|
|
57616
59050
|
SENSITIVE = []
|
|
57617
59051
|
include Aws::Structure
|
|
57618
59052
|
end
|
|
@@ -79727,6 +81161,15 @@ module Aws::EC2
|
|
|
79727
81161
|
# @!attribute [rw] vpc_peering
|
|
79728
81162
|
# @return [Types::VpcEncryptionControlExclusion]
|
|
79729
81163
|
#
|
|
81164
|
+
# @!attribute [rw] lambda
|
|
81165
|
+
# @return [Types::VpcEncryptionControlExclusion]
|
|
81166
|
+
#
|
|
81167
|
+
# @!attribute [rw] vpc_lattice
|
|
81168
|
+
# @return [Types::VpcEncryptionControlExclusion]
|
|
81169
|
+
#
|
|
81170
|
+
# @!attribute [rw] elastic_file_system
|
|
81171
|
+
# @return [Types::VpcEncryptionControlExclusion]
|
|
81172
|
+
#
|
|
79730
81173
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcEncryptionControlExclusions AWS API Documentation
|
|
79731
81174
|
#
|
|
79732
81175
|
class VpcEncryptionControlExclusions < Struct.new(
|
|
@@ -79734,7 +81177,10 @@ module Aws::EC2
|
|
|
79734
81177
|
:egress_only_internet_gateway,
|
|
79735
81178
|
:nat_gateway,
|
|
79736
81179
|
:virtual_private_gateway,
|
|
79737
|
-
:vpc_peering
|
|
81180
|
+
:vpc_peering,
|
|
81181
|
+
:lambda,
|
|
81182
|
+
:vpc_lattice,
|
|
81183
|
+
:elastic_file_system)
|
|
79738
81184
|
SENSITIVE = []
|
|
79739
81185
|
include Aws::Structure
|
|
79740
81186
|
end
|