aws-sdk-ec2 1.306.0 → 1.307.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6a05de3da3b87f32d7f4d0559418c57bf203dc9b02a8cc54b447d9139f74a8f6
4
- data.tar.gz: 0ae2278de55efe1b0ca7144a638ec229db8d3903f64510faead445ad7066b71f
3
+ metadata.gz: 5ce12bfe4b34af34a42e340ad40915c30e1dd8b055f5ef5e3e23658bb7b3793f
4
+ data.tar.gz: 9374844700763e135363bc884a9e9ae2fd2f7100d6ef594b3d11fd640cbc14d2
5
5
  SHA512:
6
- metadata.gz: e95459f6e8a8ba7c629e463977ef7f9e6a1a38740be190faa1ca6581e82f33c7bfb6ede8142da1625ff9a26cb3f65d39c60e95362088cbd2c5d610a074c96c0a
7
- data.tar.gz: 9eaec01e181f0ef74b90b037d54b55d340a974b0776f26ce88b1c566a4ab83fe107f8acf177499e20067a85964624aa88051255f03863d5ffbd77759c90835bb
6
+ metadata.gz: 051d8d1f36d2dbb91312a4d67195f1c43271624fa1fe996887d5339b432e49f1df22627147bf2f1d488b27e020451c75c1a5f89a0e0d4daffe014d45a1500b1e
7
+ data.tar.gz: 4e89fe849d022abe70713a6a41e1dc575e71e68fa363263bb75e96c3873da01b0875fae39bb3ea9c04b36a801577acb7ed96fdb8f6e3359f19805adafe0f4deb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.307.0 (2022-04-14)
5
+ ------------------
6
+
7
+ * Feature - Documentation updates for Amazon EC2.
8
+
4
9
  1.306.0 (2022-04-12)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.306.0
1
+ 1.307.0
@@ -4976,32 +4976,18 @@ module Aws::EC2
4976
4976
  # For devices that use Border Gateway Protocol (BGP), you can also
4977
4977
  # provide the device's BGP Autonomous System Number (ASN). You can use
4978
4978
  # an existing ASN assigned to your network. If you don't have an ASN
4979
- # already, you can use a private ASN (in the 64512 - 65534 range).
4980
- #
4981
- # <note markdown="1"> Amazon EC2 supports all 4-byte ASN numbers in the range of 1 -
4982
- # 2147483647, with the exception of the following:
4983
- #
4984
- # * 7224 - reserved in the `us-east-1` Region
4985
- #
4986
- # * 9059 - reserved in the `eu-west-1` Region
4987
- #
4988
- # * 17943 - reserved in the `ap-southeast-1` Region
4989
- #
4990
- # * 10124 - reserved in the `ap-northeast-1` Region
4991
- #
4992
- # </note>
4993
- #
4994
- # For more information, see [Amazon Web Services Site-to-Site VPN][1] in
4979
+ # already, you can use a private ASN. For more information, see
4980
+ # [Customer gateway options for your Site-to-Site VPN connection][1] in
4995
4981
  # the *Amazon Web Services Site-to-Site VPN User Guide*.
4996
4982
  #
4997
4983
  # To create more than one customer gateway with the same VPN type, IP
4998
4984
  # address, and BGP ASN, specify a unique device name for each customer
4999
- # gateway. Identical requests return information about the existing
5000
- # customer gateway and do not create new customer gateways.
4985
+ # gateway. An identical request returns information about the existing
4986
+ # customer gateway; it doesn't create a new customer gateway.
5001
4987
  #
5002
4988
  #
5003
4989
  #
5004
- # [1]: https://docs.aws.amazon.com/vpn/latest/s2svpn/VPC_VPN.html
4990
+ # [1]: https://docs.aws.amazon.com/vpn/latest/s2svpn/cgw-options.html
5005
4991
  #
5006
4992
  # @option params [required, Integer] :bgp_asn
5007
4993
  # For devices that support BGP, the customer gateway's BGP ASN.
@@ -6121,12 +6107,17 @@ module Aws::EC2
6121
6107
  # Creates an Amazon EBS-backed AMI from an Amazon EBS-backed instance
