aws-sdk-ec2 1.260.0 → 1.261.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3f188a7d3e0249b9d840c0bd2fcc9119e8b86f5906365494f180f8326ef9dc77
4
- data.tar.gz: 54102ac98975c07a8c7f864c0409b034cfe155718cfdf3ea3cc68305e92607c2
3
+ metadata.gz: f960da62a1d4dfbacf54af9d9eca7b8070094751df71cf502229b54c18038e10
4
+ data.tar.gz: 2fe535c10a6028802f2f16bbb0185c33bacaeb1a1d7a3c6f99a58d585e1f17c1
5
5
  SHA512:
6
- metadata.gz: 886876eb6cf71976077aacee755180ea1568751ee008e2c5ed38c8c82c25bac8c270704a353aa2958cececfdf95abba71cf560c0e3117eaacb3be3c78fb30684
7
- data.tar.gz: ccb8210ddbae6f6d5dbb769ff2f977a8adacaa13c71d77404c8351f7fd2e3c49b22728e11716c8951854cbf2270f479662261052071d333c9279612ecd55321d
6
+ metadata.gz: 94480c89036f5a1ca2433f4f9ab9ab1311937f7e183d3605d19b9d875b6a9f858bdbab3d8698f814a71e9bde0dc65af6ec3d41d997c3311d7b289e85348fedc2
7
+ data.tar.gz: fc2df9c40a8aca3c11968d6aeb78d68ab8a6b2a8634554feea05d3bc1c46afd65f269157dc05f960c91316dd782e37ec0f1d5a84b8492e8d2cc612e65fcbe9ea
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.261.0 (2021-09-01)
5
+ ------------------
6
+
7
+ * Feature - Added LaunchTemplate support for the IMDS IPv6 endpoint
8
+
4
9
  1.260.0 (2021-08-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.260.0
1
+ 1.261.0
@@ -6361,6 +6361,7 @@ module Aws::EC2
6361
6361
  # http_tokens: "optional", # accepts optional, required
6362
6362
  # http_put_response_hop_limit: 1,
6363
6363
  # http_endpoint: "disabled", # accepts disabled, enabled
6364
+ # http_protocol_ipv_6: "disabled", # accepts disabled, enabled
6364
6365
  # },
6365
6366
  # enclave_options: {
6366
6367
  # enabled: false,
@@ -6659,6 +6660,7 @@ module Aws::EC2
6659
6660
  # http_tokens: "optional", # accepts optional, required
6660
6661
  # http_put_response_hop_limit: 1,
6661
6662
  # http_endpoint: "disabled", # accepts disabled, enabled
6663
+ # http_protocol_ipv_6: "disabled", # accepts disabled, enabled
6662
6664
  # },
6663
6665
  # enclave_options: {
6664
6666
  # enabled: false,
@@ -6766,6 +6768,7 @@ module Aws::EC2
6766
6768
  # resp.launch_template_version.launch_template_data.metadata_options.http_tokens #=> String, one of "optional", "required"
6767
6769
  # resp.launch_template_version.launch_template_data.metadata_options.http_put_response_hop_limit #=> Integer
6768
6770
  # resp.launch_template_version.launch_template_data.metadata_options.http_endpoint #=> String, one of "disabled", "enabled"
6771
+ # resp.launch_template_version.launch_template_data.metadata_options.http_protocol_ipv_6 #=> String, one of "disabled", "enabled"
6769
6772
  # resp.launch_template_version.launch_template_data.enclave_options.enabled #=> Boolean
6770
6773
  # resp.warning.errors #=> Array
6771
6774
  # resp.warning.errors[0].code #=> String
@@ -10812,12 +10815,6 @@ module Aws::EC2
10812
10815
  # [3]: https://docs.aws.amazon.com/vpc/latest/userguide/VPC_DHCP_Options.html
10813
10816
  # [4]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/dedicated-instance.html
10814
10817
  #
10815
- # @option params [required, String] :cidr_block
10816
- # The IPv4 network range for the VPC, in CIDR notation. For example,
10817
- # `10.0.0.0/16`. We modify the specified CIDR block to its canonical
10818
- # form; for example, if you specify `100.68.0.18/18`, we modify it to
10819
- # `100.68.0.0/18`.
10820
- #
10821
10818
  # @option params [Boolean] :amazon_provided_ipv_6_cidr_block
10822
10819
  # Requests an Amazon-provided IPv6 CIDR block with a /56 prefix length
10823
10820
  # for the VPC. You cannot specify the range of IP addresses, or the size
@@ -10862,6 +10859,12 @@ module Aws::EC2
10862
10859
  # @option params [Array<Types::TagSpecification>] :tag_specifications
10863
10860
  # The tags to assign to the VPC.
10864
10861
  #
10862
+ # @option params [required, String] :cidr_block
10863
+ # The IPv4 network range for the VPC, in CIDR notation. For example,
10864
+ # `10.0.0.0/16`. We modify the specified CIDR block to its canonical
10865
+ # form; for example, if you specify `100.68.0.18/18`, we modify it to
10866
+ # `100.68.0.0/18`.
10867
+ #
10865
10868
  # @return [Types::CreateVpcResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10866
10869
  #
10867
10870
  # * {Types::CreateVpcResult#vpc #vpc} => Types::Vpc
@@ -10889,7 +10892,6 @@ module Aws::EC2
10889
10892
  # @example Request syntax with placeholder values
10890
10893
  #
10891
10894
  # resp = client.create_vpc({
10892
- # cidr_block: "String", # required
10893
10895
  # amazon_provided_ipv_6_cidr_block: false,
10894
10896
  # ipv_6_pool: "Ipv6PoolEc2Id",
10895
10897
  # ipv_6_cidr_block: "String",
@@ -10907,6 +10909,7 @@ module Aws::EC2
10907
10909
  # ],
10908
10910
  # },
10909
10911
  # ],
10912
+ # cidr_block: "String", # required
10910
10913
  # })
10911
10914
  #
10912
10915
  # @example Response structure
@@ -20564,6 +20567,7 @@ module Aws::EC2
20564
20567
  # resp.launch_template_versions[0].launch_template_data.metadata_options.http_tokens #=> String, one of "optional", "required"
20565
20568
  # resp.launch_template_versions[0].launch_template_data.metadata_options.http_put_response_hop_limit #=> Integer
20566
20569
  # resp.launch_template_versions[0].launch_template_data.metadata_options.http_endpoint #=> String, one of "disabled", "enabled"
20570
+ # resp.launch_template_versions[0].launch_template_data.metadata_options.http_protocol_ipv_6 #=> String, one of "disabled", "enabled"
20567
20571
  # resp.launch_template_versions[0].launch_template_data.enclave_options.enabled #=> Boolean
20568
20572
  # resp.next_token #=> String
20569
20573
  #
@@ -32099,6 +32103,7 @@ module Aws::EC2
32099
32103
  # resp.launch_template_data.metadata_options.http_tokens #=> String, one of "optional", "required"
32100
32104
  # resp.launch_template_data.metadata_options.http_put_response_hop_limit #=> Integer
32101
32105
  # resp.launch_template_data.metadata_options.http_endpoint #=> String, one of "disabled", "enabled"
32106
+ # resp.launch_template_data.metadata_options.http_protocol_ipv_6 #=> String, one of "disabled", "enabled"
32102
32107
  # resp.launch_template_data.enclave_options.enabled #=> Boolean
32103
32108
  #
32104
32109
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetLaunchTemplateData AWS API Documentation
@@ -43620,7 +43625,7 @@ module Aws::EC2
43620
43625
  params: params,
43621
43626
  config: config)
