Skip to content

Commit

Permalink
Updates SDK to v2.1492.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Nov 9, 2023
1 parent 38eddc1 commit 9520097
Show file tree
Hide file tree
Showing 12 changed files with 51 additions and 52 deletions.
7 changes: 7 additions & 0 deletions .changes/2.1492.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[
{
"type": "feature",
"category": "SQS",
"description": "This release enables customers to call SQS using AWS JSON-1.0 protocol and bug fix."
}
]
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1491.0-->
<!--LATEST=2.1492.0-->
<!--ENTRYINSERT-->

## 2.1492.0
* feature: SQS: This release enables customers to call SQS using AWS JSON-1.0 protocol and bug fix.

## 2.1491.0
* feature: Connect: This release clarifies in our public documentation that InstanceId is a requirement for SearchUsers API requests.
* feature: ConnectCases: This release adds the ability to add/view comment authors through CreateRelatedItem and SearchRelatedItems API. For more information see https://docs.aws.amazon.com/cases/latest/APIReference/Welcome.html
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.1491.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1492.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
26 changes: 13 additions & 13 deletions apis/sqs-2012-11-05.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@
},
"MD5OfMessageAttributes": {},
"MessageAttributes": {
"shape": "S1r"
"shape": "S1q"
}
}
},
Expand Down Expand Up @@ -476,10 +476,10 @@
"type": "integer"
},
"MessageAttributes": {
"shape": "S1r"
"shape": "S1q"
},
"MessageSystemAttributes": {
"shape": "S1y"
"shape": "S1x"
},
"MessageDeduplicationId": {},
"MessageGroupId": {}
Expand Down Expand Up @@ -520,10 +520,10 @@
"type": "integer"
},
"MessageAttributes": {
"shape": "S1r"
"shape": "S1q"
},
"MessageSystemAttributes": {
"shape": "S1y"
"shape": "S1x"
},
"MessageDeduplicationId": {},
"MessageGroupId": {}
Expand Down Expand Up @@ -678,7 +678,7 @@
"member": {},
"flattened": true
},
"S1r": {
"S1q": {
"type": "map",
"key": {},
"value": {
Expand All @@ -692,29 +692,29 @@
"type": "blob"
},
"StringListValues": {
"shape": "S1u",
"shape": "S1t",
"flattened": true
},
"BinaryListValues": {
"shape": "S1v",
"shape": "S1u",
"flattened": true
},
"DataType": {}
}
},
"flattened": true
},
"S1u": {
"S1t": {
"type": "list",
"member": {}
},
"S1v": {
"S1u": {
"type": "list",
"member": {
"type": "blob"
}
},
"S1y": {
"S1x": {
"type": "map",
"key": {},
"value": {
Expand All @@ -728,11 +728,11 @@
"type": "blob"
},
"StringListValues": {
"shape": "S1u",
"shape": "S1t",
"flattened": true
},
"BinaryListValues": {
"shape": "S1v",
"shape": "S1u",
"flattened": true
},
"DataType": {}
Expand Down
12 changes: 1 addition & 11 deletions apis/sqs-2012-11-05.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -1342,7 +1342,7 @@
"documentation": "<p>An identifier associated with a message movement task. When this field is returned in the response of the <code>ListMessageMoveTasks</code> action, it is only populated for tasks that are in RUNNING status.</p>"
},
"Status": {
"shape": "TaskStatus",
"shape": "String",
"documentation": "<p>The status of the message movement task. Possible values are: RUNNING, COMPLETED, CANCELLING, CANCELLED, and FAILED.</p>"
},
"SourceArn": {
Expand Down Expand Up @@ -2013,16 +2013,6 @@
"TagValue": {
"type": "string"
},
"TaskStatus": {
"type": "string",
"enum": [
"RUNNING",
"FAILED",
"CANCELLING",
"CANCELLED",
"COMPLETED"
]
},
"Token": {
"type": "string"
},
Expand Down
3 changes: 1 addition & 2 deletions clients/sqs.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ declare namespace SQS {
/**
* The status of the message movement task. Possible values are: RUNNING, COMPLETED, CANCELLING, CANCELLED, and FAILED.
*/
Status?: TaskStatus;
Status?: String;
/**
* The ARN of the queue that contains the messages to be moved to another queue.
*/
Expand Down Expand Up @@ -846,7 +846,6 @@ declare namespace SQS {
Tags: TagMap;
}
export type TagValue = string;
export type TaskStatus = "RUNNING"|"FAILED"|"CANCELLING"|"CANCELLED"|"COMPLETED"|string;
export type Token = string;
export interface UntagQueueRequest {
/**
Expand Down
2 changes: 1 addition & 1 deletion dist/aws-sdk-core-react-native.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
/**
* @constant
*/
VERSION: '2.1491.0',
VERSION: '2.1492.0',

/**
* @api private
Expand Down
Loading

0 comments on commit 9520097

Please sign in to comment.