import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface ConversationsMessagingIntegrationsOpenConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/conversations_messaging_integrations_open#id ConversationsMessagingIntegrationsOpen#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; /** * Messaging Setting for messaging platform integrations * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/conversations_messaging_integrations_open#messaging_setting_id ConversationsMessagingIntegrationsOpen#messaging_setting_id} */ readonly messagingSettingId?: string; /** * The name of the Open messaging integration. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/conversations_messaging_integrations_open#name ConversationsMessagingIntegrationsOpen#name} */ readonly name: string; /** * The outbound notification webhook signature secret token. This token must be longer than 15 characters. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/conversations_messaging_integrations_open#outbound_notification_webhook_signature_secret_token ConversationsMessagingIntegrationsOpen#outbound_notification_webhook_signature_secret_token} */ readonly outboundNotificationWebhookSignatureSecretToken: string; /** * The outbound notification webhook URL for the Open messaging integration * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/conversations_messaging_integrations_open#outbound_notification_webhook_url ConversationsMessagingIntegrationsOpen#outbound_notification_webhook_url} */ readonly outboundNotificationWebhookUrl: string; /** * Reference to supported content profile associated with the integration * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/conversations_messaging_integrations_open#supported_content_id ConversationsMessagingIntegrationsOpen#supported_content_id} */ readonly supportedContentId?: string; /** * The user specified headers for the Open messaging integration. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/conversations_messaging_integrations_open#webhook_headers ConversationsMessagingIntegrationsOpen#webhook_headers} */ readonly webhookHeaders?: string; } /** * Represents a {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/conversations_messaging_integrations_open genesyscloud_conversations_messaging_integrations_open} */ export declare class ConversationsMessagingIntegrationsOpen extends cdktf.TerraformResource { static readonly tfResourceType = "genesyscloud_conversations_messaging_integrations_open"; /** * Generates CDKTF code for importing a ConversationsMessagingIntegrationsOpen 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 ConversationsMessagingIntegrationsOpen to import * @param importFromId The id of the existing ConversationsMessagingIntegrationsOpen that should be imported. Refer to the {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/conversations_messaging_integrations_open#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the ConversationsMessagingIntegrationsOpen 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/conversations_messaging_integrations_open genesyscloud_conversations_messaging_integrations_open} 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 ConversationsMessagingIntegrationsOpenConfig */ constructor(scope: Construct, id: string, config: ConversationsMessagingIntegrationsOpenConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _messagingSettingId?; get messagingSettingId(): string; set messagingSettingId(value: string); resetMessagingSettingId(): void; get messagingSettingIdInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _outboundNotificationWebhookSignatureSecretToken?; get outboundNotificationWebhookSignatureSecretToken(): string; set outboundNotificationWebhookSignatureSecretToken(value: string); get outboundNotificationWebhookSignatureSecretTokenInput(): string; private _outboundNotificationWebhookUrl?; get outboundNotificationWebhookUrl(): string; set outboundNotificationWebhookUrl(value: string); get outboundNotificationWebhookUrlInput(): string; private _supportedContentId?; get supportedContentId(): string; set supportedContentId(value: string); resetSupportedContentId(): void; get supportedContentIdInput(): string; private _webhookHeaders?; get webhookHeaders(): string; set webhookHeaders(value: string); resetWebhookHeaders(): void; get webhookHeadersInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }