Há mais AWS SDK exemplos disponíveis no GitHub repositório AWS Doc SDK Examples
As traduções são geradas por tradução automática. Em caso de conflito entre o conteúdo da tradução e da versão original em inglês, a versão em inglês prevalecerá.
Use ListBucketInventoryConfigurations
com um CLI
Os exemplos de código a seguir mostram como usar o ListBucketInventoryConfigurations
.
- CLI
-
- AWS CLI
-
Como recuperar uma lista de configurações de inventário de um bucket
O exemplo
list-bucket-inventory-configurations
a seguir recupera as configurações de inventário do bucket especificado.aws s3api list-bucket-inventory-configurations \ --bucket
my-bucket
Saída:
{ "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 }
-
Para API obter detalhes, consulte ListBucketInventoryConfigurations
na Referência de AWS CLI Comandos.
-
- PowerShell
-
- Ferramentas para PowerShell
-
Exemplo 1: este comando retorna as cem primeiras configurações de inventário do bucket do S3 em questão.
Get-S3BucketInventoryConfigurationList -BucketName 'amzn-s3-demo-bucket'
-
Para API obter detalhes, consulte ListBucketInventoryConfigurationsem Referência de AWS Tools for PowerShell cmdlet.
-