@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)
32 lines (31 loc) • 1.12 kB
TypeScript
export declare const ContactChannelChannelType: {
readonly Sms: "SMS";
readonly Voice: "VOICE";
readonly Email: "EMAIL";
};
/**
* Device type, which specify notification channel. Currently supported values: "SMS", "VOICE", "EMAIL", "CHATBOT.
*/
export type ContactChannelChannelType = (typeof ContactChannelChannelType)[keyof typeof ContactChannelChannelType];
export declare const ContactType: {
readonly Personal: "PERSONAL";
readonly Escalation: "ESCALATION";
readonly OncallSchedule: "ONCALL_SCHEDULE";
};
/**
* Contact type, which specify type of contact. Currently supported values: "PERSONAL", "SHARED", "OTHER".
*/
export type ContactType = (typeof ContactType)[keyof typeof ContactType];
export declare const RotationDayOfWeek: {
readonly Mon: "MON";
readonly Tue: "TUE";
readonly Wed: "WED";
readonly Thu: "THU";
readonly Fri: "FRI";
readonly Sat: "SAT";
readonly Sun: "SUN";
};
/**
* The day of the week when weekly recurring on-call shift rotations begin.
*/
export type RotationDayOfWeek = (typeof RotationDayOfWeek)[keyof typeof RotationDayOfWeek];