aws-sdk-ec2 1.411.0 → 1.412.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 +0 -4
- data/lib/aws-sdk-ec2/client.rb +145 -58
- data/lib/aws-sdk-ec2/placement_group.rb +80 -21
- data/lib/aws-sdk-ec2/resource.rb +102 -45
- data/lib/aws-sdk-ec2/subnet.rb +102 -45
- data/lib/aws-sdk-ec2/types.rb +248 -65
- data/lib/aws-sdk-ec2/vpc.rb +102 -45
- data/lib/aws-sdk-ec2/vpc_address.rb +0 -4
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 34f92b3035ec0b68f9f708e4c747288502e19e9bf43b9cdc050666fa9b847938
|
4
|
+
data.tar.gz: 550431dc2d3495786fbe3e8eb9358dcf8f26bdfe80c7d770cdacfe01a4e19198
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 60944aa5276d5b79b7d65c29ab6277a12d7d16c50d82161359c3c37a56e8ff6ec3549b65911869cd62105ca8a5c336b5f800b3e577b2cbe48425fec23d65a683
|
7
|
+
data.tar.gz: 0710a5671fe95100451e2ffb114ddbb4a12bddd2ab2dc2e2422ce78b2765ca36ee1596759074b29e2e1ddebf1f22980748297611898bf6017d3038934e54b216
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.412.0
|
@@ -339,10 +339,6 @@ module Aws::EC2
|
|
339
339
|
#
|
340
340
|
# If you provide an incorrect network border group, you receive an
|
341
341
|
# `InvalidAddress.NotFound` error.
|
342
|
-
#
|
343
|
-
# You cannot use a network border group with EC2 Classic. If you attempt
|
344
|
-
# this operation on EC2 classic, you receive an
|
345
|
-
# `InvalidParameterCombination` error.
|
346
342
|
# @option options [Boolean] :dry_run
|
347
343
|
# Checks whether you have the required permissions for the action,
|
348
344
|
# without actually making the request, and provides an error response.
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -884,10 +884,6 @@ module Aws::EC2
|
|
884
884
|
#
|
885
885
|
# Use [DescribeAvailabilityZones][1] to view the network border groups.
|
886
886
|
#
|
887
|
-
# You cannot use a network border group with EC2 Classic. If you attempt
|
888
|
-
# this operation on EC2 Classic, you receive an
|
889
|
-
# `InvalidParameterCombination` error.
|
890
|
-
#
|
891
887
|
#
|
892
888
|
#
|
893
889
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeAvailabilityZones.html
|
@@ -2095,10 +2091,21 @@ module Aws::EC2
|
|
2095
2091
|
# adjustment. For more information, see [Elastic IP address quotas][2]
|
2096
2092
|
# in the *Amazon VPC User Guide*.
|
2097
2093
|
#
|
2094
|
+
# When you associate an EIP or secondary EIPs with a public NAT gateway,
|
2095
|
+
# the network border group of the EIPs must match the network border
|
2096
|
+
# group of the Availability Zone (AZ) that the public NAT gateway is in.
|
2097
|
+
# If it's not the same, the EIP will fail to associate. You can see the
|
2098
|
+
# network border group for the subnet's AZ by viewing the details of
|
2099
|
+
# the subnet. Similarly, you can view the network border group of an EIP
|
2100
|
+
# by viewing the details of the EIP address. For more information about
|
2101
|
+
# network border groups and EIPs, see [Allocate an Elastic IP
|
2102
|
+
# address][3] in the *Amazon VPC User Guide*.
|
2103
|
+
#
|
2098
2104
|
#
|
2099
2105
|
#
|
2100
2106
|
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-working-with
|
2101
2107
|
# [2]: https://docs.aws.amazon.com/vpc/latest/userguide/amazon-vpc-limits.html#vpc-limits-eips
|
2108
|
+
# [3]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-eips.html#allocate-eip
|
2102
2109
|
#
|
2103
2110
|
# @option params [required, String] :nat_gateway_id
|
2104
2111
|
# The ID of the NAT gateway.
|
@@ -3899,8 +3906,8 @@ module Aws::EC2
|
|
3899
3906
|
# disk image, the command fails and returns an error.
|
3900
3907
|
#
|
3901
3908
|
# @option params [required, String] :export_task_id
|
3902
|
-
# The ID of the export task. This is the ID returned by
|
3903
|
-
# `CreateInstanceExportTask
|
3909
|
+
# The ID of the export task. This is the ID returned by the
|
3910
|
+
# `CreateInstanceExportTask` and `ExportImage` operations.
|
3904
3911
|
#
|
3905
3912
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3906
3913
|
#
|
@@ -6183,7 +6190,7 @@ module Aws::EC2
|
|
6183
6190
|
#
|
6184
6191
|
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
6185
6192
|
# The key-value pair for tagging the EC2 Fleet request on creation. For
|
6186
|
-
# more information, see [
|
6193
|
+
# more information, see [Tag your resources][1].
|
6187
6194
|
#
|
6188
6195
|
# If the fleet type is `instant`, specify a resource type of `fleet` to
|
6189
6196
|
# tag the fleet or `instance` to tag the instances at launch.
|
@@ -9191,9 +9198,20 @@ module Aws::EC2
|
|
9191
9198
|
# For more information, see [NAT gateways][1] in the *Amazon VPC User
|
9192
9199
|
# Guide*.
|
9193
9200
|
#
|
9201
|
+
# When you create a public NAT gateway and assign it an EIP or secondary
|
9202
|
+
# EIPs, the network border group of the EIPs must match the network
|
9203
|
+
# border group of the Availability Zone (AZ) that the public NAT gateway
|
9204
|
+
# is in. If it's not the same, the NAT gateway will fail to launch. You
|
9205
|
+
# can see the network border group for the subnet's AZ by viewing the
|
9206
|
+
# details of the subnet. Similarly, you can view the network border
|
9207
|
+
# group of an EIP by viewing the details of the EIP address. For more
|
9208
|
+
# information about network border groups and EIPs, see [Allocate an
|
9209
|
+
# Elastic IP address][2] in the *Amazon VPC User Guide*.
|
9210
|
+
#
|
9194
9211
|
#
|
9195
9212
|
#
|
9196
9213
|
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html
|
9214
|
+
# [2]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-eips.html#allocate-eip
|
9197
9215
|
#
|
9198
9216
|
# @option params [String] :allocation_id
|
9199
9217
|
# \[Public NAT gateways only\] The allocation ID of an Elastic IP
|
@@ -18350,7 +18368,8 @@ module Aws::EC2
|
|
18350
18368
|
# For example, you must terminate all instances running in the VPC,
|
18351
18369
|
# delete all security groups associated with the VPC (except the default
|
18352
18370
|
# one), delete all route tables associated with the VPC (except the
|
18353
|
-
# default one), and so on.
|
18371
|
+
# default one), and so on. When you delete the VPC, it deletes the
|
18372
|
+
# VPC's default security group, network ACL, and route table.
|
18354
18373
|
#
|
18355
18374
|
# @option params [required, String] :vpc_id
|
18356
18375
|
# The ID of the VPC.
|
@@ -24683,8 +24702,6 @@ module Aws::EC2
|
|
24683
24702
|
# example, `2021-09-29T11:04:43.305Z`. You can use a wildcard (`*`),
|
24684
24703
|
# for example, `2021-09-29T*`, which matches an entire day.
|
24685
24704
|
#
|
24686
|
-
# * `license-pool` -
|
24687
|
-
#
|
24688
24705
|
# * `maintenance-options.auto-recovery` - The current automatic recovery
|
24689
24706
|
# behavior of the instance (`disabled` \| `default`).
|
24690
24707
|
#
|
@@ -24713,25 +24730,37 @@ module Aws::EC2
|
|
24713
24730
|
# * `monitoring-state` - Indicates whether detailed monitoring is
|
24714
24731
|
# enabled (`disabled` \| `enabled`).
|
24715
24732
|
#
|
24716
|
-
# * `network-interface.addresses.
|
24717
|
-
#
|
24718
|
-
# address.
|
24733
|
+
# * `network-interface.addresses.association.allocation-id` - The
|
24734
|
+
# allocation ID.
|
24719
24735
|
#
|
24720
|
-
# * `network-interface.addresses.
|
24721
|
-
#
|
24736
|
+
# * `network-interface.addresses.association.association-id` - The
|
24737
|
+
# association ID.
|
24738
|
+
#
|
24739
|
+
# * `network-interface.addresses.association.carrier-ip` - The carrier
|
24740
|
+
# IP address.
|
24741
|
+
#
|
24742
|
+
# * `network-interface.addresses.association.customer-owned-ip` - The
|
24743
|
+
# customer-owned IP address.
|
24744
|
+
#
|
24745
|
+
# * `network-interface.addresses.association.ip-owner-id` - The owner ID
|
24746
|
+
# of the private IPv4 address associated with the network interface.
|
24747
|
+
#
|
24748
|
+
# * `network-interface.addresses.association.public-dns-name` - The
|
24749
|
+
# public DNS name.
|
24722
24750
|
#
|
24723
24751
|
# * `network-interface.addresses.association.public-ip` - The ID of the
|
24724
24752
|
# association of an Elastic IP address (IPv4) with a network
|
24725
24753
|
# interface.
|
24726
24754
|
#
|
24727
|
-
# * `network-interface.addresses.
|
24728
|
-
# of the
|
24755
|
+
# * `network-interface.addresses.primary` - Specifies whether the IPv4
|
24756
|
+
# address of the network interface is the primary private IPv4
|
24757
|
+
# address.
|
24729
24758
|
#
|
24730
|
-
# * `network-interface.
|
24731
|
-
#
|
24759
|
+
# * `network-interface.addresses.private-dns-name` - The private DNS
|
24760
|
+
# name.
|
24732
24761
|
#
|
24733
|
-
# * `network-interface.
|
24734
|
-
#
|
24762
|
+
# * `network-interface.addresses.private-ip-address` - The private IPv4
|
24763
|
+
# address associated with the network interface.
|
24735
24764
|
#
|
24736
24765
|
# * `network-interface.association.allocation-id` - The allocation ID
|
24737
24766
|
# returned when you allocated the Elastic IP address (IPv4) for your
|
@@ -24741,30 +24770,52 @@ module Aws::EC2
|
|
24741
24770
|
# returned when the network interface was associated with an IPv4
|
24742
24771
|
# address.
|
24743
24772
|
#
|
24773
|
+
# * `network-interface.association.carrier-ip` - The customer-owned IP
|
24774
|
+
# address.
|
24775
|
+
#
|
24776
|
+
# * `network-interface.association.customer-owned-ip` - The
|
24777
|
+
# customer-owned IP address.
|
24778
|
+
#
|
24779
|
+
# * `network-interface.association.ip-owner-id` - The owner of the
|
24780
|
+
# Elastic IP address (IPv4) associated with the network interface.
|
24781
|
+
#
|
24782
|
+
# * `network-interface.association.public-dns-name` - The public DNS
|
24783
|
+
# name.
|
24784
|
+
#
|
24785
|
+
# * `network-interface.association.public-ip` - The address of the
|
24786
|
+
# Elastic IP address (IPv4) bound to the network interface.
|
24787
|
+
#
|
24788
|
+
# * `network-interface.attachment.attach-time` - The time that the
|
24789
|
+
# network interface was attached to an instance.
|
24790
|
+
#
|
24744
24791
|
# * `network-interface.attachment.attachment-id` - The ID of the
|
24745
24792
|
# interface attachment.
|
24746
24793
|
#
|
24794
|
+
# * `network-interface.attachment.delete-on-termination` - Specifies
|
24795
|
+
# whether the attachment is deleted when an instance is terminated.
|
24796
|
+
#
|
24797
|
+
# * `network-interface.attachment.device-index` - The device index to
|
24798
|
+
# which the network interface is attached.
|
24799
|
+
#
|
24747
24800
|
# * `network-interface.attachment.instance-id` - The ID of the instance
|
24748
24801
|
# to which the network interface is attached.
|
24749
24802
|
#
|
24750
24803
|
# * `network-interface.attachment.instance-owner-id` - The owner ID of
|
24751
24804
|
# the instance to which the network interface is attached.
|
24752
24805
|
#
|
24753
|
-
# * `network-interface.attachment.
|
24754
|
-
#
|
24806
|
+
# * `network-interface.attachment.network-card-index` - The index of the
|
24807
|
+
# network card.
|
24755
24808
|
#
|
24756
24809
|
# * `network-interface.attachment.status` - The status of the attachment
|
24757
24810
|
# (`attaching` \| `attached` \| `detaching` \| `detached`).
|
24758
24811
|
#
|
24759
|
-
# * `network-interface.attachment.attach-time` - The time that the
|
24760
|
-
# network interface was attached to an instance.
|
24761
|
-
#
|
24762
|
-
# * `network-interface.attachment.delete-on-termination` - Specifies
|
24763
|
-
# whether the attachment is deleted when an instance is terminated.
|
24764
|
-
#
|
24765
24812
|
# * `network-interface.availability-zone` - The Availability Zone for
|
24766
24813
|
# the network interface.
|
24767
24814
|
#
|
24815
|
+
# * `network-interface.deny-all-igw-traffic` - A Boolean that indicates
|
24816
|
+
# whether a network interface with an IPv6 address is unreachable from
|
24817
|
+
# the public internet.
|
24818
|
+
#
|
24768
24819
|
# * `network-interface.description` - The description of the network
|
24769
24820
|
# interface.
|
24770
24821
|
#
|
@@ -24774,21 +24825,42 @@ module Aws::EC2
|
|
24774
24825
|
# * `network-interface.group-name` - The name of a security group
|
24775
24826
|
# associated with the network interface.
|
24776
24827
|
#
|
24828
|
+
# * `network-interface.ipv4-prefixes.ipv4-prefix` - The IPv4 prefixes
|
24829
|
+
# that are assigned to the network interface.
|
24830
|
+
#
|
24831
|
+
# * `network-interface.ipv6-address` - The IPv6 address associated with
|
24832
|
+
# the network interface.
|
24833
|
+
#
|
24777
24834
|
# * `network-interface.ipv6-addresses.ipv6-address` - The IPv6 address
|
24778
24835
|
# associated with the network interface.
|
24779
24836
|
#
|
24837
|
+
# * `network-interface.ipv6-addresses.is-primary-ipv6` - A Boolean that
|
24838
|
+
# indicates whether this is the primary IPv6 address.
|
24839
|
+
#
|
24840
|
+
# * `network-interface.ipv6-native` - A Boolean that indicates whether
|
24841
|
+
# this is an IPv6 only network interface.
|
24842
|
+
#
|
24843
|
+
# * `network-interface.ipv6-prefixes.ipv6-prefix` - The IPv6 prefix
|
24844
|
+
# assigned to the network interface.
|
24845
|
+
#
|
24780
24846
|
# * `network-interface.mac-address` - The MAC address of the network
|
24781
24847
|
# interface.
|
24782
24848
|
#
|
24783
24849
|
# * `network-interface.network-interface-id` - The ID of the network
|
24784
24850
|
# interface.
|
24785
24851
|
#
|
24852
|
+
# * `network-interface.outpost-arn` - The ARN of the Outpost.
|
24853
|
+
#
|
24786
24854
|
# * `network-interface.owner-id` - The ID of the owner of the network
|
24787
24855
|
# interface.
|
24788
24856
|
#
|
24789
24857
|
# * `network-interface.private-dns-name` - The private DNS name of the
|
24790
24858
|
# network interface.
|
24791
24859
|
#
|
24860
|
+
# * `network-interface.private-ip-address` - The private IPv4 address.
|
24861
|
+
#
|
24862
|
+
# * `network-interface.public-dns-name` - The public DNS name.
|
24863
|
+
#
|
24792
24864
|
# * `network-interface.requester-id` - The requester ID for the network
|
24793
24865
|
# interface.
|
24794
24866
|
#
|
@@ -24807,6 +24879,12 @@ module Aws::EC2
|
|
24807
24879
|
# * `network-interface.subnet-id` - The ID of the subnet for the network
|
24808
24880
|
# interface.
|
24809
24881
|
#
|
24882
|
+
# * `network-interface.tag-key` - The key of a tag assigned to the
|
24883
|
+
# network interface.
|
24884
|
+
#
|
24885
|
+
# * `network-interface.tag-value` - The value of a tag assigned to the
|
24886
|
+
# network interface.
|
24887
|
+
#
|
24810
24888
|
# * `network-interface.vpc-id` - The ID of the VPC for the network
|
24811
24889
|
# interface.
|
24812
24890
|
#
|
@@ -28822,27 +28900,32 @@ module Aws::EC2
|
|
28822
28900
|
|
28823
28901
|
# Describes one or more of your network interfaces.
|
28824
28902
|
#
|
28903
|
+
# If you have a large number of network interfaces, the operation fails
|
28904
|
+
# unless you use pagination or one of the following filters: `group-id`,
|
28905
|
+
# `mac-address`, `private-dns-name`, `private-ip-address`,
|
28906
|
+
# `private-dns-name`, `subnet-id`, or `vpc-id`.
|
28907
|
+
#
|
28825
28908
|
# @option params [Array<Types::Filter>] :filters
|
28826
28909
|
# One or more filters.
|
28827
28910
|
#
|
28828
|
-
# * `
|
28829
|
-
#
|
28911
|
+
# * `association.allocation-id` - The allocation ID returned when you
|
28912
|
+
# allocated the Elastic IP address (IPv4) for your network interface.
|
28830
28913
|
#
|
28831
|
-
# * `
|
28832
|
-
#
|
28914
|
+
# * `association.association-id` - The association ID returned when the
|
28915
|
+
# network interface was associated with an IPv4 address.
|
28916
|
+
#
|
28917
|
+
# * `addresses.association.owner-id` - The owner ID of the addresses
|
28918
|
+
# associated with the network interface.
|
28833
28919
|
#
|
28834
28920
|
# * `addresses.association.public-ip` - The association ID returned when
|
28835
28921
|
# the network interface was associated with the Elastic IP address
|
28836
28922
|
# (IPv4).
|
28837
28923
|
#
|
28838
|
-
# * `addresses.
|
28839
|
-
# associated with the network interface.
|
28840
|
-
#
|
28841
|
-
# * `association.association-id` - The association ID returned when the
|
28842
|
-
# network interface was associated with an IPv4 address.
|
28924
|
+
# * `addresses.primary` - Whether the private IPv4 address is the
|
28925
|
+
# primary IP address associated with the network interface.
|
28843
28926
|
#
|
28844
|
-
# * `
|
28845
|
-
#
|
28927
|
+
# * `addresses.private-ip-address` - The private IPv4 addresses
|
28928
|
+
# associated with the network interface.
|
28846
28929
|
#
|
28847
28930
|
# * `association.ip-owner-id` - The owner of the Elastic IP address
|
28848
28931
|
# (IPv4) associated with the network interface.
|
@@ -28853,11 +28936,11 @@ module Aws::EC2
|
|
28853
28936
|
# * `association.public-dns-name` - The public DNS name for the network
|
28854
28937
|
# interface (IPv4).
|
28855
28938
|
#
|
28856
|
-
# * `attachment.attachment-id` - The ID of the interface attachment.
|
28857
|
-
#
|
28858
28939
|
# * `attachment.attach-time` - The time that the network interface was
|
28859
28940
|
# attached to an instance.
|
28860
28941
|
#
|
28942
|
+
# * `attachment.attachment-id` - The ID of the interface attachment.
|
28943
|
+
#
|
28861
28944
|
# * `attachment.delete-on-termination` - Indicates whether the
|
28862
28945
|
# attachment is deleted when an instance is terminated.
|
28863
28946
|
#
|
@@ -28881,19 +28964,17 @@ module Aws::EC2
|
|
28881
28964
|
# * `group-id` - The ID of a security group associated with the network
|
28882
28965
|
# interface.
|
28883
28966
|
#
|
28884
|
-
# * `group-name` - The name of a security group associated with the
|
28885
|
-
# network interface.
|
28886
|
-
#
|
28887
28967
|
# * `ipv6-addresses.ipv6-address` - An IPv6 address associated with the
|
28888
28968
|
# network interface.
|
28889
28969
|
#
|
28890
28970
|
# * `interface-type` - The type of network interface
|
28891
28971
|
# (`api_gateway_managed` \| `aws_codestar_connections_managed` \|
|
28892
|
-
# `branch` \| `efa` \| `
|
28893
|
-
# `
|
28894
|
-
# `
|
28895
|
-
# `
|
28896
|
-
# `
|
28972
|
+
# `branch` \| `ec2_instance_connect_endpoint` \| `efa` \| `efs` \|
|
28973
|
+
# `gateway_load_balancer` \| `gateway_load_balancer_endpoint` \|
|
28974
|
+
# `global_accelerator_managed` \| `interface` \| `iot_rules_managed`
|
28975
|
+
# \| `lambda` \| `load_balancer` \| `nat_gateway` \|
|
28976
|
+
# `network_load_balancer` \| `quicksight` \| `transit_gateway` \|
|
28977
|
+
# `trunk` \| `vpc_endpoint`).
|
28897
28978
|
#
|
28898
28979
|
# * `mac-address` - The MAC address of the network interface.
|
28899
28980
|
#
|
@@ -28902,12 +28983,12 @@ module Aws::EC2
|
|
28902
28983
|
# * `owner-id` - The Amazon Web Services account ID of the network
|
28903
28984
|
# interface owner.
|
28904
28985
|
#
|
28905
|
-
# * `private-ip-address` - The private IPv4 address or addresses of the
|
28906
|
-
# network interface.
|
28907
|
-
#
|
28908
28986
|
# * `private-dns-name` - The private DNS name of the network interface
|
28909
28987
|
# (IPv4).
|
28910
28988
|
#
|
28989
|
+
# * `private-ip-address` - The private IPv4 address or addresses of the
|
28990
|
+
# network interface.
|
28991
|
+
#
|
28911
28992
|
# * `requester-id` - The alias or Amazon Web Services account ID of the
|
28912
28993
|
# principal or service that created the network interface.
|
28913
28994
|
#
|
@@ -43153,6 +43234,16 @@ module Aws::EC2
|
|
43153
43234
|
# @option params [String] :boot_mode
|
43154
43235
|
# The boot mode of the virtual machine.
|
43155
43236
|
#
|
43237
|
+
# <note markdown="1"> The `uefi-preferred` boot mode isn't supported for importing images.
|
43238
|
+
# For more information, see [Boot modes][1] in the *VM Import/Export
|
43239
|
+
# User Guide*.
|
43240
|
+
#
|
43241
|
+
# </note>
|
43242
|
+
#
|
43243
|
+
#
|
43244
|
+
#
|
43245
|
+
# [1]: https://docs.aws.amazon.com/vm-import/latest/userguide/prerequisites.html#vmimport-boot-modes
|
43246
|
+
#
|
43156
43247
|
# @return [Types::ImportImageResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
43157
43248
|
#
|
43158
43249
|
# * {Types::ImportImageResult#architecture #architecture} => String
|
@@ -51096,10 +51187,6 @@ module Aws::EC2
|
|
51096
51187
|
# If you provide an incorrect network border group, you receive an
|
51097
51188
|
# `InvalidAddress.NotFound` error.
|
51098
51189
|
#
|
51099
|
-
# You cannot use a network border group with EC2 Classic. If you attempt
|
51100
|
-
# this operation on EC2 classic, you receive an
|
51101
|
-
# `InvalidParameterCombination` error.
|
51102
|
-
#
|
51103
51190
|
# @option params [Boolean] :dry_run
|
51104
51191
|
# Checks whether you have the required permissions for the action,
|
51105
51192
|
# without actually making the request, and provides an error response.
|
@@ -56970,7 +57057,7 @@ module Aws::EC2
|
|
56970
57057
|
params: params,
|
56971
57058
|
config: config)
|
56972
57059
|
context[:gem_name] = 'aws-sdk-ec2'
|
56973
|
-
context[:gem_version] = '1.
|
57060
|
+
context[:gem_version] = '1.412.0'
|
56974
57061
|
Seahorse::Client::Request.new(handlers, context)
|
56975
57062
|
end
|
56976
57063
|
|
@@ -372,8 +372,6 @@ module Aws::EC2
|
|
372
372
|
# example, `2021-09-29T11:04:43.305Z`. You can use a wildcard (`*`),
|
373
373
|
# for example, `2021-09-29T*`, which matches an entire day.
|
374
374
|
#
|
375
|
-
# * `license-pool` -
|
376
|
-
#
|
377
375
|
# * `maintenance-options.auto-recovery` - The current automatic recovery
|
378
376
|
# behavior of the instance (`disabled` \| `default`).
|
379
377
|
#
|
@@ -402,25 +400,37 @@ module Aws::EC2
|
|
402
400
|
# * `monitoring-state` - Indicates whether detailed monitoring is
|
403
401
|
# enabled (`disabled` \| `enabled`).
|
404
402
|
#
|
405
|
-
# * `network-interface.addresses.
|
406
|
-
#
|
407
|
-
# address.
|
403
|
+
# * `network-interface.addresses.association.allocation-id` - The
|
404
|
+
# allocation ID.
|
408
405
|
#
|
409
|
-
# * `network-interface.addresses.
|
410
|
-
#
|
406
|
+
# * `network-interface.addresses.association.association-id` - The
|
407
|
+
# association ID.
|
408
|
+
#
|
409
|
+
# * `network-interface.addresses.association.carrier-ip` - The carrier
|
410
|
+
# IP address.
|
411
|
+
#
|
412
|
+
# * `network-interface.addresses.association.customer-owned-ip` - The
|
413
|
+
# customer-owned IP address.
|
414
|
+
#
|
415
|
+
# * `network-interface.addresses.association.ip-owner-id` - The owner ID
|
416
|
+
# of the private IPv4 address associated with the network interface.
|
417
|
+
#
|
418
|
+
# * `network-interface.addresses.association.public-dns-name` - The
|
419
|
+
# public DNS name.
|
411
420
|
#
|
412
421
|
# * `network-interface.addresses.association.public-ip` - The ID of the
|
413
422
|
# association of an Elastic IP address (IPv4) with a network
|
414
423
|
# interface.
|
415
424
|
#
|
416
|
-
# * `network-interface.addresses.
|
417
|
-
# of the
|
425
|
+
# * `network-interface.addresses.primary` - Specifies whether the IPv4
|
426
|
+
# address of the network interface is the primary private IPv4
|
427
|
+
# address.
|
418
428
|
#
|
419
|
-
# * `network-interface.
|
420
|
-
#
|
429
|
+
# * `network-interface.addresses.private-dns-name` - The private DNS
|
430
|
+
# name.
|
421
431
|
#
|
422
|
-
# * `network-interface.
|
423
|
-
#
|
432
|
+
# * `network-interface.addresses.private-ip-address` - The private IPv4
|
433
|
+
# address associated with the network interface.
|
424
434
|
#
|
425
435
|
# * `network-interface.association.allocation-id` - The allocation ID
|
426
436
|
# returned when you allocated the Elastic IP address (IPv4) for your
|
@@ -430,30 +440,52 @@ module Aws::EC2
|
|
430
440
|
# returned when the network interface was associated with an IPv4
|
431
441
|
# address.
|
432
442
|
#
|
443
|
+
# * `network-interface.association.carrier-ip` - The customer-owned IP
|
444
|
+
# address.
|
445
|
+
#
|
446
|
+
# * `network-interface.association.customer-owned-ip` - The
|
447
|
+
# customer-owned IP address.
|
448
|
+
#
|
449
|
+
# * `network-interface.association.ip-owner-id` - The owner of the
|
450
|
+
# Elastic IP address (IPv4) associated with the network interface.
|
451
|
+
#
|
452
|
+
# * `network-interface.association.public-dns-name` - The public DNS
|
453
|
+
# name.
|
454
|
+
#
|
455
|
+
# * `network-interface.association.public-ip` - The address of the
|
456
|
+
# Elastic IP address (IPv4) bound to the network interface.
|
457
|
+
#
|
458
|
+
# * `network-interface.attachment.attach-time` - The time that the
|
459
|
+
# network interface was attached to an instance.
|
460
|
+
#
|
433
461
|
# * `network-interface.attachment.attachment-id` - The ID of the
|
434
462
|
# interface attachment.
|
435
463
|
#
|
464
|
+
# * `network-interface.attachment.delete-on-termination` - Specifies
|
465
|
+
# whether the attachment is deleted when an instance is terminated.
|
466
|
+
#
|
467
|
+
# * `network-interface.attachment.device-index` - The device index to
|
468
|
+
# which the network interface is attached.
|
469
|
+
#
|
436
470
|
# * `network-interface.attachment.instance-id` - The ID of the instance
|
437
471
|
# to which the network interface is attached.
|
438
472
|
#
|
439
473
|
# * `network-interface.attachment.instance-owner-id` - The owner ID of
|
440
474
|
# the instance to which the network interface is attached.
|
441
475
|
#
|
442
|
-
# * `network-interface.attachment.
|
443
|
-
#
|
476
|
+
# * `network-interface.attachment.network-card-index` - The index of the
|
477
|
+
# network card.
|
444
478
|
#
|
445
479
|
# * `network-interface.attachment.status` - The status of the attachment
|
446
480
|
# (`attaching` \| `attached` \| `detaching` \| `detached`).
|
447
481
|
#
|
448
|
-
# * `network-interface.attachment.attach-time` - The time that the
|
449
|
-
# network interface was attached to an instance.
|
450
|
-
#
|
451
|
-
# * `network-interface.attachment.delete-on-termination` - Specifies
|
452
|
-
# whether the attachment is deleted when an instance is terminated.
|
453
|
-
#
|
454
482
|
# * `network-interface.availability-zone` - The Availability Zone for
|
455
483
|
# the network interface.
|
456
484
|
#
|
485
|
+
# * `network-interface.deny-all-igw-traffic` - A Boolean that indicates
|
486
|
+
# whether a network interface with an IPv6 address is unreachable from
|
487
|
+
# the public internet.
|
488
|
+
#
|
457
489
|
# * `network-interface.description` - The description of the network
|
458
490
|
# interface.
|
459
491
|
#
|
@@ -463,21 +495,42 @@ module Aws::EC2
|
|
463
495
|
# * `network-interface.group-name` - The name of a security group
|
464
496
|
# associated with the network interface.
|
465
497
|
#
|
498
|
+
# * `network-interface.ipv4-prefixes.ipv4-prefix` - The IPv4 prefixes
|
499
|
+
# that are assigned to the network interface.
|
500
|
+
#
|
501
|
+
# * `network-interface.ipv6-address` - The IPv6 address associated with
|
502
|
+
# the network interface.
|
503
|
+
#
|
466
504
|
# * `network-interface.ipv6-addresses.ipv6-address` - The IPv6 address
|
467
505
|
# associated with the network interface.
|
468
506
|
#
|
507
|
+
# * `network-interface.ipv6-addresses.is-primary-ipv6` - A Boolean that
|
508
|
+
# indicates whether this is the primary IPv6 address.
|
509
|
+
#
|
510
|
+
# * `network-interface.ipv6-native` - A Boolean that indicates whether
|
511
|
+
# this is an IPv6 only network interface.
|
512
|
+
#
|
513
|
+
# * `network-interface.ipv6-prefixes.ipv6-prefix` - The IPv6 prefix
|
514
|
+
# assigned to the network interface.
|
515
|
+
#
|
469
516
|
# * `network-interface.mac-address` - The MAC address of the network
|
470
517
|
# interface.
|
471
518
|
#
|
472
519
|
# * `network-interface.network-interface-id` - The ID of the network
|
473
520
|
# interface.
|
474
521
|
#
|
522
|
+
# * `network-interface.outpost-arn` - The ARN of the Outpost.
|
523
|
+
#
|
475
524
|
# * `network-interface.owner-id` - The ID of the owner of the network
|
476
525
|
# interface.
|
477
526
|
#
|
478
527
|
# * `network-interface.private-dns-name` - The private DNS name of the
|
479
528
|
# network interface.
|
480
529
|
#
|
530
|
+
# * `network-interface.private-ip-address` - The private IPv4 address.
|
531
|
+
#
|
532
|
+
# * `network-interface.public-dns-name` - The public DNS name.
|
533
|
+
#
|
481
534
|
# * `network-interface.requester-id` - The requester ID for the network
|
482
535
|
# interface.
|
483
536
|
#
|
@@ -496,6 +549,12 @@ module Aws::EC2
|
|
496
549
|
# * `network-interface.subnet-id` - The ID of the subnet for the network
|
497
550
|
# interface.
|
498
551
|
#
|
552
|
+
# * `network-interface.tag-key` - The key of a tag assigned to the
|
553
|
+
# network interface.
|
554
|
+
#
|
555
|
+
# * `network-interface.tag-value` - The value of a tag assigned to the
|
556
|
+
# network interface.
|
557
|
+
#
|
499
558
|
# * `network-interface.vpc-id` - The ID of the VPC for the network
|
500
559
|
# interface.
|
501
560
|
#
|