-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release-1.38.4: Bumping version to 1.38.4 Update changelog based on model updates CLI examples for ec2, ecs, ivs-realtime, lambda (#9179)
- Loading branch information
Showing
15 changed files
with
360 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
[ | ||
{ | ||
"category": "``bedrock-agent``", | ||
"description": "This release lets Amazon Bedrock Flows support newer models by increasing the maximum length of output in a prompt configuration. This release also increases the maximum number of prompt variables to 20 and the maximum number of node inputs to 20.", | ||
"type": "api-change" | ||
}, | ||
{ | ||
"category": "``bedrock-data-automation``", | ||
"description": "Renamed and added new StandardConfiguration enums. Added support to update EncryptionConfiguration in UpdateBlueprint and UpdateDataAutomation APIs. Changed HttpStatus code for DeleteBlueprint and DeleteDataAutomationProject APIs to 200 from 204. Added APIs to support tagging.", | ||
"type": "api-change" | ||
}, | ||
{ | ||
"category": "``bedrock-data-automation-runtime``", | ||
"description": "Added a mandatory parameter DataAutomationProfileArn to support for cross region inference for InvokeDataAutomationAsync API. Renamed DataAutomationArn to DataAutomationProjectArn. Added APIs to support tagging.", | ||
"type": "api-change" | ||
}, | ||
{ | ||
"category": "``dms``", | ||
"description": "Add skipped status to the Result Statistics of an Assessment Run", | ||
"type": "api-change" | ||
}, | ||
{ | ||
"category": "``eks``", | ||
"description": "Adding licenses to EKS Anywhere Subscription operations response.", | ||
"type": "api-change" | ||
}, | ||
{ | ||
"category": "``mediaconvert``", | ||
"description": "The AWS MediaConvert Probe API allows you to analyze media files and retrieve detailed metadata about their content, format, and structure.", | ||
"type": "api-change" | ||
}, | ||
{ | ||
"category": "``pricing``", | ||
"description": "Update GetProducts and DescribeServices API request input validations.", | ||
"type": "api-change" | ||
}, | ||
{ | ||
"category": "``ssm``", | ||
"description": "Systems Manager doc-only updates for Feb. 2025.", | ||
"type": "api-change" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
**Wait until an ECS service becomes inactive** | ||
|
||
The following ``service-inactive`` example waits until ECS services becomes inactive in the cluster. :: | ||
|
||
aws ecs wait services-inactive \ | ||
--cluster MyCluster \ | ||
--services MyService | ||
|
||
This command produces no output. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
**Example 1: Wait until an ECS task is in stopped state** | ||
|
||
The following ``wait tasks-stopped`` example waits until the provided tasks in the command are in a stopped state. You can pass IDs or full ARN of the tasks. This example uses ID of the task. :: | ||
|
||
aws ecs wait tasks-stopped \ | ||
--cluster MyCluster \ | ||
--tasks 2c196f0a00dd4f58b7c8897a5c7bce13 | ||
|
||
This command produces no output. | ||
|
||
**Example 2: Wait until multiple ECS tasks are in stopped state** | ||
|
||
The following ``wait tasks-stopped`` example waits until the multiple tasks provided in the command are in a stopped state. You can pass IDs or full ARN of the tasks. This example uses IDs of the tasks. :: | ||
|
||
aws ecs wait tasks-stopped \ | ||
--cluster MyCluster \ | ||
--tasks 2c196f0a00dd4f58b7c8897a5c7bce13 4d590253bb114126b7afa7b58EXAMPLE | ||
|
||
This command produces no output. | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.