Hay más AWS SDK ejemplos disponibles en el GitHub repositorio de AWS Doc SDK Examples
Las traducciones son generadas a través de traducción automática. En caso de conflicto entre la traducción y la version original de inglés, prevalecerá la version en inglés.
Úselo ListBucketInventoryConfigurations
con un CLI
En los siguientes ejemplos de código, se muestra cómo utilizar ListBucketInventoryConfigurations
.
- CLI
-
- AWS CLI
-
Recuperar una lista de las configuraciones de inventario de un bucket
En el siguiente ejemplo de
list-bucket-inventory-configurations
, se enumeran las configuraciones de inventario del bucket especificado.aws s3api list-bucket-inventory-configurations \ --bucket
my-bucket
Salida:
{ "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 obtener más información, consulte ListBucketInventoryConfigurations
la Referencia de AWS CLI comandos.
-
- PowerShell
-
- Herramientas para PowerShell
-
Ejemplo 1: este comando devuelve las primeras 100 configuraciones de inventario del bucket de S3 indicado.
Get-S3BucketInventoryConfigurationList -BucketName 'amzn-s3-demo-bucket'
-
Para API obtener más información, consulte ListBucketInventoryConfigurationsla referencia de AWS Tools for PowerShell cmdlets.
-