Describes the longer ID format settings for all resource types in a specific
Region. This request is useful for performing a quick audit to determine whether a
specific Region is fully opted in for longer IDs (17-character IDs).
This request only returns information about resource types that support longer IDs.
Describes the longer ID format settings for all resource types in a specific Region. This request is useful for performing a quick audit to determine whether a specific Region is fully opted in for longer IDs (17-character IDs).
This request only returns information about resource types that support longer IDs.
The following resource types support longer IDs:
bundle
|conversion-task
|customer-gateway
|dhcp-options
|elastic-ip-allocation
|elastic-ip-association
|export-task
|flow-log
|image
|import-task
|instance
|internet-gateway
|network-acl
|network-acl-association
|network-interface
|network-interface-attachment
|prefix-list
|reservation
|route-table
|route-table-association
|security-group
|snapshot
|subnet
|subnet-cidr-block-association
|volume
|vpc
|vpc-cidr-block-association
|vpc-endpoint
|vpc-peering-connection
|vpn-connection
|vpn-gateway
.Use a bare-bones client and the command you need to make an API call.
import { EC2Client, DescribeAggregateIdFormatCommand } from "@aws-sdk/client-ec2"; // ES Modules import // const { EC2Client, DescribeAggregateIdFormatCommand } = require("@aws-sdk/client-ec2"); // CommonJS import const client = new EC2Client(config); const command = new DescribeAggregateIdFormatCommand(input); const response = await client.send(command);
DescribeAggregateIdFormatCommandInput for command's
input
shape.DescribeAggregateIdFormatCommandOutput for command's
response
shape.config for EC2Client's
config
shape.