params.TextInput interface

Specifies that a parameter's value should be determined by prompting the user to type it in interactively at deploy time. Input that does not match the provided validationRegex, if present, will be retried.

Signature:

export interface TextInput<T = unknown> 

Properties

Property Type Description
text { example?: string; validationRegex?: string | RegExp; validationErrorMessage?: string; } & (T extends string | string[] ? { nonEmpty?: boolean; } : {})

params.TextInput.text

Signature:

text: {
        example?: string;
        validationRegex?: string | RegExp;
        validationErrorMessage?: string;
    } & (T extends string | string[] ? {
        nonEmpty?: boolean;
    } : {});