@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)
60 lines (59 loc) • 2.09 kB
TypeScript
export declare const CampaignAgentAction: {
readonly Discard: "DISCARD";
};
/**
* Actions that can performed on a contact by an agent
*/
export type CampaignAgentAction = (typeof CampaignAgentAction)[keyof typeof CampaignAgentAction];
export declare const CampaignCommunicationLimitTimeUnit: {
readonly Day: "DAY";
};
/**
* The communication limit time unit
*/
export type CampaignCommunicationLimitTimeUnit = (typeof CampaignCommunicationLimitTimeUnit)[keyof typeof CampaignCommunicationLimitTimeUnit];
export declare const CampaignDayOfWeek: {
readonly Monday: "MONDAY";
readonly Tuesday: "TUESDAY";
readonly Wednesday: "WEDNESDAY";
readonly Thursday: "THURSDAY";
readonly Friday: "FRIDAY";
readonly Saturday: "SATURDAY";
readonly Sunday: "SUNDAY";
};
/**
* Day of week
*/
export type CampaignDayOfWeek = (typeof CampaignDayOfWeek)[keyof typeof CampaignDayOfWeek];
export declare const CampaignInstanceLimitsHandling: {
readonly OptIn: "OPT_IN";
readonly OptOut: "OPT_OUT";
};
/**
* Enumeration of Instance Limits handling in a Campaign
*/
export type CampaignInstanceLimitsHandling = (typeof CampaignInstanceLimitsHandling)[keyof typeof CampaignInstanceLimitsHandling];
export declare const CampaignLocalTimeZoneDetectionScope: {
readonly PrimaryOnly: "PRIMARY_ONLY";
readonly AllAvailable: "ALL_AVAILABLE";
};
/**
* Local TimeZone Detection scope
*/
export type CampaignLocalTimeZoneDetectionScope = (typeof CampaignLocalTimeZoneDetectionScope)[keyof typeof CampaignLocalTimeZoneDetectionScope];
export declare const CampaignLocalTimeZoneDetectionType: {
readonly ZipCode: "ZIP_CODE";
readonly AreaCode: "AREA_CODE";
};
/**
* Local TimeZone Detection method
*/
export type CampaignLocalTimeZoneDetectionType = (typeof CampaignLocalTimeZoneDetectionType)[keyof typeof CampaignLocalTimeZoneDetectionType];
export declare const CampaignType: {
readonly Managed: "MANAGED";
readonly Journey: "JOURNEY";
};
/**
* Campaign type
*/
export type CampaignType = (typeof CampaignType)[keyof typeof CampaignType];