/** * @public * @enum */ export declare const KnowledgeBaseSearchType: { readonly HYBRID: "HYBRID"; readonly SEMANTIC: "SEMANTIC"; }; /** * @public */ export type KnowledgeBaseSearchType = (typeof KnowledgeBaseSearchType)[keyof typeof KnowledgeBaseSearchType]; /** * @public * @enum */ export declare const AIAgentAssociationConfigurationType: { readonly KNOWLEDGE_BASE: "KNOWLEDGE_BASE"; }; /** * @public */ export type AIAgentAssociationConfigurationType = (typeof AIAgentAssociationConfigurationType)[keyof typeof AIAgentAssociationConfigurationType]; /** * @public * @enum */ export declare const ToolOverrideInputValueType: { readonly JSON_STRING: "JSON_STRING"; readonly NUMBER: "NUMBER"; readonly STRING: "STRING"; }; /** * @public */ export type ToolOverrideInputValueType = (typeof ToolOverrideInputValueType)[keyof typeof ToolOverrideInputValueType]; /** * @public * @enum */ export declare const ToolType: { readonly CONSTANT: "CONSTANT"; readonly MODEL_CONTEXT_PROTOCOL: "MODEL_CONTEXT_PROTOCOL"; readonly RETURN_TO_CONTROL: "RETURN_TO_CONTROL"; }; /** * @public */ export type ToolType = (typeof ToolType)[keyof typeof ToolType]; /** * @public * @enum */ export declare const AIAgentType: { readonly ANSWER_RECOMMENDATION: "ANSWER_RECOMMENDATION"; readonly CASE_SUMMARIZATION: "CASE_SUMMARIZATION"; readonly EMAIL_GENERATIVE_ANSWER: "EMAIL_GENERATIVE_ANSWER"; readonly EMAIL_OVERVIEW: "EMAIL_OVERVIEW"; readonly EMAIL_RESPONSE: "EMAIL_RESPONSE"; readonly MANUAL_SEARCH: "MANUAL_SEARCH"; readonly NOTE_TAKING: "NOTE_TAKING"; readonly ORCHESTRATION: "ORCHESTRATION"; readonly SELF_SERVICE: "SELF_SERVICE"; }; /** * @public */ export type AIAgentType = (typeof AIAgentType)[keyof typeof AIAgentType]; /** * @public * @enum */ export declare const VisibilityStatus: { readonly PUBLISHED: "PUBLISHED"; readonly SAVED: "SAVED"; }; /** * @public */ export type VisibilityStatus = (typeof VisibilityStatus)[keyof typeof VisibilityStatus]; /** * @public * @enum */ export declare const Origin: { readonly CUSTOMER: "CUSTOMER"; readonly SYSTEM: "SYSTEM"; }; /** * @public */ export type Origin = (typeof Origin)[keyof typeof Origin]; /** * @public * @enum */ export declare const Status: { readonly ACTIVE: "ACTIVE"; readonly CREATE_FAILED: "CREATE_FAILED"; readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS"; readonly DELETED: "DELETED"; readonly DELETE_FAILED: "DELETE_FAILED"; readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS"; }; /** * @public */ export type Status = (typeof Status)[keyof typeof Status]; /** * @public * @enum */ export declare const GuardrailFilterStrength: { readonly HIGH: "HIGH"; readonly LOW: "LOW"; readonly MEDIUM: "MEDIUM"; readonly NONE: "NONE"; }; /** * @public */ export type GuardrailFilterStrength = (typeof GuardrailFilterStrength)[keyof typeof GuardrailFilterStrength]; /** * @public * @enum */ export declare const GuardrailContentFilterType: { readonly HATE: "HATE"; readonly INSULTS: "INSULTS"; readonly MISCONDUCT: "MISCONDUCT"; readonly PROMPT_ATTACK: "PROMPT_ATTACK"; readonly SEXUAL: "SEXUAL"; readonly VIOLENCE: "VIOLENCE"; }; /** * @public */ export type GuardrailContentFilterType = (typeof GuardrailContentFilterType)[keyof typeof GuardrailContentFilterType]; /** * @public * @enum */ export declare const GuardrailContextualGroundingFilterType: { readonly GROUNDING: "GROUNDING"; readonly RELEVANCE: "RELEVANCE"; }; /** * @public */ export type GuardrailContextualGroundingFilterType = (typeof GuardrailContextualGroundingFilterType)[keyof typeof GuardrailContextualGroundingFilterType]; /** * @public * @enum */ export declare const GuardrailSensitiveInformationAction: { readonly ANONYMIZE: "ANONYMIZE"; readonly BLOCK: "BLOCK"; }; /** * @public */ export type GuardrailSensitiveInformationAction = (typeof GuardrailSensitiveInformationAction)[keyof typeof GuardrailSensitiveInformationAction]; /** * @public * @enum */ export declare const GuardrailPiiEntityType: { readonly ADDRESS: "ADDRESS"; readonly AGE: "AGE"; readonly AWS_ACCESS_KEY: "AWS_ACCESS_KEY"; readonly AWS_SECRET_KEY: "AWS_SECRET_KEY"; readonly CA_HEALTH_NUMBER: "CA_HEALTH_NUMBER"; readonly CA_SOCIAL_INSURANCE_NUMBER: "CA_SOCIAL_INSURANCE_NUMBER"; readonly CREDIT_DEBIT_CARD_CVV: "CREDIT_DEBIT_CARD_CVV"; readonly CREDIT_DEBIT_CARD_EXPIRY: "CREDIT_DEBIT_CARD_EXPIRY"; readonly CREDIT_DEBIT_CARD_NUMBER: "CREDIT_DEBIT_CARD_NUMBER"; readonly DRIVER_ID: "DRIVER_ID"; readonly EMAIL: "EMAIL"; readonly INTERNATIONAL_BANK_ACCOUNT_NUMBER: "INTERNATIONAL_BANK_ACCOUNT_NUMBER"; readonly IP_ADDRESS: "IP_ADDRESS"; readonly LICENSE_PLATE: "LICENSE_PLATE"; readonly MAC_ADDRESS: "MAC_ADDRESS"; readonly NAME: "NAME"; readonly PASSWORD: "PASSWORD"; readonly PHONE: "PHONE"; readonly PIN: "PIN"; readonly SWIFT_CODE: "SWIFT_CODE"; readonly UK_NATIONAL_HEALTH_SERVICE_NUMBER: "UK_NATIONAL_HEALTH_SERVICE_NUMBER"; readonly UK_NATIONAL_INSURANCE_NUMBER: "UK_NATIONAL_INSURANCE_NUMBER"; readonly UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER: "UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER"; readonly URL: "URL"; readonly USERNAME: "USERNAME"; readonly US_BANK_ACCOUNT_NUMBER: "US_BANK_ACCOUNT_NUMBER"; readonly US_BANK_ROUTING_NUMBER: "US_BANK_ROUTING_NUMBER"; readonly US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER: "US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER"; readonly US_PASSPORT_NUMBER: "US_PASSPORT_NUMBER"; readonly US_SOCIAL_SECURITY_NUMBER: "US_SOCIAL_SECURITY_NUMBER"; readonly VEHICLE_IDENTIFICATION_NUMBER: "VEHICLE_IDENTIFICATION_NUMBER"; }; /** * @public */ export type GuardrailPiiEntityType = (typeof GuardrailPiiEntityType)[keyof typeof GuardrailPiiEntityType]; /** * @public * @enum */ export declare const GuardrailTopicType: { readonly DENY: "DENY"; }; /** * @public */ export type GuardrailTopicType = (typeof GuardrailTopicType)[keyof typeof GuardrailTopicType]; /** * @public * @enum */ export declare const GuardrailManagedWordsType: { readonly PROFANITY: "PROFANITY"; }; /** * @public */ export type GuardrailManagedWordsType = (typeof GuardrailManagedWordsType)[keyof typeof GuardrailManagedWordsType]; /** * @public * @enum */ export declare const AIPromptAPIFormat: { readonly ANTHROPIC_CLAUDE_MESSAGES: "ANTHROPIC_CLAUDE_MESSAGES"; readonly ANTHROPIC_CLAUDE_TEXT_COMPLETIONS: "ANTHROPIC_CLAUDE_TEXT_COMPLETIONS"; readonly MESSAGES: "MESSAGES"; readonly TEXT_COMPLETIONS: "TEXT_COMPLETIONS"; }; /** * @public */ export type AIPromptAPIFormat = (typeof AIPromptAPIFormat)[keyof typeof AIPromptAPIFormat]; /** * @public * @enum */ export declare const AIPromptTemplateType: { readonly TEXT: "TEXT"; }; /** * @public */ export type AIPromptTemplateType = (typeof AIPromptTemplateType)[keyof typeof AIPromptTemplateType]; /** * @public * @enum */ export declare const AIPromptType: { readonly ANSWER_GENERATION: "ANSWER_GENERATION"; readonly CASE_SUMMARIZATION: "CASE_SUMMARIZATION"; readonly EMAIL_GENERATIVE_ANSWER: "EMAIL_GENERATIVE_ANSWER"; readonly EMAIL_OVERVIEW: "EMAIL_OVERVIEW"; readonly EMAIL_QUERY_REFORMULATION: "EMAIL_QUERY_REFORMULATION"; readonly EMAIL_RESPONSE: "EMAIL_RESPONSE"; readonly INTENT_LABELING_GENERATION: "INTENT_LABELING_GENERATION"; readonly NOTE_TAKING: "NOTE_TAKING"; readonly ORCHESTRATION: "ORCHESTRATION"; readonly QUERY_REFORMULATION: "QUERY_REFORMULATION"; readonly SELF_SERVICE_ANSWER_GENERATION: "SELF_SERVICE_ANSWER_GENERATION"; readonly SELF_SERVICE_PRE_PROCESSING: "SELF_SERVICE_PRE_PROCESSING"; }; /** * @public */ export type AIPromptType = (typeof AIPromptType)[keyof typeof AIPromptType]; /** * @public * @enum */ export declare const AssociationType: { readonly EXTERNAL_BEDROCK_KNOWLEDGE_BASE: "EXTERNAL_BEDROCK_KNOWLEDGE_BASE"; readonly KNOWLEDGE_BASE: "KNOWLEDGE_BASE"; }; /** * @public */ export type AssociationType = (typeof AssociationType)[keyof typeof AssociationType]; /** * @public * @enum */ export declare const AssistantType: { readonly AGENT: "AGENT"; }; /** * @public */ export type AssistantType = (typeof AssistantType)[keyof typeof AssistantType]; /** * @public * @enum */ export declare const AssistantCapabilityType: { readonly V1: "V1"; readonly V2: "V2"; }; /** * @public */ export type AssistantCapabilityType = (typeof AssistantCapabilityType)[keyof typeof AssistantCapabilityType]; /** * @public * @enum */ export declare const AssistantStatus: { readonly ACTIVE: "ACTIVE"; readonly CREATE_FAILED: "CREATE_FAILED"; readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS"; readonly DELETED: "DELETED"; readonly DELETE_FAILED: "DELETE_FAILED"; readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS"; }; /** * @public */ export type AssistantStatus = (typeof AssistantStatus)[keyof typeof AssistantStatus]; /** * @public * @enum */ export declare const RecommendationType: { readonly BLOCKED_CASE_SUMMARIZATION_CHUNK: "BLOCKED_CASE_SUMMARIZATION_CHUNK"; readonly BLOCKED_GENERATIVE_ANSWER_CHUNK: "BLOCKED_GENERATIVE_ANSWER_CHUNK"; readonly BLOCKED_INTENT_ANSWER_CHUNK: "BLOCKED_INTENT_ANSWER_CHUNK"; readonly BLOCKED_NOTES_CHUNK: "BLOCKED_NOTES_CHUNK"; readonly CASE_SUMMARIZATION_CHUNK: "CASE_SUMMARIZATION_CHUNK"; readonly DETECTED_INTENT: "DETECTED_INTENT"; readonly EMAIL_GENERATIVE_ANSWER_CHUNK: "EMAIL_GENERATIVE_ANSWER_CHUNK"; readonly EMAIL_OVERVIEW_CHUNK: "EMAIL_OVERVIEW_CHUNK"; readonly EMAIL_RESPONSE_CHUNK: "EMAIL_RESPONSE_CHUNK"; readonly GENERATIVE_ANSWER: "GENERATIVE_ANSWER"; readonly GENERATIVE_ANSWER_CHUNK: "GENERATIVE_ANSWER_CHUNK"; readonly GENERATIVE_RESPONSE: "GENERATIVE_RESPONSE"; readonly INTENT_ANSWER_CHUNK: "INTENT_ANSWER_CHUNK"; readonly KNOWLEDGE_CONTENT: "KNOWLEDGE_CONTENT"; readonly NOTES_CHUNK: "NOTES_CHUNK"; readonly SUGGESTED_MESSAGE: "SUGGESTED_MESSAGE"; }; /** * @public */ export type RecommendationType = (typeof RecommendationType)[keyof typeof RecommendationType]; /** * @public * @enum */ export declare const RelevanceLevel: { readonly HIGH: "HIGH"; readonly LOW: "LOW"; readonly MEDIUM: "MEDIUM"; }; /** * @public */ export type RelevanceLevel = (typeof RelevanceLevel)[keyof typeof RelevanceLevel]; /** * @public * @enum */ export declare const SourceContentType: { readonly KNOWLEDGE_CONTENT: "KNOWLEDGE_CONTENT"; }; /** * @public */ export type SourceContentType = (typeof SourceContentType)[keyof typeof SourceContentType]; /** * @public * @enum */ export declare const ReferenceType: { readonly BEDROCK_KB_CONFLUENCE: "BEDROCK_KB_CONFLUENCE"; readonly BEDROCK_KB_CUSTOM_DOCUMENT: "BEDROCK_KB_CUSTOM_DOCUMENT"; readonly BEDROCK_KB_KENDRA: "BEDROCK_KB_KENDRA"; readonly BEDROCK_KB_S3: "BEDROCK_KB_S3"; readonly BEDROCK_KB_SALESFORCE: "BEDROCK_KB_SALESFORCE"; readonly BEDROCK_KB_SHAREPOINT: "BEDROCK_KB_SHAREPOINT"; readonly BEDROCK_KB_SQL: "BEDROCK_KB_SQL"; readonly BEDROCK_KB_WEB: "BEDROCK_KB_WEB"; readonly KNOWLEDGE_BASE: "KNOWLEDGE_BASE"; readonly WEB_CRAWLER: "WEB_CRAWLER"; }; /** * @public */ export type ReferenceType = (typeof ReferenceType)[keyof typeof ReferenceType]; /** * @public * @enum */ export declare const RecommendationSourceType: { readonly ISSUE_DETECTION: "ISSUE_DETECTION"; readonly OTHER: "OTHER"; readonly RULE_EVALUATION: "RULE_EVALUATION"; }; /** * @public */ export type RecommendationSourceType = (typeof RecommendationSourceType)[keyof typeof RecommendationSourceType]; /** * @public * @enum */ export declare const RecommendationTriggerType: { readonly GENERATIVE: "GENERATIVE"; readonly QUERY: "QUERY"; }; /** * @public */ export type RecommendationTriggerType = (typeof RecommendationTriggerType)[keyof typeof RecommendationTriggerType]; /** * @public * @enum */ export declare const ModelLifecycle: { readonly ACTIVE: "ACTIVE"; readonly LEGACY: "LEGACY"; }; /** * @public */ export type ModelLifecycle = (typeof ModelLifecycle)[keyof typeof ModelLifecycle]; /** * @public * @enum */ export declare const CrossRegionStatus: { readonly GLOBAL: "GLOBAL"; readonly NONE: "NONE"; readonly REGIONAL: "REGIONAL"; }; /** * @public */ export type CrossRegionStatus = (typeof CrossRegionStatus)[keyof typeof CrossRegionStatus]; /** * @public * @enum */ export declare const Relevance: { readonly HELPFUL: "HELPFUL"; readonly NOT_HELPFUL: "NOT_HELPFUL"; }; /** * @public */ export type Relevance = (typeof Relevance)[keyof typeof Relevance]; /** * @public * @enum */ export declare const TargetType: { readonly MESSAGE: "MESSAGE"; readonly RECOMMENDATION: "RECOMMENDATION"; readonly RESULT: "RESULT"; }; /** * @public */ export type TargetType = (typeof TargetType)[keyof typeof TargetType]; /** * @public * @enum */ export declare const QueryConditionComparisonOperator: { readonly EQUALS: "EQUALS"; }; /** * @public */ export type QueryConditionComparisonOperator = (typeof QueryConditionComparisonOperator)[keyof typeof QueryConditionComparisonOperator]; /** * @public * @enum */ export declare const QueryConditionFieldName: { readonly RESULT_TYPE: "RESULT_TYPE"; }; /** * @public */ export type QueryConditionFieldName = (typeof QueryConditionFieldName)[keyof typeof QueryConditionFieldName]; /** * @public * @enum */ export declare const QueryResultType: { readonly BLOCKED_CASE_SUMMARIZATION_CHUNK: "BLOCKED_CASE_SUMMARIZATION_CHUNK"; readonly BLOCKED_GENERATIVE_ANSWER_CHUNK: "BLOCKED_GENERATIVE_ANSWER_CHUNK"; readonly BLOCKED_INTENT_ANSWER_CHUNK: "BLOCKED_INTENT_ANSWER_CHUNK"; readonly BLOCKED_NOTES_CHUNK: "BLOCKED_NOTES_CHUNK"; readonly CASE_SUMMARIZATION_CHUNK: "CASE_SUMMARIZATION_CHUNK"; readonly EMAIL_GENERATIVE_ANSWER_CHUNK: "EMAIL_GENERATIVE_ANSWER_CHUNK"; readonly EMAIL_OVERVIEW_CHUNK: "EMAIL_OVERVIEW_CHUNK"; readonly EMAIL_RESPONSE_CHUNK: "EMAIL_RESPONSE_CHUNK"; readonly GENERATIVE_ANSWER: "GENERATIVE_ANSWER"; readonly GENERATIVE_ANSWER_CHUNK: "GENERATIVE_ANSWER_CHUNK"; readonly INTENT_ANSWER: "INTENT_ANSWER"; readonly INTENT_ANSWER_CHUNK: "INTENT_ANSWER_CHUNK"; readonly KNOWLEDGE_CONTENT: "KNOWLEDGE_CONTENT"; readonly NOTES: "NOTES"; readonly NOTES_CHUNK: "NOTES_CHUNK"; }; /** * @public */ export type QueryResultType = (typeof QueryResultType)[keyof typeof QueryResultType]; /** * @public * @enum */ export declare const FilterField: { readonly NAME: "NAME"; }; /** * @public */ export type FilterField = (typeof FilterField)[keyof typeof FilterField]; /** * @public * @enum */ export declare const FilterOperator: { readonly EQUALS: "EQUALS"; }; /** * @public */ export type FilterOperator = (typeof FilterOperator)[keyof typeof FilterOperator]; /** * @public * @enum */ export declare const ConversationStatusReason: { readonly FAILED: "FAILED"; readonly REJECTED: "REJECTED"; readonly SUCCESS: "SUCCESS"; }; /** * @public */ export type ConversationStatusReason = (typeof ConversationStatusReason)[keyof typeof ConversationStatusReason]; /** * @public * @enum */ export declare const ConversationStatus: { readonly CLOSED: "CLOSED"; readonly PROCESSING: "PROCESSING"; readonly READY: "READY"; }; /** * @public */ export type ConversationStatus = (typeof ConversationStatus)[keyof typeof ConversationStatus]; /** * @public * @enum */ export declare const Participant: { readonly AGENT: "AGENT"; readonly BOT: "BOT"; readonly CUSTOMER: "CUSTOMER"; }; /** * @public */ export type Participant = (typeof Participant)[keyof typeof Participant]; /** * @public * @enum */ export declare const MessageType: { readonly TEXT: "TEXT"; readonly TOOL_USE_RESULT: "TOOL_USE_RESULT"; }; /** * @public */ export type MessageType = (typeof MessageType)[keyof typeof MessageType]; /** * @public * @enum */ export declare const MessageFilterType: { readonly ALL: "ALL"; readonly TEXT_ONLY: "TEXT_ONLY"; }; /** * @public */ export type MessageFilterType = (typeof MessageFilterType)[keyof typeof MessageFilterType]; /** * @public * @enum */ export declare const GuardrailAction: { readonly BLOCKED: "BLOCKED"; readonly MASKED: "MASKED"; readonly NONE: "NONE"; }; /** * @public */ export type GuardrailAction = (typeof GuardrailAction)[keyof typeof GuardrailAction]; /** * @public * @enum */ export declare const GuardrailPolicyType: { readonly CONTENT_FILTER: "CONTENT_FILTER"; readonly CONTEXTUAL_GROUNDING: "CONTEXTUAL_GROUNDING"; readonly SENSITIVE_INFORMATION_PII: "SENSITIVE_INFORMATION_PII"; readonly SENSITIVE_INFORMATION_REGEX: "SENSITIVE_INFORMATION_REGEX"; readonly TOPIC: "TOPIC"; readonly WORD: "WORD"; }; /** * @public */ export type GuardrailPolicyType = (typeof GuardrailPolicyType)[keyof typeof GuardrailPolicyType]; /** * @public * @enum */ export declare const GuardrailSource: { readonly INPUT: "INPUT"; readonly OUTPUT: "OUTPUT"; }; /** * @public */ export type GuardrailSource = (typeof GuardrailSource)[keyof typeof GuardrailSource]; /** * @public * @enum */ export declare const SpanType: { readonly CLIENT: "CLIENT"; readonly INTERNAL: "INTERNAL"; readonly SERVER: "SERVER"; }; /** * @public */ export type SpanType = (typeof SpanType)[keyof typeof SpanType]; /** * @public * @enum */ export declare const SpanStatus: { readonly ERROR: "ERROR"; readonly OK: "OK"; readonly TIMEOUT: "TIMEOUT"; }; /** * @public */ export type SpanStatus = (typeof SpanStatus)[keyof typeof SpanStatus]; /** * @public * @enum */ export declare const SessionDataNamespace: { readonly Custom: "Custom"; }; /** * @public */ export type SessionDataNamespace = (typeof SessionDataNamespace)[keyof typeof SessionDataNamespace]; /** * @public * @enum */ export declare const ChannelSubtype: { readonly EMAIL: "EMAIL"; readonly PUSH: "PUSH"; readonly SMS: "SMS"; readonly WHATSAPP: "WHATSAPP"; }; /** * @public */ export type ChannelSubtype = (typeof ChannelSubtype)[keyof typeof ChannelSubtype]; /** * @public * @enum */ export declare const ChunkingStrategy: { readonly FIXED_SIZE: "FIXED_SIZE"; readonly HIERARCHICAL: "HIERARCHICAL"; readonly NONE: "NONE"; readonly SEMANTIC: "SEMANTIC"; }; /** * @public */ export type ChunkingStrategy = (typeof ChunkingStrategy)[keyof typeof ChunkingStrategy]; /** * @public * @enum */ export declare const ContentAssociationType: { readonly AMAZON_CONNECT_GUIDE: "AMAZON_CONNECT_GUIDE"; }; /** * @public */ export type ContentAssociationType = (typeof ContentAssociationType)[keyof typeof ContentAssociationType]; /** * @public * @enum */ export declare const ContentStatus: { readonly ACTIVE: "ACTIVE"; readonly CREATE_FAILED: "CREATE_FAILED"; readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS"; readonly DELETED: "DELETED"; readonly DELETE_FAILED: "DELETE_FAILED"; readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS"; readonly UPDATE_FAILED: "UPDATE_FAILED"; }; /** * @public */ export type ContentStatus = (typeof ContentStatus)[keyof typeof ContentStatus]; /** * @public * @enum */ export declare const ContentDisposition: { readonly ATTACHMENT: "ATTACHMENT"; }; /** * @public */ export type ContentDisposition = (typeof ContentDisposition)[keyof typeof ContentDisposition]; /** * @public * @enum */ export declare const KnowledgeBaseType: { readonly CUSTOM: "CUSTOM"; readonly EXTERNAL: "EXTERNAL"; readonly MANAGED: "MANAGED"; readonly MESSAGE_TEMPLATES: "MESSAGE_TEMPLATES"; readonly QUICK_RESPONSES: "QUICK_RESPONSES"; }; /** * @public */ export type KnowledgeBaseType = (typeof KnowledgeBaseType)[keyof typeof KnowledgeBaseType]; /** * @public * @enum */ export declare const WebScopeType: { readonly HOST_ONLY: "HOST_ONLY"; readonly SUBDOMAINS: "SUBDOMAINS"; }; /** * @public */ export type WebScopeType = (typeof WebScopeType)[keyof typeof WebScopeType]; /** * @public * @enum */ export declare const ParsingStrategy: { readonly BEDROCK_FOUNDATION_MODEL: "BEDROCK_FOUNDATION_MODEL"; }; /** * @public */ export type ParsingStrategy = (typeof ParsingStrategy)[keyof typeof ParsingStrategy]; /** * @public * @enum */ export declare const SyncStatus: { readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS"; readonly SYNCING_IN_PROGRESS: "SYNCING_IN_PROGRESS"; readonly SYNC_FAILED: "SYNC_FAILED"; readonly SYNC_SUCCESS: "SYNC_SUCCESS"; }; /** * @public */ export type SyncStatus = (typeof SyncStatus)[keyof typeof SyncStatus]; /** * @public * @enum */ export declare const KnowledgeBaseStatus: { readonly ACTIVE: "ACTIVE"; readonly CREATE_FAILED: "CREATE_FAILED"; readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS"; readonly DELETED: "DELETED"; readonly DELETE_FAILED: "DELETE_FAILED"; readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS"; }; /** * @public */ export type KnowledgeBaseStatus = (typeof KnowledgeBaseStatus)[keyof typeof KnowledgeBaseStatus]; /** * @public * @enum */ export declare const PushMessageAction: { readonly DEEP_LINK: "DEEP_LINK"; readonly OPEN_APP: "OPEN_APP"; readonly URL: "URL"; }; /** * @public */ export type PushMessageAction = (typeof PushMessageAction)[keyof typeof PushMessageAction]; /** * @public * @enum */ export declare const MessageTemplateAttributeType: { readonly AGENT: "AGENT"; readonly CUSTOM: "CUSTOM"; readonly CUSTOMER_PROFILE: "CUSTOMER_PROFILE"; readonly SYSTEM: "SYSTEM"; }; /** * @public */ export type MessageTemplateAttributeType = (typeof MessageTemplateAttributeType)[keyof typeof MessageTemplateAttributeType]; /** * @public * @enum */ export declare const WhatsAppSourceConfigurationStatus: { readonly INVALID: "INVALID"; readonly REJECTED: "REJECTED"; readonly VALID: "VALID"; }; /** * @public */ export type WhatsAppSourceConfigurationStatus = (typeof WhatsAppSourceConfigurationStatus)[keyof typeof WhatsAppSourceConfigurationStatus]; /** * @public * @enum */ export declare const QuickResponseStatus: { readonly CREATED: "CREATED"; readonly CREATE_FAILED: "CREATE_FAILED"; readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS"; readonly DELETED: "DELETED"; readonly DELETE_FAILED: "DELETE_FAILED"; readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS"; readonly UPDATE_FAILED: "UPDATE_FAILED"; readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS"; }; /** * @public */ export type QuickResponseStatus = (typeof QuickResponseStatus)[keyof typeof QuickResponseStatus]; /** * @public * @enum */ export declare const ExternalSource: { readonly AMAZON_CONNECT: "AMAZON_CONNECT"; }; /** * @public */ export type ExternalSource = (typeof ExternalSource)[keyof typeof ExternalSource]; /** * @public * @enum */ export declare const ImportJobType: { readonly QUICK_RESPONSES: "QUICK_RESPONSES"; }; /** * @public */ export type ImportJobType = (typeof ImportJobType)[keyof typeof ImportJobType]; /** * @public * @enum */ export declare const ImportJobStatus: { readonly COMPLETE: "COMPLETE"; readonly DELETED: "DELETED"; readonly DELETE_FAILED: "DELETE_FAILED"; readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS"; readonly FAILED: "FAILED"; readonly START_IN_PROGRESS: "START_IN_PROGRESS"; }; /** * @public */ export type ImportJobStatus = (typeof ImportJobStatus)[keyof typeof ImportJobStatus]; /** * @public * @enum */ export declare const MessageTemplateFilterOperator: { readonly EQUALS: "EQUALS"; readonly PREFIX: "PREFIX"; }; /** * @public */ export type MessageTemplateFilterOperator = (typeof MessageTemplateFilterOperator)[keyof typeof MessageTemplateFilterOperator]; /** * @public * @enum */ export declare const Order: { readonly ASC: "ASC"; readonly DESC: "DESC"; }; /** * @public */ export type Order = (typeof Order)[keyof typeof Order]; /** * @public * @enum */ export declare const MessageTemplateQueryOperator: { readonly CONTAINS: "CONTAINS"; readonly CONTAINS_AND_PREFIX: "CONTAINS_AND_PREFIX"; }; /** * @public */ export type MessageTemplateQueryOperator = (typeof MessageTemplateQueryOperator)[keyof typeof MessageTemplateQueryOperator]; /** * @public * @enum */ export declare const Priority: { readonly HIGH: "HIGH"; readonly LOW: "LOW"; readonly MEDIUM: "MEDIUM"; }; /** * @public */ export type Priority = (typeof Priority)[keyof typeof Priority]; /** * @public * @enum */ export declare const QuickResponseFilterOperator: { readonly EQUALS: "EQUALS"; readonly PREFIX: "PREFIX"; }; /** * @public */ export type QuickResponseFilterOperator = (typeof QuickResponseFilterOperator)[keyof typeof QuickResponseFilterOperator]; /** * @public * @enum */ export declare const QuickResponseQueryOperator: { readonly CONTAINS: "CONTAINS"; readonly CONTAINS_AND_PREFIX: "CONTAINS_AND_PREFIX"; }; /** * @public */ export type QuickResponseQueryOperator = (typeof QuickResponseQueryOperator)[keyof typeof QuickResponseQueryOperator];