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

ActionTypeProperty

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

Represents information about each property specified in the action configuration, such as the description and key name that display for the customer using the action type.

interface ActionTypeProperty {
description?: string | null;
key: boolean;
name: string;
noEcho: boolean;
optional: boolean;
queryable?: boolean | null;
}

§Properties

§
description?: string | null
[src]

The description of the property that is displayed to users.

§
key: boolean
[src]

Whether the configuration property is a key.

§
name: string
[src]

The property name that is displayed to users.

§
noEcho: boolean
[src]

Whether to omit the field value entered by the customer in the log. If true, the value is not saved in CloudTrail logs for the action execution.

§
optional: boolean
[src]

Whether the configuration property is an optional value.

§
queryable?: boolean | null
[src]

Indicates that the property is used with polling. An action type can have up to one queryable property. If it has one, that property must be both required and not secret.