43622
43627
  context[:gem_name] = 'aws-sdk-ec2'
43623
- context[:gem_version] = '1.260.0'
43628
+ context[:gem_version] = '1.261.0'
43624
43629
  Seahorse::Client::Request.new(handlers, context)
43625
43630
  end
43626
43631
 
@@ -1425,6 +1425,7 @@ module Aws::EC2
1425
1425
  LaunchTemplateInstanceMetadataOptions = Shapes::StructureShape.new(name: 'LaunchTemplateInstanceMetadataOptions')
1426
1426
  LaunchTemplateInstanceMetadataOptionsRequest = Shapes::StructureShape.new(name: 'LaunchTemplateInstanceMetadataOptionsRequest')
1427
1427
  LaunchTemplateInstanceMetadataOptionsState = Shapes::StringShape.new(name: 'LaunchTemplateInstanceMetadataOptionsState')
1428
+ LaunchTemplateInstanceMetadataProtocolIpv6 = Shapes::StringShape.new(name: 'LaunchTemplateInstanceMetadataProtocolIpv6')
1428
1429
  LaunchTemplateInstanceNetworkInterfaceSpecification = Shapes::StructureShape.new(name: 'LaunchTemplateInstanceNetworkInterfaceSpecification')
1429
1430
  LaunchTemplateInstanceNetworkInterfaceSpecificationList = Shapes::ListShape.new(name: 'LaunchTemplateInstanceNetworkInterfaceSpecificationList')
