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

LifecyclePolicyPreviewResult

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

The result of the lifecycle policy preview.

interface LifecyclePolicyPreviewResult {
action?: LifecyclePolicyRuleAction | null;
appliedRulePriority?: number | null;
imageDigest?: string | null;
imagePushedAt?: Date | number | null;
imageTags?: string[] | null;
}

§Properties

§

The type of action to be taken.

§
appliedRulePriority?: number | null
[src]

The priority of the applied rule.

§
imageDigest?: string | null
[src]

The sha256 digest of the image manifest.

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

The date and time, expressed in standard JavaScript date format, at which the current image was pushed to the repository.

§
imageTags?: string[] | null
[src]

The list of tags associated with this image.