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

Transition

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

Specifies when an object transitions to a specified storage class. For more information about Amazon S3 lifecycle configuration rules, see Transitioning Objects Using Amazon S3 Lifecycle in the Amazon S3 User Guide.

interface Transition {
Date?: Date | number | null;
Days?: number | null;
StorageClass?: TransitionStorageClass | null;
}

§Properties

§
Date?: Date | number | null
[src]

Indicates when objects are transitioned to the specified storage class. The date value must be in ISO 8601 format. The time is always midnight UTC.

§
Days?: number | null
[src]

Indicates the number of days after creation when objects are transitioned to the specified storage class. The value must be a positive integer.

§
StorageClass?: TransitionStorageClass | null
[src]

The storage class to which you want the object to transition.