params.SelectInput interface

Specifies that a parameter's value should be determined by having the user select from a list of pre-canned options interactively at deploy time.

Signature:

export interface SelectInput<T = unknown> 

Properties

Property Type Description
select { options: Array<SelectOptions<T>>; }

params.SelectInput.select

Signature:

select: {
        options: Array<SelectOptions<T>>;
    };