aws-sdk-ec2 1.382.0 → 1.383.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/classic_address.rb +18 -27
- data/lib/aws-sdk-ec2/client.rb +446 -267
- data/lib/aws-sdk-ec2/client_api.rb +99 -0
- data/lib/aws-sdk-ec2/endpoints.rb +42 -0
- data/lib/aws-sdk-ec2/instance.rb +8 -11
- data/lib/aws-sdk-ec2/network_interface_association.rb +1 -1
- data/lib/aws-sdk-ec2/plugins/endpoints.rb +6 -0
- data/lib/aws-sdk-ec2/resource.rb +31 -37
- 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 +3 -3
- data/lib/aws-sdk-ec2/types.rb +337 -70
- data/lib/aws-sdk-ec2/volume.rb +1 -1
- data/lib/aws-sdk-ec2/vpc.rb +5 -5
- data/lib/aws-sdk-ec2/vpc_address.rb +16 -25
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -641,18 +641,15 @@ module Aws::EC2
|
|
641
641
|
# @return [String]
|
642
642
|
#
|
643
643
|
# @!attribute [rw] allocation_id
|
644
|
-
# The ID representing the allocation of the address
|
645
|
-
# EC2-VPC.
|
644
|
+
# The ID representing the allocation of the address.
|
646
645
|
# @return [String]
|
647
646
|
#
|
648
647
|
# @!attribute [rw] association_id
|
649
|
-
# The ID representing the association of the address with an instance
|
650
|
-
# in a VPC.
|
648
|
+
# The ID representing the association of the address with an instance.
|
651
649
|
# @return [String]
|
652
650
|
#
|
653
651
|
# @!attribute [rw] domain
|
654
|
-
#
|
655
|
-
# in EC2-Classic (`standard`) or instances in a VPC (`vpc`).
|
652
|
+
# The network (`vpc`).
|
656
653
|
# @return [String]
|
657
654
|
#
|
658
655
|
# @!attribute [rw] network_interface_id
|
@@ -830,16 +827,12 @@ module Aws::EC2
|
|
830
827
|
end
|
831
828
|
|
832
829
|
# @!attribute [rw] domain
|
833
|
-
#
|
834
|
-
# in a VPC or instances in EC2-Classic.
|
835
|
-
#
|
836
|
-
# Default: If the Region supports EC2-Classic, the default is
|
837
|
-
# `standard`. Otherwise, the default is `vpc`.
|
830
|
+
# The network (`vpc`).
|
838
831
|
# @return [String]
|
839
832
|
#
|
840
833
|
# @!attribute [rw] address
|
841
|
-
#
|
842
|
-
#
|
834
|
+
# The Elastic IP address to recover or an IPv4 address from an address
|
835
|
+
# pool.
|
843
836
|
# @return [String]
|
844
837
|
#
|
845
838
|
# @!attribute [rw] public_ipv_4_pool
|
@@ -903,9 +896,7 @@ module Aws::EC2
|
|
903
896
|
# @return [String]
|
904
897
|
#
|
905
898
|
# @!attribute [rw] allocation_id
|
906
|
-
#
|
907
|
-
# allocation of the Elastic IP address for use with instances in a
|
908
|
-
# VPC.
|
899
|
+
# The ID that represents the allocation of the Elastic IP address.
|
909
900
|
# @return [String]
|
910
901
|
#
|
911
902
|
# @!attribute [rw] public_ipv_4_pool
|
@@ -918,8 +909,7 @@ module Aws::EC2
|
|
918
909
|
# @return [String]
|
919
910
|
#
|
920
911
|
# @!attribute [rw] domain
|
921
|
-
#
|
922
|
-
# in a VPC (`vpc`) or instances in EC2-Classic (`standard`).
|
912
|
+
# The network (`vpc`).
|
923
913
|
# @return [String]
|
924
914
|
#
|
925
915
|
# @!attribute [rw] customer_owned_ip
|
@@ -932,8 +922,7 @@ module Aws::EC2
|
|
932
922
|
#
|
933
923
|
# @!attribute [rw] carrier_ip
|
934
924
|
# The carrier IP address. This option is only available for network
|
935
|
-
# interfaces
|
936
|
-
# example an EC2 instance).
|
925
|
+
# interfaces that reside in a subnet in a Wavelength Zone.
|
937
926
|
# @return [String]
|
938
927
|
#
|
939
928
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AllocateAddressResult AWS API Documentation
|
@@ -1748,30 +1737,23 @@ module Aws::EC2
|
|
1748
1737
|
end
|
1749
1738
|
|
1750
1739
|
# @!attribute [rw] allocation_id
|
1751
|
-
#
|
1740
|
+
# The allocation ID. This is required.
|
1752
1741
|
# @return [String]
|
1753
1742
|
#
|
1754
1743
|
# @!attribute [rw] instance_id
|
1755
1744
|
# The ID of the instance. The instance must have exactly one attached
|
1756
|
-
# network interface.
|
1757
|
-
#
|
1758
|
-
# must specify an instance ID and the instance must be in the running
|
1759
|
-
# state.
|
1745
|
+
# network interface. You can specify either the instance ID or the
|
1746
|
+
# network interface ID, but not both.
|
1760
1747
|
# @return [String]
|
1761
1748
|
#
|
1762
1749
|
# @!attribute [rw] public_ip
|
1763
|
-
#
|
1764
|
-
# instance. This is required for EC2-Classic.
|
1750
|
+
# Deprecated.
|
1765
1751
|
# @return [String]
|
1766
1752
|
#
|
1767
1753
|
# @!attribute [rw] allow_reassociation
|
1768
|
-
#
|
1769
|
-
#
|
1770
|
-
#
|
1771
|
-
# instance or network interface. Otherwise, the operation fails. In a
|
1772
|
-
# VPC in an EC2-VPC-only account, reassociation is automatic,
|
1773
|
-
# therefore you can specify false to ensure the operation fails if the
|
1774
|
-
# Elastic IP address is already associated with another resource.
|
1754
|
+
# Reassociation is automatic, but you can specify false to ensure the
|
1755
|
+
# operation fails if the Elastic IP address is already associated with
|
1756
|
+
# another resource.
|
1775
1757
|
# @return [Boolean]
|
1776
1758
|
#
|
1777
1759
|
# @!attribute [rw] dry_run
|
@@ -1782,18 +1764,17 @@ module Aws::EC2
|
|
1782
1764
|
# @return [Boolean]
|
1783
1765
|
#
|
1784
1766
|
# @!attribute [rw] network_interface_id
|
1785
|
-
#
|
1786
|
-
#
|
1787
|
-
# interface ID.
|
1767
|
+
# The ID of the network interface. If the instance has more than one
|
1768
|
+
# network interface, you must specify a network interface ID.
|
1788
1769
|
#
|
1789
|
-
#
|
1790
|
-
#
|
1770
|
+
# You can specify either the instance ID or the network interface ID,
|
1771
|
+
# but not both.
|
1791
1772
|
# @return [String]
|
1792
1773
|
#
|
1793
1774
|
# @!attribute [rw] private_ip_address
|
1794
|
-
#
|
1795
|
-
#
|
1796
|
-
#
|
1775
|
+
# The primary or secondary private IP address to associate with the
|
1776
|
+
# Elastic IP address. If no private IP address is specified, the
|
1777
|
+
# Elastic IP address is associated with the primary private IP
|
1797
1778
|
# address.
|
1798
1779
|
# @return [String]
|
1799
1780
|
#
|
@@ -1812,8 +1793,8 @@ module Aws::EC2
|
|
1812
1793
|
end
|
1813
1794
|
|
1814
1795
|
# @!attribute [rw] association_id
|
1815
|
-
#
|
1816
|
-
#
|
1796
|
+
# The ID that represents the association of the Elastic IP address
|
1797
|
+
# with an instance.
|
1817
1798
|
# @return [String]
|
1818
1799
|
#
|
1819
1800
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateAddressResult AWS API Documentation
|
@@ -7801,6 +7782,81 @@ module Aws::EC2
|
|
7801
7782
|
include Aws::Structure
|
7802
7783
|
end
|
7803
7784
|
|
7785
|
+
# @!attribute [rw] dry_run
|
7786
|
+
# Checks whether you have the required permissions for the action,
|
7787
|
+
# without actually making the request, and provides an error response.
|
7788
|
+
# If you have the required permissions, the error response is
|
7789
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
7790
|
+
# @return [Boolean]
|
7791
|
+
#
|
7792
|
+
# @!attribute [rw] subnet_id
|
7793
|
+
# The ID of the subnet in which to create the EC2 Instance Connect
|
7794
|
+
# Endpoint.
|
7795
|
+
# @return [String]
|
7796
|
+
#
|
7797
|
+
# @!attribute [rw] security_group_ids
|
7798
|
+
# One or more security groups to associate with the endpoint. If you
|
7799
|
+
# don't specify a security group, the default security group for your
|
7800
|
+
# VPC will be associated with the endpoint.
|
7801
|
+
# @return [Array<String>]
|
7802
|
+
#
|
7803
|
+
# @!attribute [rw] preserve_client_ip
|
7804
|
+
# Indicates whether your client's IP address is preserved as the
|
7805
|
+
# source. The value is `true` or `false`.
|
7806
|
+
#
|
7807
|
+
# * If `true`, your client's IP address is used when you connect to a
|
7808
|
+
# resource.
|
7809
|
+
#
|
7810
|
+
# * If `false`, the elastic network interface IP address is used when
|
7811
|
+
# you connect to a resource.
|
7812
|
+
#
|
7813
|
+
# Default: `true`
|
7814
|
+
# @return [Boolean]
|
7815
|
+
#
|
7816
|
+
# @!attribute [rw] client_token
|
7817
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
7818
|
+
# idempotency of the request.
|
7819
|
+
#
|
7820
|
+
# **A suitable default value is auto-generated.** You should normally
|
7821
|
+
# not need to pass this option.
|
7822
|
+
# @return [String]
|
7823
|
+
#
|
7824
|
+
# @!attribute [rw] tag_specifications
|
7825
|
+
# The tags to apply to the EC2 Instance Connect Endpoint during
|
7826
|
+
# creation.
|
7827
|
+
# @return [Array<Types::TagSpecification>]
|
7828
|
+
#
|
7829
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateInstanceConnectEndpointRequest AWS API Documentation
|
7830
|
+
#
|
7831
|
+
class CreateInstanceConnectEndpointRequest < Struct.new(
|
7832
|
+
:dry_run,
|
7833
|
+
:subnet_id,
|
7834
|
+
:security_group_ids,
|
7835
|
+
:preserve_client_ip,
|
7836
|
+
:client_token,
|
7837
|
+
:tag_specifications)
|
7838
|
+
SENSITIVE = []
|
7839
|
+
include Aws::Structure
|
7840
|
+
end
|
7841
|
+
|
7842
|
+
# @!attribute [rw] instance_connect_endpoint
|
7843
|
+
# Information about the EC2 Instance Connect Endpoint.
|
7844
|
+
# @return [Types::Ec2InstanceConnectEndpoint]
|
7845
|
+
#
|
7846
|
+
# @!attribute [rw] client_token
|
7847
|
+
# Unique, case-sensitive idempotency token provided by the client in
|
7848
|
+
# the the request.
|
7849
|
+
# @return [String]
|
7850
|
+
#
|
7851
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateInstanceConnectEndpointResult AWS API Documentation
|
7852
|
+
#
|
7853
|
+
class CreateInstanceConnectEndpointResult < Struct.new(
|
7854
|
+
:instance_connect_endpoint,
|
7855
|
+
:client_token)
|
7856
|
+
SENSITIVE = []
|
7857
|
+
include Aws::Structure
|
7858
|
+
end
|
7859
|
+
|
7804
7860
|
# @!attribute [rw] dry_run
|
7805
7861
|
# Checks whether you have the required permissions for the action,
|
7806
7862
|
# without actually making the request, and provides an error response.
|
@@ -9318,7 +9374,7 @@ module Aws::EC2
|
|
9318
9374
|
# @!attribute [rw] interface_type
|
9319
9375
|
# The type of network interface. The default is `interface`.
|
9320
9376
|
#
|
9321
|
-
# The only supported values are `efa
|
9377
|
+
# The only supported values are `interface`, `efa`, and `trunk`.
|
9322
9378
|
# @return [String]
|
9323
9379
|
#
|
9324
9380
|
# @!attribute [rw] subnet_id
|
@@ -13134,6 +13190,38 @@ module Aws::EC2
|
|
13134
13190
|
include Aws::Structure
|
13135
13191
|
end
|
13136
13192
|
|
13193
|
+
# @!attribute [rw] dry_run
|
13194
|
+
# Checks whether you have the required permissions for the action,
|
13195
|
+
# without actually making the request, and provides an error response.
|
13196
|
+
# If you have the required permissions, the error response is
|
13197
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
13198
|
+
# @return [Boolean]
|
13199
|
+
#
|
13200
|
+
# @!attribute [rw] instance_connect_endpoint_id
|
13201
|
+
# The ID of the EC2 Instance Connect Endpoint to delete.
|
13202
|
+
# @return [String]
|
13203
|
+
#
|
13204
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteInstanceConnectEndpointRequest AWS API Documentation
|
13205
|
+
#
|
13206
|
+
class DeleteInstanceConnectEndpointRequest < Struct.new(
|
13207
|
+
:dry_run,
|
13208
|
+
:instance_connect_endpoint_id)
|
13209
|
+
SENSITIVE = []
|
13210
|
+
include Aws::Structure
|
13211
|
+
end
|
13212
|
+
|
13213
|
+
# @!attribute [rw] instance_connect_endpoint
|
13214
|
+
# Information about the EC2 Instance Connect Endpoint.
|
13215
|
+
# @return [Types::Ec2InstanceConnectEndpoint]
|
13216
|
+
#
|
13217
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteInstanceConnectEndpointResult AWS API Documentation
|
13218
|
+
#
|
13219
|
+
class DeleteInstanceConnectEndpointResult < Struct.new(
|
13220
|
+
:instance_connect_endpoint)
|
13221
|
+
SENSITIVE = []
|
13222
|
+
include Aws::Structure
|
13223
|
+
end
|
13224
|
+
|
13137
13225
|
# @!attribute [rw] dry_run
|
13138
13226
|
# Checks whether you have the required permissions for the action,
|
13139
13227
|
# without actually making the request, and provides an error response.
|
@@ -15622,12 +15710,9 @@ module Aws::EC2
|
|
15622
15710
|
# @!attribute [rw] filters
|
15623
15711
|
# One or more filters. Filter names and values are case-sensitive.
|
15624
15712
|
#
|
15625
|
-
# * `allocation-id` -
|
15626
|
-
#
|
15627
|
-
# * `association-id` - \[EC2-VPC\] The association ID for the address.
|
15713
|
+
# * `allocation-id` - The allocation ID for the address.
|
15628
15714
|
#
|
15629
|
-
# * `
|
15630
|
-
# (`standard`) or in a VPC (`vpc`).
|
15715
|
+
# * `association-id` - The association ID for the address.
|
15631
15716
|
#
|
15632
15717
|
# * `instance-id` - The ID of the instance the address is associated
|
15633
15718
|
# with, if any.
|
@@ -15636,14 +15721,14 @@ module Aws::EC2
|
|
15636
15721
|
# Zones, or Wavelength Zones from where Amazon Web Services
|
15637
15722
|
# advertises IP addresses.
|
15638
15723
|
#
|
15639
|
-
# * `network-interface-id` -
|
15640
|
-
#
|
15724
|
+
# * `network-interface-id` - The ID of the network interface that the
|
15725
|
+
# address is associated with, if any.
|
15641
15726
|
#
|
15642
15727
|
# * `network-interface-owner-id` - The Amazon Web Services account ID
|
15643
15728
|
# of the owner.
|
15644
15729
|
#
|
15645
|
-
# * `private-ip-address` -
|
15646
|
-
#
|
15730
|
+
# * `private-ip-address` - The private IP address associated with the
|
15731
|
+
# Elastic IP address.
|
15647
15732
|
#
|
15648
15733
|
# * `public-ip` - The Elastic IP address, or the carrier IP address.
|
15649
15734
|
#
|
@@ -15665,7 +15750,7 @@ module Aws::EC2
|
|
15665
15750
|
# @return [Array<String>]
|
15666
15751
|
#
|
15667
15752
|
# @!attribute [rw] allocation_ids
|
15668
|
-
#
|
15753
|
+
# Information about the allocation IDs.
|
15669
15754
|
# @return [Array<String>]
|
15670
15755
|
#
|
15671
15756
|
# @!attribute [rw] dry_run
|
@@ -18676,6 +18761,94 @@ module Aws::EC2
|
|
18676
18761
|
include Aws::Structure
|
18677
18762
|
end
|
18678
18763
|
|
18764
|
+
# @!attribute [rw] dry_run
|
18765
|
+
# Checks whether you have the required permissions for the action,
|
18766
|
+
# without actually making the request, and provides an error response.
|
18767
|
+
# If you have the required permissions, the error response is
|
18768
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
18769
|
+
# @return [Boolean]
|
18770
|
+
#
|
18771
|
+
# @!attribute [rw] max_results
|
18772
|
+
# The maximum number of items to return for this request. To get the
|
18773
|
+
# next page of items, make another request with the token returned in
|
18774
|
+
# the output. For more information, see [Pagination][1].
|
18775
|
+
#
|
18776
|
+
#
|
18777
|
+
#
|
18778
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
18779
|
+
# @return [Integer]
|
18780
|
+
#
|
18781
|
+
# @!attribute [rw] next_token
|
18782
|
+
# The token returned from a previous paginated request. Pagination
|
18783
|
+
# continues from the end of the items returned by the previous
|
18784
|
+
# request.
|
18785
|
+
# @return [String]
|
18786
|
+
#
|
18787
|
+
# @!attribute [rw] filters
|
18788
|
+
# One or more filters.
|
18789
|
+
#
|
18790
|
+
# * `instance-connect-endpoint-id` - The ID of the EC2 Instance
|
18791
|
+
# Connect Endpoint.
|
18792
|
+
#
|
18793
|
+
# * `state` - The state of the EC2 Instance Connect Endpoint
|
18794
|
+
# (`create-in-progress` \| `create-complete` \| `create-failed` \|
|
18795
|
+
# `delete-in-progress` \| `delete-complete` \| `delete-failed`).
|
18796
|
+
#
|
18797
|
+
# * `subnet-id` - The ID of the subnet in which the EC2 Instance
|
18798
|
+
# Connect Endpoint was created.
|
18799
|
+
#
|
18800
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
18801
|
+
# the resource. Use the tag key in the filter name and the tag value
|
18802
|
+
# as the filter value. For example, to find all resources that have
|
18803
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
18804
|
+
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
18805
|
+
#
|
18806
|
+
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
18807
|
+
# filter to find all resources assigned a tag with a specific key,
|
18808
|
+
# regardless of the tag value.
|
18809
|
+
#
|
18810
|
+
# * `tag-value` - The value of a tag assigned to the resource. Use
|
18811
|
+
# this filter to find all resources that have a tag with a specific
|
18812
|
+
# value, regardless of tag key.
|
18813
|
+
#
|
18814
|
+
# * `vpc-id` - The ID of the VPC in which the EC2 Instance Connect
|
18815
|
+
# Endpoint was created.
|
18816
|
+
# @return [Array<Types::Filter>]
|
18817
|
+
#
|
18818
|
+
# @!attribute [rw] instance_connect_endpoint_ids
|
18819
|
+
# One or more EC2 Instance Connect Endpoint IDs.
|
18820
|
+
# @return [Array<String>]
|
18821
|
+
#
|
18822
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceConnectEndpointsRequest AWS API Documentation
|
18823
|
+
#
|
18824
|
+
class DescribeInstanceConnectEndpointsRequest < Struct.new(
|
18825
|
+
:dry_run,
|
18826
|
+
:max_results,
|
18827
|
+
:next_token,
|
18828
|
+
:filters,
|
18829
|
+
:instance_connect_endpoint_ids)
|
18830
|
+
SENSITIVE = []
|
18831
|
+
include Aws::Structure
|
18832
|
+
end
|
18833
|
+
|
18834
|
+
# @!attribute [rw] instance_connect_endpoints
|
18835
|
+
# Information about the EC2 Instance Connect Endpoints.
|
18836
|
+
# @return [Array<Types::Ec2InstanceConnectEndpoint>]
|
18837
|
+
#
|
18838
|
+
# @!attribute [rw] next_token
|
18839
|
+
# The token to include in another request to get the next page of
|
18840
|
+
# items. This value is `null` when there are no more items to return.
|
18841
|
+
# @return [String]
|
18842
|
+
#
|
18843
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceConnectEndpointsResult AWS API Documentation
|
18844
|
+
#
|
18845
|
+
class DescribeInstanceConnectEndpointsResult < Struct.new(
|
18846
|
+
:instance_connect_endpoints,
|
18847
|
+
:next_token)
|
18848
|
+
SENSITIVE = []
|
18849
|
+
include Aws::Structure
|
18850
|
+
end
|
18851
|
+
|
18679
18852
|
# @!attribute [rw] dry_run
|
18680
18853
|
# Checks whether you have the required permissions for the action,
|
18681
18854
|
# without actually making the request, and provides an error response.
|
@@ -27708,11 +27881,11 @@ module Aws::EC2
|
|
27708
27881
|
end
|
27709
27882
|
|
27710
27883
|
# @!attribute [rw] association_id
|
27711
|
-
#
|
27884
|
+
# The association ID. This parameter is required.
|
27712
27885
|
# @return [String]
|
27713
27886
|
#
|
27714
27887
|
# @!attribute [rw] public_ip
|
27715
|
-
#
|
27888
|
+
# Deprecated.
|
27716
27889
|
# @return [String]
|
27717
27890
|
#
|
27718
27891
|
# @!attribute [rw] dry_run
|
@@ -28745,6 +28918,107 @@ module Aws::EC2
|
|
28745
28918
|
include Aws::Structure
|
28746
28919
|
end
|
28747
28920
|
|
28921
|
+
# The EC2 Instance Connect Endpoint.
|
28922
|
+
#
|
28923
|
+
# @!attribute [rw] owner_id
|
28924
|
+
# The ID of the Amazon Web Services account that created the EC2
|
28925
|
+
# Instance Connect Endpoint.
|
28926
|
+
# @return [String]
|
28927
|
+
#
|
28928
|
+
# @!attribute [rw] instance_connect_endpoint_id
|
28929
|
+
# The ID of the EC2 Instance Connect Endpoint.
|
28930
|
+
# @return [String]
|
28931
|
+
#
|
28932
|
+
# @!attribute [rw] instance_connect_endpoint_arn
|
28933
|
+
# The Amazon Resource Name (ARN) of the EC2 Instance Connect Endpoint.
|
28934
|
+
# @return [String]
|
28935
|
+
#
|
28936
|
+
# @!attribute [rw] state
|
28937
|
+
# The current state of the EC2 Instance Connect Endpoint.
|
28938
|
+
# @return [String]
|
28939
|
+
#
|
28940
|
+
# @!attribute [rw] state_message
|
28941
|
+
# The message for the current state of the EC2 Instance Connect
|
28942
|
+
# Endpoint. Can include a failure message.
|
28943
|
+
# @return [String]
|
28944
|
+
#
|
28945
|
+
# @!attribute [rw] dns_name
|
28946
|
+
# The DNS name of the EC2 Instance Connect Endpoint.
|
28947
|
+
# @return [String]
|
28948
|
+
#
|
28949
|
+
# @!attribute [rw] fips_dns_name
|
28950
|
+
# @return [String]
|
28951
|
+
#
|
28952
|
+
# @!attribute [rw] network_interface_ids
|
28953
|
+
# The ID of the elastic network interface that Amazon EC2
|
28954
|
+
# automatically created when creating the EC2 Instance Connect
|
28955
|
+
# Endpoint.
|
28956
|
+
# @return [Array<String>]
|
28957
|
+
#
|
28958
|
+
# @!attribute [rw] vpc_id
|
28959
|
+
# The ID of the VPC in which the EC2 Instance Connect Endpoint was
|
28960
|
+
# created.
|
28961
|
+
# @return [String]
|
28962
|
+
#
|
28963
|
+
# @!attribute [rw] availability_zone
|
28964
|
+
# The Availability Zone of the EC2 Instance Connect Endpoint.
|
28965
|
+
# @return [String]
|
28966
|
+
#
|
28967
|
+
# @!attribute [rw] created_at
|
28968
|
+
# The date and time that the EC2 Instance Connect Endpoint was
|
28969
|
+
# created.
|
28970
|
+
# @return [Time]
|
28971
|
+
#
|
28972
|
+
# @!attribute [rw] subnet_id
|
28973
|
+
# The ID of the subnet in which the EC2 Instance Connect Endpoint was
|
28974
|
+
# created.
|
28975
|
+
# @return [String]
|
28976
|
+
#
|
28977
|
+
# @!attribute [rw] preserve_client_ip
|
28978
|
+
# Indicates whether your client's IP address is preserved as the
|
28979
|
+
# source. The value is `true` or `false`.
|
28980
|
+
#
|
28981
|
+
# * If `true`, your client's IP address is used when you connect to a
|
28982
|
+
# resource.
|
28983
|
+
#
|
28984
|
+
# * If `false`, the elastic network interface IP address is used when
|
28985
|
+
# you connect to a resource.
|
28986
|
+
#
|
28987
|
+
# Default: `true`
|
28988
|
+
# @return [Boolean]
|
28989
|
+
#
|
28990
|
+
# @!attribute [rw] security_group_ids
|
28991
|
+
# The security groups associated with the endpoint. If you didn't
|
28992
|
+
# specify a security group, the default security group for your VPC is
|
28993
|
+
# associated with the endpoint.
|
28994
|
+
# @return [Array<String>]
|
28995
|
+
#
|
28996
|
+
# @!attribute [rw] tags
|
28997
|
+
# The tags assigned to the EC2 Instance Connect Endpoint.
|
28998
|
+
# @return [Array<Types::Tag>]
|
28999
|
+
#
|
29000
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ec2InstanceConnectEndpoint AWS API Documentation
|
29001
|
+
#
|
29002
|
+
class Ec2InstanceConnectEndpoint < Struct.new(
|
29003
|
+
:owner_id,
|
29004
|
+
:instance_connect_endpoint_id,
|
29005
|
+
:instance_connect_endpoint_arn,
|
29006
|
+
:state,
|
29007
|
+
:state_message,
|
29008
|
+
:dns_name,
|
29009
|
+
:fips_dns_name,
|
29010
|
+
:network_interface_ids,
|
29011
|
+
:vpc_id,
|
29012
|
+
:availability_zone,
|
29013
|
+
:created_at,
|
29014
|
+
:subnet_id,
|
29015
|
+
:preserve_client_ip,
|
29016
|
+
:security_group_ids,
|
29017
|
+
:tags)
|
29018
|
+
SENSITIVE = []
|
29019
|
+
include Aws::Structure
|
29020
|
+
end
|
29021
|
+
|
28748
29022
|
# Describes the Elastic Fabric Adapters for the instance type.
|
28749
29023
|
#
|
28750
29024
|
# @!attribute [rw] maximum_efa_interfaces
|
@@ -47767,22 +48041,15 @@ module Aws::EC2
|
|
47767
48041
|
include Aws::Structure
|
47768
48042
|
end
|
47769
48043
|
|
47770
|
-
#
|
47771
|
-
#
|
47772
|
-
# <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
|
47773
|
-
# EC2-Classic to a VPC. For more information, see [Migrate from
|
47774
|
-
# EC2-Classic to a VPC][1] in the *Amazon Elastic Compute Cloud User
|
47775
|
-
# Guide*.
|
48044
|
+
# <note markdown="1"> This action is deprecated.
|
47776
48045
|
#
|
47777
48046
|
# </note>
|
47778
48047
|
#
|
47779
|
-
#
|
47780
|
-
#
|
47781
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html
|
48048
|
+
# Describes the status of a moving Elastic IP address.
|
47782
48049
|
#
|
47783
48050
|
# @!attribute [rw] move_status
|
47784
|
-
# The status of the Elastic IP address that's being moved
|
47785
|
-
#
|
48051
|
+
# The status of the Elastic IP address that's being moved or
|
48052
|
+
# restored.
|
47786
48053
|
# @return [String]
|
47787
48054
|
#
|
47788
48055
|
# @!attribute [rw] public_ip
|
@@ -51681,11 +51948,11 @@ module Aws::EC2
|
|
51681
51948
|
end
|
51682
51949
|
|
51683
51950
|
# @!attribute [rw] allocation_id
|
51684
|
-
#
|
51951
|
+
# The allocation ID. This parameter is required.
|
51685
51952
|
# @return [String]
|
51686
51953
|
#
|
51687
51954
|
# @!attribute [rw] public_ip
|
51688
|
-
#
|
51955
|
+
# Deprecated.
|
51689
51956
|
# @return [String]
|
51690
51957
|
#
|
51691
51958
|
# @!attribute [rw] network_border_group
|
data/lib/aws-sdk-ec2/volume.rb
CHANGED
@@ -301,7 +301,7 @@ module Aws::EC2
|
|
301
301
|
# outpost_arn: "String",
|
302
302
|
# tag_specifications: [
|
303
303
|
# {
|
304
|
-
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, ipam-resource-discovery, ipam-resource-discovery-association
|
304
|
+
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint
|
305
305
|
# tags: [
|
306
306
|
# {
|
307
307
|
# key: "String",
|
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
@@ -360,7 +360,7 @@ module Aws::EC2
|
|
360
360
|
# dry_run: false,
|
361
361
|
# tag_specifications: [
|
362
362
|
# {
|
363
|
-
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, ipam-resource-discovery, ipam-resource-discovery-association
|
363
|
+
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint
|
364
364
|
# tags: [
|
365
365
|
# {
|
366
366
|
# key: "String",
|
@@ -397,7 +397,7 @@ module Aws::EC2
|
|
397
397
|
# dry_run: false,
|
398
398
|
# tag_specifications: [
|
399
399
|
# {
|
400
|
-
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, ipam-resource-discovery, ipam-resource-discovery-association
|
400
|
+
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint
|
401
401
|
# tags: [
|
402
402
|
# {
|
403
403
|
# key: "String",
|
@@ -435,7 +435,7 @@ module Aws::EC2
|
|
435
435
|
# group_name: "String", # required
|
436
436
|
# tag_specifications: [
|
437
437
|
# {
|
438
|
-
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, ipam-resource-discovery, ipam-resource-discovery-association
|
438
|
+
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint
|
439
439
|
# tags: [
|
440
440
|
# {
|
441
441
|
# key: "String",
|
@@ -489,7 +489,7 @@ module Aws::EC2
|
|
489
489
|
# subnet = vpc.create_subnet({
|
490
490
|
# tag_specifications: [
|
491
491
|
# {
|
492
|
-
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, ipam-resource-discovery, ipam-resource-discovery-association
|
492
|
+
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint
|
493
493
|
# tags: [
|
494
494
|
# {
|
495
495
|
# key: "String",
|
@@ -833,7 +833,7 @@ module Aws::EC2
|
|
833
833
|
# peer_region: "String",
|
834
834
|
# tag_specifications: [
|
835
835
|
# {
|
836
|
-
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, ipam-resource-discovery, ipam-resource-discovery-association
|
836
|
+
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint
|
837
837
|
# tags: [
|
838
838
|
# {
|
839
839
|
# key: "String",
|