@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)
31 lines (30 loc) • 1.53 kB
TypeScript
export declare const ConsumableResourceResourceType: {
readonly Replenishable: "REPLENISHABLE";
readonly NonReplenishable: "NON_REPLENISHABLE";
};
/**
* Type of Consumable Resource.
*/
export type ConsumableResourceResourceType = (typeof ConsumableResourceResourceType)[keyof typeof ConsumableResourceResourceType];
export declare const JobQueueJobStateTimeLimitActionAction: {
readonly Cancel: "CANCEL";
};
/**
* The action to take when a job is at the head of the job queue in the specified state for the specified period of time. The only supported value is `CANCEL` , which will cancel the job.
*/
export type JobQueueJobStateTimeLimitActionAction = (typeof JobQueueJobStateTimeLimitActionAction)[keyof typeof JobQueueJobStateTimeLimitActionAction];
export declare const JobQueueJobStateTimeLimitActionState: {
readonly Runnable: "RUNNABLE";
};
/**
* The state of the job needed to trigger the action. The only supported value is `RUNNABLE` .
*/
export type JobQueueJobStateTimeLimitActionState = (typeof JobQueueJobStateTimeLimitActionState)[keyof typeof JobQueueJobStateTimeLimitActionState];
export declare const JobQueueState: {
readonly Disabled: "DISABLED";
readonly Enabled: "ENABLED";
};
/**
* The state of the job queue. If the job queue state is `ENABLED` , it is able to accept jobs. If the job queue state is `DISABLED` , new jobs can't be added to the queue, but jobs already in the queue can finish.
*/
export type JobQueueState = (typeof JobQueueState)[keyof typeof JobQueueState];