aws-sdk-ec2 1.335.0 → 1.337.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 +963 -110
- data/lib/aws-sdk-ec2/client_api.rb +8 -1
- data/lib/aws-sdk-ec2/instance.rb +8 -1
- data/lib/aws-sdk-ec2/network_interface.rb +3 -3
- data/lib/aws-sdk-ec2/resource.rb +80 -29
- data/lib/aws-sdk-ec2/security_group.rb +7 -3
- data/lib/aws-sdk-ec2/subnet.rb +42 -24
- data/lib/aws-sdk-ec2/types.rb +191 -96
- data/lib/aws-sdk-ec2/vpc.rb +35 -1
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -1215,6 +1215,8 @@ module Aws::EC2
|
|
1215
1215
|
#
|
1216
1216
|
# @!attribute [rw] disallowed_cidrs
|
1217
1217
|
# Exclude a particular CIDR range from being returned by the pool.
|
1218
|
+
# Disallowed CIDRs are only allowed if using netmask length for
|
1219
|
+
# allocation.
|
1218
1220
|
# @return [Array<String>]
|
1219
1221
|
#
|
1220
1222
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AllocateIpamPoolCidrRequest AWS API Documentation
|
@@ -1496,6 +1498,14 @@ module Aws::EC2
|
|
1496
1498
|
# The ID of a VPC peering connection.
|
1497
1499
|
# @return [String]
|
1498
1500
|
#
|
1501
|
+
# @!attribute [rw] state
|
1502
|
+
# The state. The following are the possible values:
|
1503
|
+
#
|
1504
|
+
# * active
|
1505
|
+
#
|
1506
|
+
# * blackhole
|
1507
|
+
# @return [String]
|
1508
|
+
#
|
1499
1509
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AnalysisRouteTableRoute AWS API Documentation
|
1500
1510
|
#
|
1501
1511
|
class AnalysisRouteTableRoute < Struct.new(
|
@@ -1508,7 +1518,8 @@ module Aws::EC2
|
|
1508
1518
|
:network_interface_id,
|
1509
1519
|
:origin,
|
1510
1520
|
:transit_gateway_id,
|
1511
|
-
:vpc_peering_connection_id
|
1521
|
+
:vpc_peering_connection_id,
|
1522
|
+
:state)
|
1512
1523
|
SENSITIVE = []
|
1513
1524
|
include Aws::Structure
|
1514
1525
|
end
|
@@ -1631,9 +1642,9 @@ module Aws::EC2
|
|
1631
1642
|
# @return [Integer]
|
1632
1643
|
#
|
1633
1644
|
# @!attribute [rw] ipv_6_addresses
|
1634
|
-
#
|
1635
|
-
#
|
1636
|
-
#
|
1645
|
+
# The IPv6 addresses to be assigned to the network interface. You
|
1646
|
+
# can't use this option if you're specifying a number of IPv6
|
1647
|
+
# addresses.
|
1637
1648
|
# @return [Array<String>]
|
1638
1649
|
#
|
1639
1650
|
# @!attribute [rw] ipv_6_prefix_count
|
@@ -1712,9 +1723,9 @@ module Aws::EC2
|
|
1712
1723
|
# @return [String]
|
1713
1724
|
#
|
1714
1725
|
# @!attribute [rw] private_ip_addresses
|
1715
|
-
#
|
1716
|
-
#
|
1717
|
-
#
|
1726
|
+
# The IP addresses to be assigned as a secondary private IP address to
|
1727
|
+
# the network interface. You can't specify this parameter when also
|
1728
|
+
# specifying a number of secondary IP addresses.
|
1718
1729
|
#
|
1719
1730
|
# If you don't specify an IP address, Amazon EC2 automatically
|
1720
1731
|
# selects an IP address within the subnet range.
|
@@ -3368,7 +3379,8 @@ module Aws::EC2
|
|
3368
3379
|
# @!attribute [rw] group_name
|
3369
3380
|
# \[EC2-Classic, default VPC\] The name of the security group. You
|
3370
3381
|
# must specify either the security group ID or the security group name
|
3371
|
-
# in the request.
|
3382
|
+
# in the request. For security groups in a nondefault VPC, you must
|
3383
|
+
# specify the security group ID.
|
3372
3384
|
# @return [String]
|
3373
3385
|
#
|
3374
3386
|
# @!attribute [rw] ip_permissions
|
@@ -10942,8 +10954,6 @@ module Aws::EC2
|
|
10942
10954
|
include Aws::Structure
|
10943
10955
|
end
|
10944
10956
|
|
10945
|
-
# Contains the parameters for CreateNetworkInterface.
|
10946
|
-
#
|
10947
10957
|
# @note When making an API call, you may pass CreateNetworkInterfaceRequest
|
10948
10958
|
# data as a hash:
|
10949
10959
|
#
|
@@ -11011,16 +11021,23 @@ module Aws::EC2
|
|
11011
11021
|
# @!attribute [rw] ipv_6_address_count
|
11012
11022
|
# The number of IPv6 addresses to assign to a network interface.
|
11013
11023
|
# Amazon EC2 automatically selects the IPv6 addresses from the subnet
|
11014
|
-
# range.
|
11015
|
-
#
|
11016
|
-
#
|
11017
|
-
#
|
11024
|
+
# range.
|
11025
|
+
#
|
11026
|
+
# You can't specify a count of IPv6 addresses using this parameter if
|
11027
|
+
# you've specified one of the following: specific IPv6 addresses,
|
11028
|
+
# specific IPv6 prefixes, or a count of IPv6 prefixes.
|
11029
|
+
#
|
11030
|
+
# If your subnet has the `AssignIpv6AddressOnCreation` attribute set,
|
11031
|
+
# you can override that setting by specifying 0 as the IPv6 address
|
11032
|
+
# count.
|
11018
11033
|
# @return [Integer]
|
11019
11034
|
#
|
11020
11035
|
# @!attribute [rw] ipv_6_addresses
|
11021
|
-
#
|
11022
|
-
#
|
11023
|
-
#
|
11036
|
+
# The IPv6 addresses from the IPv6 CIDR block range of your subnet.
|
11037
|
+
#
|
11038
|
+
# You can't specify IPv6 addresses using this parameter if you've
|
11039
|
+
# specified one of the following: a count of IPv6 addresses, specific
|
11040
|
+
# IPv6 prefixes, or a count of IPv6 prefixes.
|
11024
11041
|
# @return [Array<Types::InstanceIpv6Address>]
|
11025
11042
|
#
|
11026
11043
|
# @!attribute [rw] private_ip_address
|
@@ -11032,7 +11049,11 @@ module Aws::EC2
|
|
11032
11049
|
# @return [String]
|
11033
11050
|
#
|
11034
11051
|
# @!attribute [rw] private_ip_addresses
|
11035
|
-
#
|
11052
|
+
# The private IPv4 addresses.
|
11053
|
+
#
|
11054
|
+
# You can't specify private IPv4 addresses if you've specified one
|
11055
|
+
# of the following: a count of private IPv4 addresses, specific IPv4
|
11056
|
+
# prefixes, or a count of IPv4 prefixes.
|
11036
11057
|
# @return [Array<Types::PrivateIpAddressSpecification>]
|
11037
11058
|
#
|
11038
11059
|
# @!attribute [rw] secondary_private_ip_address_count
|
@@ -11042,36 +11063,43 @@ module Aws::EC2
|
|
11042
11063
|
# subnet's IPv4 CIDR range. You can't specify this option and
|
11043
11064
|
# specify more than one private IP address using `privateIpAddresses`.
|
11044
11065
|
#
|
11045
|
-
#
|
11046
|
-
#
|
11047
|
-
#
|
11048
|
-
# Guide*.
|
11049
|
-
#
|
11050
|
-
#
|
11051
|
-
#
|
11052
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html#AvailableIpPerENI
|
11066
|
+
# You can't specify a count of private IPv4 addresses if you've
|
11067
|
+
# specified one of the following: specific private IPv4 addresses,
|
11068
|
+
# specific IPv4 prefixes, or a count of IPv4 prefixes.
|
11053
11069
|
# @return [Integer]
|
11054
11070
|
#
|
11055
11071
|
# @!attribute [rw] ipv_4_prefixes
|
11056
|
-
#
|
11057
|
-
#
|
11072
|
+
# The IPv4 prefixes assigned to the network interface.
|
11073
|
+
#
|
11074
|
+
# You can't specify IPv4 prefixes if you've specified one of the
|
11075
|
+
# following: a count of IPv4 prefixes, specific private IPv4
|
11076
|
+
# addresses, or a count of private IPv4 addresses.
|
11058
11077
|
# @return [Array<Types::Ipv4PrefixSpecificationRequest>]
|
11059
11078
|
#
|
11060
11079
|
# @!attribute [rw] ipv_4_prefix_count
|
11061
11080
|
# The number of IPv4 prefixes that Amazon Web Services automatically
|
11062
|
-
# assigns to the network interface.
|
11063
|
-
#
|
11081
|
+
# assigns to the network interface.
|
11082
|
+
#
|
11083
|
+
# You can't specify a count of IPv4 prefixes if you've specified one
|
11084
|
+
# of the following: specific IPv4 prefixes, specific private IPv4
|
11085
|
+
# addresses, or a count of private IPv4 addresses.
|
11064
11086
|
# @return [Integer]
|
11065
11087
|
#
|
11066
11088
|
# @!attribute [rw] ipv_6_prefixes
|
11067
|
-
#
|
11068
|
-
#
|
11089
|
+
# The IPv6 prefixes assigned to the network interface.
|
11090
|
+
#
|
11091
|
+
# You can't specify IPv6 prefixes if you've specified one of the
|
11092
|
+
# following: a count of IPv6 prefixes, specific IPv6 addresses, or a
|
11093
|
+
# count of IPv6 addresses.
|
11069
11094
|
# @return [Array<Types::Ipv6PrefixSpecificationRequest>]
|
11070
11095
|
#
|
11071
11096
|
# @!attribute [rw] ipv_6_prefix_count
|
11072
11097
|
# The number of IPv6 prefixes that Amazon Web Services automatically
|
11073
|
-
# assigns to the network interface.
|
11074
|
-
#
|
11098
|
+
# assigns to the network interface.
|
11099
|
+
#
|
11100
|
+
# You can't specify a count of IPv6 prefixes if you've specified one
|
11101
|
+
# of the following: specific IPv6 prefixes, specific IPv6 addresses,
|
11102
|
+
# or a count of IPv6 addresses.
|
11075
11103
|
# @return [Integer]
|
11076
11104
|
#
|
11077
11105
|
# @!attribute [rw] interface_type
|
@@ -11124,8 +11152,6 @@ module Aws::EC2
|
|
11124
11152
|
include Aws::Structure
|
11125
11153
|
end
|
11126
11154
|
|
11127
|
-
# Contains the output of CreateNetworkInterface.
|
11128
|
-
#
|
11129
11155
|
# @!attribute [rw] network_interface
|
11130
11156
|
# Information about the network interface.
|
11131
11157
|
# @return [Types::NetworkInterface]
|
@@ -16605,7 +16631,9 @@ module Aws::EC2
|
|
16605
16631
|
#
|
16606
16632
|
# @!attribute [rw] group_name
|
16607
16633
|
# \[EC2-Classic, default VPC\] The name of the security group. You can
|
16608
|
-
# specify either the security group name or the security group ID.
|
16634
|
+
# specify either the security group name or the security group ID. For
|
16635
|
+
# security groups in a nondefault VPC, you must specify the security
|
16636
|
+
# group ID.
|
16609
16637
|
# @return [String]
|
16610
16638
|
#
|
16611
16639
|
# @!attribute [rw] dry_run
|
@@ -21461,13 +21489,12 @@ module Aws::EC2
|
|
21461
21489
|
# @return [Array<String>]
|
21462
21490
|
#
|
21463
21491
|
# @!attribute [rw] include_deprecated
|
21464
|
-
#
|
21465
|
-
#
|
21466
|
-
#
|
21492
|
+
# Specifies whether to include deprecated AMIs.
|
21493
|
+
#
|
21494
|
+
# Default: No deprecated AMIs are included in the response.
|
21467
21495
|
#
|
21468
21496
|
# <note markdown="1"> If you are the AMI owner, all deprecated AMIs appear in the response
|
21469
|
-
# regardless of
|
21470
|
-
# parameter.
|
21497
|
+
# regardless of what you specify for this parameter.
|
21471
21498
|
#
|
21472
21499
|
# </note>
|
21473
21500
|
# @return [Boolean]
|
@@ -24526,10 +24553,10 @@ module Aws::EC2
|
|
24526
24553
|
# @!attribute [rw] filters
|
24527
24554
|
# The filters. The following are the possible values:
|
24528
24555
|
#
|
24529
|
-
# *
|
24530
|
-
# is found.
|
24556
|
+
# * path-found - A Boolean value that indicates whether a feasible
|
24557
|
+
# path is found.
|
24531
24558
|
#
|
24532
|
-
# *
|
24559
|
+
# * status - The status of the analysis (running \| succeeded \|
|
24533
24560
|
# failed).
|
24534
24561
|
# @return [Array<Types::Filter>]
|
24535
24562
|
#
|
@@ -24606,15 +24633,13 @@ module Aws::EC2
|
|
24606
24633
|
# @!attribute [rw] filters
|
24607
24634
|
# The filters. The following are the possible values:
|
24608
24635
|
#
|
24609
|
-
# *
|
24610
|
-
#
|
24611
|
-
# * DestinationPort - The destination port.
|
24636
|
+
# * destination - The ID of the resource.
|
24612
24637
|
#
|
24613
|
-
# *
|
24638
|
+
# * destination-port - The destination port.
|
24614
24639
|
#
|
24615
|
-
# *
|
24640
|
+
# * protocol - The protocol.
|
24616
24641
|
#
|
24617
|
-
# *
|
24642
|
+
# * source - The ID of the resource.
|
24618
24643
|
# @return [Array<Types::Filter>]
|
24619
24644
|
#
|
24620
24645
|
# @!attribute [rw] max_results
|
@@ -24752,7 +24777,7 @@ module Aws::EC2
|
|
24752
24777
|
# }
|
24753
24778
|
#
|
24754
24779
|
# @!attribute [rw] network_interface_permission_ids
|
24755
|
-
#
|
24780
|
+
# The network interface permission IDs.
|
24756
24781
|
# @return [Array<String>]
|
24757
24782
|
#
|
24758
24783
|
# @!attribute [rw] filters
|
@@ -24961,7 +24986,7 @@ module Aws::EC2
|
|
24961
24986
|
# @return [Boolean]
|
24962
24987
|
#
|
24963
24988
|
# @!attribute [rw] network_interface_ids
|
24964
|
-
#
|
24989
|
+
# The network interface IDs.
|
24965
24990
|
#
|
24966
24991
|
# Default: Describes all your network interfaces.
|
24967
24992
|
# @return [Array<String>]
|
@@ -27633,10 +27658,22 @@ module Aws::EC2
|
|
27633
27658
|
# information to be returned for the subnet. You can also use `cidr`
|
27634
27659
|
# or `cidrBlock` as the filter names.
|
27635
27660
|
#
|
27661
|
+
# * `customer-owned-ipv4-pool` - The customer-owned IPv4 address pool
|
27662
|
+
# associated with the subnet.
|
27663
|
+
#
|
27636
27664
|
# * `default-for-az` - Indicates whether this is the default subnet
|
27637
27665
|
# for the Availability Zone (`true` \| `false`). You can also use
|
27638
27666
|
# `defaultForAz` as the filter name.
|
27639
27667
|
#
|
27668
|
+
# * `enable-dns64` - Indicates whether DNS queries made to the
|
27669
|
+
# Amazon-provided DNS Resolver in this subnet should return
|
27670
|
+
# synthetic IPv6 addresses for IPv4-only destinations.
|
27671
|
+
#
|
27672
|
+
# * `enable-lni-at-device-index` - Indicates the device position for
|
27673
|
+
# local network interfaces in this subnet. For example, `1`
|
27674
|
+
# indicates local network interfaces in this subnet are the
|
27675
|
+
# secondary network interface (eth1).
|
27676
|
+
#
|
27640
27677
|
# * `ipv6-cidr-block-association.ipv6-cidr-block` - An IPv6 CIDR block
|
27641
27678
|
# associated with the subnet.
|
27642
27679
|
#
|
@@ -27649,11 +27686,33 @@ module Aws::EC2
|
|
27649
27686
|
# * `ipv6-native` - Indicates whether this is an IPv6 only subnet
|
27650
27687
|
# (`true` \| `false`).
|
27651
27688
|
#
|
27689
|
+
# * `map-customer-owned-ip-on-launch` - Indicates whether a network
|
27690
|
+
# interface created in this subnet (including a network interface
|
27691
|
+
# created by RunInstances) receives a customer-owned IPv4 address.
|
27692
|
+
#
|
27693
|
+
# * `map-public-ip-on-launch` - Indicates whether instances launched
|
27694
|
+
# in this subnet receive a public IPv4 address.
|
27695
|
+
#
|
27652
27696
|
# * `outpost-arn` - The Amazon Resource Name (ARN) of the Outpost.
|
27653
27697
|
#
|
27654
27698
|
# * `owner-id` - The ID of the Amazon Web Services account that owns
|
27655
27699
|
# the subnet.
|
27656
27700
|
#
|
27701
|
+
# * `private-dns-name-options-on-launch.hostname-type` - The type of
|
27702
|
+
# hostname to assign to instances in the subnet at launch. For
|
27703
|
+
# IPv4-only and dual-stack (IPv4 and IPv6) subnets, an instance DNS
|
27704
|
+
# name can be based on the instance IPv4 address (ip-name) or the
|
27705
|
+
# instance ID (resource-name). For IPv6 only subnets, an instance
|
27706
|
+
# DNS name must be based on the instance ID (resource-name).
|
27707
|
+
#
|
27708
|
+
# * `private-dns-name-options-on-launch.enable-resource-name-dns-a-record`
|
27709
|
+
# - Indicates whether to respond to DNS queries for instance
|
27710
|
+
# hostnames with DNS A records.
|
27711
|
+
#
|
27712
|
+
# * `private-dns-name-options-on-launch.enable-resource-name-dns-aaaa-record`
|
27713
|
+
# - Indicates whether to respond to DNS queries for instance
|
27714
|
+
# hostnames with DNS AAAA records.
|
27715
|
+
#
|
27657
27716
|
# * `state` - The state of the subnet (`pending` \| `available`).
|
27658
27717
|
#
|
27659
27718
|
# * `subnet-arn` - The Amazon Resource Name (ARN) of the subnet.
|
@@ -33878,6 +33937,14 @@ module Aws::EC2
|
|
33878
33937
|
# The transit gateway attachment.
|
33879
33938
|
# @return [Types::AnalysisComponent]
|
33880
33939
|
#
|
33940
|
+
# @!attribute [rw] component_account
|
33941
|
+
# The Amazon Web Services account for the component.
|
33942
|
+
# @return [String]
|
33943
|
+
#
|
33944
|
+
# @!attribute [rw] component_region
|
33945
|
+
# The Region for the component.
|
33946
|
+
# @return [String]
|
33947
|
+
#
|
33881
33948
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Explanation AWS API Documentation
|
33882
33949
|
#
|
33883
33950
|
class Explanation < Struct.new(
|
@@ -33929,7 +33996,9 @@ module Aws::EC2
|
|
33929
33996
|
:transit_gateway,
|
33930
33997
|
:transit_gateway_route_table,
|
33931
33998
|
:transit_gateway_route_table_route,
|
33932
|
-
:transit_gateway_attachment
|
33999
|
+
:transit_gateway_attachment,
|
34000
|
+
:component_account,
|
34001
|
+
:component_region)
|
33933
34002
|
SENSITIVE = []
|
33934
34003
|
include Aws::Structure
|
33935
34004
|
end
|
@@ -39800,11 +39869,12 @@ module Aws::EC2
|
|
39800
39869
|
# The license type to be used for the Amazon Machine Image (AMI) after
|
39801
39870
|
# importing.
|
39802
39871
|
#
|
39803
|
-
#
|
39804
|
-
#
|
39805
|
-
#
|
39806
|
-
#
|
39807
|
-
#
|
39872
|
+
# Specify `AWS` to replace the source-system license with an Amazon
|
39873
|
+
# Web Services license or `BYOL` to retain the source-system license.
|
39874
|
+
# Leaving this parameter undefined is the same as choosing `AWS` when
|
39875
|
+
# importing a Windows Server operating system, and the same as
|
39876
|
+
# choosing `BYOL` when importing a Windows client operating system
|
39877
|
+
# (such as Windows 10) or a Linux operating system.
|
39808
39878
|
#
|
39809
39879
|
# To use `BYOL`, you must have existing licenses with rights to use
|
39810
39880
|
# these licenses in a third party cloud, such as Amazon Web Services.
|
@@ -41976,11 +42046,11 @@ module Aws::EC2
|
|
41976
42046
|
# @return [String]
|
41977
42047
|
#
|
41978
42048
|
# @!attribute [rw] groups
|
41979
|
-
#
|
42049
|
+
# The security groups.
|
41980
42050
|
# @return [Array<Types::GroupIdentifier>]
|
41981
42051
|
#
|
41982
42052
|
# @!attribute [rw] ipv_6_addresses
|
41983
|
-
#
|
42053
|
+
# The IPv6 addresses associated with the network interface.
|
41984
42054
|
# @return [Array<Types::InstanceIpv6Address>]
|
41985
42055
|
#
|
41986
42056
|
# @!attribute [rw] mac_address
|
@@ -42005,8 +42075,7 @@ module Aws::EC2
|
|
42005
42075
|
# @return [String]
|
42006
42076
|
#
|
42007
42077
|
# @!attribute [rw] private_ip_addresses
|
42008
|
-
#
|
42009
|
-
# interface.
|
42078
|
+
# The private IPv4 addresses associated with the network interface.
|
42010
42079
|
# @return [Array<Types::InstancePrivateIpAddress>]
|
42011
42080
|
#
|
42012
42081
|
# @!attribute [rw] source_dest_check
|
@@ -42228,8 +42297,8 @@ module Aws::EC2
|
|
42228
42297
|
# @return [Integer]
|
42229
42298
|
#
|
42230
42299
|
# @!attribute [rw] ipv_6_addresses
|
42231
|
-
#
|
42232
|
-
#
|
42300
|
+
# The IPv6 addresses to assign to the network interface. You cannot
|
42301
|
+
# specify this option and the option to assign a number of IPv6
|
42233
42302
|
# addresses in the same request. You cannot specify this option if
|
42234
42303
|
# you've specified a minimum number of instances to launch.
|
42235
42304
|
# @return [Array<Types::InstanceIpv6Address>]
|
@@ -42253,10 +42322,10 @@ module Aws::EC2
|
|
42253
42322
|
# @return [String]
|
42254
42323
|
#
|
42255
42324
|
# @!attribute [rw] private_ip_addresses
|
42256
|
-
#
|
42257
|
-
#
|
42258
|
-
#
|
42259
|
-
#
|
42325
|
+
# The private IPv4 addresses to assign to the network interface. Only
|
42326
|
+
# one private IPv4 address can be designated as primary. You cannot
|
42327
|
+
# specify this option if you're launching more than one instance in a
|
42328
|
+
# [RunInstances][1] request.
|
42260
42329
|
#
|
42261
42330
|
#
|
42262
42331
|
#
|
@@ -42317,9 +42386,8 @@ module Aws::EC2
|
|
42317
42386
|
# @return [Integer]
|
42318
42387
|
#
|
42319
42388
|
# @!attribute [rw] ipv_4_prefixes
|
42320
|
-
#
|
42321
|
-
#
|
42322
|
-
# `Ipv4PrefixCount` option.
|
42389
|
+
# The IPv4 delegated prefixes to be assigned to the network interface.
|
42390
|
+
# You cannot use this option if you use the `Ipv4PrefixCount` option.
|
42323
42391
|
# @return [Array<Types::Ipv4PrefixSpecificationRequest>]
|
42324
42392
|
#
|
42325
42393
|
# @!attribute [rw] ipv_4_prefix_count
|
@@ -42329,9 +42397,8 @@ module Aws::EC2
|
|
42329
42397
|
# @return [Integer]
|
42330
42398
|
#
|
42331
42399
|
# @!attribute [rw] ipv_6_prefixes
|
42332
|
-
#
|
42333
|
-
#
|
42334
|
-
# `Ipv6PrefixCount` option.
|
42400
|
+
# The IPv6 delegated prefixes to be assigned to the network interface.
|
42401
|
+
# You cannot use this option if you use the `Ipv6PrefixCount` option.
|
42335
42402
|
# @return [Array<Types::Ipv6PrefixSpecificationRequest>]
|
42336
42403
|
#
|
42337
42404
|
# @!attribute [rw] ipv_6_prefix_count
|
@@ -42763,7 +42830,7 @@ module Aws::EC2
|
|
42763
42830
|
#
|
42764
42831
|
# * For instance types with Xilinx VU9P FPGAs, specify `vu9p`.
|
42765
42832
|
#
|
42766
|
-
# * For instance types with Amazon Web Services Inferentia
|
42833
|
+
# * For instance types with Amazon Web Services Inferentia chips,
|
42767
42834
|
# specify `inferentia`.
|
42768
42835
|
#
|
42769
42836
|
# * For instance types with NVIDIA GRID K520 GPUs, specify `k520`.
|
@@ -43171,7 +43238,7 @@ module Aws::EC2
|
|
43171
43238
|
#
|
43172
43239
|
# * For instance types with Xilinx VU9P FPGAs, specify ` vu9p`.
|
43173
43240
|
#
|
43174
|
-
# * For instance types with Amazon Web Services Inferentia
|
43241
|
+
# * For instance types with Amazon Web Services Inferentia chips,
|
43175
43242
|
# specify `inferentia`.
|
43176
43243
|
#
|
43177
43244
|
# * For instance types with NVIDIA GRID K520 GPUs, specify `k520`.
|
@@ -43319,6 +43386,12 @@ module Aws::EC2
|
|
43319
43386
|
# @return [Boolean]
|
43320
43387
|
#
|
43321
43388
|
# @!attribute [rw] exclude_data_volume_ids
|
43389
|
+
# The IDs of the data (non-root) volumes to exclude from the
|
43390
|
+
# multi-volume snapshot set. If you specify the ID of the root volume,
|
43391
|
+
# the request fails. To exclude the root volume, use
|
43392
|
+
# **ExcludeBootVolume**.
|
43393
|
+
#
|
43394
|
+
# You can specify up to 40 volume IDs per request.
|
43322
43395
|
# @return [Array<String>]
|
43323
43396
|
#
|
43324
43397
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceSpecification AWS API Documentation
|
@@ -44786,8 +44859,7 @@ module Aws::EC2
|
|
44786
44859
|
# interface.
|
44787
44860
|
#
|
44788
44861
|
# @!attribute [rw] ipv_4_prefix
|
44789
|
-
#
|
44790
|
-
# interface.
|
44862
|
+
# The IPv4 delegated prefixes assigned to the network interface.
|
44791
44863
|
# @return [String]
|
44792
44864
|
#
|
44793
44865
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipv4PrefixSpecificationResponse AWS API Documentation
|
@@ -44899,8 +44971,7 @@ module Aws::EC2
|
|
44899
44971
|
# interface.
|
44900
44972
|
#
|
44901
44973
|
# @!attribute [rw] ipv_6_prefix
|
44902
|
-
#
|
44903
|
-
# interface.
|
44974
|
+
# The IPv6 delegated prefixes assigned to the network interface.
|
44904
44975
|
# @return [String]
|
44905
44976
|
#
|
44906
44977
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipv6PrefixSpecificationResponse AWS API Documentation
|
@@ -49169,7 +49240,14 @@ module Aws::EC2
|
|
49169
49240
|
# @return [Types::AttributeBooleanValue]
|
49170
49241
|
#
|
49171
49242
|
# @!attribute [rw] attribute
|
49172
|
-
# The name of the attribute.
|
49243
|
+
# The name of the attribute to modify.
|
49244
|
+
#
|
49245
|
+
# You can modify the following attributes only:
|
49246
|
+
# `disableApiTermination` \| `instanceType` \| `kernel` \| `ramdisk`
|
49247
|
+
# \| `instanceInitiatedShutdownBehavior` \| `blockDeviceMapping` \|
|
49248
|
+
# `userData` \| `sourceDestCheck` \| `groupSet` \| `ebsOptimized` \|
|
49249
|
+
# `sriovNetSupport` \| `enaSupport` \| `nvmeSupport` \|
|
49250
|
+
# `disableApiStop` \| `enclaveOptions`
|
49173
49251
|
# @return [String]
|
49174
49252
|
#
|
49175
49253
|
# @!attribute [rw] block_device_mappings
|
@@ -51329,6 +51407,11 @@ module Aws::EC2
|
|
51329
51407
|
# A private Autonomous System Number (ASN) for the Amazon side of a
|
51330
51408
|
# BGP session. The range is 64512 to 65534 for 16-bit ASNs and
|
51331
51409
|
# 4200000000 to 4294967294 for 32-bit ASNs.
|
51410
|
+
#
|
51411
|
+
# The modify ASN operation is not allowed on a transit gateway with
|
51412
|
+
# active BGP sessions. You must first delete all transit gateway
|
51413
|
+
# attachments that have BGP configured prior to modifying the ASN on
|
51414
|
+
# the transit gateway.
|
51332
51415
|
# @return [Integer]
|
51333
51416
|
#
|
51334
51417
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyTransitGatewayOptions AWS API Documentation
|
@@ -52974,10 +53057,10 @@ module Aws::EC2
|
|
52974
53057
|
|
52975
53058
|
# Describes the status of a moving Elastic IP address.
|
52976
53059
|
#
|
52977
|
-
# <note markdown="1"> We are retiring EC2-Classic
|
52978
|
-
#
|
52979
|
-
#
|
52980
|
-
#
|
53060
|
+
# <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
|
53061
|
+
# EC2-Classic to a VPC. For more information, see [Migrate from
|
53062
|
+
# EC2-Classic to a VPC][1] in the *Amazon Elastic Compute Cloud User
|
53063
|
+
# Guide*.
|
52981
53064
|
#
|
52982
53065
|
# </note>
|
52983
53066
|
#
|
@@ -54405,6 +54488,14 @@ module Aws::EC2
|
|
54405
54488
|
# The route in a transit gateway route table.
|
54406
54489
|
# @return [Types::TransitGatewayRouteTableRoute]
|
54407
54490
|
#
|
54491
|
+
# @!attribute [rw] explanations
|
54492
|
+
# The explanation codes.
|
54493
|
+
# @return [Array<Types::Explanation>]
|
54494
|
+
#
|
54495
|
+
# @!attribute [rw] elastic_load_balancer_listener
|
54496
|
+
# The load balancer listener.
|
54497
|
+
# @return [Types::AnalysisComponent]
|
54498
|
+
#
|
54408
54499
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PathComponent AWS API Documentation
|
54409
54500
|
#
|
54410
54501
|
class PathComponent < Struct.new(
|
@@ -54422,7 +54513,9 @@ module Aws::EC2
|
|
54422
54513
|
:vpc,
|
54423
54514
|
:additional_details,
|
54424
54515
|
:transit_gateway,
|
54425
|
-
:transit_gateway_route_table_route
|
54516
|
+
:transit_gateway_route_table_route,
|
54517
|
+
:explanations,
|
54518
|
+
:elastic_load_balancer_listener)
|
54426
54519
|
SENSITIVE = []
|
54427
54520
|
include Aws::Structure
|
54428
54521
|
end
|
@@ -55480,7 +55573,7 @@ module Aws::EC2
|
|
55480
55573
|
# @return [Boolean]
|
55481
55574
|
#
|
55482
55575
|
# @!attribute [rw] private_ip_address
|
55483
|
-
# The private IPv4
|
55576
|
+
# The private IPv4 address.
|
55484
55577
|
# @return [String]
|
55485
55578
|
#
|
55486
55579
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PrivateIpAddressSpecification AWS API Documentation
|
@@ -58012,7 +58105,7 @@ module Aws::EC2
|
|
58012
58105
|
# The instance type. For more information, see [Instance types][1] in
|
58013
58106
|
# the *Amazon Elastic Compute Cloud User Guide*.
|
58014
58107
|
#
|
58015
|
-
# If you specify `
|
58108
|
+
# If you specify `InstanceType`, you can't specify
|
58016
58109
|
# `InstanceRequirements`.
|
58017
58110
|
#
|
58018
58111
|
#
|
@@ -60781,7 +60874,8 @@ module Aws::EC2
|
|
60781
60874
|
# @!attribute [rw] group_name
|
60782
60875
|
# \[EC2-Classic, default VPC\] The name of the security group. You
|
60783
60876
|
# must specify either the security group ID or the security group name
|
60784
|
-
# in the request.
|
60877
|
+
# in the request. For security groups in a nondefault VPC, you must
|
60878
|
+
# specify the security group ID.
|
60785
60879
|
# @return [String]
|
60786
60880
|
#
|
60787
60881
|
# @!attribute [rw] ip_permissions
|
@@ -69276,7 +69370,7 @@ module Aws::EC2
|
|
69276
69370
|
# @return [Array<String>]
|
69277
69371
|
#
|
69278
69372
|
# @!attribute [rw] ipv_6_prefixes
|
69279
|
-
#
|
69373
|
+
# The IPv6 prefixes to unassign from the network interface.
|
69280
69374
|
# @return [Array<String>]
|
69281
69375
|
#
|
69282
69376
|
# @!attribute [rw] network_interface_id
|
@@ -69648,7 +69742,8 @@ module Aws::EC2
|
|
69648
69742
|
# @!attribute [rw] group_name
|
69649
69743
|
# \[EC2-Classic, default VPC\] The name of the security group. You
|
69650
69744
|
# must specify either the security group ID or the security group name
|
69651
|
-
# in the request.
|
69745
|
+
# in the request. For security groups in a nondefault VPC, you must
|
69746
|
+
# specify the security group ID.
|
69652
69747
|
# @return [String]
|
69653
69748
|
#
|
69654
69749
|
# @!attribute [rw] ip_permissions
|
@@ -69757,10 +69852,10 @@ module Aws::EC2
|
|
69757
69852
|
|
69758
69853
|
# Describes a security group and Amazon Web Services account ID pair.
|
69759
69854
|
#
|
69760
|
-
# <note markdown="1"> We are retiring EC2-Classic
|
69761
|
-
#
|
69762
|
-
#
|
69763
|
-
#
|
69855
|
+
# <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
|
69856
|
+
# EC2-Classic to a VPC. For more information, see [Migrate from
|
69857
|
+
# EC2-Classic to a VPC][1] in the *Amazon Elastic Compute Cloud User
|
69858
|
+
# Guide*.
|
69764
69859
|
#
|
69765
69860
|
# </note>
|
69766
69861
|
#
|