There are more AWS SDK examples available in the AWS Doc SDK Examples
Use ModifyIdFormat with a CLI
The following code examples show how to use ModifyIdFormat.
- CLI
-
- AWS CLI
-
To enable the longer ID format for a resource
The following
modify-id-formatexample enables the longer ID format for theinstanceresource type.aws ec2 modify-id-format \ --resourceinstance\ --use-long-idsTo disable the longer ID format for a resource
The following
modify-id-formatexample disables the longer ID format for theinstanceresource type.aws ec2 modify-id-format \ --resourceinstance\ --no-use-long-idsThe following
modify-id-formatexample enables the longer ID format for all supported resource types that are within their opt-in period.aws ec2 modify-id-format \ --resourceall-current\ --use-long-ids-
For API details, see ModifyIdFormat
in AWS CLI Command Reference.
-
- PowerShell
-
- Tools for PowerShell V4
-
Example 1: This example enables the longer ID format for the specified resource type.
Edit-EC2IdFormat -Resource instance -UseLongId $trueExample 2: This example disables the longer ID format for the specified resource type.
Edit-EC2IdFormat -Resource instance -UseLongId $false-
For API details, see ModifyIdFormat in AWS Tools for PowerShell Cmdlet Reference (V4).
-
- Tools for PowerShell V5
-
Example 1: This example enables the longer ID format for the specified resource type.
Edit-EC2IdFormat -Resource instance -UseLongId $trueExample 2: This example disables the longer ID format for the specified resource type.
Edit-EC2IdFormat -Resource instance -UseLongId $false-
For API details, see ModifyIdFormat in AWS Tools for PowerShell Cmdlet Reference (V5).
-