1430
1431
  LaunchTemplateInstanceNetworkInterfaceSpecificationRequest = Shapes::StructureShape.new(name: 'LaunchTemplateInstanceNetworkInterfaceSpecificationRequest')
@@ -4063,7 +4064,6 @@ module Aws::EC2
4063
4064
  CreateVpcPeeringConnectionResult.add_member(:vpc_peering_connection, Shapes::ShapeRef.new(shape: VpcPeeringConnection, location_name: "vpcPeeringConnection"))
4064
4065
  CreateVpcPeeringConnectionResult.struct_class = Types::CreateVpcPeeringConnectionResult
4065
4066
 
4066
- CreateVpcRequest.add_member(:cidr_block, Shapes::ShapeRef.new(shape: String, required: true, location_name: "CidrBlock"))
4067
4067
  CreateVpcRequest.add_member(:amazon_provided_ipv_6_cidr_block, Shapes::ShapeRef.new(shape: Boolean, location_name: "amazonProvidedIpv6CidrBlock"))
4068
4068
  CreateVpcRequest.add_member(:ipv_6_pool, Shapes::ShapeRef.new(shape: Ipv6PoolEc2Id, location_name: "Ipv6Pool"))
4069
4069
  CreateVpcRequest.add_member(:ipv_6_cidr_block, Shapes::ShapeRef.new(shape: String, location_name: "Ipv6CidrBlock"))
@@ -4071,6 +4071,7 @@ module Aws::EC2
4071
4071
  CreateVpcRequest.add_member(:instance_tenancy, Shapes::ShapeRef.new(shape: Tenancy, location_name: "instanceTenancy"))
4072
4072
  CreateVpcRequest.add_member(:ipv_6_cidr_block_network_border_group, Shapes::ShapeRef.new(shape: String, location_name: "Ipv6CidrBlockNetworkBorderGroup"))
4073
4073
  CreateVpcRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
4074
+ CreateVpcRequest.add_member(:cidr_block, Shapes::ShapeRef.new(shape: String, required: true, location_name: "CidrBlock"))
4074
4075
  CreateVpcRequest.struct_class = Types::CreateVpcRequest
4075
4076
 
4076
4077
  CreateVpcResult.add_member(:vpc, Shapes::ShapeRef.new(shape: Vpc, location_name: "vpc"))
@@ -7970,11 +7971,13 @@ module Aws::EC2
7970
7971
  LaunchTemplateInstanceMetadataOptions.add_member(:http_tokens, Shapes::ShapeRef.new(shape: LaunchTemplateHttpTokensState, location_name: "httpTokens"))
7971
7972
  LaunchTemplateInstanceMetadataOptions.add_member(:http_put_response_hop_limit, Shapes::ShapeRef.new(shape: Integer, location_name: "httpPutResponseHopLimit"))
7972
7973
  LaunchTemplateInstanceMetadataOptions.add_member(:http_endpoint, Shapes::ShapeRef.new(shape: LaunchTemplateInstanceMetadataEndpointState, location_name: "httpEndpoint"))