6122
6108
  # that is either running or stopped.
6123
6109
  #
6124
- # By default, Amazon EC2 shuts down and reboots the instance before
6125
- # creating the AMI to ensure that everything on the instance is stopped
6126
- # and in a consistent state during the creation process. If you're
6127
- # confident that your instance is in a consistent state appropriate for
6128
- # AMI creation, use the **NoReboot** parameter to prevent Amazon EC2
6129
- # from shutting down and rebooting the instance.
6110
+ # By default, when Amazon EC2 creates the new AMI, it reboots the
6111
+ # instance so that it can take snapshots of the attached volumes while
6112
+ # data is at rest, in order to ensure a consistent state. You can set
6113
+ # the `NoReboot` parameter to `true` in the API request, or use the
6114
+ # `--no-reboot` option in the CLI to prevent Amazon EC2 from shutting
6115
+ # down and rebooting the instance.
6116
+ #
6117
+ # If you choose to bypass the shutdown and reboot process by setting the
6118
+ # `NoReboot` parameter to `true` in the API request, or by using the
6119
+ # `--no-reboot` option in the CLI, we can't guarantee the file system
6120
+ # integrity of the created image.
6130
6121
  #
6131
6122
  # If you customized your instance with instance store volumes or Amazon
6132
6123
  # EBS volumes in addition to the root device volume, the new AMI
@@ -6166,13 +6157,19 @@ module Aws::EC2
6166
6157
  # single quotes ('), at-signs (@), or underscores(\_)
6167
6158
  #
6168
6159
  # @option params [Boolean] :no_reboot
6169
- # By default, Amazon EC2 attempts to shut down and reboot the instance
6170
- # before creating the image. If the `No Reboot` option is set, Amazon
6171
- # EC2 doesn't shut down the instance before creating the image. Without
6172
- # a reboot, the AMI will be crash consistent (all the volumes are
6173
- # snapshotted at the same time), but not application consistent (all the
6174
- # operating system buffers are not flushed to disk before the snapshots
6175
- # are created).
6160
+ # By default, when Amazon EC2 creates the new AMI, it reboots the
6161
+ # instance so that it can take snapshots of the attached volumes while
6162
+ # data is at rest, in order to ensure a consistent state. You can set
6163
+ # the `NoReboot` parameter to `true` in the API request, or use the
6164
+ # `--no-reboot` option in the CLI to prevent Amazon EC2 from shutting
6165
+ # down and rebooting the instance.
6166
+ #
6167
+ # If you choose to bypass the shutdown and reboot process by setting the
6168
+ # `NoReboot` parameter to `true` in the API request, or by using the
6169
+ # `--no-reboot` option in the CLI, we can't guarantee the file system
6170
+ # integrity of the created image.
6171
+ #
6172
+ # Default: `false` (follow standard reboot process)
6176
6173
  #
6177
6174
  # @option params [Array<Types::TagSpecification>] :tag_specifications
6178
6175
  # The tags to apply to the AMI and snapshots on creation. You can tag
@@ -6578,7 +6575,7 @@ module Aws::EC2
6578
6575
  req.send_request(options)
6579
6576
  end
6580
6577
 
6581
- # Create an IPAM. Amazon VCP IP Address Manager (IPAM) is a VPC feature
6578
+ # Create an IPAM. Amazon VPC IP Address Manager (IPAM) is a VPC feature
6582
6579
  # that you can use to automate your IP address management workflows
6583
6580
  # including assigning, tracking, troubleshooting, and auditing IP
6584
6581
  # addresses across Amazon Web Services Regions and accounts throughout
@@ -6995,7 +6992,7 @@ module Aws::EC2
6995
6992
  #
6996
6993
  # @option params [String] :key_type
6997
6994
  # The type of key pair. Note that ED25519 keys are not supported for
6998
- # Windows instances, EC2 Instance Connect, and EC2 Serial Console.
6995
+ # Windows instances.
6999
6996
  #
7000
6997
  # Default: `rsa`
7001
6998
  #
@@ -7057,16 +7054,24 @@ module Aws::EC2
7057
7054
  req.send_request(options)
7058
7055
  end
7059
7056
 
7060
- # Creates a launch template. A launch template contains the parameters
7061
- # to launch an instance. When you launch an instance using RunInstances,
7062
- # you can specify a launch template instead of providing the launch
7063
- # parameters in the request. For more information, see [Launching an
7064
- # instance from a launch template][1] in the *Amazon Elastic Compute
7065
- # Cloud User Guide*.
7057
+ # Creates a launch template.
7058
+ #
7059
+ # A launch template contains the parameters to launch an instance. When
7060
+ # you launch an instance using RunInstances, you can specify a launch
7061
+ # template instead of providing the launch parameters in the request.
7062
+ # For more information, see [Launching an instance from a launch
7063
+ # template][1] in the *Amazon Elastic Compute Cloud User Guide*.
7064
+ #
7065
+ # If you want to clone an existing launch template as the basis for
7066
+ # creating a new launch template, you can use the Amazon EC2 console.
7067
+ # The API, SDKs, and CLI do not support cloning a template. For more
7068
+ # information, see [Create a launch template from an existing launch
7069
+ # template][2] in the *Amazon Elastic Compute Cloud User Guide*.
7066
7070
  #
7067
7071
  #
7068
7072
  #
7069
7073
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-templates.html
7074
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-templates.html#create-launch-template-from-existing-launch-template
7070
7075
  #
7071
7076
  # @option params [Boolean] :dry_run
7072
7077
  # Checks whether you have the required permissions for the action,
@@ -12398,29 +12403,12 @@ module Aws::EC2
12398
12403
  # you to create a private connection between your VPC and the service.
12399
12404
  # The service may be provided by Amazon Web Services, an Amazon Web
12400
12405
  # Services Marketplace Partner, or another Amazon Web Services account.
12401
- # For more information, see [VPC Endpoints][1] in the *Amazon Virtual
12402
- # Private Cloud User Guide*.
12403
- #
12404
- # A `gateway` endpoint serves as a target for a route in your route
12405
- # table for traffic destined for the Amazon Web Service. You can specify
12406
- # an endpoint policy to attach to the endpoint, which will control
12407
- # access to the service from your VPC. You can also specify the VPC
12408
- # route tables that use the endpoint.
12406
+ # For more information, see the [Amazon Web Services PrivateLink
12407
+ # Guide][1].
12409
12408
  #
12410
- # An `interface` endpoint is a network interface in your subnet that
12411
- # serves as an endpoint for communicating with the specified service.
12412
- # You can specify the subnets in which to create an endpoint, and the
12413
- # security groups to associate with the endpoint network interface.
12414
12409
  #
12415
- # A `GatewayLoadBalancer` endpoint is a network interface in your subnet
12416
- # that serves an endpoint for communicating with a Gateway Load Balancer
12417
- # that you've configured as a VPC endpoint service.
12418
12410
  #
12419
- # Use DescribeVpcEndpointServices to get a list of supported services.
12420
- #
12421
- #
12422
- #
12423
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-endpoints.html
12411
+ # [1]: https://docs.aws.amazon.com/vpc/latest/privatelink/
12424
12412
  #
12425
12413
  # @option params [Boolean] :dry_run
12426
12414
  # Checks whether you have the required permissions for the action,
@@ -12635,12 +12623,11 @@ module Aws::EC2
12635
12623
  req.send_request(options)
12636
12624
  end
12637
12625
 
12638
- # Creates a VPC endpoint service configuration to which service
12639
- # consumers (Amazon Web Services accounts, IAM users, and IAM roles) can
12640
- # connect.
12626
+ # Creates a VPC endpoint service to which service consumers (Amazon Web
12627
+ # Services accounts, IAM users, and IAM roles) can connect.
12641
12628
  #
12642
- # To create an endpoint service configuration, you must first create one
12643
- # of the following for your service:
12629
+ # Before you create an endpoint service, you must create one of the
12630
+ # following for your service:
12644
12631
  #
12645
12632
  # * A [Network Load Balancer][1]. Service consumers connect to your
12646
12633
  # service using an interface endpoint.
@@ -12648,20 +12635,17 @@ module Aws::EC2
12648
12635
  # * A [Gateway Load Balancer][2]. Service consumers connect to your
12649
12636
  # service using a Gateway Load Balancer endpoint.
12650
12637
  #
12651
- # For more information, see [VPC Endpoint Services][3] in the *Amazon
12652
- # Virtual Private Cloud User Guide*.
12653
- #
12654
12638
  # If you set the private DNS name, you must prove that you own the
12655
- # private DNS domain name. For more information, see [VPC Endpoint
12656
- # Service Private DNS Name Verification][4] in the *Amazon Virtual
12657
- # Private Cloud User Guide*.
12639
+ # private DNS domain name.
12658
12640
  #
12641
+ # For more information, see the [Amazon Web Services PrivateLink
12642
+ # Guide][3].
12659
12643
  #
12660
12644
  #
12661
- # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/introduction.html
12662
- # [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/gateway/introduction.html
12663
- # [3]: https://docs.aws.amazon.com/vpc/latest/userguide/endpoint-service.html
12664
- # [4]: https://docs.aws.amazon.com/vpc/latest/userguide/endpoint-services-dns-validation.html
12645
+ #
12646
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/
12647
+ # [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/gateway/
12648
+ # [3]: https://docs.aws.amazon.com/vpc/latest/privatelink/
12665
12649
  #
12666
12650
  # @option params [Boolean] :dry_run
12667
12651
  # Checks whether you have the required permissions for the action,
@@ -12671,8 +12655,7 @@ module Aws::EC2
12671
12655
  #
12672
12656
  # @option params [Boolean] :acceptance_required
12673
12657
  # Indicates whether requests from service consumers to create an
12674
- # endpoint to your service must be accepted. To accept a request, use
12675
- # AcceptVpcEndpointConnections.
12658
+ # endpoint to your service must be accepted manually.
12676
12659
  #
12677
12660
  # @option params [String] :private_dns_name
12678
12661
  # (Interface endpoint configuration) The private DNS name to assign to
@@ -13703,22 +13686,10 @@ module Aws::EC2
13703
13686
  # Delete an IPAM. Deleting an IPAM removes all monitored data associated
13704
13687
  # with the IPAM including the historical data for CIDRs.
13705
13688
  #
13706
- # <note markdown="1"> You cannot delete an IPAM if there are CIDRs provisioned to pools or
13707
- # if there are allocations in the pools within the IPAM. To deprovision
13708
- # pool CIDRs, see [DeprovisionIpamPoolCidr][1]. To release allocations,
13709
- # see [ReleaseIpamPoolAllocation][2].
13710
- #
13711
- # </note>
13712
- #
13713
13689
  # For more information, see [Delete an
13714
13690
  # IPAM](/vpc/latest/ipam/delete-ipam.html) in the *Amazon VPC IPAM User
13715
13691
  # Guide*.
13716
13692
  #
13717
- #
13718
- #
13719
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DeprovisionIpamPoolCidr.html
13720
- # [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ReleaseIpamPoolAllocation.html
13721
- #
13722
13693
  # @option params [Boolean] :dry_run
13723
13694
  # A check for whether you have the required permissions for the action
13724
13695
  # without actually making the request and provides an error response. If
@@ -20271,6 +20242,11 @@ module Aws::EC2
20271
20242
  # * `block-device-mapping.encrypted` - A Boolean that indicates whether
20272
20243
  # the Amazon EBS volume is encrypted.
20273
20244
  #
20245
+ # * `creation-date` - The time when the image was created, in the ISO
20246
+ # 8601 format in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ), for
20247
+ # example, `2021-09-29T11:04:43.305Z`. You can use a wildcard (`*`),
20248
+ # for example, `2021-09-29T*`, which matches an entire day.
20249
+ #
20274
20250
  # * `description` - The description of the image (provided during image
20275
20251
  # creation).
20276
20252
  #
@@ -23561,9 +23537,6 @@ module Aws::EC2
23561
23537
  # * `local-gateway-virtual-interface-id` - The ID of the virtual
23562
23538
  # interface.
23563
23539
  #
