搭GetBucketInventoryConfiguration配 AWS SDK或使用 CLI - Amazon Simple Storage Service

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

GetBucketInventoryConfiguration配 AWS SDK或使用 CLI

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

CLI
AWS CLI

若要擷取值區的庫存組態

下列get-bucket-inventory-configuration範例會擷取具有 ID 之指定值區的詳細目錄組態1

aws s3api get-bucket-inventory-configuration \ --bucket my-bucket \ --id 1

輸出:

{ "InventoryConfiguration": { "IsEnabled": true, "Destination": { "S3BucketDestination": { "Format": "ORC", "Bucket": "arn:aws:s3:::my-bucket", "AccountId": "123456789012" } }, "IncludedObjectVersions": "Current", "Id": "1", "Schedule": { "Frequency": "Weekly" } } }
PowerShell
用於的工具 PowerShell

範例 1:此命令會針對指定的 S3 儲存貯體傳回名為「測試庫存」的詳細資料。

Get-S3BucketInventoryConfiguration -BucketName 's3testbucket' -InventoryId 'testinventory'

如需 AWS SDK開發人員指南和程式碼範例的完整清單,請參閱搭配 AWS SDK 使用此服務。本主題也包含有關入門的資訊以及舊SDK版的詳細資訊。