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

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

ListBucketInventoryConfigurations配 AWS SDK或使用 CLI

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

CLI
AWS CLI

擷取值區的庫存組態清單

下列list-bucket-inventory-configurations範例會列出指定值區的庫存組態。

aws s3api list-bucket-inventory-configurations \ --bucket my-bucket

輸出:

{ "InventoryConfigurationList": [ { "IsEnabled": true, "Destination": { "S3BucketDestination": { "Format": "ORC", "Bucket": "arn:aws:s3:::my-bucket", "AccountId": "123456789012" } }, "IncludedObjectVersions": "Current", "Id": "1", "Schedule": { "Frequency": "Weekly" } }, { "IsEnabled": true, "Destination": { "S3BucketDestination": { "Format": "CSV", "Bucket": "arn:aws:s3:::my-bucket", "AccountId": "123456789012" } }, "IncludedObjectVersions": "Current", "Id": "2", "Schedule": { "Frequency": "Daily" } } ], "IsTruncated": false }
PowerShell
用於的工具 PowerShell

範例 1:此命令會傳回指定 S3 儲存貯體的前 100 個庫存組態。

Get-S3BucketInventoryConfigurationList -BucketName 's3testbucket'

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