23564
- # * `local-gateway-virtual-interface-group-id` - The ID of the virtual
23565
- # interface group.
23566
- #
23567
23540
  # * `owner-id` - The ID of the Amazon Web Services account that owns the
23568
23541
  # local gateway virtual interface.
23569
23542
  #
@@ -41676,9 +41649,10 @@ module Aws::EC2
41676
41649
  # require detaching and reattaching the volume or stopping and
41677
41650
  # restarting the instance.
41678
41651
  #
41679
- # If you reach the maximum volume modification rate per volume limit,
41680
- # you must wait at least six hours before applying further modifications
41681
- # to the affected EBS volume.
41652
+ # After modifying a volume, you must wait at least six hours and ensure
41653
+ # that the volume is in the `in-use` or `available` state before you can
41654
+ # modify the same volume. This is sometimes referred to as a cooldown
41655
+ # period.
41682
41656
  #
41683
41657
  #
41684
41658
  #
@@ -41947,12 +41921,12 @@ module Aws::EC2
41947
41921
 
41948
41922
  # Modifies attributes of a specified VPC endpoint. The attributes that
41949
41923
  # you can modify depend on the type of VPC endpoint (interface, gateway,
41950
- # or Gateway Load Balancer). For more information, see [VPC
41951
- # Endpoints][1] in the *Amazon Virtual Private Cloud User Guide*.
41924
+ # or Gateway Load Balancer). For more information, see the [Amazon Web
41925
+ # Services PrivateLink Guide][1].
41952
41926
  #
41953
41927
  #
41954
41928
  #
41955
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-endpoints.html
41929
+ # [1]: https://docs.aws.amazon.com/vpc/latest/privatelink/
41956
41930
  #
41957
41931
  # @option params [Boolean] :dry_run
41958
41932
  # Checks whether you have the required permissions for the action,
@@ -42087,13 +42061,7 @@ module Aws::EC2
42087
42061
  # VPC endpoint.
42088
42062
  #
42089
42063
  # If you set or modify the private DNS name, you must prove that you own
42090
- # the private DNS domain name. For more information, see [VPC Endpoint
42091
- # Service Private DNS Name Verification][1] in the *Amazon Virtual
42092
- # Private Cloud User Guide*.
42093
- #
42094
- #
42095
- #
42096
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/endpoint-services-dns-validation.html
42064
+ # the private DNS domain name.
42097
42065
  #
42098
42066
  # @option params [Boolean] :dry_run
42099
42067
  # Checks whether you have the required permissions for the action,
@@ -42204,19 +42172,15 @@ module Aws::EC2
42204
42172
  req.send_request(options)
42205
42173
  end
42206
42174
 
42207
- # Modifies the permissions for your [VPC endpoint service][1]. You can
42208
- # add or remove permissions for service consumers (IAM users, IAM roles,
42209
- # and Amazon Web Services accounts) to connect to your endpoint service.
42175
+ # Modifies the permissions for your VPC endpoint service. You can add or
42176
+ # remove permissions for service consumers (IAM users, IAM roles, and
42177
+ # Amazon Web Services accounts) to connect to your endpoint service.
42210
42178
  #
42211
42179
  # If you grant permissions to all principals, the service is public. Any
42212
42180
  # users who know the name of a public service can send a request to
42213
42181
  # attach an endpoint. If the service does not require manual approval,
42214
42182
  # attachments are automatically approved.
42215
42183
  #
42216
- #
42217
- #
42218
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/endpoint-service.html
42219
- #
42220
42184
  # @option params [Boolean] :dry_run
42221
42185
  # Checks whether you have the required permissions for the action,
42222
42186
  # without actually making the request, and provides an error response.
@@ -47027,12 +46991,12 @@ module Aws::EC2
47027
46991
  # part of the network interface.
47028
46992
  #
47029
46993
  # @option params [String] :user_data
