Skip to content

Commit

Permalink
Updates SDK to v2.1353.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Apr 7, 2023
1 parent 8a20e16 commit 56ad952
Show file tree
Hide file tree
Showing 24 changed files with 2,625 additions and 463 deletions.
22 changes: 22 additions & 0 deletions .changes/2.1353.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[
{
"type": "feature",
"category": "DLM",
"description": "Updated timestamp format for GetLifecyclePolicy API"
},
{
"type": "feature",
"category": "DocDB",
"description": "This release adds a new parameter 'DBClusterParameterGroupName' to 'RestoreDBClusterFromSnapshot' API to associate the name of the DB cluster parameter group while performing restore."
},
{
"type": "feature",
"category": "Lambda",
"description": "This release adds a new Lambda InvokeWithResponseStream API to support streaming Lambda function responses. The release also adds a new InvokeMode parameter to Function Url APIs to control whether the response will be streamed or buffered."
},
{
"type": "feature",
"category": "QuickSight",
"description": "This release has two changes: adding the OR condition to tag-based RLS rules in CreateDataSet and UpdateDataSet; adding RefreshSchedule and Incremental RefreshProperties operations for users to programmatically configure SPICE dataset ingestions."
}
]
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1352.0-->
<!--LATEST=2.1353.0-->
<!--ENTRYINSERT-->

## 2.1353.0
* feature: DLM: Updated timestamp format for GetLifecyclePolicy API
* feature: DocDB: This release adds a new parameter 'DBClusterParameterGroupName' to 'RestoreDBClusterFromSnapshot' API to associate the name of the DB cluster parameter group while performing restore.
* feature: Lambda: This release adds a new Lambda InvokeWithResponseStream API to support streaming Lambda function responses. The release also adds a new InvokeMode parameter to Function Url APIs to control whether the response will be streamed or buffered.
* feature: QuickSight: This release has two changes: adding the OR condition to tag-based RLS rules in CreateDataSet and UpdateDataSet; adding RefreshSchedule and Incremental RefreshProperties operations for users to programmatically configure SPICE dataset ingestions.

## 2.1352.0
* feature: CloudFormation: Including UPDATE_COMPLETE as a failed status for DeleteStack waiter.
* feature: GreengrassV2: Add support for SUCCEEDED value in coreDeviceExecutionStatus field. Documentation updates for Greengrass V2.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
To use the SDK in the browser, simply add the following script tag to your
HTML pages:

<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1352.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1353.0.min.js"></script>

You can also build a custom browser SDK with your specified set of AWS services.
This can allow you to reduce the SDK's size, specify different API versions of
Expand Down
3 changes: 2 additions & 1 deletion apis/docdb-2014-10-31.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -1473,7 +1473,8 @@
},
"DeletionProtection": {
"type": "boolean"
}
},
"DBClusterParameterGroupName": {}
}
},
"output": {
Expand Down
8 changes: 6 additions & 2 deletions apis/docdb-2014-10-31.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -3626,7 +3626,7 @@
},
"GlobalClusterResourceId": {
"shape": "String",
"documentation": "<p>The Amazon Web Services Region-unique, immutable identifier for the global database cluster. This identifier is found in AWS CloudTrail log entries whenever the AWS KMS customer master key (CMK) for the cluster is accessed. </p>"
"documentation": "<p>The Amazon Web Services Region-unique, immutable identifier for the global database cluster. This identifier is found in CloudTrail log entries whenever the KMS customer master key (CMK) for the cluster is accessed. </p>"
},
"GlobalClusterArn": {
"shape": "String",
Expand Down Expand Up @@ -4467,6 +4467,10 @@
"DeletionProtection": {
"shape": "BooleanOptional",
"documentation": "<p>Specifies whether this cluster can be deleted. If <code>DeletionProtection</code> is enabled, the cluster cannot be deleted unless it is modified and <code>DeletionProtection</code> is disabled. <code>DeletionProtection</code> protects clusters from being accidentally deleted.</p>"
},
"DBClusterParameterGroupName": {
"shape": "String",
"documentation": "<p>The name of the DB cluster parameter group to associate with this DB cluster.</p> <p> <i>Type:</i> String.       <i>Required:</i> No.</p> <p>If this argument is omitted, the default DB cluster parameter group is used. If supplied, must match the name of an existing default DB cluster parameter group. The string must consist of from 1 to 255 letters, numbers or hyphens. Its first character must be a letter, and it cannot end with a hyphen or contain two consecutive hyphens.</p>"
}
},
"documentation": "<p>Represents the input to <a>RestoreDBClusterFromSnapshot</a>.</p>"
Expand All @@ -4492,7 +4496,7 @@
},
"RestoreType": {
"shape": "String",
"documentation": "<p>The type of restore to be performed. You can specify one of the following values:</p> <ul> <li> <p> <code>full-copy</code> - The new DB cluster is restored as a full copy of the source DB cluster.</p> </li> <li> <p> <code>copy-on-write</code> - The new DB cluster is restored as a clone of the source DB cluster.</p> </li> </ul> <p>If you don't specify a <code>RestoreType</code> value, then the new DB cluster is restored as a full copy of the source DB cluster.</p>"
"documentation": "<p>The type of restore to be performed. You can specify one of the following values:</p> <ul> <li> <p> <code>full-copy</code> - The new DB cluster is restored as a full copy of the source DB cluster.</p> </li> <li> <p> <code>copy-on-write</code> - The new DB cluster is restored as a clone of the source DB cluster.</p> </li> </ul> <p>Constraints: You can't specify <code>copy-on-write</code> if the engine version of the source DB cluster is earlier than 1.11.</p> <p>If you don't specify a <code>RestoreType</code> value, then the new DB cluster is restored as a full copy of the source DB cluster.</p>"
},
"SourceDBClusterIdentifier": {
"shape": "String",
Expand Down
Loading

0 comments on commit 56ad952

Please sign in to comment.