diff --git a/CHANGELOG.md b/CHANGELOG.md index b6104bb817d..d08382fb079 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +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. + Release v1.47.6 (2023-11-08) === diff --git a/aws/version.go b/aws/version.go index 29e42ef3fff..9eb8757966f 100644 --- a/aws/version.go +++ b/aws/version.go @@ -5,4 +5,4 @@ package aws const SDKName = "aws-sdk-go" // SDKVersion is the version of this SDK -const SDKVersion = "1.47.6" +const SDKVersion = "1.47.7" diff --git a/models/apis/sqs/2012-11-05/api-2.json b/models/apis/sqs/2012-11-05/api-2.json index 9df920838aa..79cf0bae9a2 100644 --- a/models/apis/sqs/2012-11-05/api-2.json +++ b/models/apis/sqs/2012-11-05/api-2.json @@ -830,7 +830,7 @@ "type":"structure", "members":{ "TaskHandle":{"shape":"String"}, - "Status":{"shape":"TaskStatus"}, + "Status":{"shape":"String"}, "SourceArn":{"shape":"String"}, "DestinationArn":{"shape":"String"}, "MaxNumberOfMessagesPerSecond":{"shape":"NullableInteger"}, @@ -1251,16 +1251,6 @@ } }, "TagValue":{"type":"string"}, - "TaskStatus":{ - "type":"string", - "enum":[ - "RUNNING", - "FAILED", - "CANCELLING", - "CANCELLED", - "COMPLETED" - ] - }, "Token":{"type":"string"}, "TooManyEntriesInBatchRequest":{ "type":"structure", diff --git a/models/apis/sqs/2012-11-05/docs-2.json b/models/apis/sqs/2012-11-05/docs-2.json index 64cfd6a491f..be9872237ef 100644 --- a/models/apis/sqs/2012-11-05/docs-2.json +++ b/models/apis/sqs/2012-11-05/docs-2.json @@ -661,6 +661,7 @@ "ListDeadLetterSourceQueuesRequest$QueueUrl": "

The URL of a dead-letter queue.

Queue URLs and names are case-sensitive.

", "ListMessageMoveTasksRequest$SourceArn": "

The ARN of the queue whose message movement tasks are to be listed.

", "ListMessageMoveTasksResultEntry$TaskHandle": "

An identifier associated with a message movement task. When this field is returned in the response of the ListMessageMoveTasks action, it is only populated for tasks that are in RUNNING status.

", + "ListMessageMoveTasksResultEntry$Status": "

The status of the message movement task. Possible values are: RUNNING, COMPLETED, CANCELLING, CANCELLED, and FAILED.

", "ListMessageMoveTasksResultEntry$SourceArn": "

The ARN of the queue that contains the messages to be moved to another queue.

", "ListMessageMoveTasksResultEntry$DestinationArn": "

The ARN of the destination queue if it has been specified in the StartMessageMoveTask request. If a DestinationArn has not been specified in the StartMessageMoveTask request, this field value will be NULL.

", "ListMessageMoveTasksResultEntry$FailureReason": "

The task failure reason (only included if the task status is FAILED).

", @@ -752,12 +753,6 @@ "TagMap$value": null } }, - "TaskStatus": { - "base": null, - "refs": { - "ListMessageMoveTasksResultEntry$Status": "

The status of the message movement task. Possible values are: RUNNING, COMPLETED, CANCELLING, CANCELLED, and FAILED.

" - } - }, "Token": { "base": null, "refs": { diff --git a/service/sqs/api.go b/service/sqs/api.go index cc789fe1621..3850f80a885 100644 --- a/service/sqs/api.go +++ b/service/sqs/api.go @@ -6158,7 +6158,7 @@ type ListMessageMoveTasksResultEntry struct { // The status of the message movement task. Possible values are: RUNNING, COMPLETED, // CANCELLING, CANCELLED, and FAILED. - Status *string `type:"string" enum:"TaskStatus"` + Status *string `type:"string"` // An identifier associated with a message movement task. When this field is // returned in the response of the ListMessageMoveTasks action, it is only populated @@ -9327,31 +9327,3 @@ func QueueAttributeName_Values() []string { QueueAttributeNameSqsManagedSseEnabled, } } - -const ( - // TaskStatusRunning is a TaskStatus enum value - TaskStatusRunning = "RUNNING" - - // TaskStatusFailed is a TaskStatus enum value - TaskStatusFailed = "FAILED" - - // TaskStatusCancelling is a TaskStatus enum value - TaskStatusCancelling = "CANCELLING" - - // TaskStatusCancelled is a TaskStatus enum value - TaskStatusCancelled = "CANCELLED" - - // TaskStatusCompleted is a TaskStatus enum value - TaskStatusCompleted = "COMPLETED" -) - -// TaskStatus_Values returns all elements of the TaskStatus enum -func TaskStatus_Values() []string { - return []string{ - TaskStatusRunning, - TaskStatusFailed, - TaskStatusCancelling, - TaskStatusCancelled, - TaskStatusCompleted, - } -}