47030
- # The user data to make available to the instance. For more information,
47031
- # see [Run commands on your Linux instance at launch][1] and [Run
47032
- # commands on your Windows instance at launch][2]. If you are using a
47033
- # command line tool, base64-encoding is performed for you, and you can
47034
- # load the text from a file. Otherwise, you must provide base64-encoded
47035
- # text. User data is limited to 16 KB.
46994
+ # The user data script to make available to the instance. For more
46995
+ # information, see [Run commands on your Linux instance at launch][1]
46996
+ # and [Run commands on your Windows instance at launch][2]. If you are
46997
+ # using a command line tool, base64-encoding is performed for you, and
46998
+ # you can load the text from a file. Otherwise, you must provide
46999
+ # base64-encoded text. User data is limited to 16 KB.
47036
47000
  #
47037
47001
  #
47038
47002
  #
@@ -48712,12 +48676,7 @@ module Aws::EC2
48712
48676
  # the consumer can use the name to access the service.
48713
48677
  #
48714
48678
  # Before the service provider runs this command, they must add a record
48715
- # to the DNS server. For more information, see [Adding a TXT Record to
48716
- # Your Domain's DNS Server ][1] in the *Amazon VPC User Guide*.
48717
- #
48718
- #
48719
- #
48720
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/endpoint-services-dns-validation.html#add-dns-txt-record
48679
+ # to the DNS server.
48721
48680
  #
48722
48681
  # @option params [Boolean] :dry_run
48723
48682
  # Checks whether you have the required permissions for the action,
@@ -49516,7 +49475,7 @@ module Aws::EC2
49516
49475
  params: params,
49517
49476
  config: config)
49518
49477
  context[:gem_name] = 'aws-sdk-ec2'
49519
- context[:gem_version] = '1.306.0'
49478
+ context[:gem_version] = '1.307.0'
49520
49479
  Seahorse::Client::Request.new(handlers, context)
49521
49480
  end
49522
49481
 
@@ -745,13 +745,19 @@ module Aws::EC2
745
745
  # brackets (\[\]), spaces ( ), periods (.), slashes (/), dashes (-),
746
746
  # single quotes ('), at-signs (@), or underscores(\_)
747
747
  # @option options [Boolean] :no_reboot
748
- # By default, Amazon EC2 attempts to shut down and reboot the instance
749
- # before creating the image. If the `No Reboot` option is set, Amazon
750
- # EC2 doesn't shut down the instance before creating the image. Without
751
- # a reboot, the AMI will be crash consistent (all the volumes are
752
- # snapshotted at the same time), but not application consistent (all the
753
- # operating system buffers are not flushed to disk before the snapshots
754
- # are created).
748
+ # By default, when Amazon EC2 creates the new AMI, it reboots the
749
+ # instance so that it can take snapshots of the attached volumes while
750
+ # data is at rest, in order to ensure a consistent state. You can set
751
+ # the `NoReboot` parameter to `true` in the API request, or use the
752
+ # `--no-reboot` option in the CLI to prevent Amazon EC2 from shutting
753
+ # down and rebooting the instance.
754
+ #
755
+ # If you choose to bypass the shutdown and reboot process by setting the
756
+ # `NoReboot` parameter to `true` in the API request, or by using the
757
+ # `--no-reboot` option in the CLI, we can't guarantee the file system
758
+ # integrity of the created image.
759
+ #
760
+ # Default: `false` (follow standard reboot process)
755
761
  # @option options [Array<Types::TagSpecification>] :tag_specifications
756
762
  # The tags to apply to the AMI and snapshots on creation. You can tag
757
763
  # the AMI, the snapshots, or both.
@@ -387,12 +387,12 @@ module Aws::EC2
387
387
  # If you specify a network interface, you must specify any subnets as
388
388
  # part of the network interface.
389
389
  # @option options [String] :user_data
390
- # The user data to make available to the instance. For more information,
391
- # see [Run commands on your Linux instance at launch][1] and [Run
392
- # commands on your Windows instance at launch][2]. If you are using a
393
- # command line tool, base64-encoding is performed for you, and you can
394
- # load the text from a file. Otherwise, you must provide base64-encoded
395
- # text. User data is limited to 16 KB.
390
+ # The user data script to make available to the instance. For more
391
+ # information, see [Run commands on your Linux instance at launch][1]
392
+ # and [Run commands on your Windows instance at launch][2]. If you are
393
+ # using a command line tool, base64-encoding is performed for you, and
394
+ # you can load the text from a file. Otherwise, you must provide
395
+ # base64-encoded text. User data is limited to 16 KB.
396
396
  #
