aws-sdk-ec2 1.336.0 → 1.338.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
@@ -1640,9 +1642,9 @@ module Aws::EC2
1640
1642
  # @return [Integer]
1641
1643
  #
1642
1644
  # @!attribute [rw] ipv_6_addresses
1643
- # One or more specific IPv6 addresses to be assigned to the network
1644
- # interface. You can't use this option if you're specifying a number
1645
- # of IPv6 addresses.
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.
1646
1648
  # @return [Array<String>]
1647
1649
  #
1648
1650
  # @!attribute [rw] ipv_6_prefix_count
@@ -1721,9 +1723,9 @@ module Aws::EC2
1721
1723
  # @return [String]
1722
1724
  #
1723
1725
  # @!attribute [rw] private_ip_addresses
1724
- # One or more IP addresses to be assigned as a secondary private IP
1725
- # address to the network interface. You can't specify this parameter
1726
- # when also specifying a number of secondary IP addresses.
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.
1727
1729
  #
1728
1730
  # If you don't specify an IP address, Amazon EC2 automatically
1729
1731
  # selects an IP address within the subnet range.
@@ -3377,7 +3379,8 @@ module Aws::EC2
3377
3379
  # @!attribute [rw] group_name
3378
3380
  # \[EC2-Classic, default VPC\] The name of the security group. You
3379
3381
  # must specify either the security group ID or the security group name
3380
- # in the request.
3382
+ # in the request. For security groups in a nondefault VPC, you must
3383
+ # specify the security group ID.
3381
3384
  # @return [String]
3382
3385
  #
3383
3386
  # @!attribute [rw] ip_permissions
@@ -8136,6 +8139,7 @@ module Aws::EC2
8136
8139
  # max: 1,
8137
8140
  # },
8138
8141
  # },
8142
+ # image_id: "ImageId",
8139
8143
  # },
8140
8144
  # ],
8141
8145
  # },
@@ -10951,8 +10955,6 @@ module Aws::EC2
10951
10955
  include Aws::Structure
10952
10956
  end
10953
10957
 
10954
- # Contains the parameters for CreateNetworkInterface.
10955
- #
10956
10958
  # @note When making an API call, you may pass CreateNetworkInterfaceRequest
10957
10959
  # data as a hash:
10958
10960
  #
@@ -11020,16 +11022,23 @@ module Aws::EC2
11020
11022
  # @!attribute [rw] ipv_6_address_count
11021
11023
  # The number of IPv6 addresses to assign to a network interface.
11022
11024
  # Amazon EC2 automatically selects the IPv6 addresses from the subnet
11023
- # range. You can't use this option if specifying specific IPv6
11024
- # addresses. If your subnet has the `AssignIpv6AddressOnCreation`
11025
- # attribute set to `true`, you can specify `0` to override this
11026
- # setting.
11025
+ # range.
11026
+ #
11027
+ # You can't specify a count of IPv6 addresses using this parameter if
11028
+ # you've specified one of the following: specific IPv6 addresses,
11029
+ # specific IPv6 prefixes, or a count of IPv6 prefixes.
11030
+ #
11031
+ # If your subnet has the `AssignIpv6AddressOnCreation` attribute set,
11032
+ # you can override that setting by specifying 0 as the IPv6 address
11033
+ # count.
11027
11034
  # @return [Integer]
11028
11035
  #
11029
11036
  # @!attribute [rw] ipv_6_addresses
11030
- # One or more specific IPv6 addresses from the IPv6 CIDR block range
11031
- # of your subnet. You can't use this option if you're specifying a
11032
- # number of IPv6 addresses.
11037
+ # The IPv6 addresses from the IPv6 CIDR block range of your subnet.
11038
+ #
11039
+ # You can't specify IPv6 addresses using this parameter if you've
11040
+ # specified one of the following: a count of IPv6 addresses, specific
11041
+ # IPv6 prefixes, or a count of IPv6 prefixes.
11033
11042
  # @return [Array<Types::InstanceIpv6Address>]
11034
11043
  #
11035
11044
  # @!attribute [rw] private_ip_address
@@ -11041,7 +11050,11 @@ module Aws::EC2
11041
11050
  # @return [String]
11042
11051
  #
11043
11052
  # @!attribute [rw] private_ip_addresses
11044
- # One or more private IPv4 addresses.
11053
+ # The private IPv4 addresses.
11054
+ #
11055
+ # You can't specify private IPv4 addresses if you've specified one
11056
+ # of the following: a count of private IPv4 addresses, specific IPv4
11057
+ # prefixes, or a count of IPv4 prefixes.
11045
11058
  # @return [Array<Types::PrivateIpAddressSpecification>]
11046
11059
  #
11047
11060
  # @!attribute [rw] secondary_private_ip_address_count
@@ -11051,36 +11064,43 @@ module Aws::EC2
11051
11064
  # subnet's IPv4 CIDR range. You can't specify this option and
11052
11065
  # specify more than one private IP address using `privateIpAddresses`.
11053
11066
  #
11054
- # The number of IP addresses you can assign to a network interface
11055
- # varies by instance type. For more information, see [IP Addresses Per
11056
- # ENI Per Instance Type][1] in the *Amazon Virtual Private Cloud User
11057
- # Guide*.
11058
- #
11059
- #
11060
- #
11061
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html#AvailableIpPerENI
11067
+ # You can't specify a count of private IPv4 addresses if you've
11068
+ # specified one of the following: specific private IPv4 addresses,
11069
+ # specific IPv4 prefixes, or a count of IPv4 prefixes.
11062
11070
  # @return [Integer]
11063
11071
  #
11064
11072
  # @!attribute [rw] ipv_4_prefixes
11065
- # One or more IPv4 prefixes assigned to the network interface. You
11066
- # cannot use this option if you use the `Ipv4PrefixCount` option.
11073
+ # The IPv4 prefixes assigned to the network interface.
11074
+ #
11075
+ # You can't specify IPv4 prefixes if you've specified one of the
11076
+ # following: a count of IPv4 prefixes, specific private IPv4
11077
+ # addresses, or a count of private IPv4 addresses.
11067
11078
  # @return [Array<Types::Ipv4PrefixSpecificationRequest>]
11068
11079
  #
11069
11080
  # @!attribute [rw] ipv_4_prefix_count
11070
11081
  # The number of IPv4 prefixes that Amazon Web Services automatically
11071
- # assigns to the network interface. You cannot use this option if you
11072
- # use the `Ipv4 Prefixes` option.
11082
+ # assigns to the network interface.
11083
+ #
11084
+ # You can't specify a count of IPv4 prefixes if you've specified one
11085
+ # of the following: specific IPv4 prefixes, specific private IPv4
11086
+ # addresses, or a count of private IPv4 addresses.
11073
11087
  # @return [Integer]
11074
11088
  #
11075
11089
  # @!attribute [rw] ipv_6_prefixes
11076
- # One or more IPv6 prefixes assigned to the network interface. You
11077
- # cannot use this option if you use the `Ipv6PrefixCount` option.
11090
+ # The IPv6 prefixes assigned to the network interface.
11091
+ #
11092
+ # You can't specify IPv6 prefixes if you've specified one of the
11093
+ # following: a count of IPv6 prefixes, specific IPv6 addresses, or a
11094
+ # count of IPv6 addresses.
11078
11095
  # @return [Array<Types::Ipv6PrefixSpecificationRequest>]
11079
11096
  #
11080
11097
  # @!attribute [rw] ipv_6_prefix_count
11081
11098
  # The number of IPv6 prefixes that Amazon Web Services automatically
11082
- # assigns to the network interface. You cannot use this option if you
11083
- # use the `Ipv6Prefixes` option.
11099
+ # assigns to the network interface.
11100
+ #
11101
+ # You can't specify a count of IPv6 prefixes if you've specified one
11102
+ # of the following: specific IPv6 prefixes, specific IPv6 addresses,
11103
+ # or a count of IPv6 addresses.
11084
11104
  # @return [Integer]