7974
+ LaunchTemplateInstanceMetadataOptions.add_member(:http_protocol_ipv_6, Shapes::ShapeRef.new(shape: LaunchTemplateInstanceMetadataProtocolIpv6, location_name: "httpProtocolIpv6"))
7973
7975
  LaunchTemplateInstanceMetadataOptions.struct_class = Types::LaunchTemplateInstanceMetadataOptions
7974
7976
 
7975
7977
  LaunchTemplateInstanceMetadataOptionsRequest.add_member(:http_tokens, Shapes::ShapeRef.new(shape: LaunchTemplateHttpTokensState, location_name: "HttpTokens"))
7976
7978
  LaunchTemplateInstanceMetadataOptionsRequest.add_member(:http_put_response_hop_limit, Shapes::ShapeRef.new(shape: Integer, location_name: "HttpPutResponseHopLimit"))
7977
7979
  LaunchTemplateInstanceMetadataOptionsRequest.add_member(:http_endpoint, Shapes::ShapeRef.new(shape: LaunchTemplateInstanceMetadataEndpointState, location_name: "HttpEndpoint"))
7980
+ LaunchTemplateInstanceMetadataOptionsRequest.add_member(:http_protocol_ipv_6, Shapes::ShapeRef.new(shape: LaunchTemplateInstanceMetadataProtocolIpv6, location_name: "HttpProtocolIpv6"))
7978
7981
  LaunchTemplateInstanceMetadataOptionsRequest.struct_class = Types::LaunchTemplateInstanceMetadataOptionsRequest
7979
7982
 
7980
7983
  LaunchTemplateInstanceNetworkInterfaceSpecification.add_member(:associate_carrier_ip_address, Shapes::ShapeRef.new(shape: Boolean, location_name: "associateCarrierIpAddress"))
@@ -1405,7 +1405,6 @@ module Aws::EC2
1405
1405
  # @example Request syntax with placeholder values
1406
1406
  #
1407
1407
  # vpc = ec2.create_vpc({
1408
- # cidr_block: "String", # required
1409
1408
  # amazon_provided_ipv_6_cidr_block: false,
1410
1409
  # ipv_6_pool: "Ipv6PoolEc2Id",
1411
1410
  # ipv_6_cidr_block: "String",
@@ -1423,13 +1422,9 @@ module Aws::EC2
1423
1422
  # ],
1424
1423
  # },
1425
1424
  # ],
1425
+ # cidr_block: "String", # required
1426
1426
  # })
1427
1427
  # @param [Hash] options ({})
1428
- # @option options [required, String] :cidr_block
1429
- # The IPv4 network range for the VPC, in CIDR notation. For example,
1430
- # `10.0.0.0/16`. We modify the specified CIDR block to its canonical
1431
- # form; for example, if you specify `100.68.0.18/18`, we modify it to
1432
- # `100.68.0.0/18`.
1433
1428
  # @option options [Boolean] :amazon_provided_ipv_6_cidr_block
1434
1429
  # Requests an Amazon-provided IPv6 CIDR block with a /56 prefix length
1435
1430
  # for the VPC. You cannot specify the range of IP addresses, or the size
@@ -1467,6 +1462,11 @@ module Aws::EC2
1467
1462
  # parameter.
1468
1463
  # @option options [Array<Types::TagSpecification>] :tag_specifications
1469
1464
  # The tags to assign to the VPC.
1465
+ # @option options [required, String] :cidr_block
1466
+ # The IPv4 network range for the VPC, in CIDR notation. For example,
1467
+ # `10.0.0.0/16`. We modify the specified CIDR block to its canonical
1468
+ # form; for example, if you specify `100.68.0.18/18`, we modify it to
1469
+ # `100.68.0.0/18`.
1470
1470
  # @return [Vpc]
1471
1471
  def create_vpc(options = {})
1472
1472
  resp = @client.create_vpc(options)
@@ -7672,6 +7672,7 @@ module Aws::EC2
7672
7672
  # http_tokens: "optional", # accepts optional, required
7673
7673
  # http_put_response_hop_limit: 1,
7674
7674
  # http_endpoint: "disabled", # accepts disabled, enabled
7675
+ # http_protocol_ipv_6: "disabled", # accepts disabled, enabled
7675
7676
  # },
