将 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 存储桶的名为“testinventory”的清单的详细信息。

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

有关 AWS SDK 开发人员指南和代码示例的完整列表,请参阅 将此服务与 AWS SDK 结合使用。本主题还包括有关入门的信息以及有关先前的 SDK 版本的详细信息。