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

ComponentParameterDetail

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

Defines a parameter that is used to provide configuration details for the component.

interface ComponentParameterDetail {
defaultValue?: string[] | null;
description?: string | null;
name: string;
type: string;
}

§Properties

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

The default value of this parameter if no input is provided.

§
description?: string | null
[src]

Describes this parameter.

§
name: string
[src]

The name of this input parameter.

§
type: string
[src]

The type of input this parameter provides. The currently supported value is "string".