@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)
51 lines (50 loc) • 1.72 kB
TypeScript
export declare const DatabaseSnapshotResourceType: {
readonly RelationalDatabaseSnapshot: "RelationalDatabaseSnapshot";
};
/**
* The Lightsail resource type.
*/
export type DatabaseSnapshotResourceType = (typeof DatabaseSnapshotResourceType)[keyof typeof DatabaseSnapshotResourceType];
export declare const DiskAddOnStatus: {
readonly Enabling: "Enabling";
readonly Disabling: "Disabling";
readonly Enabled: "Enabled";
readonly Terminating: "Terminating";
readonly Terminated: "Terminated";
readonly Disabled: "Disabled";
readonly Failed: "Failed";
};
/**
* Status of the Addon
*/
export type DiskAddOnStatus = (typeof DiskAddOnStatus)[keyof typeof DiskAddOnStatus];
export declare const DiskSnapshotResourceType: {
readonly DiskSnapshot: "DiskSnapshot";
};
/**
* The Lightsail resource type (DiskSnapshot).
*/
export type DiskSnapshotResourceType = (typeof DiskSnapshotResourceType)[keyof typeof DiskSnapshotResourceType];
export declare const DiskSnapshotState: {
readonly Pending: "pending";
readonly Completed: "completed";
readonly Error: "error";
readonly Unknown: "unknown";
};
/**
* The status of the disk snapshot operation.
*/
export type DiskSnapshotState = (typeof DiskSnapshotState)[keyof typeof DiskSnapshotState];
export declare const InstanceAddOnStatus: {
readonly Enabling: "Enabling";
readonly Disabling: "Disabling";
readonly Enabled: "Enabled";
readonly Terminating: "Terminating";
readonly Terminated: "Terminated";
readonly Disabled: "Disabled";
readonly Failed: "Failed";
};
/**
* Status of the Addon
*/
export type InstanceAddOnStatus = (typeof InstanceAddOnStatus)[keyof typeof InstanceAddOnStatus];