DescribeIdentityIdFormat 搭配 CLI 使用 - Amazon Elastic Compute Cloud

本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。

DescribeIdentityIdFormat 搭配 CLI 使用

下列程式碼範例示範如何使用 DescribeIdentityIdFormat

CLI
AWS CLI

描述 IAM 角色的 ID 格式

下列describe-identity-id-format範例說明 IAM 角色EC2Role在 AWS 帳戶中建立的執行個體所收到的 ID 格式。

aws ec2 describe-identity-id-format \ --principal-arn arn:aws:iam::123456789012:role/my-iam-role \ --resource instance

下列輸出指出此角色建立的執行個體會以長 ID 格式接收 IDs。

{ "Statuses": [ { "Deadline": "2016-12-15T00:00:00Z", "Resource": "instance", "UseLongIds": true } ] }

描述 IAM 使用者的 ID 格式

下列describe-identity-id-format範例說明 AdminUser AWS 帳戶中 IAM 使用者建立的快照所收到的 ID 格式。

aws ec2 describe-identity-id-format \ --principal-arn arn:aws:iam::123456789012:user/AdminUser \ --resource snapshot

輸出指出此使用者建立的快照會以長 ID 格式接收 IDs。

{ "Statuses": [ { "Deadline": "2016-12-15T00:00:00Z", "Resource": "snapshot", "UseLongIds": true } ] }
PowerShell
for PowerShell 工具

範例 1:此範例會傳回指定角色之 resouce 'image' 的 ID 格式

Get-EC2IdentityIdFormat -PrincipalArn arn:aws:iam::123456789511:role/JDBC -Resource image

輸出:

Deadline Resource UseLongIds -------- -------- ---------- 8/2/2018 11:30:00 PM image True

如需 AWS SDK 開發人員指南和程式碼範例的完整清單,請參閱 使用 建立 Amazon EC2 資源 AWS SDK。本主題也包含有關入門的資訊,以及先前 SDK 版本的詳細資訊。