11085
11105
  #
11086
11106
  # @!attribute [rw] interface_type
@@ -11133,8 +11153,6 @@ module Aws::EC2
11133
11153
  include Aws::Structure
11134
11154
  end
11135
11155
 
11136
- # Contains the output of CreateNetworkInterface.
11137
- #
11138
11156
  # @!attribute [rw] network_interface
11139
11157
  # Information about the network interface.
11140
11158
  # @return [Types::NetworkInterface]
@@ -16614,7 +16632,9 @@ module Aws::EC2
16614
16632
  #
16615
16633
  # @!attribute [rw] group_name
16616
16634
  # \[EC2-Classic, default VPC\] The name of the security group. You can
16617
- # specify either the security group name or the security group ID.
16635
+ # specify either the security group name or the security group ID. For
16636
+ # security groups in a nondefault VPC, you must specify the security
16637
+ # group ID.
16618
16638
  # @return [String]
16619
16639
  #
16620
16640
  # @!attribute [rw] dry_run
@@ -21470,13 +21490,12 @@ module Aws::EC2
21470
21490
  # @return [Array<String>]
21471
21491
  #
21472
21492
  # @!attribute [rw] include_deprecated
21473
- # If `true`, all deprecated AMIs are included in the response. If
21474
- # `false`, no deprecated AMIs are included in the response. If no
21475
- # value is specified, the default value is `false`.
21493
+ # Specifies whether to include deprecated AMIs.
21494
+ #
21495
+ # Default: No deprecated AMIs are included in the response.
21476
21496
  #
21477
21497
  # <note markdown="1"> If you are the AMI owner, all deprecated AMIs appear in the response
21478
- # regardless of the value (`true` or `false`) that you set for this
21479
- # parameter.
21498
+ # regardless of what you specify for this parameter.
21480
21499
  #
21481
21500
  # </note>
21482
21501
  # @return [Boolean]
@@ -24759,7 +24778,7 @@ module Aws::EC2
24759
24778
  # }
24760
24779
  #
24761
24780
  # @!attribute [rw] network_interface_permission_ids
24762
- # One or more network interface permission IDs.
24781
+ # The network interface permission IDs.
24763
24782
  # @return [Array<String>]
24764
24783
  #
24765
24784
  # @!attribute [rw] filters
@@ -24968,7 +24987,7 @@ module Aws::EC2
24968
24987
  # @return [Boolean]
24969
24988
  #
24970
24989
  # @!attribute [rw] network_interface_ids
24971
- # One or more network interface IDs.
24990
+ # The network interface IDs.
24972
24991
  #
24973
24992
  # Default: Describes all your network interfaces.
24974
24993
  # @return [Array<String>]
@@ -35101,6 +35120,7 @@ module Aws::EC2
35101
35120
  # max: 1,
35102
35121
  # },
35103
35122
  # },
35123
+ # image_id: "ImageId",
35104
35124
  # },
35105
35125
  # ],
35106
35126
  # }
@@ -35194,6 +35214,11 @@ module Aws::EC2
35194
35214
  # </note>
35195
35215
  # @return [Types::InstanceRequirements]
35196
35216
  #
35217
+ # @!attribute [rw] image_id
35218
+ # The ID of the AMI. An AMI is required to launch an instance. The AMI
35219
+ # ID must be specified here or in the launch template.
35220
+ # @return [String]
35221
+ #
35197
35222
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FleetLaunchTemplateOverrides AWS API Documentation
35198
35223
  #
35199
35224
  class FleetLaunchTemplateOverrides < Struct.new(
@@ -35204,7 +35229,8 @@ module Aws::EC2
35204
35229
  :weighted_capacity,
35205
35230
  :priority,
35206
35231
  :placement,
35207
- :instance_requirements)
35232
+ :instance_requirements,
35233
+ :image_id)
35208
35234
  SENSITIVE = []
35209
35235
  include Aws::Structure
35210
35236
  end
