Skip to content

Commit

Permalink
Release v1.43.14 (2022-03-08) (#4307)
Browse files Browse the repository at this point in the history
Release v1.43.14 (2022-03-08)
===

### Service Client Updates
* `service/eks`: Updates service API
* `service/keyspaces`: Updates service documentation
* `service/mediaconvert`: Updates service API and documentation
  * AWS Elemental MediaConvert SDK has added support for reading timecode from AVCHD sources and now provides the ability to segment WebVTT at the same interval as the video and audio in HLS packages.
  • Loading branch information
aws-sdk-go-automation committed Mar 8, 2022
1 parent b895bbc commit bf52ef6
Show file tree
Hide file tree
Showing 12 changed files with 418 additions and 127 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,12 @@
Release v1.43.14 (2022-03-08)
===

### Service Client Updates
* `service/eks`: Updates service API
* `service/keyspaces`: Updates service documentation
* `service/mediaconvert`: Updates service API and documentation
* AWS Elemental MediaConvert SDK has added support for reading timecode from AVCHD sources and now provides the ability to segment WebVTT at the same interval as the video and audio in HLS packages.

Release v1.43.13 (2022-03-07)
===

Expand Down
89 changes: 81 additions & 8 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aws/version.go
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.43.13"
const SDKVersion = "1.43.14"
3 changes: 2 additions & 1 deletion models/apis/eks/2017-11-01/api-2.json
Expand Up @@ -1806,7 +1806,8 @@
"InsufficientFreeAddresses",
"AccessDenied",
"InternalFailure",
"ClusterUnreachable"
"ClusterUnreachable",
"Ec2SubnetMissingIpv6Assignment"
]
},
"NodegroupResources":{
Expand Down
6 changes: 3 additions & 3 deletions models/apis/keyspaces/2022-02-10/docs-2.json
@@ -1,18 +1,18 @@
{
"version": "2.0",
"service": "<p>Amazon Keyspaces (for Apache Cassandra) is a scalable, highly available, and managed Apache Cassandra-compatible database service. Amazon Keyspaces makes it easy to migrate, run, and scale Cassandra workloads in the Amazon Web Services Cloud. With just a few clicks on the Amazon Web Services Management Console or a few lines of code, you can create keyspaces and tables in Amazon Keyspaces, without deploying any infrastructure or installing software. </p> <pre><code> &lt;p&gt;In addition to supporting Cassandra Query Language (CQL) requests via open-source Cassandra drivers, Amazon Keyspaces supports data definition language (DDL) operations to manage keyspaces and tables using the Amazon Web Services SDK and CLI. This API reference describes the supported DDL operations in detail. &lt;/p&gt; &lt;note&gt; &lt;p&gt;For the list of all supported CQL APIs, see &lt;a href=&quot;https://docs.aws.amazon.com/keyspaces/latest/devguide/cassandra-apis.html&quot;&gt;Supported Cassandra APIs, operations, and data types in Amazon Keyspaces&lt;/a&gt; in the &lt;i&gt;Amazon Keyspaces Developer Guide&lt;/i&gt;.&lt;/p&gt; &lt;p&gt;For more information about Amazon Web Services APIs, for example how to implement retry logic or how to sign Amazon Web Services API requests, see &lt;a href=&quot;https://docs.aws.amazon.com/general/latest/gr/aws-apis.html&quot;&gt;Amazon Web Services APIs&lt;/a&gt; in the &lt;i&gt;General Reference&lt;/i&gt;. &lt;/p&gt; &lt;/note&gt; </code></pre>",
"service": "<p>Amazon Keyspaces (for Apache Cassandra) is a scalable, highly available, and managed Apache Cassandra-compatible database service. Amazon Keyspaces makes it easy to migrate, run, and scale Cassandra workloads in the Amazon Web Services Cloud. With just a few clicks on the Amazon Web Services Management Console or a few lines of code, you can create keyspaces and tables in Amazon Keyspaces, without deploying any infrastructure or installing software. </p> <pre><code> &lt;p&gt;In addition to supporting Cassandra Query Language (CQL) requests via open-source Cassandra drivers, Amazon Keyspaces supports data definition language (DDL) operations to manage keyspaces and tables using the Amazon Web Services SDK and CLI. This API reference describes the supported DDL operations in detail. &lt;/p&gt; &lt;p&gt;For the list of all supported CQL APIs, see &lt;a href=&quot;https://docs.aws.amazon.com/keyspaces/latest/devguide/cassandra-apis.html&quot;&gt;Supported Cassandra APIs, operations, and data types in Amazon Keyspaces&lt;/a&gt; in the &lt;i&gt;Amazon Keyspaces Developer Guide&lt;/i&gt;.&lt;/p&gt; &lt;p&gt;To learn how Amazon Keyspaces API actions are tracked in CloudTrail, see &lt;a href=&quot;https://docs.aws.amazon.com/keyspaces/latest/devguide/logging-using-cloudtrail.html#service-name-info-in-cloudtrail&quot;&gt;Amazon Keyspaces information in CloudTrail&lt;/a&gt; in the &lt;i&gt;Amazon Keyspaces Developer Guide&lt;/i&gt;.&lt;/p&gt; &lt;p&gt;For more information about Amazon Web Services APIs, for example how to implement retry logic or how to sign Amazon Web Services API requests, see &lt;a href=&quot;https://docs.aws.amazon.com/general/latest/gr/aws-apis.html&quot;&gt;Amazon Web Services APIs&lt;/a&gt; in the &lt;i&gt;General Reference&lt;/i&gt;. &lt;/p&gt; </code></pre>",
"operations": {
"CreateKeyspace": "<p>The <code>CreateKeyspace</code> operation adds a new keyspace to your account. In an Amazon Web Services account, keyspace names must be unique within each Region. </p> <p> <code>CreateKeyspace</code> is an asynchronous operation. You can monitor the creation status of the new keyspace by using the <code>GetKeyspace</code> operation. </p> <p>For more information, see <a href=\"https://docs.aws.amazon.com/keyspaces/latest/devguide/working-with-keyspaces.html#keyspaces-create\">Creating keyspaces</a> in the <i>Amazon Keyspaces Developer Guide</i>.</p>",
"CreateTable": "<p>The <code>CreateTable</code> operation adds a new table to the specified keyspace. Within a keyspace, table names must be unique. </p> <p> <code>CreateTable</code> is an asynchronous operation. When the request is received, the status of the table is set to <code>CREATING</code>. You can monitor the creation status of the new table by using the <code>GetTable</code> operation, which returns the current <code>status</code> of the table. You can start using a table when the status is <code>ACTIVE</code>. </p> <p>For more information, see <a href=\"https://docs.aws.amazon.com/keyspaces/latest/devguide/working-with-tables.html#tables-create\">Creating tables</a> in the <i>Amazon Keyspaces Developer Guide</i>.</p>",
"DeleteKeyspace": "<p>The <code>DeleteKeyspace</code> operation deletes a keyspace and all of its tables. </p>",
"DeleteTable": "<p> The <code>DeleteTable</code> operation deletes a table and all of its data. After a <code>DeleteTable</code> request is received, the specified table is in the <code>DELETING</code> state until Amazon Keyspaces completes the deletion. If the table is in the <code>ACTIVE</code> state, you can delete it. If a table is either in the <code>CREATING</code> or <code>UPDATING</code> states, then Amazon Keyspaces returns a <code>ResourceInUseException</code>. If the specified table does not exist, Amazon Keyspaces returns a <code>ResourceNotFoundException</code>. If the table is already in the <code>DELETING</code> state, no error is returned.</p>",
"GetKeyspace": "<p>Returns the name and the Amazon Resource Name (ARN) of the specified table.</p>",
"GetTable": "<p>Returns information about the table, including the table's name and current status, the keyspace name, configuration settings, and metadata.</p>",
"GetTable": "<p>Returns information about the table, including the table's name and current status, the keyspace name, configuration settings, and metadata.</p> <p>To read table metadata using <code>GetTable</code>, <code>Select</code> action permissions for the table and system tables are required to complete the operation.</p>",
"ListKeyspaces": "<p>Returns a list of keyspaces.</p>",
"ListTables": "<p>Returns a list of tables for a specified keyspace.</p>",
"ListTagsForResource": "<p>Returns a list of all tags associated with the specified Amazon Keyspaces resource.</p>",
"RestoreTable": "<p>Restores the specified table to the specified point in time within the <code>earliest_restorable_timestamp</code> and the current time. For more information about restore points, see <a href=\"https://docs.aws.amazon.com/keyspaces/latest/devguide/PointInTimeRecovery_HowItWorks.html#howitworks_backup_window\"> Time window for PITR continuous backups</a> in the <i>Amazon Keyspaces Developer Guide</i>. </p> <p> Any number of users can execute up to 4 concurrent restores (any type of restore) in a given account.</p> <p>When you restore using point in time recovery, Amazon Keyspaces restores your source table's schema and data to the state based on the selected timestamp <code>(day:hour:minute:second)</code> to a new table. The Time to Live (TTL) settings are also restored to the state based on the selected timestamp.</p> <p>In addition to the table's schema, data, and TTL settings, <code>RestoreTable</code> restores the capacity mode, encryption, and point-in-time recovery settings from the source table. Unlike the table's schema data and TTL settings, which are restored based on the selected timestamp, these settings are always restored based on the table's settings as of the current time or when the table was deleted.</p> <p>You can also overwrite these settings during restore:</p> <ul> <li> <p>Read/write capacity mode</p> </li> <li> <p>Provisioned throughput capacity settings</p> </li> <li> <p>Point-in-time (PITR) settings</p> </li> <li> <p>Tags</p> </li> </ul> <p>For more information, see <a href=\"https://docs.aws.amazon.com/keyspaces/latest/devguide/PointInTimeRecovery_HowItWorks.html#howitworks_backup_settings\">PITR restore settings</a> in the <i>Amazon Keyspaces Developer Guide</i>.</p> <p>The following settings are not restored, and you must configure them manually for the new table. </p> <ul> <li> <p>Automatic scaling policies (for tables that use provisioned capacity mode)</p> </li> <li> <p>Identity and Access Management (IAM) policies</p> </li> <li> <p>Amazon CloudWatch metrics and alarms</p> </li> </ul>",
"TagResource": "<p>Associates a set of tags with a Amazon Keyspaces resource. You can then activate these user-defined tags so that they appear on the Cost Management Console for cost allocation tracking.</p> <p>For more information, see <a href=\"https://docs.aws.amazon.com/keyspaces/latest/devguide/tagging-keyspaces.html\">Adding tags and labels to Amazon Keyspaces resources</a> in the <i>Amazon Keyspaces Developer Guide</i>.</p>",
"TagResource": "<p>Associates a set of tags with a Amazon Keyspaces resource. You can then activate these user-defined tags so that they appear on the Cost Management Console for cost allocation tracking. For more information, see <a href=\"https://docs.aws.amazon.com/keyspaces/latest/devguide/tagging-keyspaces.html\">Adding tags and labels to Amazon Keyspaces resources</a> in the <i>Amazon Keyspaces Developer Guide</i>.</p> <p>For IAM policy examples that show how to control access to Amazon Keyspaces resources based on tags, see <a href=\"https://docs.aws.amazon.com/keyspaces/latest/devguide/security_iam_id-based-policy-examples-tags\">Amazon Keyspaces resource access based on tags</a> in the <i>Amazon Keyspaces Developer Guide</i>.</p>",
"UntagResource": "<p>Removes the association of tags from a Amazon Keyspaces resource.</p>",
"UpdateTable": "<p>Adds new columns to the table or updates one of the table's settings, for example capacity mode, encryption, point-in-time recovery, or ttl settings. Note that you can only update one specific table setting per update operation.</p>"
},
Expand Down
22 changes: 22 additions & 0 deletions models/apis/mediaconvert/2017-08-29/api-2.json
Expand Up @@ -4117,6 +4117,13 @@
"DISABLED"
]
},
"EmbeddedTimecodeOverride": {
"type": "string",
"enum": [
"NONE",
"USE_MDPM"
]
},
"Endpoint": {
"type": "structure",
"members": {
Expand Down Expand Up @@ -5307,6 +5314,13 @@
"NONE"
]
},
"HlsCaptionSegmentLengthControl": {
"type": "string",
"enum": [
"LARGE_SEGMENTS",
"MATCH_VIDEO"
]
},
"HlsClientCache": {
"type": "string",
"enum": [
Expand Down Expand Up @@ -5402,6 +5416,10 @@
"shape": "HlsCaptionLanguageSetting",
"locationName": "captionLanguageSetting"
},
"CaptionSegmentLengthControl": {
"shape": "HlsCaptionSegmentLengthControl",
"locationName": "captionSegmentLengthControl"
},
"ClientCache": {
"shape": "HlsClientCache",
"locationName": "clientCache"
Expand Down Expand Up @@ -9625,6 +9643,10 @@
"shape": "ColorSpaceUsage",
"locationName": "colorSpaceUsage"
},
"EmbeddedTimecodeOverride": {
"shape": "EmbeddedTimecodeOverride",
"locationName": "embeddedTimecodeOverride"
},
"Hdr10Metadata": {
"shape": "Hdr10Metadata",
"locationName": "hdr10Metadata"
Expand Down

0 comments on commit bf52ef6

Please sign in to comment.