Skip to content

Commit 51f46e3

Browse files
misc: merge from main
2 parents e826a4e + e34e2b9 commit 51f46e3

File tree

8 files changed

+474
-10
lines changed

8 files changed

+474
-10
lines changed

.changes/653e5b0c-dd12-43ee-9c47-e3ef84cd7bc4.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [1.5.97] - 12/05/2025
4+
5+
### Features
6+
* (**iam**) Adding the ExpirationTime attribute to the delegation request resource.
7+
* (**inspector2**) This release adds a new ScanStatus called "Unsupported Code Artifacts". This ScanStatus will be returned when a Lambda function was not code scanned because it has unsupported code artifacts.
8+
* (**partnercentralaccount**) Adding Verification API's to Partner Central Account SDK.
9+
* (**sesv2**) Updating the desired url for `PutEmailIdentityDkimSigningAttributes` from v1 to v2
10+
11+
### Fixes
12+
* Upgrade to **smithy-kotlin** [**v1.5.21**](https://github.com/smithy-lang/smithy-kotlin/releases/tag/v1.5.21) to pick up bug fixes for logging context
13+
14+
### Documentation
15+
* (**ecs**) Updating stop-task API to encapsulate containers with custom stop signal
16+
317
## [1.5.96] - 12/04/2025
418

519
### Features

codegen/sdk/aws-models/ecs.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15436,7 +15436,7 @@
1543615436
}
1543715437
],
1543815438
"traits": {
15439-
"smithy.api#documentation": "<p>Stops a running task. Any tags associated with the task will be deleted.</p>\n <p>When you call <code>StopTask</code> on a task, the equivalent of <code>docker\n\t\t\t\tstop</code> is issued to the containers running in the task. This results in a\n\t\t\t\t<code>SIGTERM</code> value and a default 30-second timeout, after which the\n\t\t\t\t<code>SIGKILL</code> value is sent and the containers are forcibly stopped. If the\n\t\t\tcontainer handles the <code>SIGTERM</code> value gracefully and exits within 30 seconds\n\t\t\tfrom receiving it, no <code>SIGKILL</code> value is sent.</p>\n <p>For Windows containers, POSIX signals do not work and runtime stops the container by\n\t\t\tsending a <code>CTRL_SHUTDOWN_EVENT</code>. For more information, see <a href=\"https://github.com/moby/moby/issues/25982\">Unable to react to graceful shutdown\n\t\t\t\tof (Windows) container #25982</a> on GitHub.</p>\n <note>\n <p>The default 30-second timeout can be configured on the Amazon ECS container agent\n\t\t\t\twith the <code>ECS_CONTAINER_STOP_TIMEOUT</code> variable. For more information, see\n\t\t\t\t\t<a href=\"https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-config.html\">Amazon ECS Container Agent Configuration</a> in the\n\t\t\t\t\t<i>Amazon Elastic Container Service Developer Guide</i>.</p>\n </note>",
15439+
"smithy.api#documentation": "<p>Stops a running task. Any tags associated with the task will be deleted.</p>\n <p>When you call <code>StopTask</code> on a task, the equivalent of <code>docker\n\t\t\t\tstop</code> is issued to the containers running in the task. This results in a\n\t\t\t\tstop signal value and a default 30-second timeout, after which the\n\t\t\t\t<code>SIGKILL</code> value is sent and the containers are forcibly stopped. This \n\t\t\t\tsignal can be defined in your container image with the <code>STOPSIGNAL</code> instruction\n\t\t\t\tand will default to <code>SIGTERM</code>. If the container handles the <code>SIGTERM</code>\n\t\t\t\tvalue gracefully and exits within 30 seconds from receiving it, no <code>SIGKILL</code> value\n\t\t\t\tis sent.</p>\n <p>For Windows containers, POSIX signals do not work and runtime stops the container by\n\t\t\tsending a <code>CTRL_SHUTDOWN_EVENT</code>. For more information, see <a href=\"https://github.com/moby/moby/issues/25982\">Unable to react to graceful shutdown\n\t\t\t\tof (Windows) container #25982</a> on GitHub.</p>\n <note>\n <p>The default 30-second timeout can be configured on the Amazon ECS container agent\n\t\t\t\twith the <code>ECS_CONTAINER_STOP_TIMEOUT</code> variable. For more information, see\n\t\t\t\t\t<a href=\"https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-config.html\">Amazon ECS Container Agent Configuration</a> in the\n\t\t\t\t\t<i>Amazon Elastic Container Service Developer Guide</i>.</p>\n </note>",
1544015440
"smithy.api#examples": [
1544115441
{
1544215442
"title": "To stop a task",

codegen/sdk/aws-models/iam.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4616,7 +4616,13 @@
46164616
"State": {
46174617
"target": "com.amazonaws.iam#stateType",
46184618
"traits": {
4619-
"smithy.api#documentation": "<p>The state of this delegation request.</p>\n <p>See the <a href=\"IAM/latest/UserGuide/temporary-delegation-building-integration.html\">Understanding the Request Lifecycle</a> for an explanation of how these\n states are transitioned.</p>"
4619+
"smithy.api#documentation": "<p>The state of this delegation request.</p>\n <p>See the <a href=\"IAM/latest/UserGuide/temporary-delegation-building-integration.html#temporary-delegation-request-lifecycle\">Understanding the Request Lifecycle</a> for an explanation of how these\n states are transitioned.</p>"
4620+
}
4621+
},
4622+
"ExpirationTime": {
4623+
"target": "com.amazonaws.iam#dateType",
4624+
"traits": {
4625+
"smithy.api#documentation": "<p>The expiry time of this delegation request</p>\n <p>See the <a href=\"IAM/latest/UserGuide/temporary-delegation-building-integration.html#temporary-delegation-request-lifecycle\">Understanding the Request Lifecycle</a> for\n details on the life time of a delegation request at each state.</p>"
46204626
}
46214627
},
46224628
"RequestorId": {

0 commit comments

Comments
 (0)