You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"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.",
5
+
"type": "api-change"
6
+
},
7
+
{
8
+
"category": "``bedrock-data-automation``",
9
+
"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.",
"description": "Added a mandatory parameter DataAutomationProfileArn to support for cross region inference for InvokeDataAutomationAsync API. Renamed DataAutomationArn to DataAutomationProjectArn. Added APIs to support tagging.",
15
+
"type": "api-change"
16
+
},
17
+
{
18
+
"category": "``dms``",
19
+
"description": "Add skipped status to the Result Statistics of an Assessment Run",
20
+
"type": "api-change"
21
+
},
22
+
{
23
+
"category": "``eks``",
24
+
"description": "Adding licenses to EKS Anywhere Subscription operations response.",
25
+
"type": "api-change"
26
+
},
27
+
{
28
+
"category": "``mediaconvert``",
29
+
"description": "The AWS MediaConvert Probe API allows you to analyze media files and retrieve detailed metadata about their content, format, and structure.",
30
+
"type": "api-change"
31
+
},
32
+
{
33
+
"category": "``pricing``",
34
+
"description": "Update GetProducts and DescribeServices API request input validations.",
35
+
"type": "api-change"
36
+
},
37
+
{
38
+
"category": "``ssm``",
39
+
"description": "Systems Manager doc-only updates for Feb. 2025.",
Copy file name to clipboardexpand all lines: CHANGELOG.rst
+13
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,19 @@
2
2
CHANGELOG
3
3
=========
4
4
5
+
1.38.4
6
+
======
7
+
8
+
* api-change:``bedrock-agent``: 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.
9
+
* api-change:``bedrock-data-automation``: 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.
10
+
* api-change:``bedrock-data-automation-runtime``: Added a mandatory parameter DataAutomationProfileArn to support for cross region inference for InvokeDataAutomationAsync API. Renamed DataAutomationArn to DataAutomationProjectArn. Added APIs to support tagging.
11
+
* api-change:``dms``: Add skipped status to the Result Statistics of an Assessment Run
12
+
* api-change:``eks``: Adding licenses to EKS Anywhere Subscription operations response.
13
+
* api-change:``mediaconvert``: The AWS MediaConvert Probe API allows you to analyze media files and retrieve detailed metadata about their content, format, and structure.
14
+
* api-change:``pricing``: Update GetProducts and DescribeServices API request input validations.
15
+
* api-change:``ssm``: Systems Manager doc-only updates for Feb. 2025.
Copy file name to clipboardexpand all lines: awscli/examples/ec2/allocate-address.rst
+22-1
Original file line number
Diff line number
Diff line change
@@ -53,4 +53,25 @@ Output::
53
53
"NetworkBorderGroup": "us-west-2",
54
54
}
55
55
56
-
For more information, see `Elastic IP addresses <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html>`__ in the *Amazon EC2 User Guide*.
56
+
For more information, see `Elastic IP addresses <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html>`__ in the *Amazon EC2 User Guide*.
57
+
58
+
**Example 4: To allocate an Elastic IP address from an IPAM pool**
59
+
60
+
The following ``allocate-address`` example allocates a specific /32 Elastic IP address from an Amazon VPC IP Address Manager (IPAM) pool. ::
61
+
62
+
aws ec2 allocate-address \
63
+
--region us-east-1 \
64
+
--ipam-pool-id ipam-pool-1234567890abcdef0 \
65
+
--address 192.0.2.0
66
+
67
+
Output::
68
+
69
+
{
70
+
"PublicIp": "192.0.2.0",
71
+
"AllocationId": "eipalloc-abcdef01234567890",
72
+
"PublicIpv4Pool": "ipam-pool-1234567890abcdef0",
73
+
"NetworkBorderGroup": "us-east-1",
74
+
"Domain": "vpc"
75
+
}
76
+
77
+
For more information, see `Allocate sequential Elastic IP addresses from an IPAM pool <https://docs.aws.amazon.com/vpc/latest/ipam/tutorials-eip-pool.html>`__ in the *Amazon VPC IPAM User Guide*.
**Example 1: Wait until an ECS task is in stopped state**
2
+
3
+
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. ::
4
+
5
+
aws ecs wait tasks-stopped \
6
+
--cluster MyCluster \
7
+
--tasks 2c196f0a00dd4f58b7c8897a5c7bce13
8
+
9
+
This command produces no output.
10
+
11
+
**Example 2: Wait until multiple ECS tasks are in stopped state**
12
+
13
+
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. ::
For more information, see `Enabling Multiple Hosts on an Amazon IVS Stream <https://docs.aws.amazon.com/ivs/latest/LowLatencyUserGuide/multiple-hosts.html>`__ in the *Amazon Interactive Video Service User Guide*.
87
+
88
+
**Example 3: To create a stage and configure individial participant recording with thumbnail recording enabled**
89
+
90
+
The following ``create-stage`` example creates a stage and configures individual participant recording with thumbnail recording enabled. ::
For more information, see `Enabling Multiple Hosts on an Amazon IVS Stream <https://docs.aws.amazon.com/ivs/latest/LowLatencyUserGuide/multiple-hosts.html>`__ in the *Amazon Interactive Video Service User Guide*.
For more information, see `Composite Recording (Real-Time Streaming) <https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/rt-composite-recording.html>`__ in the *Amazon Interactive Video Service User Guide*.
134
+
135
+
**Example 3: To get a composition with thumbnail recording enabled**
136
+
137
+
The following ``get-composition`` example gets the composition for the ARN (Amazon Resource Name) specified, which has thumbnail recording enabled with default settings. ::
For more information, see `Composite Recording (Real-Time Streaming) <https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/rt-composite-recording.html>`__ in the *Amazon Interactive Video Service User Guide*.
For more information, see `Enabling Multiple Hosts on an Amazon IVS Stream <https://docs.aws.amazon.com/ivs/latest/LowLatencyUserGuide/multiple-hosts.html>`__ in the *Amazon Interactive Video Service User Guide*.
38
+
For more information, see `Enabling Multiple Hosts on an Amazon IVS Stream <https://docs.aws.amazon.com/ivs/latest/LowLatencyUserGuide/multiple-hosts.html>`__ in the *Amazon Interactive Video Service User Guide*.
0 commit comments