397
397
  #
398
398
  #
@@ -644,7 +644,7 @@ module Aws::EC2
644
644
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
645
645
  # @option options [String] :key_type
646
646
  # The type of key pair. Note that ED25519 keys are not supported for
647
- # Windows instances, EC2 Instance Connect, and EC2 Serial Console.
647
+ # Windows instances.
648
648
  #
649
649
  # Default: `rsa`
650
650
  # @option options [Array<Types::TagSpecification>] :tag_specifications
@@ -1985,6 +1985,11 @@ module Aws::EC2
1985
1985
  # * `block-device-mapping.encrypted` - A Boolean that indicates whether
1986
1986
  # the Amazon EBS volume is encrypted.
1987
1987
  #
1988
+ # * `creation-date` - The time when the image was created, in the ISO
1989
+ # 8601 format in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ), for
1990
+ # example, `2021-09-29T11:04:43.305Z`. You can use a wildcard (`*`),
1991
+ # for example, `2021-09-29T*`, which matches an entire day.
1992
+ #
1988
1993
  # * `description` - The description of the image (provided during image
1989
1994
  # creation).
1990
1995
  #
@@ -606,12 +606,12 @@ module Aws::EC2
606
606
  #
607
607
  # Default: Amazon EC2 uses the default security group.
608
608
  # @option options [String] :user_data
609
- # The user data to make available to the instance. For more information,
610
- # see [Run commands on your Linux instance at launch][1] and [Run
611
- # commands on your Windows instance at launch][2]. If you are using a
612
- # command line tool, base64-encoding is performed for you, and you can
613
- # load the text from a file. Otherwise, you must provide base64-encoded
614
- # text. User data is limited to 16 KB.
609
+ # The user data script to make available to the instance. For more
610
+ # information, see [Run commands on your Linux instance at launch][1]
611
+ # and [Run commands on your Windows instance at launch][2]. If you are
612
+ # using a command line tool, base64-encoding is performed for you, and
613
+ # you can load the text from a file. Otherwise, you must provide
614
+ # base64-encoded text. User data is limited to 16 KB.
615
615
  #
616
616
  #
617
617
  #
@@ -8332,13 +8332,19 @@ module Aws::EC2
8332
8332
  # @return [String]
8333
8333
  #
8334
8334
  # @!attribute [rw] no_reboot
8335
- # By default, Amazon EC2 attempts to shut down and reboot the instance
8336
- # before creating the image. If the `No Reboot` option is set, Amazon
8337
- # EC2 doesn't shut down the instance before creating the image.
8338
- # Without a reboot, the AMI will be crash consistent (all the volumes
8339
- # are snapshotted at the same time), but not application consistent
8340
- # (all the operating system buffers are not flushed to disk before the
8341
- # snapshots are created).
8335
+ # By default, when Amazon EC2 creates the new AMI, it reboots the
8336
+ # instance so that it can take snapshots of the attached volumes while
8337
+ # data is at rest, in order to ensure a consistent state. You can set
8338
+ # the `NoReboot` parameter to `true` in the API request, or use the
8339
+ # `--no-reboot` option in the CLI to prevent Amazon EC2 from shutting
8340
+ # down and rebooting the instance.
8341
+ #
8342
+ # If you choose to bypass the shutdown and reboot process by setting
8343
+ # the `NoReboot` parameter to `true` in the API request, or by using
8344
+ # the `--no-reboot` option in the CLI, we can't guarantee the file
8345
+ # system integrity of the created image.
8346
+ #
8347
+ # Default: `false` (follow standard reboot process)
8342
8348
  # @return [Boolean]
8343
8349
  #
8344
8350
  # @!attribute [rw] tag_specifications
@@ -9008,7 +9014,7 @@ module Aws::EC2
9008
9014
  #
9009
9015
  # @!attribute [rw] key_type
9010
9016
  # The type of key pair. Note that ED25519 keys are not supported for
9011
- # Windows instances, EC2 Instance Connect, and EC2 Serial Console.
9017
+ # Windows instances.
9012
9018
  #