@@ -35278,6 +35304,7 @@ module Aws::EC2
35278
35304
  # max: 1,
35279
35305
  # },
35280
35306
  # },
35307
+ # image_id: "ImageId",
35281
35308
  # }
35282
35309
  #
35283
35310
  # @!attribute [rw] instance_type
@@ -35348,6 +35375,11 @@ module Aws::EC2
35348
35375
  # </note>
35349
35376
  # @return [Types::InstanceRequirementsRequest]
35350
35377
  #
35378
+ # @!attribute [rw] image_id
35379
+ # The ID of the AMI. An AMI is required to launch an instance. The AMI
35380
+ # ID must be specified here or in the launch template.
35381
+ # @return [String]
35382
+ #
35351
35383
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FleetLaunchTemplateOverridesRequest AWS API Documentation
35352
35384
  #
35353
35385
  class FleetLaunchTemplateOverridesRequest < Struct.new(
@@ -35358,7 +35390,8 @@ module Aws::EC2
35358
35390
  :weighted_capacity,
35359
35391
  :priority,
35360
35392
  :placement,
35361
- :instance_requirements)
35393
+ :instance_requirements,
35394
+ :image_id)
35362
35395
  SENSITIVE = []
35363
35396
  include Aws::Structure
35364
35397
  end
@@ -39851,11 +39884,12 @@ module Aws::EC2
39851
39884
  # The license type to be used for the Amazon Machine Image (AMI) after
39852
39885
  # importing.
39853
39886
  #
39854
- # By default, we detect the source-system operating system (OS) and
39855
- # apply the appropriate license. Specify `AWS` to replace the
39856
- # source-system license with an Amazon Web Services license, if
39857
- # appropriate. Specify `BYOL` to retain the source-system license, if
39858
- # appropriate.
39887
+ # Specify `AWS` to replace the source-system license with an Amazon
39888
+ # Web Services license or `BYOL` to retain the source-system license.
39889
+ # Leaving this parameter undefined is the same as choosing `AWS` when
39890
+ # importing a Windows Server operating system, and the same as
39891
+ # choosing `BYOL` when importing a Windows client operating system
39892
+ # (such as Windows 10) or a Linux operating system.
39859
39893
  #
39860
39894
  # To use `BYOL`, you must have existing licenses with rights to use
39861
39895
  # these licenses in a third party cloud, such as Amazon Web Services.
@@ -42027,11 +42061,11 @@ module Aws::EC2
42027
42061
  # @return [String]
42028
42062
  #
42029
42063
  # @!attribute [rw] groups
42030
- # One or more security groups.
42064
+ # The security groups.
42031
42065
  # @return [Array<Types::GroupIdentifier>]
42032
42066
  #
42033
42067
  # @!attribute [rw] ipv_6_addresses
42034
- # One or more IPv6 addresses associated with the network interface.
42068
+ # The IPv6 addresses associated with the network interface.
42035
42069
  # @return [Array<Types::InstanceIpv6Address>]
42036
42070
  #
42037
42071
  # @!attribute [rw] mac_address
@@ -42056,8 +42090,7 @@ module Aws::EC2
42056
42090
  # @return [String]
42057
42091
  #
42058
42092
  # @!attribute [rw] private_ip_addresses
42059
- # One or more private IPv4 addresses associated with the network
42060
- # interface.
42093
+ # The private IPv4 addresses associated with the network interface.
42061
42094
  # @return [Array<Types::InstancePrivateIpAddress>]
42062
42095
  #
42063
42096
  # @!attribute [rw] source_dest_check
@@ -42279,8 +42312,8 @@ module Aws::EC2
42279
42312
  # @return [Integer]
42280
42313
  #
42281
42314
  # @!attribute [rw] ipv_6_addresses
42282
- # One or more IPv6 addresses to assign to the network interface. You
42283
- # cannot specify this option and the option to assign a number of IPv6
42315
+ # The IPv6 addresses to assign to the network interface. You cannot
42316
+ # specify this option and the option to assign a number of IPv6
42284
42317
  # addresses in the same request. You cannot specify this option if
