aws-sdk-ec2 1.578.0 → 1.580.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 +1033 -147
- data/lib/aws-sdk-ec2/client_api.rb +330 -1
- data/lib/aws-sdk-ec2/instance.rb +1 -1
- data/lib/aws-sdk-ec2/nat_gateway.rb +65 -0
- data/lib/aws-sdk-ec2/resource.rb +66 -19
- 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 +1028 -10
- 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/classic_address.rbs +1 -1
- data/sig/client.rbs +325 -109
- data/sig/instance.rbs +1 -1
- data/sig/nat_gateway.rbs +12 -0
- data/sig/resource.rbs +27 -18
- 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 +243 -18
- data/sig/volume.rbs +1 -1
- data/sig/vpc.rbs +5 -5
- data/sig/vpc_address.rbs +1 -1
- metadata +1 -1
data/lib/aws-sdk-ec2/types.rb
CHANGED
|
@@ -2441,13 +2441,39 @@ module Aws::EC2
|
|
|
2441
2441
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
2442
2442
|
# @return [Boolean]
|
|
2443
2443
|
#
|
|
2444
|
+
# @!attribute [rw] availability_zone
|
|
2445
|
+
# For regional NAT gateways only: The Availability Zone where you want
|
|
2446
|
+
# to associate an Elastic IP address (EIP). The regional NAT gateway
|
|
2447
|
+
# uses a separate EIP in each AZ to handle outbound NAT traffic from
|
|
2448
|
+
# that AZ.
|
|
2449
|
+
#
|
|
2450
|
+
# A regional NAT gateway is a single NAT Gateway that works across
|
|
2451
|
+
# multiple availability zones (AZs) in your VPC, providing redundancy,
|
|
2452
|
+
# scalability and availability across all the AZs in a Region.
|
|
2453
|
+
# @return [String]
|
|
2454
|
+
#
|
|
2455
|
+
# @!attribute [rw] availability_zone_id
|
|
2456
|
+
# For regional NAT gateways only: The ID of the Availability Zone
|
|
2457
|
+
# where you want to associate an Elastic IP address (EIP). The
|
|
2458
|
+
# regional NAT gateway uses a separate EIP in each AZ to handle
|
|
2459
|
+
# outbound NAT traffic from that AZ. Use this instead of
|
|
2460
|
+
# AvailabilityZone for consistent identification of AZs across Amazon
|
|
2461
|
+
# Web Services Regions.
|
|
2462
|
+
#
|
|
2463
|
+
# A regional NAT gateway is a single NAT Gateway that works across
|
|
2464
|
+
# multiple availability zones (AZs) in your VPC, providing redundancy,
|
|
2465
|
+
# scalability and availability across all the AZs in a Region.
|
|
2466
|
+
# @return [String]
|
|
2467
|
+
#
|
|
2444
2468
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateNatGatewayAddressRequest AWS API Documentation
|
|
2445
2469
|
#
|
|
2446
2470
|
class AssociateNatGatewayAddressRequest < Struct.new(
|
|
2447
2471
|
:nat_gateway_id,
|
|
2448
2472
|
:allocation_ids,
|
|
2449
2473
|
:private_ip_addresses,
|
|
2450
|
-
:dry_run
|
|
2474
|
+
:dry_run,
|
|
2475
|
+
:availability_zone,
|
|
2476
|
+
:availability_zone_id)
|
|
2451
2477
|
SENSITIVE = []
|
|
2452
2478
|
include Aws::Structure
|
|
2453
2479
|
end
|
|
@@ -3861,6 +3887,60 @@ module Aws::EC2
|
|
|
3861
3887
|
include Aws::Structure
|
|
3862
3888
|
end
|
|
3863
3889
|
|
|
3890
|
+
# For regional NAT gateways only: The configuration specifying which
|
|
3891
|
+
# Elastic IP address (EIP) to use for handling outbound NAT traffic from
|
|
3892
|
+
# a specific Availability Zone.
|
|
3893
|
+
#
|
|
3894
|
+
# A regional NAT gateway is a single NAT Gateway that works across
|
|
3895
|
+
# multiple availability zones (AZs) in your VPC, providing redundancy,
|
|
3896
|
+
# scalability and availability across all the AZs in a Region.
|
|
3897
|
+
#
|
|
3898
|
+
# For more information, see [Regional NAT gateways for automatic
|
|
3899
|
+
# multi-AZ expansion][1] in the *Amazon VPC User Guide*.
|
|
3900
|
+
#
|
|
3901
|
+
#
|
|
3902
|
+
#
|
|
3903
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateways-regional.html
|
|
3904
|
+
#
|
|
3905
|
+
# @!attribute [rw] availability_zone
|
|
3906
|
+
# For regional NAT gateways only: The Availability Zone where this
|
|
3907
|
+
# specific NAT gateway configuration will be active. Each AZ in a
|
|
3908
|
+
# regional NAT gateway has its own configuration to handle outbound
|
|
3909
|
+
# NAT traffic from that AZ.
|
|
3910
|
+
#
|
|
3911
|
+
# A regional NAT gateway is a single NAT Gateway that works across
|
|
3912
|
+
# multiple availability zones (AZs) in your VPC, providing redundancy,
|
|
3913
|
+
# scalability and availability across all the AZs in a Region.
|
|
3914
|
+
# @return [String]
|
|
3915
|
+
#
|
|
3916
|
+
# @!attribute [rw] availability_zone_id
|
|
3917
|
+
# For regional NAT gateways only: The ID of the Availability Zone
|
|
3918
|
+
# where this specific NAT gateway configuration will be active. Each
|
|
3919
|
+
# AZ in a regional NAT gateway has its own configuration to handle
|
|
3920
|
+
# outbound NAT traffic from that AZ. Use this instead of
|
|
3921
|
+
# AvailabilityZone for consistent identification of AZs across Amazon
|
|
3922
|
+
# Web Services Regions.
|
|
3923
|
+
#
|
|
3924
|
+
# A regional NAT gateway is a single NAT Gateway that works across
|
|
3925
|
+
# multiple availability zones (AZs) in your VPC, providing redundancy,
|
|
3926
|
+
# scalability and availability across all the AZs in a Region.
|
|
3927
|
+
# @return [String]
|
|
3928
|
+
#
|
|
3929
|
+
# @!attribute [rw] allocation_ids
|
|
3930
|
+
# The allocation IDs of the Elastic IP addresses (EIPs) to be used for
|
|
3931
|
+
# handling outbound NAT traffic in this specific Availability Zone.
|
|
3932
|
+
# @return [Array<String>]
|
|
3933
|
+
#
|
|
3934
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AvailabilityZoneAddress AWS API Documentation
|
|
3935
|
+
#
|
|
3936
|
+
class AvailabilityZoneAddress < Struct.new(
|
|
3937
|
+
:availability_zone,
|
|
3938
|
+
:availability_zone_id,
|
|
3939
|
+
:allocation_ids)
|
|
3940
|
+
SENSITIVE = []
|
|
3941
|
+
include Aws::Structure
|
|
3942
|
+
end
|
|
3943
|
+
|
|
3864
3944
|
# Describes a message about an Availability Zone, Local Zone, or
|
|
3865
3945
|
# Wavelength Zone.
|
|
3866
3946
|
#
|
|
@@ -10677,6 +10757,62 @@ module Aws::EC2
|
|
|
10677
10757
|
include Aws::Structure
|
|
10678
10758
|
end
|
|
10679
10759
|
|
|
10760
|
+
# @!attribute [rw] dry_run
|
|
10761
|
+
# A check for whether you have the required permissions for the action
|
|
10762
|
+
# without actually making the request and provides an error response.
|
|
10763
|
+
# If you have the required permissions, the error response is
|
|
10764
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
10765
|
+
# @return [Boolean]
|
|
10766
|
+
#
|
|
10767
|
+
# @!attribute [rw] tag_specifications
|
|
10768
|
+
# The tags to assign to the IPAM policy.
|
|
10769
|
+
# @return [Array<Types::TagSpecification>]
|
|
10770
|
+
#
|
|
10771
|
+
# @!attribute [rw] client_token
|
|
10772
|
+
# A unique, case-sensitive identifier to ensure the idempotency of the
|
|
10773
|
+
# request.
|
|
10774
|
+
#
|
|
10775
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
10776
|
+
# not need to pass this option.
|
|
10777
|
+
# @return [String]
|
|
10778
|
+
#
|
|
10779
|
+
# @!attribute [rw] ipam_id
|
|
10780
|
+
# The ID of the IPAM for which you're creating the policy.
|
|
10781
|
+
# @return [String]
|
|
10782
|
+
#
|
|
10783
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateIpamPolicyRequest AWS API Documentation
|
|
10784
|
+
#
|
|
10785
|
+
class CreateIpamPolicyRequest < Struct.new(
|
|
10786
|
+
:dry_run,
|
|
10787
|
+
:tag_specifications,
|
|
10788
|
+
:client_token,
|
|
10789
|
+
:ipam_id)
|
|
10790
|
+
SENSITIVE = []
|
|
10791
|
+
include Aws::Structure
|
|
10792
|
+
end
|
|
10793
|
+
|
|
10794
|
+
# @!attribute [rw] ipam_policy
|
|
10795
|
+
# Information about the created IPAM policy.
|
|
10796
|
+
#
|
|
10797
|
+
# An IPAM policy is a set of rules that define how public IPv4
|
|
10798
|
+
# addresses from IPAM pools are allocated to Amazon Web Services
|
|
10799
|
+
# resources. Each rule maps an Amazon Web Services service to IPAM
|
|
10800
|
+
# pools that the service will use to get IP addresses. A single policy
|
|
10801
|
+
# can have multiple rules and be applied to multiple Amazon Web
|
|
10802
|
+
# Services Regions. If the IPAM pool run out of addresses then the
|
|
10803
|
+
# services fallback to Amazon-provided IP addresses. A policy can be
|
|
10804
|
+
# applied to an individual Amazon Web Services account or an entity
|
|
10805
|
+
# within Amazon Web Services Organizations.
|
|
10806
|
+
# @return [Types::IpamPolicy]
|
|
10807
|
+
#
|
|
10808
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateIpamPolicyResult AWS API Documentation
|
|
10809
|
+
#
|
|
10810
|
+
class CreateIpamPolicyResult < Struct.new(
|
|
10811
|
+
:ipam_policy)
|
|
10812
|
+
SENSITIVE = []
|
|
10813
|
+
include Aws::Structure
|
|
10814
|
+
end
|
|
10815
|
+
|
|
10680
10816
|
# @!attribute [rw] dry_run
|
|
10681
10817
|
# A check for whether you have the required permissions for the action
|
|
10682
10818
|
# without actually making the request and provides an error response.
|
|
@@ -11977,6 +12113,24 @@ module Aws::EC2
|
|
|
11977
12113
|
include Aws::Structure
|
|
11978
12114
|
end
|
|
11979
12115
|
|
|
12116
|
+
# @!attribute [rw] availability_mode
|
|
12117
|
+
# Specifies whether to create a zonal (single-AZ) or regional
|
|
12118
|
+
# (multi-AZ) NAT gateway. Defaults to `zonal`.
|
|
12119
|
+
#
|
|
12120
|
+
# A zonal NAT gateway is a NAT Gateway that provides redundancy and
|
|
12121
|
+
# scalability within a single availability zone. A regional NAT
|
|
12122
|
+
# gateway is a single NAT Gateway that works across multiple
|
|
12123
|
+
# availability zones (AZs) in your VPC, providing redundancy,
|
|
12124
|
+
# scalability and availability across all the AZs in a Region.
|
|
12125
|
+
#
|
|
12126
|
+
# For more information, see [Regional NAT gateways for automatic
|
|
12127
|
+
# multi-AZ expansion][1] in the *Amazon VPC User Guide*.
|
|
12128
|
+
#
|
|
12129
|
+
#
|
|
12130
|
+
#
|
|
12131
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateways-regional.html
|
|
12132
|
+
# @return [String]
|
|
12133
|
+
#
|
|
11980
12134
|
# @!attribute [rw] allocation_id
|
|
11981
12135
|
# \[Public NAT gateways only\] The allocation ID of an Elastic IP
|
|
11982
12136
|
# address to associate with the NAT gateway. You cannot specify an
|
|
@@ -12011,6 +12165,32 @@ module Aws::EC2
|
|
|
12011
12165
|
# The ID of the subnet in which to create the NAT gateway.
|
|
12012
12166
|
# @return [String]
|
|
12013
12167
|
#
|
|
12168
|
+
# @!attribute [rw] vpc_id
|
|
12169
|
+
# The ID of the VPC where you want to create a regional NAT gateway.
|
|
12170
|
+
# @return [String]
|
|
12171
|
+
#
|
|
12172
|
+
# @!attribute [rw] availability_zone_addresses
|
|
12173
|
+
# For regional NAT gateways only: Specifies which Availability Zones
|
|
12174
|
+
# you want the NAT gateway to support and the Elastic IP addresses
|
|
12175
|
+
# (EIPs) to use in each AZ. The regional NAT gateway uses these EIPs
|
|
12176
|
+
# to handle outbound NAT traffic from their respective AZs. If not
|
|
12177
|
+
# specified, the NAT gateway will automatically expand to new AZs and
|
|
12178
|
+
# associate EIPs upon detection of an elastic network interface. If
|
|
12179
|
+
# you specify this parameter, auto-expansion is disabled and you must
|
|
12180
|
+
# manually manage AZ coverage.
|
|
12181
|
+
#
|
|
12182
|
+
# A regional NAT gateway is a single NAT Gateway that works across
|
|
12183
|
+
# multiple availability zones (AZs) in your VPC, providing redundancy,
|
|
12184
|
+
# scalability and availability across all the AZs in a Region.
|
|
12185
|
+
#
|
|
12186
|
+
# For more information, see [Regional NAT gateways for automatic
|
|
12187
|
+
# multi-AZ expansion][1] in the *Amazon VPC User Guide*.
|
|
12188
|
+
#
|
|
12189
|
+
#
|
|
12190
|
+
#
|
|
12191
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateways-regional.html
|
|
12192
|
+
# @return [Array<Types::AvailabilityZoneAddress>]
|
|
12193
|
+
#
|
|
12014
12194
|
# @!attribute [rw] tag_specifications
|
|
12015
12195
|
# The tags to assign to the NAT gateway.
|
|
12016
12196
|
# @return [Array<Types::TagSpecification>]
|
|
@@ -12059,10 +12239,13 @@ module Aws::EC2
|
|
|
12059
12239
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateNatGatewayRequest AWS API Documentation
|
|
12060
12240
|
#
|
|
12061
12241
|
class CreateNatGatewayRequest < Struct.new(
|
|
12242
|
+
:availability_mode,
|
|
12062
12243
|
:allocation_id,
|
|
12063
12244
|
:client_token,
|
|
12064
12245
|
:dry_run,
|
|
12065
12246
|
:subnet_id,
|
|
12247
|
+
:vpc_id,
|
|
12248
|
+
:availability_zone_addresses,
|
|
12066
12249
|
:tag_specifications,
|
|
12067
12250
|
:connectivity_type,
|
|
12068
12251
|
:private_ip_address,
|
|
@@ -16293,6 +16476,48 @@ module Aws::EC2
|
|
|
16293
16476
|
include Aws::Structure
|
|
16294
16477
|
end
|
|
16295
16478
|
|
|
16479
|
+
# @!attribute [rw] type
|
|
16480
|
+
# The type of VPN concentrator to create.
|
|
16481
|
+
# @return [String]
|
|
16482
|
+
#
|
|
16483
|
+
# @!attribute [rw] transit_gateway_id
|
|
16484
|
+
# The ID of the transit gateway to attach the VPN concentrator to.
|
|
16485
|
+
# @return [String]
|
|
16486
|
+
#
|
|
16487
|
+
# @!attribute [rw] tag_specifications
|
|
16488
|
+
# The tags to apply to the VPN concentrator during creation.
|
|
16489
|
+
# @return [Array<Types::TagSpecification>]
|
|
16490
|
+
#
|
|
16491
|
+
# @!attribute [rw] dry_run
|
|
16492
|
+
# Checks whether you have the required permissions for the action,
|
|
16493
|
+
# without actually making the request, and provides an error response.
|
|
16494
|
+
# If you have the required permissions, the error response is
|
|
16495
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
16496
|
+
# @return [Boolean]
|
|
16497
|
+
#
|
|
16498
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpnConcentratorRequest AWS API Documentation
|
|
16499
|
+
#
|
|
16500
|
+
class CreateVpnConcentratorRequest < Struct.new(
|
|
16501
|
+
:type,
|
|
16502
|
+
:transit_gateway_id,
|
|
16503
|
+
:tag_specifications,
|
|
16504
|
+
:dry_run)
|
|
16505
|
+
SENSITIVE = []
|
|
16506
|
+
include Aws::Structure
|
|
16507
|
+
end
|
|
16508
|
+
|
|
16509
|
+
# @!attribute [rw] vpn_concentrator
|
|
16510
|
+
# Information about the VPN concentrator.
|
|
16511
|
+
# @return [Types::VpnConcentrator]
|
|
16512
|
+
#
|
|
16513
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpnConcentratorResult AWS API Documentation
|
|
16514
|
+
#
|
|
16515
|
+
class CreateVpnConcentratorResult < Struct.new(
|
|
16516
|
+
:vpn_concentrator)
|
|
16517
|
+
SENSITIVE = []
|
|
16518
|
+
include Aws::Structure
|
|
16519
|
+
end
|
|
16520
|
+
|
|
16296
16521
|
# Contains the parameters for CreateVpnConnection.
|
|
16297
16522
|
#
|
|
16298
16523
|
# @!attribute [rw] customer_gateway_id
|
|
@@ -16313,6 +16538,10 @@ module Aws::EC2
|
|
|
16313
16538
|
# cannot specify a virtual private gateway.
|
|
16314
16539
|
# @return [String]
|
|
16315
16540
|
#
|
|
16541
|
+
# @!attribute [rw] vpn_concentrator_id
|
|
16542
|
+
# The ID of the VPN concentrator to associate with the VPN connection.
|
|
16543
|
+
# @return [String]
|
|
16544
|
+
#
|
|
16316
16545
|
# @!attribute [rw] tag_specifications
|
|
16317
16546
|
# The tags to apply to the VPN connection.
|
|
16318
16547
|
# @return [Array<Types::TagSpecification>]
|
|
@@ -16341,6 +16570,7 @@ module Aws::EC2
|
|
|
16341
16570
|
:type,
|
|
16342
16571
|
:vpn_gateway_id,
|
|
16343
16572
|
:transit_gateway_id,
|
|
16573
|
+
:vpn_concentrator_id,
|
|
16344
16574
|
:tag_specifications,
|
|
16345
16575
|
:pre_shared_key_storage,
|
|
16346
16576
|
:dry_run,
|
|
@@ -17343,6 +17573,48 @@ module Aws::EC2
|
|
|
17343
17573
|
include Aws::Structure
|
|
17344
17574
|
end
|
|
17345
17575
|
|
|
17576
|
+
# @!attribute [rw] dry_run
|
|
17577
|
+
# A check for whether you have the required permissions for the action
|
|
17578
|
+
# without actually making the request and provides an error response.
|
|
17579
|
+
# If you have the required permissions, the error response is
|
|
17580
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
17581
|
+
# @return [Boolean]
|
|
17582
|
+
#
|
|
17583
|
+
# @!attribute [rw] ipam_policy_id
|
|
17584
|
+
# The ID of the IPAM policy to delete.
|
|
17585
|
+
# @return [String]
|
|
17586
|
+
#
|
|
17587
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteIpamPolicyRequest AWS API Documentation
|
|
17588
|
+
#
|
|
17589
|
+
class DeleteIpamPolicyRequest < Struct.new(
|
|
17590
|
+
:dry_run,
|
|
17591
|
+
:ipam_policy_id)
|
|
17592
|
+
SENSITIVE = []
|
|
17593
|
+
include Aws::Structure
|
|
17594
|
+
end
|
|
17595
|
+
|
|
17596
|
+
# @!attribute [rw] ipam_policy
|
|
17597
|
+
# Information about the deleted IPAM policy.
|
|
17598
|
+
#
|
|
17599
|
+
# An IPAM policy is a set of rules that define how public IPv4
|
|
17600
|
+
# addresses from IPAM pools are allocated to Amazon Web Services
|
|
17601
|
+
# resources. Each rule maps an Amazon Web Services service to IPAM
|
|
17602
|
+
# pools that the service will use to get IP addresses. A single policy
|
|
17603
|
+
# can have multiple rules and be applied to multiple Amazon Web
|
|
17604
|
+
# Services Regions. If the IPAM pool run out of addresses then the
|
|
17605
|
+
# services fallback to Amazon-provided IP addresses. A policy can be
|
|
17606
|
+
# applied to an individual Amazon Web Services account or an entity
|
|
17607
|
+
# within Amazon Web Services Organizations.
|
|
17608
|
+
# @return [Types::IpamPolicy]
|
|
17609
|
+
#
|
|
17610
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteIpamPolicyResult AWS API Documentation
|
|
17611
|
+
#
|
|
17612
|
+
class DeleteIpamPolicyResult < Struct.new(
|
|
17613
|
+
:ipam_policy)
|
|
17614
|
+
SENSITIVE = []
|
|
17615
|
+
include Aws::Structure
|
|
17616
|
+
end
|
|
17617
|
+
|
|
17346
17618
|
# @!attribute [rw] dry_run
|
|
17347
17619
|
# A check for whether you have the required permissions for the action
|
|
17348
17620
|
# without actually making the request and provides an error response.
|
|
@@ -19649,6 +19921,39 @@ module Aws::EC2
|
|
|
19649
19921
|
include Aws::Structure
|
|
19650
19922
|
end
|
|
19651
19923
|
|
|
19924
|
+
# @!attribute [rw] vpn_concentrator_id
|
|
19925
|
+
# The ID of the VPN concentrator to delete.
|
|
19926
|
+
# @return [String]
|
|
19927
|
+
#
|
|
19928
|
+
# @!attribute [rw] dry_run
|
|
19929
|
+
# Checks whether you have the required permissions for the action,
|
|
19930
|
+
# without actually making the request, and provides an error response.
|
|
19931
|
+
# If you have the required permissions, the error response is
|
|
19932
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
19933
|
+
# @return [Boolean]
|
|
19934
|
+
#
|
|
19935
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpnConcentratorRequest AWS API Documentation
|
|
19936
|
+
#
|
|
19937
|
+
class DeleteVpnConcentratorRequest < Struct.new(
|
|
19938
|
+
:vpn_concentrator_id,
|
|
19939
|
+
:dry_run)
|
|
19940
|
+
SENSITIVE = []
|
|
19941
|
+
include Aws::Structure
|
|
19942
|
+
end
|
|
19943
|
+
|
|
19944
|
+
# @!attribute [rw] return
|
|
19945
|
+
# Returns `true` if the request succeeds; otherwise, it returns an
|
|
19946
|
+
# error.
|
|
19947
|
+
# @return [Boolean]
|
|
19948
|
+
#
|
|
19949
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpnConcentratorResult AWS API Documentation
|
|
19950
|
+
#
|
|
19951
|
+
class DeleteVpnConcentratorResult < Struct.new(
|
|
19952
|
+
:return)
|
|
19953
|
+
SENSITIVE = []
|
|
19954
|
+
include Aws::Structure
|
|
19955
|
+
end
|
|
19956
|
+
|
|
19652
19957
|
# Contains the parameters for DeleteVpnConnection.
|
|
19653
19958
|
#
|
|
19654
19959
|
# @!attribute [rw] vpn_connection_id
|
|
@@ -26047,6 +26352,69 @@ module Aws::EC2
|
|
|
26047
26352
|
include Aws::Structure
|
|
26048
26353
|
end
|
|
26049
26354
|
|
|
26355
|
+
# @!attribute [rw] dry_run
|
|
26356
|
+
# A check for whether you have the required permissions for the action
|
|
26357
|
+
# without actually making the request and provides an error response.
|
|
26358
|
+
# If you have the required permissions, the error response is
|
|
26359
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
26360
|
+
# @return [Boolean]
|
|
26361
|
+
#
|
|
26362
|
+
# @!attribute [rw] filters
|
|
26363
|
+
# One or more filters for the IPAM policy description.
|
|
26364
|
+
# @return [Array<Types::Filter>]
|
|
26365
|
+
#
|
|
26366
|
+
# @!attribute [rw] max_results
|
|
26367
|
+
# The maximum number of results to return in a single call.
|
|
26368
|
+
# @return [Integer]
|
|
26369
|
+
#
|
|
26370
|
+
# @!attribute [rw] next_token
|
|
26371
|
+
# The token for the next page of results.
|
|
26372
|
+
# @return [String]
|
|
26373
|
+
#
|
|
26374
|
+
# @!attribute [rw] ipam_policy_ids
|
|
26375
|
+
# The IDs of the IPAM policies to describe.
|
|
26376
|
+
# @return [Array<String>]
|
|
26377
|
+
#
|
|
26378
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIpamPoliciesRequest AWS API Documentation
|
|
26379
|
+
#
|
|
26380
|
+
class DescribeIpamPoliciesRequest < Struct.new(
|
|
26381
|
+
:dry_run,
|
|
26382
|
+
:filters,
|
|
26383
|
+
:max_results,
|
|
26384
|
+
:next_token,
|
|
26385
|
+
:ipam_policy_ids)
|
|
26386
|
+
SENSITIVE = []
|
|
26387
|
+
include Aws::Structure
|
|
26388
|
+
end
|
|
26389
|
+
|
|
26390
|
+
# @!attribute [rw] next_token
|
|
26391
|
+
# The token to use to retrieve the next page of results. This value is
|
|
26392
|
+
# `null` when there are no more results to return.
|
|
26393
|
+
# @return [String]
|
|
26394
|
+
#
|
|
26395
|
+
# @!attribute [rw] ipam_policies
|
|
26396
|
+
# Information about the IPAM policies.
|
|
26397
|
+
#
|
|
26398
|
+
# An IPAM policy is a set of rules that define how public IPv4
|
|
26399
|
+
# addresses from IPAM pools are allocated to Amazon Web Services
|
|
26400
|
+
# resources. Each rule maps an Amazon Web Services service to IPAM
|
|
26401
|
+
# pools that the service will use to get IP addresses. A single policy
|
|
26402
|
+
# can have multiple rules and be applied to multiple Amazon Web
|
|
26403
|
+
# Services Regions. If the IPAM pool run out of addresses then the
|
|
26404
|
+
# services fallback to Amazon-provided IP addresses. A policy can be
|
|
26405
|
+
# applied to an individual Amazon Web Services account or an entity
|
|
26406
|
+
# within Amazon Web Services Organizations.
|
|
26407
|
+
# @return [Array<Types::IpamPolicy>]
|
|
26408
|
+
#
|
|
26409
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIpamPoliciesResult AWS API Documentation
|
|
26410
|
+
#
|
|
26411
|
+
class DescribeIpamPoliciesResult < Struct.new(
|
|
26412
|
+
:next_token,
|
|
26413
|
+
:ipam_policies)
|
|
26414
|
+
SENSITIVE = []
|
|
26415
|
+
include Aws::Structure
|
|
26416
|
+
end
|
|
26417
|
+
|
|
26050
26418
|
# @!attribute [rw] dry_run
|
|
26051
26419
|
# A check for whether you have the required permissions for the action
|
|
26052
26420
|
# without actually making the request and provides an error response.
|
|
@@ -26243,8 +26611,7 @@ module Aws::EC2
|
|
|
26243
26611
|
# @return [Array<String>]
|
|
26244
26612
|
#
|
|
26245
26613
|
# @!attribute [rw] next_token
|
|
26246
|
-
#
|
|
26247
|
-
# next page of results.
|
|
26614
|
+
# The token for the next page of results.
|
|
26248
26615
|
# @return [String]
|
|
26249
26616
|
#
|
|
26250
26617
|
# @!attribute [rw] max_results
|
|
@@ -26273,8 +26640,8 @@ module Aws::EC2
|
|
|
26273
26640
|
# @return [Array<Types::IpamResourceDiscovery>]
|
|
26274
26641
|
#
|
|
26275
26642
|
# @!attribute [rw] next_token
|
|
26276
|
-
#
|
|
26277
|
-
#
|
|
26643
|
+
# The token to use to retrieve the next page of results. This value is
|
|
26644
|
+
# `null` when there are no more results to return.
|
|
26278
26645
|
# @return [String]
|
|
26279
26646
|
#
|
|
26280
26647
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIpamResourceDiscoveriesResult AWS API Documentation
|
|
@@ -26328,8 +26695,8 @@ module Aws::EC2
|
|
|
26328
26695
|
# @return [Array<Types::IpamResourceDiscoveryAssociation>]
|
|
26329
26696
|
#
|
|
26330
26697
|
# @!attribute [rw] next_token
|
|
26331
|
-
#
|
|
26332
|
-
#
|
|
26698
|
+
# The token to use to retrieve the next page of results. This value is
|
|
26699
|
+
# `null` when there are no more results to return.
|
|
26333
26700
|
# @return [String]
|
|
26334
26701
|
#
|
|
26335
26702
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIpamResourceDiscoveryAssociationsResult AWS API Documentation
|
|
@@ -33946,6 +34313,61 @@ module Aws::EC2
|
|
|
33946
34313
|
include Aws::Structure
|
|
33947
34314
|
end
|
|
33948
34315
|
|
|
34316
|
+
# @!attribute [rw] vpn_concentrator_ids
|
|
34317
|
+
# One or more VPN concentrator IDs.
|
|
34318
|
+
# @return [Array<String>]
|
|
34319
|
+
#
|
|
34320
|
+
# @!attribute [rw] filters
|
|
34321
|
+
# One or more filters to limit the results.
|
|
34322
|
+
# @return [Array<Types::Filter>]
|
|
34323
|
+
#
|
|
34324
|
+
# @!attribute [rw] max_results
|
|
34325
|
+
# The maximum number of results to return with a single call. To
|
|
34326
|
+
# retrieve the remaining results, make another call with the returned
|
|
34327
|
+
# `nextToken` value.
|
|
34328
|
+
# @return [Integer]
|
|
34329
|
+
#
|
|
34330
|
+
# @!attribute [rw] next_token
|
|
34331
|
+
# The token for the next page of results.
|
|
34332
|
+
# @return [String]
|
|
34333
|
+
#
|
|
34334
|
+
# @!attribute [rw] dry_run
|
|
34335
|
+
# Checks whether you have the required permissions for the action,
|
|
34336
|
+
# without actually making the request, and provides an error response.
|
|
34337
|
+
# If you have the required permissions, the error response is
|
|
34338
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
34339
|
+
# @return [Boolean]
|
|
34340
|
+
#
|
|
34341
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpnConcentratorsRequest AWS API Documentation
|
|
34342
|
+
#
|
|
34343
|
+
class DescribeVpnConcentratorsRequest < Struct.new(
|
|
34344
|
+
:vpn_concentrator_ids,
|
|
34345
|
+
:filters,
|
|
34346
|
+
:max_results,
|
|
34347
|
+
:next_token,
|
|
34348
|
+
:dry_run)
|
|
34349
|
+
SENSITIVE = []
|
|
34350
|
+
include Aws::Structure
|
|
34351
|
+
end
|
|
34352
|
+
|
|
34353
|
+
# @!attribute [rw] vpn_concentrators
|
|
34354
|
+
# Information about the VPN concentrators.
|
|
34355
|
+
# @return [Array<Types::VpnConcentrator>]
|
|
34356
|
+
#
|
|
34357
|
+
# @!attribute [rw] next_token
|
|
34358
|
+
# The token to use to retrieve the next page of results. This value is
|
|
34359
|
+
# `null` when there are no more results to return.
|
|
34360
|
+
# @return [String]
|
|
34361
|
+
#
|
|
34362
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpnConcentratorsResult AWS API Documentation
|
|
34363
|
+
#
|
|
34364
|
+
class DescribeVpnConcentratorsResult < Struct.new(
|
|
34365
|
+
:vpn_concentrators,
|
|
34366
|
+
:next_token)
|
|
34367
|
+
SENSITIVE = []
|
|
34368
|
+
include Aws::Structure
|
|
34369
|
+
end
|
|
34370
|
+
|
|
33949
34371
|
# Contains the parameters for DescribeVpnConnections.
|
|
33950
34372
|
#
|
|
33951
34373
|
# @!attribute [rw] filters
|
|
@@ -35183,6 +35605,51 @@ module Aws::EC2
|
|
|
35183
35605
|
include Aws::Structure
|
|
35184
35606
|
end
|
|
35185
35607
|
|
|
35608
|
+
# @!attribute [rw] dry_run
|
|
35609
|
+
# A check for whether you have the required permissions for the action
|
|
35610
|
+
# without actually making the request and provides an error response.
|
|
35611
|
+
# If you have the required permissions, the error response is
|
|
35612
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
35613
|
+
# @return [Boolean]
|
|
35614
|
+
#
|
|
35615
|
+
# @!attribute [rw] ipam_policy_id
|
|
35616
|
+
# The ID of the IPAM policy to disable.
|
|
35617
|
+
# @return [String]
|
|
35618
|
+
#
|
|
35619
|
+
# @!attribute [rw] organization_target_id
|
|
35620
|
+
# The ID of the Amazon Web Services Organizations target for which to
|
|
35621
|
+
# disable the IPAM policy. This parameter is required only when IPAM
|
|
35622
|
+
# is integrated with Amazon Web Services Organizations. When IPAM is
|
|
35623
|
+
# not integrated with Amazon Web Services Organizations, omit this
|
|
35624
|
+
# parameter and the policy will be disabled for the current account.
|
|
35625
|
+
#
|
|
35626
|
+
# A target can be an individual Amazon Web Services account or an
|
|
35627
|
+
# entity within an Amazon Web Services Organization to which an IPAM
|
|
35628
|
+
# policy can be applied.
|
|
35629
|
+
# @return [String]
|
|
35630
|
+
#
|
|
35631
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisableIpamPolicyRequest AWS API Documentation
|
|
35632
|
+
#
|
|
35633
|
+
class DisableIpamPolicyRequest < Struct.new(
|
|
35634
|
+
:dry_run,
|
|
35635
|
+
:ipam_policy_id,
|
|
35636
|
+
:organization_target_id)
|
|
35637
|
+
SENSITIVE = []
|
|
35638
|
+
include Aws::Structure
|
|
35639
|
+
end
|
|
35640
|
+
|
|
35641
|
+
# @!attribute [rw] return
|
|
35642
|
+
# Returns true if the IPAM policy was successfully disabled.
|
|
35643
|
+
# @return [Boolean]
|
|
35644
|
+
#
|
|
35645
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisableIpamPolicyResult AWS API Documentation
|
|
35646
|
+
#
|
|
35647
|
+
class DisableIpamPolicyResult < Struct.new(
|
|
35648
|
+
:return)
|
|
35649
|
+
SENSITIVE = []
|
|
35650
|
+
include Aws::Structure
|
|
35651
|
+
end
|
|
35652
|
+
|
|
35186
35653
|
# @!attribute [rw] route_server_id
|
|
35187
35654
|
# The ID of the route server for which to disable propagation.
|
|
35188
35655
|
# @return [String]
|
|
@@ -38089,6 +38556,51 @@ module Aws::EC2
|
|
|
38089
38556
|
include Aws::Structure
|
|
38090
38557
|
end
|
|
38091
38558
|
|
|
38559
|
+
# @!attribute [rw] dry_run
|
|
38560
|
+
# A check for whether you have the required permissions for the action
|
|
38561
|
+
# without actually making the request and provides an error response.
|
|
38562
|
+
# If you have the required permissions, the error response is
|
|
38563
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
38564
|
+
# @return [Boolean]
|
|
38565
|
+
#
|
|
38566
|
+
# @!attribute [rw] ipam_policy_id
|
|
38567
|
+
# The ID of the IPAM policy to enable.
|
|
38568
|
+
# @return [String]
|
|
38569
|
+
#
|
|
38570
|
+
# @!attribute [rw] organization_target_id
|
|
38571
|
+
# The ID of the Amazon Web Services Organizations target for which to
|
|
38572
|
+
# enable the IPAM policy. This parameter is required only when IPAM is
|
|
38573
|
+
# integrated with Amazon Web Services Organizations. When IPAM is not
|
|
38574
|
+
# integrated with Amazon Web Services Organizations, omit this
|
|
38575
|
+
# parameter and the policy will apply to the current account.
|
|
38576
|
+
#
|
|
38577
|
+
# A target can be an individual Amazon Web Services account or an
|
|
38578
|
+
# entity within an Amazon Web Services Organization to which an IPAM
|
|
38579
|
+
# policy can be applied.
|
|
38580
|
+
# @return [String]
|
|
38581
|
+
#
|
|
38582
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableIpamPolicyRequest AWS API Documentation
|
|
38583
|
+
#
|
|
38584
|
+
class EnableIpamPolicyRequest < Struct.new(
|
|
38585
|
+
:dry_run,
|
|
38586
|
+
:ipam_policy_id,
|
|
38587
|
+
:organization_target_id)
|
|
38588
|
+
SENSITIVE = []
|
|
38589
|
+
include Aws::Structure
|
|
38590
|
+
end
|
|
38591
|
+
|
|
38592
|
+
# @!attribute [rw] ipam_policy_id
|
|
38593
|
+
# The ID of the IPAM policy that was enabled.
|
|
38594
|
+
# @return [String]
|
|
38595
|
+
#
|
|
38596
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableIpamPolicyResult AWS API Documentation
|
|
38597
|
+
#
|
|
38598
|
+
class EnableIpamPolicyResult < Struct.new(
|
|
38599
|
+
:ipam_policy_id)
|
|
38600
|
+
SENSITIVE = []
|
|
38601
|
+
include Aws::Structure
|
|
38602
|
+
end
|
|
38603
|
+
|
|
38092
38604
|
# @!attribute [rw] dry_run
|
|
38093
38605
|
# Checks whether you have the required permissions for the action,
|
|
38094
38606
|
# without actually making the request, and provides an error response.
|
|
@@ -39356,7 +39868,7 @@ module Aws::EC2
|
|
|
39356
39868
|
# in that system.
|
|
39357
39869
|
#
|
|
39358
39870
|
# For more information, see [Integrate VPC IPAM with Infoblox
|
|
39359
|
-
# infrastructure][1] in the *Amazon VPC IPAM User Guide
|
|
39871
|
+
# infrastructure][1] in the *Amazon VPC IPAM User Guide*.
|
|
39360
39872
|
#
|
|
39361
39873
|
#
|
|
39362
39874
|
#
|
|
@@ -42044,6 +42556,43 @@ module Aws::EC2
|
|
|
42044
42556
|
include Aws::Structure
|
|
42045
42557
|
end
|
|
42046
42558
|
|
|
42559
|
+
# @!attribute [rw] dry_run
|
|
42560
|
+
# A check for whether you have the required permissions for the action
|
|
42561
|
+
# without actually making the request and provides an error response.
|
|
42562
|
+
# If you have the required permissions, the error response is
|
|
42563
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
42564
|
+
# @return [Boolean]
|
|
42565
|
+
#
|
|
42566
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetEnabledIpamPolicyRequest AWS API Documentation
|
|
42567
|
+
#
|
|
42568
|
+
class GetEnabledIpamPolicyRequest < Struct.new(
|
|
42569
|
+
:dry_run)
|
|
42570
|
+
SENSITIVE = []
|
|
42571
|
+
include Aws::Structure
|
|
42572
|
+
end
|
|
42573
|
+
|
|
42574
|
+
# @!attribute [rw] ipam_policy_enabled
|
|
42575
|
+
# Indicates whether the IPAM policy is enabled.
|
|
42576
|
+
# @return [Boolean]
|
|
42577
|
+
#
|
|
42578
|
+
# @!attribute [rw] ipam_policy_id
|
|
42579
|
+
# The ID of the enabled IPAM policy.
|
|
42580
|
+
# @return [String]
|
|
42581
|
+
#
|
|
42582
|
+
# @!attribute [rw] managed_by
|
|
42583
|
+
# The entity that manages the IPAM policy.
|
|
42584
|
+
# @return [String]
|
|
42585
|
+
#
|
|
42586
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetEnabledIpamPolicyResult AWS API Documentation
|
|
42587
|
+
#
|
|
42588
|
+
class GetEnabledIpamPolicyResult < Struct.new(
|
|
42589
|
+
:ipam_policy_enabled,
|
|
42590
|
+
:ipam_policy_id,
|
|
42591
|
+
:managed_by)
|
|
42592
|
+
SENSITIVE = []
|
|
42593
|
+
include Aws::Structure
|
|
42594
|
+
end
|
|
42595
|
+
|
|
42047
42596
|
# @!attribute [rw] dry_run
|
|
42048
42597
|
# Checks whether you have the required permissions for the action,
|
|
42049
42598
|
# without actually making the request, and provides an error response.
|
|
@@ -42728,6 +43277,135 @@ module Aws::EC2
|
|
|
42728
43277
|
include Aws::Structure
|
|
42729
43278
|
end
|
|
42730
43279
|
|
|
43280
|
+
# @!attribute [rw] dry_run
|
|
43281
|
+
# A check for whether you have the required permissions for the action
|
|
43282
|
+
# without actually making the request and provides an error response.
|
|
43283
|
+
# If you have the required permissions, the error response is
|
|
43284
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
43285
|
+
# @return [Boolean]
|
|
43286
|
+
#
|
|
43287
|
+
# @!attribute [rw] ipam_policy_id
|
|
43288
|
+
# The ID of the IPAM policy for which to get allocation rules.
|
|
43289
|
+
# @return [String]
|
|
43290
|
+
#
|
|
43291
|
+
# @!attribute [rw] filters
|
|
43292
|
+
# One or more filters for the allocation rules.
|
|
43293
|
+
# @return [Array<Types::Filter>]
|
|
43294
|
+
#
|
|
43295
|
+
# @!attribute [rw] locale
|
|
43296
|
+
# The locale for which to get the allocation rules.
|
|
43297
|
+
# @return [String]
|
|
43298
|
+
#
|
|
43299
|
+
# @!attribute [rw] resource_type
|
|
43300
|
+
# The resource type for which to get the allocation rules.
|
|
43301
|
+
#
|
|
43302
|
+
# The Amazon Web Services service or resource type that can use IP
|
|
43303
|
+
# addresses through IPAM policies. Supported services and resource
|
|
43304
|
+
# types include:
|
|
43305
|
+
#
|
|
43306
|
+
# * Elastic IP addresses
|
|
43307
|
+
#
|
|
43308
|
+
# ^
|
|
43309
|
+
# @return [String]
|
|
43310
|
+
#
|
|
43311
|
+
# @!attribute [rw] max_results
|
|
43312
|
+
# The maximum number of results to return in a single call.
|
|
43313
|
+
# @return [Integer]
|
|
43314
|
+
#
|
|
43315
|
+
# @!attribute [rw] next_token
|
|
43316
|
+
# The token for the next page of results.
|
|
43317
|
+
# @return [String]
|
|
43318
|
+
#
|
|
43319
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetIpamPolicyAllocationRulesRequest AWS API Documentation
|
|
43320
|
+
#
|
|
43321
|
+
class GetIpamPolicyAllocationRulesRequest < Struct.new(
|
|
43322
|
+
:dry_run,
|
|
43323
|
+
:ipam_policy_id,
|
|
43324
|
+
:filters,
|
|
43325
|
+
:locale,
|
|
43326
|
+
:resource_type,
|
|
43327
|
+
:max_results,
|
|
43328
|
+
:next_token)
|
|
43329
|
+
SENSITIVE = []
|
|
43330
|
+
include Aws::Structure
|
|
43331
|
+
end
|
|
43332
|
+
|
|
43333
|
+
# @!attribute [rw] ipam_policy_documents
|
|
43334
|
+
# The IPAM policy documents containing the allocation rules.
|
|
43335
|
+
#
|
|
43336
|
+
# Allocation rules are optional configurations within an IPAM policy
|
|
43337
|
+
# that map Amazon Web Services resource types to specific IPAM pools.
|
|
43338
|
+
# If no rules are defined, the resource types default to using
|
|
43339
|
+
# Amazon-provided IP addresses.
|
|
43340
|
+
# @return [Array<Types::IpamPolicyDocument>]
|
|
43341
|
+
#
|
|
43342
|
+
# @!attribute [rw] next_token
|
|
43343
|
+
# The token to use to retrieve the next page of results.
|
|
43344
|
+
# @return [String]
|
|
43345
|
+
#
|
|
43346
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetIpamPolicyAllocationRulesResult AWS API Documentation
|
|
43347
|
+
#
|
|
43348
|
+
class GetIpamPolicyAllocationRulesResult < Struct.new(
|
|
43349
|
+
:ipam_policy_documents,
|
|
43350
|
+
:next_token)
|
|
43351
|
+
SENSITIVE = []
|
|
43352
|
+
include Aws::Structure
|
|
43353
|
+
end
|
|
43354
|
+
|
|
43355
|
+
# @!attribute [rw] dry_run
|
|
43356
|
+
# A check for whether you have the required permissions for the action
|
|
43357
|
+
# without actually making the request and provides an error response.
|
|
43358
|
+
# If you have the required permissions, the error response is
|
|
43359
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
43360
|
+
# @return [Boolean]
|
|
43361
|
+
#
|
|
43362
|
+
# @!attribute [rw] max_results
|
|
43363
|
+
# The maximum number of results to return in a single call.
|
|
43364
|
+
# @return [Integer]
|
|
43365
|
+
#
|
|
43366
|
+
# @!attribute [rw] next_token
|
|
43367
|
+
# The token for the next page of results.
|
|
43368
|
+
# @return [String]
|
|
43369
|
+
#
|
|
43370
|
+
# @!attribute [rw] ipam_policy_id
|
|
43371
|
+
# The ID of the IPAM policy for which to get Amazon Web Services
|
|
43372
|
+
# Organizations targets.
|
|
43373
|
+
# @return [String]
|
|
43374
|
+
#
|
|
43375
|
+
# @!attribute [rw] filters
|
|
43376
|
+
# One or more filters for the Amazon Web Services Organizations
|
|
43377
|
+
# targets.
|
|
43378
|
+
# @return [Array<Types::Filter>]
|
|
43379
|
+
#
|
|
43380
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetIpamPolicyOrganizationTargetsRequest AWS API Documentation
|
|
43381
|
+
#
|
|
43382
|
+
class GetIpamPolicyOrganizationTargetsRequest < Struct.new(
|
|
43383
|
+
:dry_run,
|
|
43384
|
+
:max_results,
|
|
43385
|
+
:next_token,
|
|
43386
|
+
:ipam_policy_id,
|
|
43387
|
+
:filters)
|
|
43388
|
+
SENSITIVE = []
|
|
43389
|
+
include Aws::Structure
|
|
43390
|
+
end
|
|
43391
|
+
|
|
43392
|
+
# @!attribute [rw] organization_targets
|
|
43393
|
+
# The Amazon Web Services Organizations targets for an IPAM policy.
|
|
43394
|
+
# @return [Array<Types::IpamPolicyOrganizationTarget>]
|
|
43395
|
+
#
|
|
43396
|
+
# @!attribute [rw] next_token
|
|
43397
|
+
# The token to use to retrieve the next page of results.
|
|
43398
|
+
# @return [String]
|
|
43399
|
+
#
|
|
43400
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetIpamPolicyOrganizationTargetsResult AWS API Documentation
|
|
43401
|
+
#
|
|
43402
|
+
class GetIpamPolicyOrganizationTargetsResult < Struct.new(
|
|
43403
|
+
:organization_targets,
|
|
43404
|
+
:next_token)
|
|
43405
|
+
SENSITIVE = []
|
|
43406
|
+
include Aws::Structure
|
|
43407
|
+
end
|
|
43408
|
+
|
|
42731
43409
|
# @!attribute [rw] dry_run
|
|
42732
43410
|
# A check for whether you have the required permissions for the action
|
|
42733
43411
|
# without actually making the request and provides an error response.
|
|
@@ -51896,6 +52574,166 @@ module Aws::EC2
|
|
|
51896
52574
|
include Aws::Structure
|
|
51897
52575
|
end
|
|
51898
52576
|
|
|
52577
|
+
# Information about an IPAM policy.
|
|
52578
|
+
#
|
|
52579
|
+
# An IPAM policy is a set of rules that define how public IPv4 addresses
|
|
52580
|
+
# from IPAM pools are allocated to Amazon Web Services resources. Each
|
|
52581
|
+
# rule maps an Amazon Web Services service to IPAM pools that the
|
|
52582
|
+
# service will use to get IP addresses. A single policy can have
|
|
52583
|
+
# multiple rules and be applied to multiple Amazon Web Services Regions.
|
|
52584
|
+
# If the IPAM pool run out of addresses then the services fallback to
|
|
52585
|
+
# Amazon-provided IP addresses. A policy can be applied to an individual
|
|
52586
|
+
# Amazon Web Services account or an entity within Amazon Web Services
|
|
52587
|
+
# Organizations.
|
|
52588
|
+
#
|
|
52589
|
+
# @!attribute [rw] owner_id
|
|
52590
|
+
# The account ID that owns the IPAM policy.
|
|
52591
|
+
# @return [String]
|
|
52592
|
+
#
|
|
52593
|
+
# @!attribute [rw] ipam_policy_id
|
|
52594
|
+
# The ID of the IPAM policy.
|
|
52595
|
+
# @return [String]
|
|
52596
|
+
#
|
|
52597
|
+
# @!attribute [rw] ipam_policy_arn
|
|
52598
|
+
# The Amazon Resource Name (ARN) of the IPAM policy.
|
|
52599
|
+
# @return [String]
|
|
52600
|
+
#
|
|
52601
|
+
# @!attribute [rw] ipam_policy_region
|
|
52602
|
+
# The Region of the IPAM policy.
|
|
52603
|
+
# @return [String]
|
|
52604
|
+
#
|
|
52605
|
+
# @!attribute [rw] state
|
|
52606
|
+
# The state of the IPAM policy.
|
|
52607
|
+
# @return [String]
|
|
52608
|
+
#
|
|
52609
|
+
# @!attribute [rw] state_message
|
|
52610
|
+
# A message about the state of the IPAM policy.
|
|
52611
|
+
# @return [String]
|
|
52612
|
+
#
|
|
52613
|
+
# @!attribute [rw] tags
|
|
52614
|
+
# The tags assigned to the IPAM policy.
|
|
52615
|
+
# @return [Array<Types::Tag>]
|
|
52616
|
+
#
|
|
52617
|
+
# @!attribute [rw] ipam_id
|
|
52618
|
+
# The ID of the IPAM this policy belongs to.
|
|
52619
|
+
# @return [String]
|
|
52620
|
+
#
|
|
52621
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamPolicy AWS API Documentation
|
|
52622
|
+
#
|
|
52623
|
+
class IpamPolicy < Struct.new(
|
|
52624
|
+
:owner_id,
|
|
52625
|
+
:ipam_policy_id,
|
|
52626
|
+
:ipam_policy_arn,
|
|
52627
|
+
:ipam_policy_region,
|
|
52628
|
+
:state,
|
|
52629
|
+
:state_message,
|
|
52630
|
+
:tags,
|
|
52631
|
+
:ipam_id)
|
|
52632
|
+
SENSITIVE = []
|
|
52633
|
+
include Aws::Structure
|
|
52634
|
+
end
|
|
52635
|
+
|
|
52636
|
+
# Information about an IPAM policy allocation rule.
|
|
52637
|
+
#
|
|
52638
|
+
# Allocation rules are optional configurations within an IPAM policy
|
|
52639
|
+
# that map Amazon Web Services resource types to specific IPAM pools. If
|
|
52640
|
+
# no rules are defined, the resource types default to using
|
|
52641
|
+
# Amazon-provided IP addresses.
|
|
52642
|
+
#
|
|
52643
|
+
# @!attribute [rw] source_ipam_pool_id
|
|
52644
|
+
# The ID of the source IPAM pool for the allocation rule.
|
|
52645
|
+
#
|
|
52646
|
+
# An IPAM pool is a collection of IP addresses in IPAM that can be
|
|
52647
|
+
# allocated to Amazon Web Services resources.
|
|
52648
|
+
# @return [String]
|
|
52649
|
+
#
|
|
52650
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamPolicyAllocationRule AWS API Documentation
|
|
52651
|
+
#
|
|
52652
|
+
class IpamPolicyAllocationRule < Struct.new(
|
|
52653
|
+
:source_ipam_pool_id)
|
|
52654
|
+
SENSITIVE = []
|
|
52655
|
+
include Aws::Structure
|
|
52656
|
+
end
|
|
52657
|
+
|
|
52658
|
+
# Information about a requested IPAM policy allocation rule.
|
|
52659
|
+
#
|
|
52660
|
+
# Allocation rules are optional configurations within an IPAM policy
|
|
52661
|
+
# that map Amazon Web Services resource types to specific IPAM pools. If
|
|
52662
|
+
# no rules are defined, the resource types default to using
|
|
52663
|
+
# Amazon-provided IP addresses.
|
|
52664
|
+
#
|
|
52665
|
+
# @!attribute [rw] source_ipam_pool_id
|
|
52666
|
+
# The ID of the source IPAM pool for the requested allocation rule.
|
|
52667
|
+
#
|
|
52668
|
+
# An IPAM pool is a collection of IP addresses in IPAM that can be
|
|
52669
|
+
# allocated to Amazon Web Services resources.
|
|
52670
|
+
# @return [String]
|
|
52671
|
+
#
|
|
52672
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamPolicyAllocationRuleRequest AWS API Documentation
|
|
52673
|
+
#
|
|
52674
|
+
class IpamPolicyAllocationRuleRequest < Struct.new(
|
|
52675
|
+
:source_ipam_pool_id)
|
|
52676
|
+
SENSITIVE = []
|
|
52677
|
+
include Aws::Structure
|
|
52678
|
+
end
|
|
52679
|
+
|
|
52680
|
+
# Information about an IPAM policy.
|
|
52681
|
+
#
|
|
52682
|
+
# @!attribute [rw] ipam_policy_id
|
|
52683
|
+
# The ID of the IPAM policy.
|
|
52684
|
+
# @return [String]
|
|
52685
|
+
#
|
|
52686
|
+
# @!attribute [rw] locale
|
|
52687
|
+
# The locale of the IPAM policy document.
|
|
52688
|
+
# @return [String]
|
|
52689
|
+
#
|
|
52690
|
+
# @!attribute [rw] resource_type
|
|
52691
|
+
# The resource type of the IPAM policy document.
|
|
52692
|
+
#
|
|
52693
|
+
# The Amazon Web Services service or resource type that can use IP
|
|
52694
|
+
# addresses through IPAM policies. Supported services and resource
|
|
52695
|
+
# types include:
|
|
52696
|
+
#
|
|
52697
|
+
# * Elastic IP addresses
|
|
52698
|
+
#
|
|
52699
|
+
# ^
|
|
52700
|
+
# @return [String]
|
|
52701
|
+
#
|
|
52702
|
+
# @!attribute [rw] allocation_rules
|
|
52703
|
+
# The allocation rules in the IPAM policy document.
|
|
52704
|
+
#
|
|
52705
|
+
# Allocation rules are optional configurations within an IPAM policy
|
|
52706
|
+
# that map Amazon Web Services resource types to specific IPAM pools.
|
|
52707
|
+
# If no rules are defined, the resource types default to using
|
|
52708
|
+
# Amazon-provided IP addresses.
|
|
52709
|
+
# @return [Array<Types::IpamPolicyAllocationRule>]
|
|
52710
|
+
#
|
|
52711
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamPolicyDocument AWS API Documentation
|
|
52712
|
+
#
|
|
52713
|
+
class IpamPolicyDocument < Struct.new(
|
|
52714
|
+
:ipam_policy_id,
|
|
52715
|
+
:locale,
|
|
52716
|
+
:resource_type,
|
|
52717
|
+
:allocation_rules)
|
|
52718
|
+
SENSITIVE = []
|
|
52719
|
+
include Aws::Structure
|
|
52720
|
+
end
|
|
52721
|
+
|
|
52722
|
+
# The Amazon Web Services Organizations target for an IPAM policy.
|
|
52723
|
+
#
|
|
52724
|
+
# @!attribute [rw] organization_target_id
|
|
52725
|
+
# The ID of a Amazon Web Services Organizations target for an IPAM
|
|
52726
|
+
# policy.
|
|
52727
|
+
# @return [String]
|
|
52728
|
+
#
|
|
52729
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamPolicyOrganizationTarget AWS API Documentation
|
|
52730
|
+
#
|
|
52731
|
+
class IpamPolicyOrganizationTarget < Struct.new(
|
|
52732
|
+
:organization_target_id)
|
|
52733
|
+
SENSITIVE = []
|
|
52734
|
+
include Aws::Structure
|
|
52735
|
+
end
|
|
52736
|
+
|
|
51899
52737
|
# In IPAM, a pool is a collection of contiguous IP addresses CIDRs.
|
|
51900
52738
|
# Pools enable you to organize your IP addresses according to your
|
|
51901
52739
|
# routing and security needs. For example, if you have separate routing
|
|
@@ -58988,6 +59826,66 @@ module Aws::EC2
|
|
|
58988
59826
|
include Aws::Structure
|
|
58989
59827
|
end
|
|
58990
59828
|
|
|
59829
|
+
# @!attribute [rw] dry_run
|
|
59830
|
+
# A check for whether you have the required permissions for the action
|
|
59831
|
+
# without actually making the request and provides an error response.
|
|
59832
|
+
# If you have the required permissions, the error response is
|
|
59833
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
59834
|
+
# @return [Boolean]
|
|
59835
|
+
#
|
|
59836
|
+
# @!attribute [rw] ipam_policy_id
|
|
59837
|
+
# The ID of the IPAM policy whose allocation rules you want to modify.
|
|
59838
|
+
# @return [String]
|
|
59839
|
+
#
|
|
59840
|
+
# @!attribute [rw] locale
|
|
59841
|
+
# The locale for which to modify the allocation rules.
|
|
59842
|
+
# @return [String]
|
|
59843
|
+
#
|
|
59844
|
+
# @!attribute [rw] resource_type
|
|
59845
|
+
# The resource type for which to modify the allocation rules.
|
|
59846
|
+
#
|
|
59847
|
+
# The Amazon Web Services service or resource type that can use IP
|
|
59848
|
+
# addresses through IPAM policies. Supported services and resource
|
|
59849
|
+
# types include:
|
|
59850
|
+
#
|
|
59851
|
+
# * Elastic IP addresses
|
|
59852
|
+
#
|
|
59853
|
+
# ^
|
|
59854
|
+
# @return [String]
|
|
59855
|
+
#
|
|
59856
|
+
# @!attribute [rw] allocation_rules
|
|
59857
|
+
# The new allocation rules to apply to the IPAM policy.
|
|
59858
|
+
#
|
|
59859
|
+
# Allocation rules are optional configurations within an IPAM policy
|
|
59860
|
+
# that map Amazon Web Services resource types to specific IPAM pools.
|
|
59861
|
+
# If no rules are defined, the resource types default to using
|
|
59862
|
+
# Amazon-provided IP addresses.
|
|
59863
|
+
# @return [Array<Types::IpamPolicyAllocationRuleRequest>]
|
|
59864
|
+
#
|
|
59865
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIpamPolicyAllocationRulesRequest AWS API Documentation
|
|
59866
|
+
#
|
|
59867
|
+
class ModifyIpamPolicyAllocationRulesRequest < Struct.new(
|
|
59868
|
+
:dry_run,
|
|
59869
|
+
:ipam_policy_id,
|
|
59870
|
+
:locale,
|
|
59871
|
+
:resource_type,
|
|
59872
|
+
:allocation_rules)
|
|
59873
|
+
SENSITIVE = []
|
|
59874
|
+
include Aws::Structure
|
|
59875
|
+
end
|
|
59876
|
+
|
|
59877
|
+
# @!attribute [rw] ipam_policy_document
|
|
59878
|
+
# The modified IPAM policy containing the updated allocation rules.
|
|
59879
|
+
# @return [Types::IpamPolicyDocument]
|
|
59880
|
+
#
|
|
59881
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIpamPolicyAllocationRulesResult AWS API Documentation
|
|
59882
|
+
#
|
|
59883
|
+
class ModifyIpamPolicyAllocationRulesResult < Struct.new(
|
|
59884
|
+
:ipam_policy_document)
|
|
59885
|
+
SENSITIVE = []
|
|
59886
|
+
include Aws::Structure
|
|
59887
|
+
end
|
|
59888
|
+
|
|
58991
59889
|
# @!attribute [rw] dry_run
|
|
58992
59890
|
# A check for whether you have the required permissions for the action
|
|
58993
59891
|
# without actually making the request and provides an error response.
|
|
@@ -62919,6 +63817,64 @@ module Aws::EC2
|
|
|
62919
63817
|
# connectivity.
|
|
62920
63818
|
# @return [String]
|
|
62921
63819
|
#
|
|
63820
|
+
# @!attribute [rw] availability_mode
|
|
63821
|
+
# Indicates whether this is a zonal (single-AZ) or regional (multi-AZ)
|
|
63822
|
+
# NAT gateway.
|
|
63823
|
+
#
|
|
63824
|
+
# A zonal NAT gateway is a NAT Gateway that provides redundancy and
|
|
63825
|
+
# scalability within a single availability zone. A regional NAT
|
|
63826
|
+
# gateway is a single NAT Gateway that works across multiple
|
|
63827
|
+
# availability zones (AZs) in your VPC, providing redundancy,
|
|
63828
|
+
# scalability and availability across all the AZs in a Region.
|
|
63829
|
+
#
|
|
63830
|
+
# For more information, see [Regional NAT gateways for automatic
|
|
63831
|
+
# multi-AZ expansion][1] in the *Amazon VPC User Guide*.
|
|
63832
|
+
#
|
|
63833
|
+
#
|
|
63834
|
+
#
|
|
63835
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateways-regional.html
|
|
63836
|
+
# @return [String]
|
|
63837
|
+
#
|
|
63838
|
+
# @!attribute [rw] auto_scaling_ips
|
|
63839
|
+
# For regional NAT gateways only: Indicates whether Amazon Web
|
|
63840
|
+
# Services automatically allocates additional Elastic IP addresses
|
|
63841
|
+
# (EIPs) in an AZ when the NAT gateway needs more ports due to
|
|
63842
|
+
# increased concurrent connections to a single destination from that
|
|
63843
|
+
# AZ.
|
|
63844
|
+
#
|
|
63845
|
+
# For more information, see [Regional NAT gateways for automatic
|
|
63846
|
+
# multi-AZ expansion][1] in the *Amazon VPC User Guide*.
|
|
63847
|
+
#
|
|
63848
|
+
#
|
|
63849
|
+
#
|
|
63850
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateways-regional.html
|
|
63851
|
+
# @return [String]
|
|
63852
|
+
#
|
|
63853
|
+
# @!attribute [rw] auto_provision_zones
|
|
63854
|
+
# For regional NAT gateways only: Indicates whether Amazon Web
|
|
63855
|
+
# Services automatically manages AZ coverage. When enabled, the NAT
|
|
63856
|
+
# gateway associates EIPs in all AZs where your VPC has subnets to
|
|
63857
|
+
# handle outbound NAT traffic, expands to new AZs when you create
|
|
63858
|
+
# subnets there, and retracts from AZs where you've removed all
|
|
63859
|
+
# subnets. When disabled, you must manually manage which AZs the NAT
|
|
63860
|
+
# gateway supports and their corresponding EIPs.
|
|
63861
|
+
#
|
|
63862
|
+
# A regional NAT gateway is a single NAT Gateway that works across
|
|
63863
|
+
# multiple availability zones (AZs) in your VPC, providing redundancy,
|
|
63864
|
+
# scalability and availability across all the AZs in a Region.
|
|
63865
|
+
#
|
|
63866
|
+
# For more information, see [Regional NAT gateways for automatic
|
|
63867
|
+
# multi-AZ expansion][1] in the *Amazon VPC User Guide*.
|
|
63868
|
+
#
|
|
63869
|
+
#
|
|
63870
|
+
#
|
|
63871
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateways-regional.html
|
|
63872
|
+
# @return [String]
|
|
63873
|
+
#
|
|
63874
|
+
# @!attribute [rw] route_table_id
|
|
63875
|
+
# For regional NAT gateways only, this is the ID of the NAT gateway.
|
|
63876
|
+
# @return [String]
|
|
63877
|
+
#
|
|
62922
63878
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NatGateway AWS API Documentation
|
|
62923
63879
|
#
|
|
62924
63880
|
class NatGateway < Struct.new(
|
|
@@ -62933,7 +63889,11 @@ module Aws::EC2
|
|
|
62933
63889
|
:subnet_id,
|
|
62934
63890
|
:vpc_id,
|
|
62935
63891
|
:tags,
|
|
62936
|
-
:connectivity_type
|
|
63892
|
+
:connectivity_type,
|
|
63893
|
+
:availability_mode,
|
|
63894
|
+
:auto_scaling_ips,
|
|
63895
|
+
:auto_provision_zones,
|
|
63896
|
+
:route_table_id)
|
|
62937
63897
|
SENSITIVE = []
|
|
62938
63898
|
include Aws::Structure
|
|
62939
63899
|
end
|
|
@@ -62976,6 +63936,18 @@ module Aws::EC2
|
|
|
62976
63936
|
# The address status.
|
|
62977
63937
|
# @return [String]
|
|
62978
63938
|
#
|
|
63939
|
+
# @!attribute [rw] availability_zone
|
|
63940
|
+
# The Availability Zone where this Elastic IP address (EIP) is being
|
|
63941
|
+
# used to handle outbound NAT traffic.
|
|
63942
|
+
# @return [String]
|
|
63943
|
+
#
|
|
63944
|
+
# @!attribute [rw] availability_zone_id
|
|
63945
|
+
# The ID of the Availability Zone where this Elastic IP address (EIP)
|
|
63946
|
+
# is being used to handle outbound NAT traffic. Use this instead of
|
|
63947
|
+
# AvailabilityZone for consistent identification of AZs across Amazon
|
|
63948
|
+
# Web Services Regions.
|
|
63949
|
+
# @return [String]
|
|
63950
|
+
#
|
|
62979
63951
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NatGatewayAddress AWS API Documentation
|
|
62980
63952
|
#
|
|
62981
63953
|
class NatGatewayAddress < Struct.new(
|
|
@@ -62986,7 +63958,9 @@ module Aws::EC2
|
|
|
62986
63958
|
:association_id,
|
|
62987
63959
|
:is_primary,
|
|
62988
63960
|
:failure_message,
|
|
62989
|
-
:status
|
|
63961
|
+
:status,
|
|
63962
|
+
:availability_zone,
|
|
63963
|
+
:availability_zone_id)
|
|
62990
63964
|
SENSITIVE = []
|
|
62991
63965
|
include Aws::Structure
|
|
62992
63966
|
end
|
|
@@ -82353,6 +83327,45 @@ module Aws::EC2
|
|
|
82353
83327
|
include Aws::Structure
|
|
82354
83328
|
end
|
|
82355
83329
|
|
|
83330
|
+
# Describes a VPN concentrator.
|
|
83331
|
+
#
|
|
83332
|
+
# @!attribute [rw] vpn_concentrator_id
|
|
83333
|
+
# The ID of the VPN concentrator.
|
|
83334
|
+
# @return [String]
|
|
83335
|
+
#
|
|
83336
|
+
# @!attribute [rw] state
|
|
83337
|
+
# The current state of the VPN concentrator.
|
|
83338
|
+
# @return [String]
|
|
83339
|
+
#
|
|
83340
|
+
# @!attribute [rw] transit_gateway_id
|
|
83341
|
+
# The ID of the transit gateway associated with the VPN concentrator.
|
|
83342
|
+
# @return [String]
|
|
83343
|
+
#
|
|
83344
|
+
# @!attribute [rw] transit_gateway_attachment_id
|
|
83345
|
+
# The ID of the transit gateway attachment for the VPN concentrator.
|
|
83346
|
+
# @return [String]
|
|
83347
|
+
#
|
|
83348
|
+
# @!attribute [rw] type
|
|
83349
|
+
# The type of VPN concentrator.
|
|
83350
|
+
# @return [String]
|
|
83351
|
+
#
|
|
83352
|
+
# @!attribute [rw] tags
|
|
83353
|
+
# Any tags assigned to the VPN concentrator.
|
|
83354
|
+
# @return [Array<Types::Tag>]
|
|
83355
|
+
#
|
|
83356
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpnConcentrator AWS API Documentation
|
|
83357
|
+
#
|
|
83358
|
+
class VpnConcentrator < Struct.new(
|
|
83359
|
+
:vpn_concentrator_id,
|
|
83360
|
+
:state,
|
|
83361
|
+
:transit_gateway_id,
|
|
83362
|
+
:transit_gateway_attachment_id,
|
|
83363
|
+
:type,
|
|
83364
|
+
:tags)
|
|
83365
|
+
SENSITIVE = []
|
|
83366
|
+
include Aws::Structure
|
|
83367
|
+
end
|
|
83368
|
+
|
|
82356
83369
|
# Describes a VPN connection.
|
|
82357
83370
|
#
|
|
82358
83371
|
# @!attribute [rw] category
|
|
@@ -82365,6 +83378,10 @@ module Aws::EC2
|
|
|
82365
83378
|
# The ID of the transit gateway associated with the VPN connection.
|
|
82366
83379
|
# @return [String]
|
|
82367
83380
|
#
|
|
83381
|
+
# @!attribute [rw] vpn_concentrator_id
|
|
83382
|
+
# The ID of the VPN concentrator associated with the VPN connection.
|
|
83383
|
+
# @return [String]
|
|
83384
|
+
#
|
|
82368
83385
|
# @!attribute [rw] core_network_arn
|
|
82369
83386
|
# The ARN of the core network.
|
|
82370
83387
|
# @return [String]
|
|
@@ -82432,6 +83449,7 @@ module Aws::EC2
|
|
|
82432
83449
|
class VpnConnection < Struct.new(
|
|
82433
83450
|
:category,
|
|
82434
83451
|
:transit_gateway_id,
|
|
83452
|
+
:vpn_concentrator_id,
|
|
82435
83453
|
:core_network_arn,
|
|
82436
83454
|
:core_network_attachment_arn,
|
|
82437
83455
|
:gateway_association_state,
|