Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

InventoryConfiguration

import type { InventoryConfiguration } from "https://aws-api.deno.dev/v0.4/services/s3.ts?docs=full";

Specifies the inventory configuration for an Amazon S3 bucket. For more information, see GET Bucket inventory in the Amazon S3 API Reference.

interface InventoryConfiguration {
Destination: InventoryDestination;
Filter?: InventoryFilter | null;
Id: string;
IncludedObjectVersions: InventoryIncludedObjectVersions;
IsEnabled: boolean;
OptionalFields?: InventoryOptionalField[] | null;
}

§Properties

§

Contains information about where to publish the inventory results.

§
Filter?: InventoryFilter | null
[src]

Specifies an inventory filter. The inventory only includes objects that meet the filter's criteria.

§
Id: string
[src]

The ID used to identify the inventory configuration.

§
IncludedObjectVersions: InventoryIncludedObjectVersions
[src]

Object versions to include in the inventory list. If set to All, the list includes all the object versions, which adds the version-related fields VersionId, IsLatest, and DeleteMarker to the list. If set to Current, the list does not contain these version-related fields.

§
IsEnabled: boolean
[src]

Specifies whether the inventory is enabled or disabled. If set to True, an inventory list is generated. If set to False, no inventory list is generated.

§
OptionalFields?: InventoryOptionalField[] | null
[src]

Contains the optional fields that are included in the inventory results.

§

Specifies the schedule for generating inventory results.