文件 AWS 開發套件範例 GitHub 儲存庫中有更多可用的 AWS SDK 範例
本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
搭配使用 DescribeDocument
與 CLI
下列程式碼範例示範如何使用 DescribeDocument
。
- AWS CLI
-
顯示文件的詳細資訊
下列
describe-document
範例顯示您 AWS 帳戶中 Systems Manager 文件的詳細資訊。aws ssm describe-document \ --name
"Example"
輸出:
{ "Document": { "Hash": "fc2410281f40779e694a8b95975d0f9f316da8a153daa94e3d9921102EXAMPLE", "HashType": "Sha256", "Name": "Example", "Owner": "29884EXAMPLE", "CreatedDate": 1583257938.266, "Status": "Active", "DocumentVersion": "1", "Description": "Document Example", "Parameters": [ { "Name": "AutomationAssumeRole", "Type": "String", "Description": "(Required) The ARN of the role that allows Automation to perform the actions on your behalf. If no role is specified, Systems Manager Automation uses your IAM permissions to execute this document.", "DefaultValue": "" }, { "Name": "InstanceId", "Type": "String", "Description": "(Required) The ID of the Amazon EC2 instance.", "DefaultValue": "" } ], "PlatformTypes": [ "Windows", "Linux" ], "DocumentType": "Automation", "SchemaVersion": "0.3", "LatestVersion": "1", "DefaultVersion": "1", "DocumentFormat": "YAML", "Tags": [] } }
如需詳細資訊,請參閱《AWS Systems Manager 使用者指南》中的 Creating Systems Manager Documents。
-
如需 API 詳細資訊,請參閱《AWS CLI 命令參考》中的 DescribeDocument
。
-