IBM COS SDK for JavaScript V2 - v1.0.0
    Preparing search index...

    Interface InventoryConfiguration

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

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

    Properties

    Destination: InventoryDestination | undefined

    Contains information about where to publish the inventory results.

    IsEnabled: boolean | undefined

    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.

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

    Id: string | undefined

    The ID used to identify the inventory configuration.

    IncludedObjectVersions: InventoryIncludedObjectVersions | undefined

    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.

    OptionalFields?: InventoryOptionalField[]

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

    Schedule: InventorySchedule | undefined

    Specifies the schedule for generating inventory results.