Skip to content

Commit 9830e80

Browse files
Release v1.47.7 (2023-11-09) (#5061)
Release v1.47.7 (2023-11-09) === ### Service Client Updates * `service/sqs`: Updates service API and documentation * This release enables customers to call SQS using AWS JSON-1.0 protocol and bug fix.
1 parent 4da2672 commit 9830e80

File tree

5 files changed

+11
-47
lines changed

5 files changed

+11
-47
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Release v1.47.7 (2023-11-09)
2+
===
3+
4+
### Service Client Updates
5+
* `service/sqs`: Updates service API and documentation
6+
* This release enables customers to call SQS using AWS JSON-1.0 protocol and bug fix.
7+
18
Release v1.47.6 (2023-11-08)
29
===
310

aws/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ package aws
55
const SDKName = "aws-sdk-go"
66

77
// SDKVersion is the version of this SDK
8-
const SDKVersion = "1.47.6"
8+
const SDKVersion = "1.47.7"

models/apis/sqs/2012-11-05/api-2.json

+1-11
Original file line numberDiff line numberDiff line change
@@ -830,7 +830,7 @@
830830
"type":"structure",
831831
"members":{
832832
"TaskHandle":{"shape":"String"},
833-
"Status":{"shape":"TaskStatus"},
833+
"Status":{"shape":"String"},
834834
"SourceArn":{"shape":"String"},
835835
"DestinationArn":{"shape":"String"},
836836
"MaxNumberOfMessagesPerSecond":{"shape":"NullableInteger"},
@@ -1251,16 +1251,6 @@
12511251
}
12521252
},
12531253
"TagValue":{"type":"string"},
1254-
"TaskStatus":{
1255-
"type":"string",
1256-
"enum":[
1257-
"RUNNING",
1258-
"FAILED",
1259-
"CANCELLING",
1260-
"CANCELLED",
1261-
"COMPLETED"
1262-
]
1263-
},
12641254
"Token":{"type":"string"},
12651255
"TooManyEntriesInBatchRequest":{
12661256
"type":"structure",

models/apis/sqs/2012-11-05/docs-2.json

+1-6
Original file line numberDiff line numberDiff line change
@@ -661,6 +661,7 @@
661661
"ListDeadLetterSourceQueuesRequest$QueueUrl": "<p>The URL of a dead-letter queue.</p> <p>Queue URLs and names are case-sensitive.</p>",
662662
"ListMessageMoveTasksRequest$SourceArn": "<p>The ARN of the queue whose message movement tasks are to be listed.</p>",
663663
"ListMessageMoveTasksResultEntry$TaskHandle": "<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>",
664+
"ListMessageMoveTasksResultEntry$Status": "<p>The status of the message movement task. Possible values are: RUNNING, COMPLETED, CANCELLING, CANCELLED, and FAILED.</p>",
664665
"ListMessageMoveTasksResultEntry$SourceArn": "<p>The ARN of the queue that contains the messages to be moved to another queue.</p>",
665666
"ListMessageMoveTasksResultEntry$DestinationArn": "<p>The ARN of the destination queue if it has been specified in the <code>StartMessageMoveTask</code> request. If a <code>DestinationArn</code> has not been specified in the <code>StartMessageMoveTask</code> request, this field value will be NULL.</p>",
666667
"ListMessageMoveTasksResultEntry$FailureReason": "<p>The task failure reason (only included if the task status is FAILED).</p>",
@@ -752,12 +753,6 @@
752753
"TagMap$value": null
753754
}
754755
},
755-
"TaskStatus": {
756-
"base": null,
757-
"refs": {
758-
"ListMessageMoveTasksResultEntry$Status": "<p>The status of the message movement task. Possible values are: RUNNING, COMPLETED, CANCELLING, CANCELLED, and FAILED.</p>"
759-
}
760-
},
761756
"Token": {
762757
"base": null,
763758
"refs": {

service/sqs/api.go

+1-29
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)