7676
7677
  # enclave_options: {
7677
7678
  # enabled: false,
@@ -7911,6 +7912,7 @@ module Aws::EC2
7911
7912
  # http_tokens: "optional", # accepts optional, required
7912
7913
  # http_put_response_hop_limit: 1,
7913
7914
  # http_endpoint: "disabled", # accepts disabled, enabled
7915
+ # http_protocol_ipv_6: "disabled", # accepts disabled, enabled
7914
7916
  # },
7915
7917
  # enclave_options: {
7916
7918
  # enabled: false,
@@ -11804,7 +11806,6 @@ module Aws::EC2
11804
11806
  # data as a hash:
11805
11807
  #
11806
11808
  # {
11807
- # cidr_block: "String", # required
11808
11809
  # amazon_provided_ipv_6_cidr_block: false,
11809
11810
  # ipv_6_pool: "Ipv6PoolEc2Id",
11810
11811
  # ipv_6_cidr_block: "String",
@@ -11822,15 +11823,9 @@ module Aws::EC2
11822
11823
  # ],
11823
11824
  # },
11824
11825
  # ],
11826
+ # cidr_block: "String", # required
11825
11827
  # }
11826
11828
  #
11827
- # @!attribute [rw] cidr_block
11828
- # The IPv4 network range for the VPC, in CIDR notation. For example,
11829
- # `10.0.0.0/16`. We modify the specified CIDR block to its canonical
11830
- # form; for example, if you specify `100.68.0.18/18`, we modify it to
11831
- # `100.68.0.0/18`.
11832
- # @return [String]
11833
- #
11834
11829
  # @!attribute [rw] amazon_provided_ipv_6_cidr_block
11835
11830
  # Requests an Amazon-provided IPv6 CIDR block with a /56 prefix length
11836
11831
  # for the VPC. You cannot specify the range of IP addresses, or the
@@ -11883,17 +11878,24 @@ module Aws::EC2
11883
11878
  # The tags to assign to the VPC.
11884
11879
  # @return [Array<Types::TagSpecification>]
11885
11880
  #
11881
+ # @!attribute [rw] cidr_block
11882
+ # The IPv4 network range for the VPC, in CIDR notation. For example,
11883
+ # `10.0.0.0/16`. We modify the specified CIDR block to its canonical
11884
+ # form; for example, if you specify `100.68.0.18/18`, we modify it to
11885
+ # `100.68.0.0/18`.
11886
+ # @return [String]
11887
+ #
11886
11888
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpcRequest AWS API Documentation
11887
11889
  #
11888
11890
  class CreateVpcRequest < Struct.new(
11889
- :cidr_block,
11890
11891
  :amazon_provided_ipv_6_cidr_block,
11891
11892
  :ipv_6_pool,
11892
11893
  :ipv_6_cidr_block,
11893
11894
  :dry_run,
11894
11895
  :instance_tenancy,
11895
11896
  :ipv_6_cidr_block_network_border_group,
11896
- :tag_specifications)
11897
+ :tag_specifications,
11898
+ :cidr_block)
11897
11899
  SENSITIVE = []
11898
11900
  include Aws::Structure
11899
11901
  end
@@ -37906,13 +37908,21 @@ module Aws::EC2
37906
37908
  # </note>
37907
37909
  # @return [String]
37908
37910
  #
37911
+ # @!attribute [rw] http_protocol_ipv_6
37912
+ # Enables or disables the IPv6 endpoint for the instance metadata
37913
+ # service.
37914
+ #
37915
+ # Default: `disabled`
37916
+ # @return [String]
37917
+ #
37909
37918
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateInstanceMetadataOptions AWS API Documentation
37910
37919
  #
37911
37920
  class LaunchTemplateInstanceMetadataOptions < Struct.new(
37912
37921
  :state,
37913
37922
  :http_tokens,
37914
37923
  :http_put_response_hop_limit,
37915
- :http_endpoint)
37924
+ :http_endpoint,
37925
+ :http_protocol_ipv_6)
37916
37926
  SENSITIVE = []
37917
37927
  include Aws::Structure
37918
37928
  end