42285
42318
  # you've specified a minimum number of instances to launch.
42286
42319
  # @return [Array<Types::InstanceIpv6Address>]
@@ -42304,10 +42337,10 @@ module Aws::EC2
42304
42337
  # @return [String]
42305
42338
  #
42306
42339
  # @!attribute [rw] private_ip_addresses
42307
- # One or more private IPv4 addresses to assign to the network
42308
- # interface. Only one private IPv4 address can be designated as
42309
- # primary. You cannot specify this option if you're launching more
42310
- # than one instance in a [RunInstances][1] request.
42340
+ # The private IPv4 addresses to assign to the network interface. Only
42341
+ # one private IPv4 address can be designated as primary. You cannot
42342
+ # specify this option if you're launching more than one instance in a
42343
+ # [RunInstances][1] request.
42311
42344
  #
42312
42345
  #
42313
42346
  #
@@ -42368,9 +42401,8 @@ module Aws::EC2
42368
42401
  # @return [Integer]
42369
42402
  #
42370
42403
  # @!attribute [rw] ipv_4_prefixes
42371
- # One or more IPv4 delegated prefixes to be assigned to the network
42372
- # interface. You cannot use this option if you use the
42373
- # `Ipv4PrefixCount` option.
42404
+ # The IPv4 delegated prefixes to be assigned to the network interface.
42405
+ # You cannot use this option if you use the `Ipv4PrefixCount` option.
42374
42406
  # @return [Array<Types::Ipv4PrefixSpecificationRequest>]
42375
42407
  #
42376
42408
  # @!attribute [rw] ipv_4_prefix_count
@@ -42380,9 +42412,8 @@ module Aws::EC2
42380
42412
  # @return [Integer]
42381
42413
  #
42382
42414
  # @!attribute [rw] ipv_6_prefixes
42383
- # One or more IPv6 delegated prefixes to be assigned to the network
42384
- # interface. You cannot use this option if you use the
42385
- # `Ipv6PrefixCount` option.
42415
+ # The IPv6 delegated prefixes to be assigned to the network interface.
42416
+ # You cannot use this option if you use the `Ipv6PrefixCount` option.
42386
42417
  # @return [Array<Types::Ipv6PrefixSpecificationRequest>]
42387
42418
  #
42388
42419
  # @!attribute [rw] ipv_6_prefix_count
@@ -42814,7 +42845,7 @@ module Aws::EC2
42814
42845
  #
42815
42846
  # * For instance types with Xilinx VU9P FPGAs, specify `vu9p`.
42816
42847
  #
42817
- # * For instance types with Amazon Web Services Inferentia GPUs,
42848
+ # * For instance types with Amazon Web Services Inferentia chips,
42818
42849
  # specify `inferentia`.
42819
42850
  #
42820
42851
  # * For instance types with NVIDIA GRID K520 GPUs, specify `k520`.
@@ -43222,7 +43253,7 @@ module Aws::EC2
43222
43253
  #
43223
43254
  # * For instance types with Xilinx VU9P FPGAs, specify ` vu9p`.
43224
43255
  #
43225
- # * For instance types with Amazon Web Services Inferentia GPUs,
43256
+ # * For instance types with Amazon Web Services Inferentia chips,
43226
43257
  # specify `inferentia`.
43227
43258
  #
43228
43259
  # * For instance types with NVIDIA GRID K520 GPUs, specify `k520`.
@@ -43370,6 +43401,12 @@ module Aws::EC2
43370
43401
  # @return [Boolean]
43371
43402
  #
43372
43403
  # @!attribute [rw] exclude_data_volume_ids
43404
+ # The IDs of the data (non-root) volumes to exclude from the
43405
+ # multi-volume snapshot set. If you specify the ID of the root volume,
43406
+ # the request fails. To exclude the root volume, use
43407
+ # **ExcludeBootVolume**.
43408
+ #
43409
+ # You can specify up to 40 volume IDs per request.
43373
43410
  # @return [Array<String>]
