@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
38 lines (37 loc) • 1.51 kB
TypeScript
export declare const ComponentSortDirection: {
readonly Asc: "ASC";
readonly Desc: "DESC";
};
export type ComponentSortDirection = (typeof ComponentSortDirection)[keyof typeof ComponentSortDirection];
export declare const FormActionType: {
readonly Create: "create";
readonly Update: "update";
};
export type FormActionType = (typeof FormActionType)[keyof typeof FormActionType];
export declare const FormButtonsPosition: {
readonly Top: "top";
readonly Bottom: "bottom";
readonly TopAndBottom: "top_and_bottom";
};
export type FormButtonsPosition = (typeof FormButtonsPosition)[keyof typeof FormButtonsPosition];
export declare const FormDataSourceType: {
readonly DataStore: "DataStore";
readonly Custom: "Custom";
};
export type FormDataSourceType = (typeof FormDataSourceType)[keyof typeof FormDataSourceType];
export declare const FormFixedPosition: {
readonly First: "first";
};
export type FormFixedPosition = (typeof FormFixedPosition)[keyof typeof FormFixedPosition];
export declare const FormLabelDecorator: {
readonly Required: "required";
readonly Optional: "optional";
readonly None: "none";
};
export type FormLabelDecorator = (typeof FormLabelDecorator)[keyof typeof FormLabelDecorator];
export declare const FormStorageAccessLevel: {
readonly Public: "public";
readonly Protected: "protected";
readonly Private: "private";
};
export type FormStorageAccessLevel = (typeof FormStorageAccessLevel)[keyof typeof FormStorageAccessLevel];