Skip to content

Commit

Permalink
Updates SDK to v2.1490.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Nov 7, 2023
1 parent 85e4ae4 commit 0afcbaf
Show file tree
Hide file tree
Showing 19 changed files with 1,906 additions and 299 deletions.
17 changes: 17 additions & 0 deletions .changes/2.1490.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[
{
"type": "feature",
"category": "DLM",
"description": "Added support for pre and post scripts in Amazon Data Lifecycle Manager EBS snapshot lifecycle policies."
},
{
"type": "feature",
"category": "DataExchange",
"description": "Updated SendDataSetNotificationRequest Comment to be maximum length 4096."
},
{
"type": "feature",
"category": "RDS",
"description": "This Amazon RDS release adds support for the multi-tenant configuration. In this configuration, an RDS DB instance can contain multiple tenant databases. In RDS for Oracle, a tenant database is a pluggable database (PDB)."
}
]
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1489.0-->
<!--LATEST=2.1490.0-->
<!--ENTRYINSERT-->

## 2.1490.0
* feature: DLM: Added support for pre and post scripts in Amazon Data Lifecycle Manager EBS snapshot lifecycle policies.
* feature: DataExchange: Updated SendDataSetNotificationRequest Comment to be maximum length 4096.
* feature: RDS: This Amazon RDS release adds support for the multi-tenant configuration. In this configuration, an RDS DB instance can contain multiple tenant databases. In RDS for Oracle, a tenant database is a pluggable database (PDB).

## 2.1489.0
* feature: CodeBuild: AWS CodeBuild now supports AWS Lambda compute.
* feature: Connect: Added new API that allows Amazon Connect Outbound Campaigns to create contacts in Amazon Connect when ingesting your dial requests.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,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.1489.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1490.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
7 changes: 6 additions & 1 deletion apis/dataexchange-2017-07-25.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -3777,7 +3777,7 @@
"idempotencyToken": true
},
"Comment": {
"shape": "__stringMin0Max16384",
"shape": "__stringMin0Max4096",
"documentation": "<p>Free-form text field for providers to add information about their notifications.</p>"
},
"DataSetId": {
Expand Down Expand Up @@ -4223,6 +4223,11 @@
"max": 16384,
"min": 0
},
"__stringMin0Max4096": {
"type": "string",
"max": 4096,
"min": 0
},
"__stringMin10Max512": {
"type": "string",
"max": 512,
Expand Down
52 changes: 39 additions & 13 deletions apis/dlm-2018-01-12.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"shape": "S5"
},
"Tags": {
"shape": "S1w"
"shape": "S25"
}
}
},
Expand Down Expand Up @@ -115,7 +115,7 @@
"Description": {},
"State": {},
"Tags": {
"shape": "S1w"
"shape": "S25"
},
"PolicyType": {}
}
Expand Down Expand Up @@ -153,16 +153,16 @@
"StatusMessage": {},
"ExecutionRoleArn": {},
"DateCreated": {
"shape": "S2g"
"shape": "S2p"
},
"DateModified": {
"shape": "S2g"
"shape": "S2p"
},
"PolicyDetails": {
"shape": "S5"
},
"Tags": {
"shape": "S1w"
"shape": "S25"
},
"PolicyArn": {}
}
Expand Down Expand Up @@ -191,7 +191,7 @@
"type": "structure",
"members": {
"Tags": {
"shape": "S1w"
"shape": "S25"
}
}
}
Expand All @@ -212,7 +212,7 @@
"locationName": "resourceArn"
},
"Tags": {
"shape": "S1w"
"shape": "S25"
}
}
},
Expand Down Expand Up @@ -330,7 +330,33 @@
"type": "list",
"member": {}
},
"CronExpression": {}
"CronExpression": {},
"Scripts": {
"type": "list",
"member": {
"type": "structure",
"required": [
"ExecutionHandler"
],
"members": {
"Stages": {
"type": "list",
"member": {}
},
"ExecutionHandlerService": {},
"ExecutionHandler": {},
"ExecuteOperationOnScriptFailure": {
"type": "boolean"
},
"ExecutionTimeout": {
"type": "integer"
},
"MaximumRetryCount": {
"type": "integer"
}
}
}
}
}
},
"RetainRule": {
Expand Down Expand Up @@ -382,7 +408,7 @@
"type": "boolean"
},
"RetainRule": {
"shape": "S16"
"shape": "S1f"
},
"DeprecateRule": {
"type": "structure",
Expand Down Expand Up @@ -533,7 +559,7 @@
}
},
"RetainRule": {
"shape": "S16"
"shape": "S1f"
}
}
}
Expand All @@ -558,7 +584,7 @@
"Value": {}
}
},
"S16": {
"S1f": {
"type": "structure",
"members": {
"Interval": {
Expand All @@ -567,12 +593,12 @@
"IntervalUnit": {}
}
},
"S1w": {
"S25": {
"type": "map",
"key": {},
"value": {}
},
"S2g": {
"S2p": {
"type": "timestamp",
"timestampFormat": "iso8601"
}
Expand Down
Loading

0 comments on commit 0afcbaf

Please sign in to comment.