43374
43411
  #
43375
43412
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceSpecification AWS API Documentation
@@ -44837,8 +44874,7 @@ module Aws::EC2
44837
44874
  # interface.
44838
44875
  #
44839
44876
  # @!attribute [rw] ipv_4_prefix
44840
- # One or more IPv4 delegated prefixes assigned to the network
44841
- # interface.
44877
+ # The IPv4 delegated prefixes assigned to the network interface.
44842
44878
  # @return [String]
44843
44879
  #
44844
44880
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipv4PrefixSpecificationResponse AWS API Documentation
@@ -44950,8 +44986,7 @@ module Aws::EC2
44950
44986
  # interface.
44951
44987
  #
44952
44988
  # @!attribute [rw] ipv_6_prefix
44953
- # One or more IPv6 delegated prefixes assigned to the network
44954
- # interface.
44989
+ # The IPv6 delegated prefixes assigned to the network interface.
44955
44990
  # @return [String]
44956
44991
  #
44957
44992
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipv6PrefixSpecificationResponse AWS API Documentation
@@ -48707,6 +48742,7 @@ module Aws::EC2
48707
48742
  # max: 1,
48708
48743
  # },
48709
48744
  # },
48745
+ # image_id: "ImageId",
48710
48746
  # },
48711
48747
  # ],
48712
48748
  # },
@@ -49220,7 +49256,14 @@ module Aws::EC2
49220
49256
  # @return [Types::AttributeBooleanValue]
49221
49257
  #
49222
49258
  # @!attribute [rw] attribute
49223
- # The name of the attribute.
49259
+ # The name of the attribute to modify.
49260
+ #
49261
+ # You can modify the following attributes only:
49262
+ # `disableApiTermination` \| `instanceType` \| `kernel` \| `ramdisk`
49263
+ # \| `instanceInitiatedShutdownBehavior` \| `blockDeviceMapping` \|
49264
+ # `userData` \| `sourceDestCheck` \| `groupSet` \| `ebsOptimized` \|
49265
+ # `sriovNetSupport` \| `enaSupport` \| `nvmeSupport` \|
49266
+ # `disableApiStop` \| `enclaveOptions`
49224
49267
  # @return [String]
49225
49268
  #
49226
49269
  # @!attribute [rw] block_device_mappings
@@ -51380,6 +51423,11 @@ module Aws::EC2
51380
51423
  # A private Autonomous System Number (ASN) for the Amazon side of a
51381
51424
  # BGP session. The range is 64512 to 65534 for 16-bit ASNs and
51382
51425
  # 4200000000 to 4294967294 for 32-bit ASNs.
51426
+ #
51427
+ # The modify ASN operation is not allowed on a transit gateway with
51428
+ # active BGP sessions. You must first delete all transit gateway
51429
+ # attachments that have BGP configured prior to modifying the ASN on
51430
+ # the transit gateway.
51383
51431
  # @return [Integer]
51384
51432
  #
51385
51433
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyTransitGatewayOptions AWS API Documentation
@@ -53025,10 +53073,10 @@ module Aws::EC2
53025
53073
 
53026
53074
  # Describes the status of a moving Elastic IP address.
53027
53075
  #
53028
- # <note markdown="1"> We are retiring EC2-Classic on August 15, 2022. We recommend that you
53029
- # migrate from EC2-Classic to a VPC. For more information, see [Migrate
53030
- # from EC2-Classic to a VPC][1] in the *Amazon Elastic Compute Cloud
53031
- # User Guide*.
53076
+ # <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
53077
+ # EC2-Classic to a VPC. For more information, see [Migrate from
53078
+ # EC2-Classic to a VPC][1] in the *Amazon Elastic Compute Cloud User
53079
+ # Guide*.
53032
53080
  #
53033
53081
  # </note>
53034
53082
  #
@@ -55541,7 +55589,7 @@ module Aws::EC2
55541
55589
  # @return [Boolean]