9013
9019
  # Default: `rsa`
9014
9020
  # @return [String]
@@ -13503,8 +13509,7 @@ module Aws::EC2
13503
13509
  #
13504
13510
  # @!attribute [rw] acceptance_required
13505
13511
  # Indicates whether requests from service consumers to create an
13506
- # endpoint to your service must be accepted. To accept a request, use
13507
- # AcceptVpcEndpointConnections.
13512
+ # endpoint to your service must be accepted manually.
13508
13513
  # @return [Boolean]
13509
13514
  #
13510
13515
  # @!attribute [rw] private_dns_name
@@ -20384,6 +20389,11 @@ module Aws::EC2
20384
20389
  # * `block-device-mapping.encrypted` - A Boolean that indicates
20385
20390
  # whether the Amazon EBS volume is encrypted.
20386
20391
  #
20392
+ # * `creation-date` - The time when the image was created, in the ISO
20393
+ # 8601 format in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ), for
20394
+ # example, `2021-09-29T11:04:43.305Z`. You can use a wildcard (`*`),
20395
+ # for example, `2021-09-29T*`, which matches an entire day.
20396
+ #
20387
20397
  # * `description` - The description of the image (provided during
20388
20398
  # image creation).
20389
20399
  #
@@ -22804,9 +22814,6 @@ module Aws::EC2
22804
22814
  # * `local-gateway-virtual-interface-id` - The ID of the virtual
22805
22815
  # interface.
22806
22816
  #
22807
- # * `local-gateway-virtual-interface-group-id` - The ID of the virtual
22808
- # interface group.
22809
- #
22810
22817
  # * `owner-id` - The ID of the Amazon Web Services account that owns
22811
22818
  # the local gateway virtual interface.
22812
22819
  #
@@ -31164,6 +31171,13 @@ module Aws::EC2
31164
31171
  #
31165
31172
  # @!attribute [rw] outpost_arn
31166
31173
  # The ARN of the Outpost on which the snapshot is stored.
31174
+ #
31175
+ # This parameter is only supported on `BlockDeviceMapping` objects
31176
+ # called by [ CreateImage][1].
31177
+ #
31178
+ #
31179
+ #
31180
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateImage.html
31167
31181
  # @return [String]
31168
31182
  #
31169
31183
  # @!attribute [rw] encrypted
@@ -53439,14 +53453,7 @@ module Aws::EC2
53439
53453
  include Aws::Structure
53440
53454
  end
53441
53455
 
53442
- # Information about the private DNS name for the service endpoint. For
53443
- # more information about these parameters, see [VPC Endpoint Service
53444
- # Private DNS Name Verification][1] in the *Amazon Virtual Private Cloud
53445
- # User Guide*.
53446
- #
53447
- #
53448
- #
53449
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/ndpoint-services-dns-validation.html
53456
+ # Information about the private DNS name for the service endpoint.
53450
53457
  #
53451
53458
  # @!attribute [rw] state
53452
53459
  # The verification state of the VPC endpoint service.
@@ -55834,6 +55841,10 @@ module Aws::EC2
55834
55841
 
55835
55842
  # The information to include in the launch template.
55836
55843
  #
55844
+ # <note markdown="1"> You must specify at least one parameter for the launch template data.
55845
+ #
55846
+ # </note>
55847
+ #
55837
55848
  # @note When making an API call, you may pass RequestLaunchTemplateData
55838
55849
  # data as a hash:
55839
55850
  #
@@ -59474,7 +59485,7 @@ module Aws::EC2
59474
59485
  # @return [String]
59475
59486
  #
59476
59487
  # @!attribute [rw] user_data
59477
- # The user data to make available to the instance. For more
59488
+ # The user data script to make available to the instance. For more
59478
59489
  # information, see [Run commands on your Linux instance at launch][1]
59479
59490
  # and [Run commands on your Windows instance at launch][2]. If you are
59480
59491
  # using a command line tool, base64-encoding is performed for you, and
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.306.0'
75
+ GEM_VERSION = '1.307.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.306.0
4
+ version: 1.307.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-04-12 00:00:00.000000000 Z
11
+ date: 2022-04-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4