Skip to content

Commit

Permalink
Updates SDK to v2.1580.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Mar 18, 2024
1 parent fa7132b commit 5e98437
Show file tree
Hide file tree
Showing 26 changed files with 1,457 additions and 759 deletions.
27 changes: 27 additions & 0 deletions .changes/2.1580.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"type": "feature",
"category": "CloudFormation",
"description": "This release supports for a new API ListStackSetAutoDeploymentTargets, which provider auto-deployment configuration as a describable resource. Customers can now view the specific combinations of regions and OUs that are being auto-deployed."
},
{
"type": "feature",
"category": "KMS",
"description": "Adds the ability to use the default policy name by omitting the policyName parameter in calls to PutKeyPolicy and GetKeyPolicy"
},
{
"type": "feature",
"category": "MediaTailor",
"description": "This release adds support to allow customers to show different content within a channel depending on metadata associated with the viewer."
},
{
"type": "feature",
"category": "RDS",
"description": "This release launches the ModifyIntegration API and support for data filtering for zero-ETL Integrations."
},
{
"type": "feature",
"category": "S3",
"description": "Fix two issues with response root node names."
}
]
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1579.0-->
<!--LATEST=2.1580.0-->
<!--ENTRYINSERT-->

## 2.1580.0
* feature: CloudFormation: This release supports for a new API ListStackSetAutoDeploymentTargets, which provider auto-deployment configuration as a describable resource. Customers can now view the specific combinations of regions and OUs that are being auto-deployed.
* feature: KMS: Adds the ability to use the default policy name by omitting the policyName parameter in calls to PutKeyPolicy and GetKeyPolicy
* feature: MediaTailor: This release adds support to allow customers to show different content within a channel depending on metadata associated with the viewer.
* feature: RDS: This release launches the ModifyIntegration API and support for data filtering for zero-ETL Integrations.
* feature: S3: Fix two issues with response root node names.

## 2.1579.0
* feature: Backup: This release introduces a boolean attribute ManagedByAWSBackupOnly as part of ListRecoveryPointsByResource api to filter the recovery points based on ownership. This attribute can be used to filter out the recovery points protected by AWSBackup.
* feature: CodeBuild: AWS CodeBuild now supports overflow behavior on Reserved Capacity.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,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.1579.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1580.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
35 changes: 35 additions & 0 deletions apis/cloudformation-2010-05-15.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -2153,6 +2153,41 @@
}
}
},
"ListStackSetAutoDeploymentTargets": {
"input": {
"type": "structure",
"required": [
"StackSetName"
],
"members": {
"StackSetName": {},
"NextToken": {},
"MaxResults": {
"type": "integer"
},
"CallAs": {}
}
},
"output": {
"resultWrapper": "ListStackSetAutoDeploymentTargetsResult",
"type": "structure",
"members": {
"Summaries": {
"type": "list",
"member": {
"type": "structure",
"members": {
"OrganizationalUnitId": {},
"Regions": {
"shape": "S32"
}
}
}
},
"NextToken": {}
}
}
},
"ListStackSetOperationResults": {
"input": {
"type": "structure",
Expand Down
81 changes: 79 additions & 2 deletions apis/cloudformation-2010-05-15.normal.json

Large diffs are not rendered by default.

7 changes: 3 additions & 4 deletions apis/kms-2014-11-01.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -620,8 +620,7 @@
"input": {
"type": "structure",
"required": [
"KeyId",
"PolicyName"
"KeyId"
],
"members": {
"KeyId": {},
Expand All @@ -631,7 +630,8 @@
"output": {
"type": "structure",
"members": {
"Policy": {}
"Policy": {},
"PolicyName": {}
}
}
},
Expand Down Expand Up @@ -913,7 +913,6 @@
"type": "structure",
"required": [
"KeyId",
"PolicyName",
"Policy"
],
"members": {
Expand Down
16 changes: 9 additions & 7 deletions apis/kms-2014-11-01.normal.json

Large diffs are not rendered by default.

0 comments on commit 5e98437

Please sign in to comment.