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

DistributionConfiguration

import type { DistributionConfiguration } from "https://aws-api.deno.dev/v0.3/services/imagebuilder.ts?docs=full";

A distribution configuration.

interface DistributionConfiguration {
arn?: string | null;
dateCreated?: string | null;
dateUpdated?: string | null;
description?: string | null;
distributions?: Distribution[] | null;
name?: string | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
timeoutMinutes: number;
}

§Properties

§
arn?: string | null
[src]

The Amazon Resource Name (ARN) of the distribution configuration.

§
dateCreated?: string | null
[src]

The date on which this distribution configuration was created.

§
dateUpdated?: string | null
[src]

The date on which this distribution configuration was last updated.

§
description?: string | null
[src]

The description of the distribution configuration.

§
distributions?: Distribution[] | null
[src]

The distribution objects that apply Region-specific settings for the deployment of the image to targeted Regions.

§
name?: string | null
[src]

The name of the distribution configuration.

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

The tags of the distribution configuration.

§
timeoutMinutes: number
[src]

The maximum duration in minutes for this distribution configuration.