@@ -37932,6 +37942,7 @@ module Aws::EC2
37932
37942
  # http_tokens: "optional", # accepts optional, required
37933
37943
  # http_put_response_hop_limit: 1,
37934
37944
  # http_endpoint: "disabled", # accepts disabled, enabled
37945
+ # http_protocol_ipv_6: "disabled", # accepts disabled, enabled
37935
37946
  # }
37936
37947
  #
37937
37948
  # @!attribute [rw] http_tokens
@@ -37973,12 +37984,20 @@ module Aws::EC2
37973
37984
  # </note>
37974
37985
  # @return [String]
37975
37986
  #
37987
+ # @!attribute [rw] http_protocol_ipv_6
37988
+ # Enables or disables the IPv6 endpoint for the instance metadata
37989
+ # service.
37990
+ #
37991
+ # Default: `disabled`
37992
+ # @return [String]
37993
+ #
37976
37994
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateInstanceMetadataOptionsRequest AWS API Documentation
37977
37995
  #
37978
37996
  class LaunchTemplateInstanceMetadataOptionsRequest < Struct.new(
37979
37997
  :http_tokens,
37980
37998
  :http_put_response_hop_limit,
37981
- :http_endpoint)
37999
+ :http_endpoint,
38000
+ :http_protocol_ipv_6)
37982
38001
  SENSITIVE = []
37983
38002
  include Aws::Structure
37984
38003
  end
@@ -38059,22 +38078,20 @@ module Aws::EC2
38059
38078
  # @return [Integer]
38060
38079
  #
38061
38080
  # @!attribute [rw] ipv_4_prefixes
38062
- # One or more IPv4 delegated prefixes assigned to the network
38063
- # interface.
38081
+ # One or more IPv4 prefixes assigned to the network interface.
38064
38082
  # @return [Array<Types::Ipv4PrefixSpecificationResponse>]
38065
38083
  #
38066
38084
  # @!attribute [rw] ipv_4_prefix_count
38067
- # The number of IPv4 delegated prefixes that AWS automatically
38085
+ # The number of IPv4 prefixes that Amazon Web Services automatically
38068
38086
  # assigned to the network interface.
38069
38087
  # @return [Integer]
38070
38088
  #
38071
38089
  # @!attribute [rw] ipv_6_prefixes
38072
- # One or more IPv6 delegated prefixes assigned to the network
38073
- # interface.
38090
+ # One or more IPv6 prefixes assigned to the network interface.
38074
38091
  # @return [Array<Types::Ipv6PrefixSpecificationResponse>]
38075
38092
  #
38076
38093
  # @!attribute [rw] ipv_6_prefix_count
38077
- # The number of IPv6 delegated prefixes that AWS automatically
38094
+ # The number of IPv6 prefixes that Amazon Web Services automatically
38078
38095
  # assigned to the network interface.
38079
38096
  # @return [Integer]
38080
38097
  #
@@ -38240,26 +38257,24 @@ module Aws::EC2
38240
38257
  # @return [Integer]
38241
38258
  #
38242
38259
  # @!attribute [rw] ipv_4_prefixes
38243
- # One or more IPv4 delegated prefixes to be assigned to the network
38244
- # interface. You cannot use this option if you use the
38245
- # `Ipv4PrefixCount` option.
38260
+ # One or more IPv4 prefixes to be assigned to the network interface.
38261
+ # You cannot use this option if you use the `Ipv4PrefixCount` option.
38246
38262
  # @return [Array<Types::Ipv4PrefixSpecificationRequest>]
38247
38263
  #
38248
38264
  # @!attribute [rw] ipv_4_prefix_count
38249
- # The number of IPv4 delegated prefixes to be automatically assigned
38250
- # to the network interface. You cannot use this option if you use the
38265
+ # The number of IPv4 prefixes to be automatically assigned to the
38266
+ # network interface. You cannot use this option if you use the
38251
38267
  # `Ipv4Prefix` option.
38252
38268
  # @return [Integer]
38253
38269
  #
38254
38270
  # @!attribute [rw] ipv_6_prefixes
