-
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.37.4: Bumping version to 1.37.4 Update changelog based on model updates Replaced /myBucket/ with amzn-s3-demo-bucket (#9221) Updated AWS CLI command to describe EKS cluster (#9144) Replaced /CodeDeployDemoBucket/ with amzn-s3-demo-bucket (#9227) CLI examples for cloudfront, ec2, ivs, rds, securitylake Replaced /mybucket2/ with amzn-s3-demo-bucket2 Replaced /awsexamplebucket/ with amzn-s3-demo-bucket
- Loading branch information
Showing
59 changed files
with
1,090 additions
and
1,007 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,22 @@ | ||
[ | ||
{ | ||
"category": "``bedrock-agent-runtime``", | ||
"description": "Adds multi-turn input support for an Agent node in an Amazon Bedrock Flow", | ||
"type": "api-change" | ||
}, | ||
{ | ||
"category": "``glue``", | ||
"description": "Docs Update for timeout changes", | ||
"type": "api-change" | ||
}, | ||
{ | ||
"category": "``medialive``", | ||
"description": "AWS Elemental MediaLive adds a new feature, ID3 segment tagging, in CMAF Ingest output groups. It allows customers to insert ID3 tags into every output segment, controlled by a newly added channel schedule action Id3SegmentTagging.", | ||
"type": "api-change" | ||
}, | ||
{ | ||
"category": "``workspaces-thin-client``", | ||
"description": "Rename WorkSpaces Web to WorkSpaces Secure Browser", | ||
"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
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
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
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 |
---|---|---|
@@ -1,55 +1,55 @@ | ||
**Example 1: To allocate a Dedicated Host** | ||
|
||
The following ``allocate-hosts`` example allocates a single Dedicated Host in the ``eu-west-1a`` Availability Zone, onto which you can launch ``m5.large`` instances. By default, the Dedicated Host accepts only target instance launches, and does not support host recovery. :: | ||
|
||
aws ec2 allocate-hosts \ | ||
--instance-type m5.large \ | ||
--availability-zone eu-west-1a \ | ||
--quantity 1 | ||
|
||
Output:: | ||
|
||
{ | ||
"HostIds": [ | ||
"h-07879acf49EXAMPLE" | ||
] | ||
} | ||
|
||
**Example 2: To allocate a Dedicated Host with auto-placement and host recovery enabled** | ||
|
||
The following ``allocate-hosts`` example allocates a single Dedicated Host in the ``eu-west-1a`` Availability Zone with auto-placement and host recovery enabled. :: | ||
|
||
aws ec2 allocate-hosts \ | ||
--instance-type m5.large \ | ||
--availability-zone eu-west-1a \ | ||
--auto-placement on \ | ||
--host-recovery on \ | ||
--quantity 1 | ||
|
||
Output:: | ||
|
||
{ | ||
"HostIds": [ | ||
"h-07879acf49EXAMPLE" | ||
] | ||
} | ||
|
||
**Example 3: To allocate a Dedicated Host with tags** | ||
|
||
The following ``allocate-hosts`` example allocates a single Dedicated Host and applies a tag with a key named ``purpose`` and a value of ``production``. :: | ||
|
||
aws ec2 allocate-hosts \ | ||
--instance-type m5.large \ | ||
--availability-zone eu-west-1a \ | ||
--quantity 1 \ | ||
--tag-specifications 'ResourceType=dedicated-host,Tags={Key=purpose,Value=production}' | ||
|
||
Output:: | ||
|
||
{ | ||
"HostIds": [ | ||
"h-07879acf49EXAMPLE" | ||
] | ||
} | ||
|
||
For more information, see `Allocating Dedicated Hosts <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/how-dedicated-hosts-work.html#dedicated-hosts-allocating>`__ in the *Amazon Elastic Compute Cloud User Guide for Linux Instances*. | ||
**Example 1: To allocate a Dedicated Host** | ||
|
||
The following ``allocate-hosts`` example allocates a single Dedicated Host in the ``eu-west-1a`` Availability Zone, onto which you can launch ``m5.large`` instances. By default, the Dedicated Host accepts only target instance launches, and does not support host recovery. :: | ||
|
||
aws ec2 allocate-hosts \ | ||
--instance-type m5.large \ | ||
--availability-zone eu-west-1a \ | ||
--quantity 1 | ||
|
||
Output:: | ||
|
||
{ | ||
"HostIds": [ | ||
"h-07879acf49EXAMPLE" | ||
] | ||
} | ||
|
||
**Example 2: To allocate a Dedicated Host with auto-placement and host recovery enabled** | ||
|
||
The following ``allocate-hosts`` example allocates a single Dedicated Host in the ``eu-west-1a`` Availability Zone with auto-placement and host recovery enabled. :: | ||
|
||
aws ec2 allocate-hosts \ | ||
--instance-type m5.large \ | ||
--availability-zone eu-west-1a \ | ||
--auto-placement on \ | ||
--host-recovery on \ | ||
--quantity 1 | ||
|
||
Output:: | ||
|
||
{ | ||
"HostIds": [ | ||
"h-07879acf49EXAMPLE" | ||
] | ||
} | ||
|
||
**Example 3: To allocate a Dedicated Host with tags** | ||
|
||
The following ``allocate-hosts`` example allocates a single Dedicated Host and applies a tag with a key named ``purpose`` and a value of ``production``. :: | ||
|
||
aws ec2 allocate-hosts \ | ||
--instance-type m5.large \ | ||
--availability-zone eu-west-1a \ | ||
--quantity 1 \ | ||
--tag-specifications 'ResourceType=dedicated-host,Tags={Key=purpose,Value=production}' | ||
|
||
Output:: | ||
|
||
{ | ||
"HostIds": [ | ||
"h-07879acf49EXAMPLE" | ||
] | ||
} | ||
|
||
For more information, see `Allocate a Dedicated Host <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/dedicated-hosts-allocating.html>`__ in the *Amazon EC2 User Guide*. |
Oops, something went wrong.