55542
55590
  #
55543
55591
  # @!attribute [rw] private_ip_address
55544
- # The private IPv4 addresses.
55592
+ # The private IPv4 address.
55545
55593
  # @return [String]
55546
55594
  #
55547
55595
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PrivateIpAddressSpecification AWS API Documentation
@@ -58073,7 +58121,7 @@ module Aws::EC2
58073
58121
  # The instance type. For more information, see [Instance types][1] in
58074
58122
  # the *Amazon Elastic Compute Cloud User Guide*.
58075
58123
  #
58076
- # If you specify `InstanceTypes`, you can't specify
58124
+ # If you specify `InstanceType`, you can't specify
58077
58125
  # `InstanceRequirements`.
58078
58126
  #
58079
58127
  #
@@ -60842,7 +60890,8 @@ module Aws::EC2
60842
60890
  # @!attribute [rw] group_name
60843
60891
  # \[EC2-Classic, default VPC\] The name of the security group. You
60844
60892
  # must specify either the security group ID or the security group name
60845
- # in the request.
60893
+ # in the request. For security groups in a nondefault VPC, you must
60894
+ # specify the security group ID.
60846
60895
  # @return [String]
60847
60896
  #
60848
60897
  # @!attribute [rw] ip_permissions
@@ -69337,7 +69386,7 @@ module Aws::EC2
69337
69386
  # @return [Array<String>]
69338
69387
  #
69339
69388
  # @!attribute [rw] ipv_6_prefixes
69340
- # One or more IPv6 prefixes to unassign from the network interface.
69389
+ # The IPv6 prefixes to unassign from the network interface.
69341
69390
  # @return [Array<String>]
69342
69391
  #
69343
69392
  # @!attribute [rw] network_interface_id
@@ -69709,7 +69758,8 @@ module Aws::EC2
69709
69758
  # @!attribute [rw] group_name
69710
69759
  # \[EC2-Classic, default VPC\] The name of the security group. You
69711
69760
  # must specify either the security group ID or the security group name
69712
- # in the request.
69761
+ # in the request. For security groups in a nondefault VPC, you must
69762
+ # specify the security group ID.
69713
69763
  # @return [String]
69714
69764
  #
69715
69765
  # @!attribute [rw] ip_permissions
@@ -69818,10 +69868,10 @@ module Aws::EC2
69818
69868
 
69819
69869
  # Describes a security group and Amazon Web Services account ID pair.
69820
69870
  #
69821
- # <note markdown="1"> We are retiring EC2-Classic on August 15, 2022. We recommend that you
69822
- # migrate from EC2-Classic to a VPC. For more information, see [Migrate
69823
- # from EC2-Classic to a VPC][1] in the *Amazon Elastic Compute Cloud
69824
- # User Guide*.
69871
+ # <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
69872
+ # EC2-Classic to a VPC. For more information, see [Migrate from
69873
+ # EC2-Classic to a VPC][1] in the *Amazon Elastic Compute Cloud User
69874
+ # Guide*.
69825
69875
  #
69826
69876
  # </note>
69827
69877
  #
@@ -1563,7 +1563,7 @@ module Aws::EC2
1563
1563
  # If you have the required permissions, the error response is
1564
1564
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
1565
1565
  # @option options [Array<String>] :network_interface_ids
1566
- # One or more network interface IDs.
1566
+ # The network interface IDs.
1567
1567
  #
1568
1568
  # Default: Describes all your network interfaces.
1569
1569
  # @return [NetworkInterface::Collection]
data/lib/aws-sdk-ec2.rb CHANGED
@@ -72,6 +72,6 @@ require_relative 'aws-sdk-ec2/customizations'
72
72
  # @!group service
73
73
  module Aws::EC2
74
74
 
75
- GEM_VERSION = '1.336.0'
75
+ GEM_VERSION = '1.338.0'
76
76
 
77
77
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ec2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.336.0
4
+ version: 1.338.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-09-20 00:00:00.000000000 Z
11
+ date: 2022-09-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4