38255
- # One or more IPv6 delegated prefixes to be assigned to the network
38256
- # interface. You cannot use this option if you use the
38257
- # `Ipv6PrefixCount` option.
38271
+ # One or more IPv6 prefixes to be assigned to the network interface.
38272
+ # You cannot use this option if you use the `Ipv6PrefixCount` option.
38258
38273
  # @return [Array<Types::Ipv6PrefixSpecificationRequest>]
38259
38274
  #
38260
38275
  # @!attribute [rw] ipv_6_prefix_count
38261
- # The number of IPv6 delegated prefixes to be automatically assigned
38262
- # to the network interface. You cannot use this option if you use the
38276
+ # The number of IPv6 prefixes to be automatically assigned to the
38277
+ # network interface. You cannot use this option if you use the
38263
38278
  # `Ipv6Prefix` option.
38264
38279
  # @return [Integer]
38265
38280
  #
@@ -47363,6 +47378,7 @@ module Aws::EC2
47363
47378
  # http_tokens: "optional", # accepts optional, required
47364
47379
  # http_put_response_hop_limit: 1,
47365
47380
  # http_endpoint: "disabled", # accepts disabled, enabled
47381
+ # http_protocol_ipv_6: "disabled", # accepts disabled, enabled
47366
47382
  # },
47367
47383
  # enclave_options: {
47368
47384
  # enabled: false,
@@ -47474,14 +47490,22 @@ module Aws::EC2
47474
47490
  # @return [String]
47475
47491
  #
47476
47492
  # @!attribute [rw] user_data
47477
- # The Base64-encoded user data to make available to the instance. For
47478
- # more information, see [Running Commands on Your Linux Instance at
47479
- # Launch][1] (Linux) and [Adding User Data][2] (Windows).
47493
+ # The user data to make available to the instance. You must provide
47494
+ # base64-encoded text. User data is limited to 16 KB. For more
47495
+ # information, see [Running Commands on Your Linux Instance at
47496
+ # Launch][1] (Linux) or [Adding User Data][2] (Windows).
47497
+ #
47498
+ # If you are creating the launch template for use with Batch, the user
47499
+ # data must be provided in the [ MIME multi-part archive format][3].
47500
+ # For more information, see [Amazon EC2 user data in launch
47501
+ # templates][4] in the *Batch User Guide*.
47480
47502
  #
47481
47503
  #
47482
47504
  #
47483
47505
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/user-data.html
47484
47506
  # [2]: https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/ec2-instance-metadata.html#instancedata-add-user-data
47507
+ # [3]: https://cloudinit.readthedocs.io/en/latest/topics/format.html#mime-multi-part-archive
47508
+ # [4]: https://docs.aws.amazon.com/batch/latest/userguide/launch-templates.html
47485
47509
  # @return [String]
47486
47510
  #
47487
47511
  # @!attribute [rw] tag_specifications
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.260.0'
75
+ GEM_VERSION = '1.261.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.260.0
4
+ version: 1.261.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: 2021-08-27 00:00:00.000000000 Z
11
+ date: 2021-09-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4
@@ -33,7 +33,7 @@ dependencies:
33
33
  version: '3'
34
34
  - - ">="
35
35
  - !ruby/object:Gem::Version
36
- version: 3.119.0
36
+ version: 3.120.0
37
37
  type: :runtime
38
38
  prerelease: false
39
39
  version_requirements: !ruby/object:Gem::Requirement
@@ -43,7 +43,7 @@ dependencies:
43
43
  version: '3'
44
44
  - - ">="
45
45
  - !ruby/object:Gem::Version
46
- version: 3.119.0
46
+ version: 3.120.0
47
47
  description: Official AWS Ruby gem for Amazon Elastic Compute Cloud (Amazon EC2).
48
48
  This gem is part of the AWS SDK for Ruby.
49
49
  email:
@@ -104,7 +104,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
104
104
  requirements:
105
105
  - - ">="
106
106
  - !ruby/object:Gem::Version
107
- version: '0'
107
+ version: '2.3'
108
108
  required_rubygems_version: !ruby/object:Gem::Requirement
109
109
  requirements:
110
110
  - - ">="