import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface OutboundSequenceConfig extends cdktf.TerraformMetaArguments { /** * The ordered list of Campaigns that this CampaignSequence will run. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/outbound_sequence#campaign_ids OutboundSequence#campaign_ids} */ readonly campaignIds: string[]; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/outbound_sequence#id OutboundSequence#id} * * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. */ readonly id?: string; /** * Name of outbound sequence * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/outbound_sequence#name OutboundSequence#name} */ readonly name: string; /** * Indicates if a sequence should repeat from the beginning after the last campaign completes. Default is false. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/outbound_sequence#repeat OutboundSequence#repeat} */ readonly repeat?: boolean | cdktf.IResolvable; /** * The current status of the CampaignSequence. A CampaignSequence can be turned 'on' or 'off' (default). Changing from "on" to "off" will cause the current sequence to drop and be recreated with a new ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/outbound_sequence#status OutboundSequence#status} */ readonly status?: string; } /** * Represents a {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/outbound_sequence genesyscloud_outbound_sequence} */ export declare class OutboundSequence extends cdktf.TerraformResource { static readonly tfResourceType = "genesyscloud_outbound_sequence"; /** * Generates CDKTF code for importing a OutboundSequence resource upon running "cdktf plan " * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the OutboundSequence to import * @param importFromId The id of the existing OutboundSequence that should be imported. Refer to the {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/outbound_sequence#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the OutboundSequence to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any; /** * Create a new {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/outbound_sequence genesyscloud_outbound_sequence} Resource * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope * @param options OutboundSequenceConfig */ constructor(scope: Construct, id: string, config: OutboundSequenceConfig); private _campaignIds?; get campaignIds(): string[]; set campaignIds(value: string[]); get campaignIdsInput(): string[]; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _repeat?; get repeat(): boolean | cdktf.IResolvable; set repeat(value: boolean | cdktf.IResolvable); resetRepeat(): void; get repeatInput(): any; private _status?; get status(): string; set status(value: string); resetStatus(): void; get statusInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }