@awboost/cfntypes 0.100.165 → 0.100.167
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16526,7 +16526,7 @@ export type BatchComputeEnvironmentUpdatePolicy = {
|
|
16526
16526
|
TerminateJobsOnUpdate?: boolean;
|
16527
16527
|
};
|
16528
16528
|
/**
|
16529
|
-
* Resource Type
|
16529
|
+
* Resource Type definition for AWS::Batch::ConsumableResource
|
16530
16530
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-consumableresource.html}
|
16531
16531
|
*/
|
16532
16532
|
export type BatchConsumableResourceProps = {
|
@@ -16631,6 +16631,7 @@ export type BatchJobDefinitionConsumableResourceRequirement = {
|
|
16631
16631
|
*/
|
16632
16632
|
export type BatchJobDefinitionContainerProperties = {
|
16633
16633
|
Command?: string[];
|
16634
|
+
EnableExecuteCommand?: boolean;
|
16634
16635
|
Environment?: BatchJobDefinitionEnvironment[];
|
16635
16636
|
EphemeralStorage?: BatchJobDefinitionEphemeralStorage;
|
16636
16637
|
ExecutionRoleArn?: string;
|
@@ -16677,6 +16678,7 @@ export type BatchJobDefinitionEcsProperties = {
|
|
16677
16678
|
*/
|
16678
16679
|
export type BatchJobDefinitionEcsTaskProperties = {
|
16679
16680
|
Containers?: BatchJobDefinitionTaskContainerProperties[];
|
16681
|
+
EnableExecuteCommand?: boolean;
|
16680
16682
|
EphemeralStorage?: BatchJobDefinitionEphemeralStorage;
|
16681
16683
|
ExecutionRoleArn?: string;
|
16682
16684
|
IpcMode?: string;
|
@@ -16914,6 +16916,7 @@ export type BatchJobDefinitionMountPoint = {
|
|
16914
16916
|
*/
|
16915
16917
|
export type BatchJobDefinitionMultiNodeContainerProperties = {
|
16916
16918
|
Command?: string[];
|
16919
|
+
EnableExecuteCommand?: boolean;
|
16917
16920
|
Environment?: BatchJobDefinitionEnvironment[];
|
16918
16921
|
EphemeralStorage?: BatchJobDefinitionEphemeralStorage;
|
16919
16922
|
ExecutionRoleArn?: string;
|
@@ -16948,6 +16951,7 @@ export type BatchJobDefinitionMultiNodeEcsProperties = {
|
|
16948
16951
|
*/
|
16949
16952
|
export type BatchJobDefinitionMultiNodeEcsTaskProperties = {
|
16950
16953
|
Containers?: BatchJobDefinitionTaskContainerProperties[];
|
16954
|
+
EnableExecuteCommand?: boolean;
|
16951
16955
|
ExecutionRoleArn?: string;
|
16952
16956
|
IpcMode?: string;
|
16953
16957
|
PidMode?: string;
|
@@ -17038,6 +17042,10 @@ export type BatchJobDefinitionTaskContainerProperties = {
|
|
17038
17042
|
DependsOn?: BatchJobDefinitionTaskContainerDependency[];
|
17039
17043
|
Environment?: BatchJobDefinitionEnvironment[];
|
17040
17044
|
Essential?: boolean;
|
17045
|
+
FirelensConfiguration?: {
|
17046
|
+
Options?: Record<string, string>;
|
17047
|
+
Type: string;
|
17048
|
+
};
|
17041
17049
|
Image: string;
|
17042
17050
|
LinuxParameters?: BatchJobDefinitionLinuxParameters;
|
17043
17051
|
LogConfiguration?: BatchJobDefinitionLogConfiguration;
|
@@ -32200,7 +32208,9 @@ export type CodeBuildProjectS3LogsConfig = {
|
|
32200
32208
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-scopeconfiguration.html}
|
32201
32209
|
*/
|
32202
32210
|
export type CodeBuildProjectScopeConfiguration = {
|
32211
|
+
Domain?: string;
|
32203
32212
|
Name: string;
|
32213
|
+
Scope?: string;
|
32204
32214
|
};
|
32205
32215
|
/**
|
32206
32216
|
* Type definition for `AWS::CodeBuild::Project.Source`.
|
@@ -49219,6 +49229,7 @@ export type DMSReplicationInstanceProps = {
|
|
49219
49229
|
AllowMajorVersionUpgrade?: boolean;
|
49220
49230
|
AutoMinorVersionUpgrade?: boolean;
|
49221
49231
|
AvailabilityZone?: string;
|
49232
|
+
DnsNameServers?: string;
|
49222
49233
|
EngineVersion?: string;
|
49223
49234
|
KmsKeyId?: string;
|
49224
49235
|
MultiAZ?: boolean;
|
@@ -58828,7 +58839,13 @@ export type EC2VPCDHCPOptionsAssociationProps = {
|
|
58828
58839
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html}
|
58829
58840
|
*/
|
58830
58841
|
export type EC2VPCEndpointProps = {
|
58842
|
+
/**
|
58843
|
+
* Describes the DNS options for an endpoint.
|
58844
|
+
*/
|
58831
58845
|
DnsOptions?: EC2VPCEndpointDnsOptionsSpecification;
|
58846
|
+
/**
|
58847
|
+
* The supported IP address types.
|
58848
|
+
*/
|
58832
58849
|
IpAddressType?: "ipv4" | "ipv6" | "dualstack" | "not-specified";
|
58833
58850
|
/**
|
58834
58851
|
* An endpoint policy, which controls access to the service from the VPC. The default endpoint policy allows full access to the service. Endpoint policies are supported only for gateway and interface endpoints.
|
@@ -58843,6 +58860,9 @@ export type EC2VPCEndpointProps = {
|
|
58843
58860
|
Default: ``false``
|
58844
58861
|
*/
|
58845
58862
|
PrivateDnsEnabled?: boolean;
|
58863
|
+
/**
|
58864
|
+
* The Amazon Resource Name (ARN) of the resource configuration.
|
58865
|
+
*/
|
58846
58866
|
ResourceConfigurationArn?: string;
|
58847
58867
|
/**
|
58848
58868
|
* The IDs of the route tables. Routing is supported only for gateway endpoints.
|
@@ -58856,11 +58876,18 @@ export type EC2VPCEndpointProps = {
|
|
58856
58876
|
* The name of the endpoint service.
|
58857
58877
|
*/
|
58858
58878
|
ServiceName?: string;
|
58879
|
+
/**
|
58880
|
+
* The Amazon Resource Name (ARN) of the service network.
|
58881
|
+
*/
|
58859
58882
|
ServiceNetworkArn?: string;
|
58883
|
+
ServiceRegion?: string;
|
58860
58884
|
/**
|
58861
58885
|
* The IDs of the subnets in which to create endpoint network interfaces. You must specify this property for an interface endpoint or a Gateway Load Balancer endpoint. You can't specify this property for a gateway endpoint. For a Gateway Load Balancer endpoint, you can specify only one subnet.
|
58862
58886
|
*/
|
58863
58887
|
SubnetIds?: string[];
|
58888
|
+
/**
|
58889
|
+
* The tags to associate with the endpoint.
|
58890
|
+
*/
|
58864
58891
|
Tags?: EC2VPCEndpointTag[];
|
58865
58892
|
/**
|
58866
58893
|
* The type of endpoint.
|
@@ -58884,18 +58911,34 @@ export type EC2VPCEndpointAttributes = {
|
|
58884
58911
|
};
|
58885
58912
|
/**
|
58886
58913
|
* Type definition for `AWS::EC2::VPCEndpoint.DnsOptionsSpecification`.
|
58914
|
+
* Describes the DNS options for an endpoint.
|
58887
58915
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpcendpoint-dnsoptionsspecification.html}
|
58888
58916
|
*/
|
58889
58917
|
export type EC2VPCEndpointDnsOptionsSpecification = {
|
58918
|
+
/**
|
58919
|
+
* The DNS records created for the endpoint.
|
58920
|
+
*/
|
58890
58921
|
DnsRecordIpType?: "ipv4" | "ipv6" | "dualstack" | "service-defined" | "not-specified";
|
58922
|
+
/**
|
58923
|
+
* Indicates whether to enable private DNS only for inbound endpoints. This option is available only for services that support both gateway and interface endpoints. It routes traffic that originates from the VPC to the gateway endpoint and traffic that originates from on-premises to the interface endpoint.
|
58924
|
+
*/
|
58891
58925
|
PrivateDnsOnlyForInboundResolverEndpoint?: "OnlyInboundResolver" | "AllResolvers" | "NotSpecified";
|
58892
58926
|
};
|
58893
58927
|
/**
|
58894
58928
|
* Type definition for `AWS::EC2::VPCEndpoint.Tag`.
|
58929
|
+
* Describes a tag.
|
58895
58930
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpcendpoint-tag.html}
|
58896
58931
|
*/
|
58897
58932
|
export type EC2VPCEndpointTag = {
|
58933
|
+
/**
|
58934
|
+
* The key of the tag.
|
58935
|
+
Constraints: Tag keys are case-sensitive and accept a maximum of 127 Unicode characters. May not begin with ``aws:``.
|
58936
|
+
*/
|
58898
58937
|
Key: string;
|
58938
|
+
/**
|
58939
|
+
* The value of the tag.
|
58940
|
+
Constraints: Tag values are case-sensitive and accept a maximum of 256 Unicode characters.
|
58941
|
+
*/
|
58899
58942
|
Value: string;
|
58900
58943
|
};
|
58901
58944
|
/**
|
@@ -68552,6 +68595,11 @@ export type EventsApiDestinationAttributes = {
|
|
68552
68595
|
* @pattern `^arn:aws([a-z]|\-)*:events:([a-z]|\d|\-)*:([0-9]{12})?:api-destination/[\.\-_A-Za-z0-9]+/[\-A-Za-z0-9]+$`
|
68553
68596
|
*/
|
68554
68597
|
Arn: string;
|
68598
|
+
/**
|
68599
|
+
* The arn of the api destination to be used in IAM policies.
|
68600
|
+
* @pattern `^arn:aws([a-z]|\-)*:events:([a-z]|\d|\-)*:([0-9]{12})?:api-destination/[\.\-_A-Za-z0-9]+$`
|
68601
|
+
*/
|
68602
|
+
ArnForPolicy: string;
|
68555
68603
|
};
|
68556
68604
|
/**
|
68557
68605
|
* Resource Type definition for AWS::Events::Archive
|
@@ -68566,6 +68614,11 @@ export type EventsArchiveProps = {
|
|
68566
68614
|
ArchiveName?: string;
|
68567
68615
|
Description?: string;
|
68568
68616
|
EventPattern?: Record<string, any>;
|
68617
|
+
/**
|
68618
|
+
* @minLength `0`
|
68619
|
+
* @maxLength `2048`
|
68620
|
+
*/
|
68621
|
+
KmsKeyIdentifier?: string;
|
68569
68622
|
RetentionDays?: number;
|
68570
68623
|
SourceArn: string;
|
68571
68624
|
};
|
@@ -68615,6 +68668,11 @@ export type EventsConnectionAttributes = {
|
|
68615
68668
|
* @pattern `^arn:aws([a-z]|\-)*:events:([a-z]|\d|\-)*:([0-9]{12})?:connection\/[\.\-_A-Za-z0-9]+\/[\-A-Za-z0-9]+$`
|
68616
68669
|
*/
|
68617
68670
|
Arn: string;
|
68671
|
+
/**
|
68672
|
+
* The arn of the connection resource to be used in IAM policies.
|
68673
|
+
* @pattern `^arn:aws([a-z]|\-)*:events:([a-z]|\d|\-)*:([0-9]{12})?:connection\/[\.\-_A-Za-z0-9]+$`
|
68674
|
+
*/
|
68675
|
+
ArnForPolicy: string;
|
68618
68676
|
AuthParameters: {
|
68619
68677
|
ConnectivityParameters: {
|
68620
68678
|
ResourceParameters: {
|
@@ -99499,26 +99557,13 @@ export type LaunchWizardDeploymentTags = {
|
|
99499
99557
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-bot.html}
|
99500
99558
|
*/
|
99501
99559
|
export type LexBotProps = {
|
99502
|
-
/**
|
99503
|
-
* Specifies whether to build the bot locales after bot creation completes.
|
99504
|
-
*/
|
99505
99560
|
AutoBuildBotLocales?: boolean;
|
99506
|
-
/**
|
99507
|
-
* S3 location of bot definitions zip file, if it's not defined inline in CloudFormation.
|
99508
|
-
*/
|
99509
99561
|
BotFileS3Location?: LexBotS3Location;
|
99510
|
-
/**
|
99511
|
-
* List of bot locales
|
99512
|
-
*/
|
99513
99562
|
BotLocales?: LexBotBotLocale[];
|
99514
99563
|
/**
|
99515
|
-
* A list of tags to add to the bot, which can only be added at bot creation.
|
99516
99564
|
* @maxLength `200`
|
99517
99565
|
*/
|
99518
99566
|
BotTags?: LexBotTag[];
|
99519
|
-
/**
|
99520
|
-
* Data privacy setting of the Bot.
|
99521
|
-
*/
|
99522
99567
|
DataPrivacy: {
|
99523
99568
|
ChildDirected: boolean;
|
99524
99569
|
};
|
@@ -99528,35 +99573,25 @@ export type LexBotProps = {
|
|
99528
99573
|
*/
|
99529
99574
|
Description?: string;
|
99530
99575
|
/**
|
99531
|
-
* IdleSessionTTLInSeconds of the resource
|
99532
99576
|
* @min `60`
|
99533
99577
|
* @max `86400`
|
99534
99578
|
*/
|
99535
99579
|
IdleSessionTTLInSeconds: number;
|
99536
99580
|
/**
|
99537
|
-
* Unique name for a resource.
|
99538
99581
|
* @minLength `1`
|
99539
99582
|
* @maxLength `100`
|
99540
99583
|
* @pattern `^([0-9a-zA-Z][_-]?)+$`
|
99541
99584
|
*/
|
99542
99585
|
Name: string;
|
99543
|
-
/**
|
99544
|
-
* Parameter used to create a replication of the source bot in the secondary region.
|
99545
|
-
*/
|
99546
99586
|
Replication?: LexBotReplication;
|
99547
99587
|
/**
|
99548
|
-
* The Amazon Resource Name (ARN) of an IAM role that has permission to access the bot.
|
99549
99588
|
* @minLength `32`
|
99550
99589
|
* @maxLength `2048`
|
99551
99590
|
* @pattern `^arn:aws[a-zA-Z-]*:iam::[0-9]{12}:role/.*$`
|
99552
99591
|
*/
|
99553
99592
|
RoleArn: string;
|
99554
|
-
/**
|
99555
|
-
* Configuring the test bot alias settings for a given bot
|
99556
|
-
*/
|
99557
99593
|
TestBotAliasSettings?: LexBotTestBotAliasSettings;
|
99558
99594
|
/**
|
99559
|
-
* A list of tags to add to the test alias for a bot, , which can only be added at bot/bot alias creation.
|
99560
99595
|
* @maxLength `200`
|
99561
99596
|
*/
|
99562
99597
|
TestBotAliasTags?: LexBotTag[];
|
@@ -99573,7 +99608,6 @@ export type LexBotAttributes = {
|
|
99573
99608
|
*/
|
99574
99609
|
Arn: string;
|
99575
99610
|
/**
|
99576
|
-
* Unique ID of resource
|
99577
99611
|
* @minLength `10`
|
99578
99612
|
* @maxLength `10`
|
99579
99613
|
* @pattern `^[0-9a-zA-Z]+$`
|
@@ -99582,131 +99616,115 @@ export type LexBotAttributes = {
|
|
99582
99616
|
};
|
99583
99617
|
/**
|
99584
99618
|
* Type definition for `AWS::Lex::Bot.AdvancedRecognitionSetting`.
|
99585
|
-
* Provides settings that enable advanced recognition settings for slot values.
|
99586
99619
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-advancedrecognitionsetting.html}
|
99587
99620
|
*/
|
99588
99621
|
export type LexBotAdvancedRecognitionSetting = {
|
99589
|
-
/**
|
99590
|
-
* Enables using slot values as a custom vocabulary when recognizing user utterances.
|
99591
|
-
*/
|
99592
99622
|
AudioRecognitionStrategy?: LexBotAudioRecognitionStrategy;
|
99593
99623
|
};
|
99594
99624
|
/**
|
99595
99625
|
* Type definition for `AWS::Lex::Bot.AllowedInputTypes`.
|
99596
|
-
* Specifies the allowed input types.
|
99597
99626
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-allowedinputtypes.html}
|
99598
99627
|
*/
|
99599
99628
|
export type LexBotAllowedInputTypes = {
|
99600
|
-
/**
|
99601
|
-
* Indicates whether audio input is allowed.
|
99602
|
-
*/
|
99603
99629
|
AllowAudioInput: boolean;
|
99604
|
-
/**
|
99605
|
-
* Indicates whether DTMF input is allowed.
|
99606
|
-
*/
|
99607
99630
|
AllowDTMFInput: boolean;
|
99608
99631
|
};
|
99609
99632
|
/**
|
99610
99633
|
* Type definition for `AWS::Lex::Bot.AudioAndDTMFInputSpecification`.
|
99611
|
-
* Specifies the audio and DTMF input specification.
|
99612
99634
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-audioanddtmfinputspecification.html}
|
99613
99635
|
*/
|
99614
99636
|
export type LexBotAudioAndDTMFInputSpecification = {
|
99615
|
-
/**
|
99616
|
-
* Specifies the audio input specifications.
|
99617
|
-
*/
|
99618
99637
|
AudioSpecification?: LexBotAudioSpecification;
|
99619
|
-
/**
|
99620
|
-
* Specifies the settings on DTMF input.
|
99621
|
-
*/
|
99622
99638
|
DTMFSpecification?: LexBotDTMFSpecification;
|
99623
99639
|
/**
|
99624
|
-
* Time for which a bot waits before assuming that the customer isn't going to speak or press a key. This timeout is shared between Audio and DTMF inputs.
|
99625
99640
|
* @min `1`
|
99626
99641
|
*/
|
99627
99642
|
StartTimeoutMs: number;
|
99628
99643
|
};
|
99629
99644
|
/**
|
99630
99645
|
* Type definition for `AWS::Lex::Bot.AudioLogDestination`.
|
99631
|
-
* The location of audio log files collected when conversation logging is enabled for a bot.
|
99632
99646
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-audiologdestination.html}
|
99633
99647
|
*/
|
99634
99648
|
export type LexBotAudioLogDestination = {
|
99635
|
-
/**
|
99636
|
-
* Specifies an Amazon S3 bucket for logging audio conversations
|
99637
|
-
*/
|
99638
99649
|
S3Bucket: LexBotS3BucketLogDestination;
|
99639
99650
|
};
|
99640
99651
|
/**
|
99641
99652
|
* Type definition for `AWS::Lex::Bot.AudioLogSetting`.
|
99642
|
-
* Settings for logging audio of conversations between Amazon Lex and a user. You specify whether to log audio and the Amazon S3 bucket where the audio file is stored.
|
99643
99653
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-audiologsetting.html}
|
99644
99654
|
*/
|
99645
99655
|
export type LexBotAudioLogSetting = {
|
99646
|
-
/**
|
99647
|
-
* The location of audio log files collected when conversation logging is enabled for a bot.
|
99648
|
-
*/
|
99649
99656
|
Destination: LexBotAudioLogDestination;
|
99650
99657
|
Enabled: boolean;
|
99651
99658
|
};
|
99652
99659
|
/**
|
99653
99660
|
* Type definition for `AWS::Lex::Bot.AudioRecognitionStrategy`.
|
99654
|
-
* Enables using slot values as a custom vocabulary when recognizing user utterances.
|
99655
99661
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-audiorecognitionstrategy.html}
|
99656
99662
|
*/
|
99657
99663
|
export type LexBotAudioRecognitionStrategy = "UseSlotValuesAsCustomVocabulary";
|
99658
99664
|
/**
|
99659
99665
|
* Type definition for `AWS::Lex::Bot.AudioSpecification`.
|
99660
|
-
* Specifies the audio input specifications.
|
99661
99666
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-audiospecification.html}
|
99662
99667
|
*/
|
99663
99668
|
export type LexBotAudioSpecification = {
|
99664
99669
|
/**
|
99665
|
-
* Time for which a bot waits after the customer stops speaking to assume the utterance is finished.
|
99666
99670
|
* @min `1`
|
99667
99671
|
*/
|
99668
99672
|
EndTimeoutMs: number;
|
99669
99673
|
/**
|
99670
|
-
* Time for how long Amazon Lex waits before speech input is truncated and the speech is returned to application.
|
99671
99674
|
* @min `1`
|
99672
99675
|
*/
|
99673
99676
|
MaxLengthMs: number;
|
99674
99677
|
};
|
99678
|
+
/**
|
99679
|
+
* Type definition for `AWS::Lex::Bot.BedrockAgentIntentConfiguration`.
|
99680
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-bedrockagentintentconfiguration.html}
|
99681
|
+
*/
|
99682
|
+
export type LexBotBedrockAgentIntentConfiguration = {
|
99683
|
+
BedrockAgentConfiguration?: {
|
99684
|
+
/**
|
99685
|
+
* @minLength `1`
|
99686
|
+
* @maxLength `5000`
|
99687
|
+
*/
|
99688
|
+
BedrockAgentAliasId?: string;
|
99689
|
+
/**
|
99690
|
+
* @minLength `1`
|
99691
|
+
* @maxLength `5000`
|
99692
|
+
*/
|
99693
|
+
BedrockAgentId?: string;
|
99694
|
+
};
|
99695
|
+
BedrockAgentIntentKnowledgeBaseConfiguration?: {
|
99696
|
+
/**
|
99697
|
+
* @minLength `1`
|
99698
|
+
* @maxLength `5000`
|
99699
|
+
*/
|
99700
|
+
BedrockKnowledgeBaseArn: string;
|
99701
|
+
BedrockModelConfiguration: LexBotBedrockModelSpecification;
|
99702
|
+
};
|
99703
|
+
};
|
99675
99704
|
/**
|
99676
99705
|
* Type definition for `AWS::Lex::Bot.BedrockModelSpecification`.
|
99677
|
-
* Contains information about the Amazon Bedrock model used to interpret the prompt used in descriptive bot building.
|
99678
99706
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-bedrockmodelspecification.html}
|
99679
99707
|
*/
|
99680
99708
|
export type LexBotBedrockModelSpecification = {
|
99681
|
-
/**
|
99682
|
-
* The guardrail configuration in the Bedrock model specification details.
|
99683
|
-
*/
|
99684
99709
|
BedrockGuardrailConfiguration?: {
|
99685
99710
|
/**
|
99686
|
-
* The unique guardrail id for the Bedrock guardrail configuration.
|
99687
99711
|
* @minLength `1`
|
99688
99712
|
* @maxLength `5000`
|
99689
99713
|
*/
|
99690
99714
|
BedrockGuardrailIdentifier?: string;
|
99691
99715
|
/**
|
99692
|
-
* The guardrail version for the Bedrock guardrail configuration.
|
99693
99716
|
* @minLength `1`
|
99694
99717
|
* @maxLength `5000`
|
99695
99718
|
*/
|
99696
99719
|
BedrockGuardrailVersion?: string;
|
99697
99720
|
};
|
99698
99721
|
/**
|
99699
|
-
* The custom prompt used in the Bedrock model specification details.
|
99700
99722
|
* @minLength `1`
|
99701
99723
|
* @maxLength `5000`
|
99702
99724
|
*/
|
99703
99725
|
BedrockModelCustomPrompt?: string;
|
99704
|
-
/**
|
99705
|
-
* The Bedrock trace status in the Bedrock model specification details.
|
99706
|
-
*/
|
99707
99726
|
BedrockTraceStatus?: "ENABLED" | "DISABLED";
|
99708
99727
|
/**
|
99709
|
-
* The ARN of the foundation model used in descriptive bot building.
|
99710
99728
|
* @minLength `1`
|
99711
99729
|
* @maxLength `5000`
|
99712
99730
|
*/
|
@@ -99714,31 +99732,19 @@ export type LexBotBedrockModelSpecification = {
|
|
99714
99732
|
};
|
99715
99733
|
/**
|
99716
99734
|
* Type definition for `AWS::Lex::Bot.BotAliasLocaleSettings`.
|
99717
|
-
* You can use this parameter to specify a specific Lambda function to run different functions in different locales.
|
99718
99735
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-botaliaslocalesettings.html}
|
99719
99736
|
*/
|
99720
99737
|
export type LexBotBotAliasLocaleSettings = {
|
99721
|
-
/**
|
99722
|
-
* Contains information about code hooks that Amazon Lex calls during a conversation.
|
99723
|
-
*/
|
99724
99738
|
CodeHookSpecification?: LexBotCodeHookSpecification;
|
99725
|
-
/**
|
99726
|
-
* Whether the Lambda code hook is enabled
|
99727
|
-
*/
|
99728
99739
|
Enabled: boolean;
|
99729
99740
|
};
|
99730
99741
|
/**
|
99731
99742
|
* Type definition for `AWS::Lex::Bot.BotAliasLocaleSettingsItem`.
|
99732
|
-
* A locale setting in alias
|
99733
99743
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-botaliaslocalesettingsitem.html}
|
99734
99744
|
*/
|
99735
99745
|
export type LexBotBotAliasLocaleSettingsItem = {
|
99736
|
-
/**
|
99737
|
-
* You can use this parameter to specify a specific Lambda function to run different functions in different locales.
|
99738
|
-
*/
|
99739
99746
|
BotAliasLocaleSetting: LexBotBotAliasLocaleSettings;
|
99740
99747
|
/**
|
99741
|
-
* A string used to identify the locale
|
99742
99748
|
* @minLength `1`
|
99743
99749
|
* @maxLength `128`
|
99744
99750
|
*/
|
@@ -99746,13 +99752,9 @@ export type LexBotBotAliasLocaleSettingsItem = {
|
|
99746
99752
|
};
|
99747
99753
|
/**
|
99748
99754
|
* Type definition for `AWS::Lex::Bot.BotLocale`.
|
99749
|
-
* A locale in the bot, which contains the intents and slot types that the bot uses in conversations with users in the specified language and locale.
|
99750
99755
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-botlocale.html}
|
99751
99756
|
*/
|
99752
99757
|
export type LexBotBotLocale = {
|
99753
|
-
/**
|
99754
|
-
* A custom vocabulary is a list of specific phrases that you want Amazon Lex V2 to recognize in the audio input.
|
99755
|
-
*/
|
99756
99758
|
CustomVocabulary?: LexBotCustomVocabulary;
|
99757
99759
|
/**
|
99758
99760
|
* A description of the resource
|
@@ -99760,44 +99762,32 @@ export type LexBotBotLocale = {
|
|
99760
99762
|
*/
|
99761
99763
|
Description?: string;
|
99762
99764
|
/**
|
99763
|
-
* List of intents
|
99764
99765
|
* @maxLength `1000`
|
99765
99766
|
*/
|
99766
99767
|
Intents?: LexBotIntent[];
|
99767
|
-
/**
|
99768
|
-
* The identifier of the language and locale that the bot will be used in.
|
99769
|
-
*/
|
99770
99768
|
LocaleId: string;
|
99771
99769
|
/**
|
99772
|
-
* The specified confidence threshold for inserting the AMAZON.FallbackIntent, AMAZON.KendraSearchIntent intents and AMAZON.QnAIntent.
|
99773
99770
|
* @min `0`
|
99774
99771
|
* @max `1`
|
99775
99772
|
*/
|
99776
99773
|
NluConfidenceThreshold: number;
|
99777
99774
|
/**
|
99778
|
-
* List of SlotTypes
|
99779
99775
|
* @maxLength `250`
|
99780
99776
|
*/
|
99781
99777
|
SlotTypes?: LexBotSlotType[];
|
99782
|
-
/**
|
99783
|
-
* Settings for using an Amazon Polly voice to communicate with a user.
|
99784
|
-
*/
|
99785
99778
|
VoiceSettings?: LexBotVoiceSettings;
|
99786
99779
|
};
|
99787
99780
|
/**
|
99788
99781
|
* Type definition for `AWS::Lex::Bot.Button`.
|
99789
|
-
* A button to use on a response card used to gather slot values from a user.
|
99790
99782
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-button.html}
|
99791
99783
|
*/
|
99792
99784
|
export type LexBotButton = {
|
99793
99785
|
/**
|
99794
|
-
* The text that appears on the button.
|
99795
99786
|
* @minLength `1`
|
99796
99787
|
* @maxLength `50`
|
99797
99788
|
*/
|
99798
99789
|
Text: string;
|
99799
99790
|
/**
|
99800
|
-
* The value returned to Amazon Lex when the user chooses this button.
|
99801
99791
|
* @minLength `1`
|
99802
99792
|
* @maxLength `50`
|
99803
99793
|
*/
|
@@ -99809,13 +99799,11 @@ export type LexBotButton = {
|
|
99809
99799
|
*/
|
99810
99800
|
export type LexBotCloudWatchLogGroupLogDestination = {
|
99811
99801
|
/**
|
99812
|
-
* A string used to identify the groupArn for the Cloudwatch Log Group
|
99813
99802
|
* @minLength `1`
|
99814
99803
|
* @maxLength `2048`
|
99815
99804
|
*/
|
99816
99805
|
CloudWatchLogGroupArn: string;
|
99817
99806
|
/**
|
99818
|
-
* A string containing the value for the Log Prefix
|
99819
99807
|
* @minLength `0`
|
99820
99808
|
* @maxLength `1024`
|
99821
99809
|
*/
|
@@ -99823,23 +99811,28 @@ export type LexBotCloudWatchLogGroupLogDestination = {
|
|
99823
99811
|
};
|
99824
99812
|
/**
|
99825
99813
|
* Type definition for `AWS::Lex::Bot.CodeHookSpecification`.
|
99826
|
-
* Contains information about code hooks that Amazon Lex calls during a conversation.
|
99827
99814
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-codehookspecification.html}
|
99828
99815
|
*/
|
99829
99816
|
export type LexBotCodeHookSpecification = {
|
99817
|
+
LambdaCodeHook: LexBotLambdaCodeHook;
|
99818
|
+
};
|
99819
|
+
/**
|
99820
|
+
* Type definition for `AWS::Lex::Bot.CompositeSlotTypeSetting`.
|
99821
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-compositeslottypesetting.html}
|
99822
|
+
*/
|
99823
|
+
export type LexBotCompositeSlotTypeSetting = {
|
99830
99824
|
/**
|
99831
|
-
*
|
99825
|
+
* @minLength `1`
|
99826
|
+
* @maxLength `6`
|
99832
99827
|
*/
|
99833
|
-
|
99828
|
+
SubSlots?: LexBotSubSlotTypeComposition[];
|
99834
99829
|
};
|
99835
99830
|
/**
|
99836
99831
|
* Type definition for `AWS::Lex::Bot.Condition`.
|
99837
|
-
* Provides an expression that evaluates to true or false.
|
99838
99832
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-condition.html}
|
99839
99833
|
*/
|
99840
99834
|
export type LexBotCondition = {
|
99841
99835
|
/**
|
99842
|
-
* The expression string that is evaluated.
|
99843
99836
|
* @minLength `1`
|
99844
99837
|
* @maxLength `1024`
|
99845
99838
|
*/
|
@@ -99847,76 +99840,52 @@ export type LexBotCondition = {
|
|
99847
99840
|
};
|
99848
99841
|
/**
|
99849
99842
|
* Type definition for `AWS::Lex::Bot.ConditionalBranch`.
|
99850
|
-
* A set of actions that Amazon Lex should run if the condition is matched.
|
99851
99843
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-conditionalbranch.html}
|
99852
99844
|
*/
|
99853
99845
|
export type LexBotConditionalBranch = {
|
99854
|
-
/**
|
99855
|
-
* Contains the expression to evaluate. If the condition is true, the branch's actions are taken.
|
99856
|
-
*/
|
99857
99846
|
Condition: LexBotCondition;
|
99858
99847
|
/**
|
99859
|
-
* The name of the branch.
|
99860
99848
|
* @minLength `1`
|
99861
99849
|
* @maxLength `100`
|
99862
99850
|
* @pattern `^([0-9a-zA-Z][_-]?)+$`
|
99863
99851
|
*/
|
99864
99852
|
Name: string;
|
99865
|
-
/**
|
99866
|
-
* The next step in the conversation.
|
99867
|
-
*/
|
99868
99853
|
NextStep: LexBotDialogState;
|
99869
|
-
/**
|
99870
|
-
* Specifies a list of message groups that Amazon Lex uses to respond the user input.
|
99871
|
-
*/
|
99872
99854
|
Response?: LexBotResponseSpecification;
|
99873
99855
|
};
|
99874
99856
|
/**
|
99875
99857
|
* Type definition for `AWS::Lex::Bot.ConditionalSpecification`.
|
99876
|
-
* Provides a list of conditional branches. Branches are evaluated in the order that they are entered in the list. The first branch with a condition that evaluates to true is executed. The last branch in the list is the default branch. The default branch should not have any condition expression. The default branch is executed if no other branch has a matching condition.
|
99877
99858
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-conditionalspecification.html}
|
99878
99859
|
*/
|
99879
99860
|
export type LexBotConditionalSpecification = {
|
99880
99861
|
/**
|
99881
|
-
* A list of conditional branches. A conditional branch is made up of a condition, a response and a next step. The response and next step are executed when the condition is true.
|
99882
99862
|
* @minLength `1`
|
99883
99863
|
* @maxLength `4`
|
99884
99864
|
*/
|
99885
99865
|
ConditionalBranches: LexBotConditionalBranch[];
|
99886
|
-
/**
|
99887
|
-
* The conditional branch that should be followed when the conditions for other branches are not satisfied. A conditional branch is made up of a condition, a response and a next step.
|
99888
|
-
*/
|
99889
99866
|
DefaultBranch: LexBotDefaultConditionalBranch;
|
99890
|
-
/**
|
99891
|
-
* Determines whether a conditional branch is active. When active is false, the conditions are not evaluated.
|
99892
|
-
*/
|
99893
99867
|
IsActive: boolean;
|
99894
99868
|
};
|
99895
99869
|
/**
|
99896
99870
|
* Type definition for `AWS::Lex::Bot.ConversationLogSettings`.
|
99897
|
-
* Contains information about code hooks that Amazon Lex calls during a conversation.
|
99898
99871
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-conversationlogsettings.html}
|
99899
99872
|
*/
|
99900
99873
|
export type LexBotConversationLogSettings = {
|
99901
99874
|
/**
|
99902
|
-
* List of audio log settings that pertain to the conversation log settings for the bot's TestBotAlias.
|
99903
99875
|
* @maxLength `1`
|
99904
99876
|
*/
|
99905
99877
|
AudioLogSettings?: LexBotAudioLogSetting[];
|
99906
99878
|
/**
|
99907
|
-
* List of text log settings that pertain to the conversation log settings for the bot's TestBotAlias
|
99908
99879
|
* @maxLength `1`
|
99909
99880
|
*/
|
99910
99881
|
TextLogSettings?: LexBotTextLogSetting[];
|
99911
99882
|
};
|
99912
99883
|
/**
|
99913
99884
|
* Type definition for `AWS::Lex::Bot.CustomPayload`.
|
99914
|
-
* A message in a custom format defined by the client application.
|
99915
99885
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-custompayload.html}
|
99916
99886
|
*/
|
99917
99887
|
export type LexBotCustomPayload = {
|
99918
99888
|
/**
|
99919
|
-
* The string that is sent to your application.
|
99920
99889
|
* @minLength `1`
|
99921
99890
|
* @maxLength `1000`
|
99922
99891
|
*/
|
@@ -99924,7 +99893,6 @@ export type LexBotCustomPayload = {
|
|
99924
99893
|
};
|
99925
99894
|
/**
|
99926
99895
|
* Type definition for `AWS::Lex::Bot.CustomVocabulary`.
|
99927
|
-
* A custom vocabulary is a list of specific phrases that you want Amazon Lex V2 to recognize in the audio input.
|
99928
99896
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-customvocabulary.html}
|
99929
99897
|
*/
|
99930
99898
|
export type LexBotCustomVocabulary = {
|
@@ -99935,24 +99903,20 @@ export type LexBotCustomVocabulary = {
|
|
99935
99903
|
};
|
99936
99904
|
/**
|
99937
99905
|
* Type definition for `AWS::Lex::Bot.CustomVocabularyItem`.
|
99938
|
-
* A custom vocabulary item that contains the phrase to recognize and a weight to give the boost.
|
99939
99906
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-customvocabularyitem.html}
|
99940
99907
|
*/
|
99941
99908
|
export type LexBotCustomVocabularyItem = {
|
99942
99909
|
/**
|
99943
|
-
* Defines how you want your phrase to look in your transcription output.
|
99944
99910
|
* @minLength `1`
|
99945
99911
|
* @maxLength `100`
|
99946
99912
|
*/
|
99947
99913
|
DisplayAs?: string;
|
99948
99914
|
/**
|
99949
|
-
* Phrase that should be recognized.
|
99950
99915
|
* @minLength `1`
|
99951
99916
|
* @maxLength `100`
|
99952
99917
|
*/
|
99953
99918
|
Phrase: string;
|
99954
99919
|
/**
|
99955
|
-
* The degree to which the phrase recognition is boosted. The weight 0 means that no boosting will be applied and the entry will only be used for performing replacements using the displayAs field.
|
99956
99920
|
* @min `0`
|
99957
99921
|
* @max `3`
|
99958
99922
|
*/
|
@@ -99960,76 +99924,48 @@ export type LexBotCustomVocabularyItem = {
|
|
99960
99924
|
};
|
99961
99925
|
/**
|
99962
99926
|
* Type definition for `AWS::Lex::Bot.DefaultConditionalBranch`.
|
99963
|
-
* A set of actions that Amazon Lex should run if none of the other conditions are met.
|
99964
99927
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-defaultconditionalbranch.html}
|
99965
99928
|
*/
|
99966
99929
|
export type LexBotDefaultConditionalBranch = {
|
99967
|
-
/**
|
99968
|
-
* The next step in the conversation.
|
99969
|
-
*/
|
99970
99930
|
NextStep?: LexBotDialogState;
|
99971
|
-
/**
|
99972
|
-
* Specifies a list of message groups that Amazon Lex uses to respond the user input.
|
99973
|
-
*/
|
99974
99931
|
Response?: LexBotResponseSpecification;
|
99975
99932
|
};
|
99976
99933
|
/**
|
99977
99934
|
* Type definition for `AWS::Lex::Bot.DialogAction`.
|
99978
|
-
* Defines the action that the bot executes at runtime when the conversation reaches this step.
|
99979
99935
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-dialogaction.html}
|
99980
99936
|
*/
|
99981
99937
|
export type LexBotDialogAction = {
|
99982
99938
|
/**
|
99983
|
-
* If the dialog action is ElicitSlot, defines the slot to elicit from the user.
|
99984
99939
|
* @minLength `1`
|
99985
99940
|
* @maxLength `100`
|
99986
99941
|
* @pattern `^([0-9a-zA-Z][_-]?)+$`
|
99987
99942
|
*/
|
99988
99943
|
SlotToElicit?: string;
|
99989
|
-
/**
|
99990
|
-
* When true the next message for the intent is not used.
|
99991
|
-
*/
|
99992
99944
|
SuppressNextMessage?: boolean;
|
99993
|
-
/**
|
99994
|
-
* The action that the bot should execute.
|
99995
|
-
*/
|
99996
99945
|
Type: LexBotDialogActionType;
|
99997
99946
|
};
|
99998
99947
|
/**
|
99999
99948
|
* Type definition for `AWS::Lex::Bot.DialogActionType`.
|
100000
|
-
* The possible values of actions that the conversation can take.
|
100001
99949
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-dialogactiontype.html}
|
100002
99950
|
*/
|
100003
99951
|
export type LexBotDialogActionType = "CloseIntent" | "ConfirmIntent" | "ElicitIntent" | "ElicitSlot" | "StartIntent" | "FulfillIntent" | "EndConversation" | "EvaluateConditional" | "InvokeDialogCodeHook";
|
100004
99952
|
/**
|
100005
99953
|
* Type definition for `AWS::Lex::Bot.DialogCodeHookInvocationSetting`.
|
100006
|
-
* Settings that specify the dialog code hook that is called by Amazon Lex at a step of the conversation.
|
100007
99954
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-dialogcodehookinvocationsetting.html}
|
100008
99955
|
*/
|
100009
99956
|
export type LexBotDialogCodeHookInvocationSetting = {
|
100010
|
-
/**
|
100011
|
-
* Indicates whether a Lambda function should be invoked for the dialog.
|
100012
|
-
*/
|
100013
99957
|
EnableCodeHookInvocation: boolean;
|
100014
99958
|
/**
|
100015
|
-
* A label that indicates the dialog step from which the dialog code hook is happening.
|
100016
99959
|
* @minLength `1`
|
100017
99960
|
* @maxLength `100`
|
100018
99961
|
* @pattern `^([0-9a-zA-Z][_-]?)+$`
|
100019
99962
|
*/
|
100020
99963
|
InvocationLabel?: string;
|
100021
|
-
/**
|
100022
|
-
* Determines whether a dialog code hook is used when the intent is activated.
|
100023
|
-
*/
|
100024
99964
|
IsActive: boolean;
|
100025
|
-
/**
|
100026
|
-
* Contains the responses and actions that Amazon Lex takes after the Lambda function is complete.
|
100027
|
-
*/
|
100028
99965
|
PostCodeHookSpecification: LexBotPostDialogCodeHookInvocationSpecification;
|
100029
99966
|
};
|
100030
99967
|
/**
|
100031
99968
|
* Type definition for `AWS::Lex::Bot.DialogCodeHookSetting`.
|
100032
|
-
* Settings that determine the Lambda function that Amazon Lex uses for processing user responses.
|
100033
99969
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-dialogcodehooksetting.html}
|
100034
99970
|
*/
|
100035
99971
|
export type LexBotDialogCodeHookSetting = {
|
@@ -100037,46 +99973,31 @@ export type LexBotDialogCodeHookSetting = {
|
|
100037
99973
|
};
|
100038
99974
|
/**
|
100039
99975
|
* Type definition for `AWS::Lex::Bot.DialogState`.
|
100040
|
-
* The current state of the conversation with the user.
|
100041
99976
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-dialogstate.html}
|
100042
99977
|
*/
|
100043
99978
|
export type LexBotDialogState = {
|
100044
|
-
/**
|
100045
|
-
* Defines the action that the bot executes at runtime when the conversation reaches this step.
|
100046
|
-
*/
|
100047
99979
|
DialogAction?: LexBotDialogAction;
|
100048
|
-
/**
|
100049
|
-
* Override settings to configure the intent state.
|
100050
|
-
*/
|
100051
99980
|
Intent?: LexBotIntentOverride;
|
100052
|
-
/**
|
100053
|
-
* List of session attributes to be applied when the conversation reaches this step.
|
100054
|
-
*/
|
100055
99981
|
SessionAttributes?: LexBotSessionAttribute[];
|
100056
99982
|
};
|
100057
99983
|
/**
|
100058
99984
|
* Type definition for `AWS::Lex::Bot.DTMFSpecification`.
|
100059
|
-
* Specifies the settings on DTMF input.
|
100060
99985
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-dtmfspecification.html}
|
100061
99986
|
*/
|
100062
99987
|
export type LexBotDTMFSpecification = {
|
100063
99988
|
/**
|
100064
|
-
* The DTMF character that clears the accumulated DTMF digits and immediately ends the input.
|
100065
99989
|
* @pattern `^[A-D0-9#*]{1}$`
|
100066
99990
|
*/
|
100067
99991
|
DeletionCharacter: string;
|
100068
99992
|
/**
|
100069
|
-
* The DTMF character that immediately ends input. If the user does not press this character, the input ends after the end timeout.
|
100070
99993
|
* @pattern `^[A-D0-9#*]{1}$`
|
100071
99994
|
*/
|
100072
99995
|
EndCharacter: string;
|
100073
99996
|
/**
|
100074
|
-
* How long the bot should wait after the last DTMF character input before assuming that the input has concluded.
|
100075
99997
|
* @min `1`
|
100076
99998
|
*/
|
100077
99999
|
EndTimeoutMs: number;
|
100078
100000
|
/**
|
100079
|
-
* The maximum number of DTMF digits allowed in an utterance.
|
100080
100001
|
* @min `1`
|
100081
100002
|
* @max `1024`
|
100082
100003
|
*/
|
@@ -100084,16 +100005,11 @@ export type LexBotDTMFSpecification = {
|
|
100084
100005
|
};
|
100085
100006
|
/**
|
100086
100007
|
* Type definition for `AWS::Lex::Bot.ElicitationCodeHookInvocationSetting`.
|
100087
|
-
* Settings that specify the dialog code hook that is called by Amazon Lex between eliciting slot values.
|
100088
100008
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-elicitationcodehookinvocationsetting.html}
|
100089
100009
|
*/
|
100090
100010
|
export type LexBotElicitationCodeHookInvocationSetting = {
|
100091
|
-
/**
|
100092
|
-
* Indicates whether a Lambda function should be invoked for the dialog.
|
100093
|
-
*/
|
100094
100011
|
EnableCodeHookInvocation: boolean;
|
100095
100012
|
/**
|
100096
|
-
* A label that indicates the dialog step from which the dialog code hook is happening.
|
100097
100013
|
* @minLength `1`
|
100098
100014
|
* @maxLength `100`
|
100099
100015
|
* @pattern `^([0-9a-zA-Z][_-]?)+$`
|
@@ -100102,53 +100018,33 @@ export type LexBotElicitationCodeHookInvocationSetting = {
|
|
100102
100018
|
};
|
100103
100019
|
/**
|
100104
100020
|
* Type definition for `AWS::Lex::Bot.ExternalSourceSetting`.
|
100105
|
-
* Provides information about the external source of the slot type's definition.
|
100106
100021
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-externalsourcesetting.html}
|
100107
100022
|
*/
|
100108
100023
|
export type LexBotExternalSourceSetting = {
|
100109
|
-
/**
|
100110
|
-
* Settings required for a slot type based on a grammar that you provide.
|
100111
|
-
*/
|
100112
100024
|
GrammarSlotTypeSetting?: LexBotGrammarSlotTypeSetting;
|
100113
100025
|
};
|
100114
100026
|
/**
|
100115
100027
|
* Type definition for `AWS::Lex::Bot.FulfillmentCodeHookSetting`.
|
100116
|
-
* Settings that determine if a Lambda function should be invoked to fulfill a specific intent.
|
100117
100028
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-fulfillmentcodehooksetting.html}
|
100118
100029
|
*/
|
100119
100030
|
export type LexBotFulfillmentCodeHookSetting = {
|
100120
100031
|
Enabled: boolean;
|
100121
|
-
/**
|
100122
|
-
* Provides information for updating the user on the progress of fulfilling an intent.
|
100123
|
-
*/
|
100124
100032
|
FulfillmentUpdatesSpecification?: LexBotFulfillmentUpdatesSpecification;
|
100125
|
-
/**
|
100126
|
-
* Determines whether the fulfillment code hook is used. When active is false, the code hook doesn't run.
|
100127
|
-
*/
|
100128
100033
|
IsActive?: boolean;
|
100129
|
-
/**
|
100130
|
-
* Provides a setting that determines whether the post-fulfillment response is sent to the user.
|
100131
|
-
*/
|
100132
100034
|
PostFulfillmentStatusSpecification?: LexBotPostFulfillmentStatusSpecification;
|
100133
100035
|
};
|
100134
100036
|
/**
|
100135
100037
|
* Type definition for `AWS::Lex::Bot.FulfillmentStartResponseSpecification`.
|
100136
|
-
* Provides settings for a message that is sent to the user when a fulfillment Lambda function starts running.
|
100137
100038
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-fulfillmentstartresponsespecification.html}
|
100138
100039
|
*/
|
100139
100040
|
export type LexBotFulfillmentStartResponseSpecification = {
|
100140
|
-
/**
|
100141
|
-
* Determines whether the user can interrupt the start message while it is playing.
|
100142
|
-
*/
|
100143
100041
|
AllowInterrupt?: boolean;
|
100144
100042
|
/**
|
100145
|
-
* The delay between when the Lambda fulfillment function starts running and the start message is played. If the Lambda function returns before the delay is over, the start message isn't played.
|
100146
100043
|
* @min `1`
|
100147
100044
|
* @max `900`
|
100148
100045
|
*/
|
100149
100046
|
DelayInSeconds: number;
|
100150
100047
|
/**
|
100151
|
-
* One to 5 message groups that contain update messages. Amazon Lex chooses one of the messages to play to the user.
|
100152
100048
|
* @minLength `1`
|
100153
100049
|
* @maxLength `5`
|
100154
100050
|
*/
|
@@ -100156,22 +100052,16 @@ export type LexBotFulfillmentStartResponseSpecification = {
|
|
100156
100052
|
};
|
100157
100053
|
/**
|
100158
100054
|
* Type definition for `AWS::Lex::Bot.FulfillmentUpdateResponseSpecification`.
|
100159
|
-
* Provides settings for a message that is sent periodically to the user while a fulfillment Lambda function is running.
|
100160
100055
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-fulfillmentupdateresponsespecification.html}
|
100161
100056
|
*/
|
100162
100057
|
export type LexBotFulfillmentUpdateResponseSpecification = {
|
100163
|
-
/**
|
100164
|
-
* Determines whether the user can interrupt an update message while it is playing.
|
100165
|
-
*/
|
100166
100058
|
AllowInterrupt?: boolean;
|
100167
100059
|
/**
|
100168
|
-
* The frequency that a message is sent to the user. When the period ends, Amazon Lex chooses a message from the message groups and plays it to the user. If the fulfillment Lambda returns before the first period ends, an update message is not played to the user.
|
100169
100060
|
* @min `1`
|
100170
100061
|
* @max `900`
|
100171
100062
|
*/
|
100172
100063
|
FrequencyInSeconds: number;
|
100173
100064
|
/**
|
100174
|
-
* One to 5 message groups that contain update messages. Amazon Lex chooses one of the messages to play to the user.
|
100175
100065
|
* @minLength `1`
|
100176
100066
|
* @maxLength `5`
|
100177
100067
|
*/
|
@@ -100179,62 +100069,43 @@ export type LexBotFulfillmentUpdateResponseSpecification = {
|
|
100179
100069
|
};
|
100180
100070
|
/**
|
100181
100071
|
* Type definition for `AWS::Lex::Bot.FulfillmentUpdatesSpecification`.
|
100182
|
-
* Provides information for updating the user on the progress of fulfilling an intent.
|
100183
100072
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-fulfillmentupdatesspecification.html}
|
100184
100073
|
*/
|
100185
100074
|
export type LexBotFulfillmentUpdatesSpecification = {
|
100186
|
-
/**
|
100187
|
-
* Determines whether fulfillment updates are sent to the user. When this field is true, updates are sent.
|
100188
|
-
*/
|
100189
100075
|
Active: boolean;
|
100190
|
-
/**
|
100191
|
-
* Provides settings for a message that is sent to the user when a fulfillment Lambda function starts running.
|
100192
|
-
*/
|
100193
100076
|
StartResponse?: LexBotFulfillmentStartResponseSpecification;
|
100194
100077
|
/**
|
100195
|
-
* The length of time that the fulfillment Lambda function should run before it times out.
|
100196
100078
|
* @min `1`
|
100197
100079
|
* @max `900`
|
100198
100080
|
*/
|
100199
100081
|
TimeoutInSeconds?: number;
|
100200
|
-
/**
|
100201
|
-
* Provides settings for a message that is sent periodically to the user while a fulfillment Lambda function is running.
|
100202
|
-
*/
|
100203
100082
|
UpdateResponse?: LexBotFulfillmentUpdateResponseSpecification;
|
100204
100083
|
};
|
100205
100084
|
/**
|
100206
100085
|
* Type definition for `AWS::Lex::Bot.GrammarSlotTypeSetting`.
|
100207
|
-
* Settings required for a slot type based on a grammar that you provide.
|
100208
100086
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-grammarslottypesetting.html}
|
100209
100087
|
*/
|
100210
100088
|
export type LexBotGrammarSlotTypeSetting = {
|
100211
|
-
/**
|
100212
|
-
* Describes the Amazon S3 bucket name and location for the grammar that is the source for the slot type.
|
100213
|
-
*/
|
100214
100089
|
Source?: LexBotGrammarSlotTypeSource;
|
100215
100090
|
};
|
100216
100091
|
/**
|
100217
100092
|
* Type definition for `AWS::Lex::Bot.GrammarSlotTypeSource`.
|
100218
|
-
* Describes the Amazon S3 bucket name and location for the grammar that is the source for the slot type.
|
100219
100093
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-grammarslottypesource.html}
|
100220
100094
|
*/
|
100221
100095
|
export type LexBotGrammarSlotTypeSource = {
|
100222
100096
|
/**
|
100223
|
-
* The Amazon KMS key required to decrypt the contents of the grammar, if any.
|
100224
100097
|
* @minLength `20`
|
100225
100098
|
* @maxLength `2048`
|
100226
100099
|
* @pattern `^arn:[\w\-]+:kms:[\w\-]+:[\d]{12}:(?:key\/[\w\-]+|alias\/[a-zA-Z0-9:\/_\-]{1,256})$`
|
100227
100100
|
*/
|
100228
100101
|
KmsKeyArn?: string;
|
100229
100102
|
/**
|
100230
|
-
* The name of the S3 bucket that contains the grammar source.
|
100231
100103
|
* @minLength `3`
|
100232
100104
|
* @maxLength `63`
|
100233
100105
|
* @pattern `^[a-z0-9][\.\-a-z0-9]{1,61}[a-z0-9]$`
|
100234
100106
|
*/
|
100235
100107
|
S3BucketName: string;
|
100236
100108
|
/**
|
100237
|
-
* The path to the grammar in the S3 bucket.
|
100238
100109
|
* @minLength `1`
|
100239
100110
|
* @maxLength `1024`
|
100240
100111
|
* @pattern `[\.\-\!\*\_\'\(\)a-zA-Z0-9][\.\-\!\*\_\'\(\)\/a-zA-Z0-9]*$`
|
@@ -100243,29 +100114,24 @@ export type LexBotGrammarSlotTypeSource = {
|
|
100243
100114
|
};
|
100244
100115
|
/**
|
100245
100116
|
* Type definition for `AWS::Lex::Bot.ImageResponseCard`.
|
100246
|
-
* A message that defines a response card that the client application can show to the user.
|
100247
100117
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-imageresponsecard.html}
|
100248
100118
|
*/
|
100249
100119
|
export type LexBotImageResponseCard = {
|
100250
100120
|
/**
|
100251
|
-
* A list of buttons that should be displayed on the response card.
|
100252
100121
|
* @maxLength `5`
|
100253
100122
|
*/
|
100254
100123
|
Buttons?: LexBotButton[];
|
100255
100124
|
/**
|
100256
|
-
* The URL of an image to display on the response card.
|
100257
100125
|
* @minLength `1`
|
100258
100126
|
* @maxLength `250`
|
100259
100127
|
*/
|
100260
100128
|
ImageUrl?: string;
|
100261
100129
|
/**
|
100262
|
-
* The subtitle to display on the response card.
|
100263
100130
|
* @minLength `1`
|
100264
100131
|
* @maxLength `250`
|
100265
100132
|
*/
|
100266
100133
|
Subtitle?: string;
|
100267
100134
|
/**
|
100268
|
-
* The title to display on the response card.
|
100269
100135
|
* @minLength `1`
|
100270
100136
|
* @maxLength `250`
|
100271
100137
|
*/
|
@@ -100273,35 +100139,20 @@ export type LexBotImageResponseCard = {
|
|
100273
100139
|
};
|
100274
100140
|
/**
|
100275
100141
|
* Type definition for `AWS::Lex::Bot.InitialResponseSetting`.
|
100276
|
-
* Configuration setting for a response sent to the user before Amazon Lex starts eliciting slots.
|
100277
100142
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-initialresponsesetting.html}
|
100278
100143
|
*/
|
100279
100144
|
export type LexBotInitialResponseSetting = {
|
100280
|
-
/**
|
100281
|
-
* Settings that specify the dialog code hook that is called by Amazon Lex at a step of the conversation.
|
100282
|
-
*/
|
100283
100145
|
CodeHook?: LexBotDialogCodeHookInvocationSetting;
|
100284
|
-
/**
|
100285
|
-
* Provides a list of conditional branches. Branches are evaluated in the order that they are entered in the list. The first branch with a condition that evaluates to true is executed. The last branch in the list is the default branch. The default branch should not have any condition expression. The default branch is executed if no other branch has a matching condition.
|
100286
|
-
*/
|
100287
100146
|
Conditional?: LexBotConditionalSpecification;
|
100288
|
-
/**
|
100289
|
-
* Specifies a list of message groups that Amazon Lex uses to respond the user input.
|
100290
|
-
*/
|
100291
100147
|
InitialResponse?: LexBotResponseSpecification;
|
100292
|
-
/**
|
100293
|
-
* The next step in the conversation.
|
100294
|
-
*/
|
100295
100148
|
NextStep?: LexBotDialogState;
|
100296
100149
|
};
|
100297
100150
|
/**
|
100298
100151
|
* Type definition for `AWS::Lex::Bot.InputContext`.
|
100299
|
-
* InputContext specified for the intent.
|
100300
100152
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-inputcontext.html}
|
100301
100153
|
*/
|
100302
100154
|
export type LexBotInputContext = {
|
100303
100155
|
/**
|
100304
|
-
* The name of the context.
|
100305
100156
|
* @minLength `1`
|
100306
100157
|
* @maxLength `100`
|
100307
100158
|
* @pattern `^([0-9a-zA-Z][_-]?)+$`
|
@@ -100310,216 +100161,116 @@ export type LexBotInputContext = {
|
|
100310
100161
|
};
|
100311
100162
|
/**
|
100312
100163
|
* Type definition for `AWS::Lex::Bot.Intent`.
|
100313
|
-
* Represents an action that the user wants to perform.
|
100314
100164
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-intent.html}
|
100315
100165
|
*/
|
100316
100166
|
export type LexBotIntent = {
|
100167
|
+
BedrockAgentIntentConfiguration?: LexBotBedrockAgentIntentConfiguration;
|
100317
100168
|
/**
|
100318
100169
|
* Description of thr intent.
|
100319
100170
|
* @maxLength `200`
|
100320
100171
|
*/
|
100321
100172
|
Description?: string;
|
100322
|
-
/**
|
100323
|
-
* Settings that determine the Lambda function that Amazon Lex uses for processing user responses.
|
100324
|
-
*/
|
100325
100173
|
DialogCodeHook?: LexBotDialogCodeHookSetting;
|
100326
|
-
/**
|
100327
|
-
* Settings that determine if a Lambda function should be invoked to fulfill a specific intent.
|
100328
|
-
*/
|
100329
100174
|
FulfillmentCodeHook?: LexBotFulfillmentCodeHookSetting;
|
100330
|
-
/**
|
100331
|
-
* Configuration setting for a response sent to the user before Amazon Lex starts eliciting slots.
|
100332
|
-
*/
|
100333
100175
|
InitialResponseSetting?: LexBotInitialResponseSetting;
|
100334
100176
|
/**
|
100335
|
-
* The list of input contexts specified for the intent.
|
100336
100177
|
* @maxLength `5`
|
100337
100178
|
*/
|
100338
100179
|
InputContexts?: LexBotInputContext[];
|
100339
|
-
/**
|
100340
|
-
* Provides a statement the Amazon Lex conveys to the user when the intent is successfully fulfilled.
|
100341
|
-
*/
|
100342
100180
|
IntentClosingSetting?: LexBotIntentClosingSetting;
|
100343
|
-
/**
|
100344
|
-
* Provides a prompt for making sure that the user is ready for the intent to be fulfilled.
|
100345
|
-
*/
|
100346
100181
|
IntentConfirmationSetting?: LexBotIntentConfirmationSetting;
|
100347
|
-
/**
|
100348
|
-
* Configuration for searching a Amazon Kendra index specified for the intent.
|
100349
|
-
*/
|
100350
100182
|
KendraConfiguration?: LexBotKendraConfiguration;
|
100351
100183
|
/**
|
100352
|
-
* The name of the intent.
|
100353
100184
|
* @minLength `1`
|
100354
100185
|
* @maxLength `100`
|
100355
100186
|
* @pattern `^([0-9a-zA-Z][_-]?)+$`
|
100356
100187
|
*/
|
100357
100188
|
Name: string;
|
100358
100189
|
/**
|
100359
|
-
* A list of contexts that the intent activates when it is fulfilled.
|
100360
100190
|
* @maxLength `10`
|
100361
100191
|
*/
|
100362
100192
|
OutputContexts?: LexBotOutputContext[];
|
100363
|
-
/**
|
100364
|
-
* A unique identifier for the built-in intent to base this intent on.
|
100365
|
-
*/
|
100366
100193
|
ParentIntentSignature?: string;
|
100367
|
-
|
100368
|
-
* Details about the the configuration of the built-in Amazon.QnAIntent.
|
100369
|
-
*/
|
100194
|
+
QInConnectIntentConfiguration?: LexBotQInConnectIntentConfiguration;
|
100370
100195
|
QnAIntentConfiguration?: LexBotQnAIntentConfiguration;
|
100371
|
-
/**
|
100372
|
-
* A sample utterance that invokes an intent or respond to a slot elicitation prompt.
|
100373
|
-
*/
|
100374
100196
|
SampleUtterances?: LexBotSampleUtterance[];
|
100375
|
-
/**
|
100376
|
-
* List for slot priorities
|
100377
|
-
*/
|
100378
100197
|
SlotPriorities?: LexBotSlotPriority[];
|
100379
100198
|
/**
|
100380
|
-
* List of slots
|
100381
100199
|
* @maxLength `100`
|
100382
100200
|
*/
|
100383
100201
|
Slots?: LexBotSlot[];
|
100384
100202
|
};
|
100385
100203
|
/**
|
100386
100204
|
* Type definition for `AWS::Lex::Bot.IntentClosingSetting`.
|
100387
|
-
* Provides a statement the Amazon Lex conveys to the user when the intent is successfully fulfilled.
|
100388
100205
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-intentclosingsetting.html}
|
100389
100206
|
*/
|
100390
100207
|
export type LexBotIntentClosingSetting = {
|
100391
|
-
/**
|
100392
|
-
* The response that Amazon Lex sends to the user when the intent is complete.
|
100393
|
-
*/
|
100394
100208
|
ClosingResponse?: LexBotResponseSpecification;
|
100395
|
-
/**
|
100396
|
-
* A list of conditional branches associated with the intent's closing response. These branches are executed when the nextStep attribute is set to EvalutateConditional.
|
100397
|
-
*/
|
100398
100209
|
Conditional?: LexBotConditionalSpecification;
|
100399
|
-
/**
|
100400
|
-
* Specifies whether an intent's closing response is used. When this field is false, the closing response isn't sent to the user. If the active field isn't specified, the default is true.
|
100401
|
-
*/
|
100402
100210
|
IsActive?: boolean;
|
100403
|
-
/**
|
100404
|
-
* Specifies the next step that the bot executes after playing the intent's closing response.
|
100405
|
-
*/
|
100406
100211
|
NextStep?: LexBotDialogState;
|
100407
100212
|
};
|
100408
100213
|
/**
|
100409
100214
|
* Type definition for `AWS::Lex::Bot.IntentConfirmationSetting`.
|
100410
|
-
* Provides a prompt for making sure that the user is ready for the intent to be fulfilled.
|
100411
100215
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-intentconfirmationsetting.html}
|
100412
100216
|
*/
|
100413
100217
|
export type LexBotIntentConfirmationSetting = {
|
100414
|
-
/**
|
100415
|
-
* The DialogCodeHookInvocationSetting object associated with intent's confirmation step. The dialog code hook is triggered based on these invocation settings when the confirmation next step or declination next step or failure next step is InvokeDialogCodeHook.
|
100416
|
-
*/
|
100417
100218
|
CodeHook?: LexBotDialogCodeHookInvocationSetting;
|
100418
|
-
/**
|
100419
|
-
* A list of conditional branches to evaluate after the intent is closed.
|
100420
|
-
*/
|
100421
100219
|
ConfirmationConditional?: LexBotConditionalSpecification;
|
100422
|
-
/**
|
100423
|
-
* Specifies the next step that the bot executes when the customer confirms the intent.
|
100424
|
-
*/
|
100425
100220
|
ConfirmationNextStep?: LexBotDialogState;
|
100426
|
-
/**
|
100427
|
-
* Specifies a list of message groups that Amazon Lex uses to respond the user input.
|
100428
|
-
*/
|
100429
100221
|
ConfirmationResponse?: LexBotResponseSpecification;
|
100430
|
-
/**
|
100431
|
-
* A list of conditional branches to evaluate after the intent is declined.
|
100432
|
-
*/
|
100433
100222
|
DeclinationConditional?: LexBotConditionalSpecification;
|
100434
|
-
/**
|
100435
|
-
* Specifies the next step that the bot executes when the customer declines the intent.
|
100436
|
-
*/
|
100437
100223
|
DeclinationNextStep?: LexBotDialogState;
|
100438
|
-
/**
|
100439
|
-
* When the user answers "no" to the question defined in promptSpecification, Amazon Lex responds with this response to acknowledge that the intent was canceled.
|
100440
|
-
*/
|
100441
100224
|
DeclinationResponse?: LexBotResponseSpecification;
|
100442
|
-
/**
|
100443
|
-
* The DialogCodeHookInvocationSetting used when the code hook is invoked during confirmation prompt retries.
|
100444
|
-
*/
|
100445
100225
|
ElicitationCodeHook?: LexBotElicitationCodeHookInvocationSetting;
|
100446
|
-
/**
|
100447
|
-
* Provides a list of conditional branches. Branches are evaluated in the order that they are entered in the list. The first branch with a condition that evaluates to true is executed. The last branch in the list is the default branch. The default branch should not have any condition expression. The default branch is executed if no other branch has a matching condition.
|
100448
|
-
*/
|
100449
100226
|
FailureConditional?: LexBotConditionalSpecification;
|
100450
|
-
/**
|
100451
|
-
* The next step to take in the conversation if the confirmation step fails.
|
100452
|
-
*/
|
100453
100227
|
FailureNextStep?: LexBotDialogState;
|
100454
|
-
/**
|
100455
|
-
* Specifies a list of message groups that Amazon Lex uses to respond the user input.
|
100456
|
-
*/
|
100457
100228
|
FailureResponse?: LexBotResponseSpecification;
|
100458
|
-
/**
|
100459
|
-
* Specifies whether the intent's confirmation is sent to the user. When this field is false, confirmation and declination responses aren't sent. If the active field isn't specified, the default is true.
|
100460
|
-
*/
|
100461
100229
|
IsActive?: boolean;
|
100462
|
-
/**
|
100463
|
-
* Prompts the user to confirm the intent. This question should have a yes or no answer.
|
100464
|
-
*/
|
100465
100230
|
PromptSpecification: LexBotPromptSpecification;
|
100466
100231
|
};
|
100467
100232
|
/**
|
100468
100233
|
* Type definition for `AWS::Lex::Bot.IntentOverride`.
|
100469
|
-
* Override settings to configure the intent state.
|
100470
100234
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-intentoverride.html}
|
100471
100235
|
*/
|
100472
100236
|
export type LexBotIntentOverride = {
|
100473
100237
|
/**
|
100474
|
-
* The name of the intent. Only required when you're switching intents.
|
100475
100238
|
* @minLength `1`
|
100476
100239
|
* @maxLength `100`
|
100477
100240
|
* @pattern `^([0-9a-zA-Z][_-]?)+$`
|
100478
100241
|
*/
|
100479
100242
|
Name?: string;
|
100480
|
-
/**
|
100481
|
-
* A map of all of the slot value overrides for the intent.
|
100482
|
-
*/
|
100483
100243
|
Slots?: LexBotSlotValueOverrideMap[];
|
100484
100244
|
};
|
100485
100245
|
/**
|
100486
100246
|
* Type definition for `AWS::Lex::Bot.KendraConfiguration`.
|
100487
|
-
* Configuration for searching a Amazon Kendra index specified for the intent.
|
100488
100247
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-kendraconfiguration.html}
|
100489
100248
|
*/
|
100490
100249
|
export type LexBotKendraConfiguration = {
|
100491
100250
|
/**
|
100492
|
-
* The Amazon Resource Name (ARN) of the Amazon Kendra index that you want the AMAZON.KendraSearchIntent intent to search.
|
100493
100251
|
* @minLength `32`
|
100494
100252
|
* @maxLength `2048`
|
100495
100253
|
* @pattern `^arn:aws[a-zA-Z-]*:kendra:[a-z]+-[a-z]+-[0-9]:[0-9]{12}:index/[a-zA-Z0-9][a-zA-Z0-9_-]*$`
|
100496
100254
|
*/
|
100497
100255
|
KendraIndex: string;
|
100498
100256
|
/**
|
100499
|
-
* A query filter that Amazon Lex sends to Amazon Kendra to filter the response from a query.
|
100500
100257
|
* @minLength `1`
|
100501
100258
|
* @maxLength `5000`
|
100502
100259
|
*/
|
100503
100260
|
QueryFilterString?: string;
|
100504
|
-
/**
|
100505
|
-
* Determines whether the AMAZON.KendraSearchIntent intent uses a custom query string to query the Amazon Kendra index.
|
100506
|
-
*/
|
100507
100261
|
QueryFilterStringEnabled?: boolean;
|
100508
100262
|
};
|
100509
100263
|
/**
|
100510
100264
|
* Type definition for `AWS::Lex::Bot.LambdaCodeHook`.
|
100511
|
-
* Contains information about code hooks that Amazon Lex calls during a conversation.
|
100512
100265
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-lambdacodehook.html}
|
100513
100266
|
*/
|
100514
100267
|
export type LexBotLambdaCodeHook = {
|
100515
100268
|
/**
|
100516
|
-
* The version of the request-response that you want Amazon Lex to use to invoke your Lambda function.
|
100517
100269
|
* @minLength `1`
|
100518
100270
|
* @maxLength `5`
|
100519
100271
|
*/
|
100520
100272
|
CodeHookInterfaceVersion: string;
|
100521
100273
|
/**
|
100522
|
-
* The Amazon Resource Name (ARN) of the Lambda function.
|
100523
100274
|
* @minLength `20`
|
100524
100275
|
* @maxLength `2048`
|
100525
100276
|
*/
|
@@ -100527,52 +100278,32 @@ export type LexBotLambdaCodeHook = {
|
|
100527
100278
|
};
|
100528
100279
|
/**
|
100529
100280
|
* Type definition for `AWS::Lex::Bot.Message`.
|
100530
|
-
* The primary message that Amazon Lex should send to the user.
|
100531
100281
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-message.html}
|
100532
100282
|
*/
|
100533
100283
|
export type LexBotMessage = {
|
100534
|
-
/**
|
100535
|
-
* A message in a custom format defined by the client application.
|
100536
|
-
*/
|
100537
100284
|
CustomPayload?: LexBotCustomPayload;
|
100538
|
-
/**
|
100539
|
-
* A message that defines a response card that the client application can show to the user.
|
100540
|
-
*/
|
100541
100285
|
ImageResponseCard?: LexBotImageResponseCard;
|
100542
|
-
/**
|
100543
|
-
* A message in plain text format.
|
100544
|
-
*/
|
100545
100286
|
PlainTextMessage?: LexBotPlainTextMessage;
|
100546
|
-
/**
|
100547
|
-
* A message in Speech Synthesis Markup Language (SSML).
|
100548
|
-
*/
|
100549
100287
|
SSMLMessage?: LexBotSSMLMessage;
|
100550
100288
|
};
|
100551
100289
|
/**
|
100552
100290
|
* Type definition for `AWS::Lex::Bot.MessageGroup`.
|
100553
|
-
* One or more messages that Amazon Lex can send to the user.
|
100554
100291
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-messagegroup.html}
|
100555
100292
|
*/
|
100556
100293
|
export type LexBotMessageGroup = {
|
100557
|
-
/**
|
100558
|
-
* The primary message that Amazon Lex should send to the user.
|
100559
|
-
*/
|
100560
100294
|
Message: LexBotMessage;
|
100561
100295
|
/**
|
100562
|
-
* Message variations to send to the user.
|
100563
100296
|
* @maxLength `2`
|
100564
100297
|
*/
|
100565
100298
|
Variations?: LexBotMessage[];
|
100566
100299
|
};
|
100567
100300
|
/**
|
100568
100301
|
* Type definition for `AWS::Lex::Bot.MessageSelectionStrategy`.
|
100569
|
-
* Indicates how a message is selected from a message group among retries.
|
100570
100302
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-messageselectionstrategy.html}
|
100571
100303
|
*/
|
100572
100304
|
export type LexBotMessageSelectionStrategy = "Random" | "Ordered";
|
100573
100305
|
/**
|
100574
100306
|
* Type definition for `AWS::Lex::Bot.MultipleValuesSetting`.
|
100575
|
-
* Indicates whether a slot can return multiple values.
|
100576
100307
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-multiplevaluessetting.html}
|
100577
100308
|
*/
|
100578
100309
|
export type LexBotMultipleValuesSetting = {
|
@@ -100580,36 +100311,28 @@ export type LexBotMultipleValuesSetting = {
|
|
100580
100311
|
};
|
100581
100312
|
/**
|
100582
100313
|
* Type definition for `AWS::Lex::Bot.ObfuscationSetting`.
|
100583
|
-
* Determines whether Amazon Lex obscures slot values in conversation logs.
|
100584
100314
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-obfuscationsetting.html}
|
100585
100315
|
*/
|
100586
100316
|
export type LexBotObfuscationSetting = {
|
100587
|
-
/**
|
100588
|
-
* Value that determines whether Amazon Lex obscures slot values in conversation logs. The default is to obscure the values.
|
100589
|
-
*/
|
100590
100317
|
ObfuscationSettingType: "None" | "DefaultObfuscation";
|
100591
100318
|
};
|
100592
100319
|
/**
|
100593
100320
|
* Type definition for `AWS::Lex::Bot.OutputContext`.
|
100594
|
-
* A session context that is activated when an intent is fulfilled.
|
100595
100321
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-outputcontext.html}
|
100596
100322
|
*/
|
100597
100323
|
export type LexBotOutputContext = {
|
100598
100324
|
/**
|
100599
|
-
* Unique name for a resource.
|
100600
100325
|
* @minLength `1`
|
100601
100326
|
* @maxLength `100`
|
100602
100327
|
* @pattern `^([0-9a-zA-Z][_-]?)+$`
|
100603
100328
|
*/
|
100604
100329
|
Name: string;
|
100605
100330
|
/**
|
100606
|
-
* The amount of time, in seconds, that the output context should remain active.
|
100607
100331
|
* @min `5`
|
100608
100332
|
* @max `86400`
|
100609
100333
|
*/
|
100610
100334
|
TimeToLiveInSeconds: number;
|
100611
100335
|
/**
|
100612
|
-
* The number of conversation turns that the output context should remain active.
|
100613
100336
|
* @min `1`
|
100614
100337
|
* @max `20`
|
100615
100338
|
*/
|
@@ -100617,12 +100340,10 @@ export type LexBotOutputContext = {
|
|
100617
100340
|
};
|
100618
100341
|
/**
|
100619
100342
|
* Type definition for `AWS::Lex::Bot.PlainTextMessage`.
|
100620
|
-
* A message in plain text format.
|
100621
100343
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-plaintextmessage.html}
|
100622
100344
|
*/
|
100623
100345
|
export type LexBotPlainTextMessage = {
|
100624
100346
|
/**
|
100625
|
-
* The message to send to the user.
|
100626
100347
|
* @minLength `1`
|
100627
100348
|
* @maxLength `1000`
|
100628
100349
|
*/
|
@@ -100630,225 +100351,121 @@ export type LexBotPlainTextMessage = {
|
|
100630
100351
|
};
|
100631
100352
|
/**
|
100632
100353
|
* Type definition for `AWS::Lex::Bot.PostDialogCodeHookInvocationSpecification`.
|
100633
|
-
* Specifies next steps to run after the dialog code hook finishes.
|
100634
100354
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-postdialogcodehookinvocationspecification.html}
|
100635
100355
|
*/
|
100636
100356
|
export type LexBotPostDialogCodeHookInvocationSpecification = {
|
100637
|
-
/**
|
100638
|
-
* A list of conditional branches to evaluate after the dialog code hook throws an exception or returns with the State field of the Intent object set to Failed.
|
100639
|
-
*/
|
100640
100357
|
FailureConditional?: LexBotConditionalSpecification;
|
100641
|
-
/**
|
100642
|
-
* Specifies the next step the bot runs after the dialog code hook throws an exception or returns with the State field of the Intent object set to Failed.
|
100643
|
-
*/
|
100644
100358
|
FailureNextStep?: LexBotDialogState;
|
100645
|
-
/**
|
100646
|
-
* Specifies a list of message groups that Amazon Lex uses to respond the user input.
|
100647
|
-
*/
|
100648
100359
|
FailureResponse?: LexBotResponseSpecification;
|
100649
|
-
/**
|
100650
|
-
* A list of conditional branches to evaluate after the dialog code hook finishes successfully.
|
100651
|
-
*/
|
100652
100360
|
SuccessConditional?: LexBotConditionalSpecification;
|
100653
|
-
/**
|
100654
|
-
* Specifics the next step the bot runs after the dialog code hook finishes successfully.
|
100655
|
-
*/
|
100656
100361
|
SuccessNextStep?: LexBotDialogState;
|
100657
|
-
/**
|
100658
|
-
* Specifies a list of message groups that Amazon Lex uses to respond the user input.
|
100659
|
-
*/
|
100660
100362
|
SuccessResponse?: LexBotResponseSpecification;
|
100661
|
-
/**
|
100662
|
-
* A list of conditional branches to evaluate if the code hook times out.
|
100663
|
-
*/
|
100664
100363
|
TimeoutConditional?: LexBotConditionalSpecification;
|
100665
|
-
/**
|
100666
|
-
* Specifies the next step that the bot runs when the code hook times out.
|
100667
|
-
*/
|
100668
100364
|
TimeoutNextStep?: LexBotDialogState;
|
100669
|
-
/**
|
100670
|
-
* Specifies a list of message groups that Amazon Lex uses to respond the user input.
|
100671
|
-
*/
|
100672
100365
|
TimeoutResponse?: LexBotResponseSpecification;
|
100673
100366
|
};
|
100674
100367
|
/**
|
100675
100368
|
* Type definition for `AWS::Lex::Bot.PostFulfillmentStatusSpecification`.
|
100676
|
-
* Provides a setting that determines whether the post-fulfillment response is sent to the user.
|
100677
100369
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-postfulfillmentstatusspecification.html}
|
100678
100370
|
*/
|
100679
100371
|
export type LexBotPostFulfillmentStatusSpecification = {
|
100680
|
-
/**
|
100681
|
-
* A list of conditional branches to evaluate after the fulfillment code hook throws an exception or returns with the State field of the Intent object set to Failed.
|
100682
|
-
*/
|
100683
100372
|
FailureConditional?: LexBotConditionalSpecification;
|
100684
|
-
/**
|
100685
|
-
* Specifies the next step the bot runs after the fulfillment code hook throws an exception or returns with the State field of the Intent object set to Failed.
|
100686
|
-
*/
|
100687
100373
|
FailureNextStep?: LexBotDialogState;
|
100688
|
-
/**
|
100689
|
-
* Specifies a list of message groups that Amazon Lex uses to respond the user input.
|
100690
|
-
*/
|
100691
100374
|
FailureResponse?: LexBotResponseSpecification;
|
100692
|
-
/**
|
100693
|
-
* A list of conditional branches to evaluate after the fulfillment code hook finishes successfully.
|
100694
|
-
*/
|
100695
100375
|
SuccessConditional?: LexBotConditionalSpecification;
|
100696
|
-
/**
|
100697
|
-
* Specifies the next step in the conversation that Amazon Lex invokes when the fulfillment code hook completes successfully.
|
100698
|
-
*/
|
100699
100376
|
SuccessNextStep?: LexBotDialogState;
|
100700
|
-
/**
|
100701
|
-
* Specifies a list of message groups that Amazon Lex uses to respond the user input.
|
100702
|
-
*/
|
100703
100377
|
SuccessResponse?: LexBotResponseSpecification;
|
100704
|
-
/**
|
100705
|
-
* A list of conditional branches to evaluate if the fulfillment code hook times out.
|
100706
|
-
*/
|
100707
100378
|
TimeoutConditional?: LexBotConditionalSpecification;
|
100708
|
-
/**
|
100709
|
-
* Specifies the next step that the bot runs when the fulfillment code hook times out.
|
100710
|
-
*/
|
100711
100379
|
TimeoutNextStep?: LexBotDialogState;
|
100712
|
-
/**
|
100713
|
-
* Specifies a list of message groups that Amazon Lex uses to respond the user input.
|
100714
|
-
*/
|
100715
100380
|
TimeoutResponse?: LexBotResponseSpecification;
|
100716
100381
|
};
|
100717
100382
|
/**
|
100718
100383
|
* Type definition for `AWS::Lex::Bot.PromptAttemptSpecification`.
|
100719
|
-
* Specifies the settings on a prompt attempt.
|
100720
100384
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-promptattemptspecification.html}
|
100721
100385
|
*/
|
100722
100386
|
export type LexBotPromptAttemptSpecification = {
|
100723
|
-
/**
|
100724
|
-
* Indicates whether the user can interrupt a speech prompt attempt from the bot.
|
100725
|
-
*/
|
100726
100387
|
AllowInterrupt?: boolean;
|
100727
|
-
/**
|
100728
|
-
* Specifies the allowed input types.
|
100729
|
-
*/
|
100730
100388
|
AllowedInputTypes: LexBotAllowedInputTypes;
|
100731
|
-
/**
|
100732
|
-
* Specifies the audio and DTMF input specification.
|
100733
|
-
*/
|
100734
100389
|
AudioAndDTMFInputSpecification?: LexBotAudioAndDTMFInputSpecification;
|
100735
|
-
/**
|
100736
|
-
* Specifies the text input specifications.
|
100737
|
-
*/
|
100738
100390
|
TextInputSpecification?: LexBotTextInputSpecification;
|
100739
100391
|
};
|
100740
100392
|
/**
|
100741
100393
|
* Type definition for `AWS::Lex::Bot.PromptSpecification`.
|
100742
|
-
* Prompts the user to confirm the intent.
|
100743
100394
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-promptspecification.html}
|
100744
100395
|
*/
|
100745
100396
|
export type LexBotPromptSpecification = {
|
100746
|
-
/**
|
100747
|
-
* Indicates whether the user can interrupt a speech prompt from the bot.
|
100748
|
-
*/
|
100749
100397
|
AllowInterrupt?: boolean;
|
100750
100398
|
/**
|
100751
|
-
* The maximum number of times the bot tries to elicit a response from the user using this prompt.
|
100752
100399
|
* @min `0`
|
100753
100400
|
* @max `5`
|
100754
100401
|
*/
|
100755
100402
|
MaxRetries: number;
|
100756
100403
|
/**
|
100757
|
-
* One to 5 message groups that contain update messages. Amazon Lex chooses one of the messages to play to the user.
|
100758
100404
|
* @minLength `1`
|
100759
100405
|
* @maxLength `5`
|
100760
100406
|
*/
|
100761
100407
|
MessageGroupsList: LexBotMessageGroup[];
|
100762
|
-
/**
|
100763
|
-
* Indicates how a message is selected from a message group among retries.
|
100764
|
-
*/
|
100765
100408
|
MessageSelectionStrategy?: LexBotMessageSelectionStrategy;
|
100766
|
-
/**
|
100767
|
-
* Specifies the advanced settings on each attempt of the prompt.
|
100768
|
-
*/
|
100769
100409
|
PromptAttemptsSpecification?: Record<string, LexBotPromptAttemptSpecification>;
|
100770
100410
|
};
|
100411
|
+
/**
|
100412
|
+
* Type definition for `AWS::Lex::Bot.QInConnectIntentConfiguration`.
|
100413
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-qinconnectintentconfiguration.html}
|
100414
|
+
*/
|
100415
|
+
export type LexBotQInConnectIntentConfiguration = {
|
100416
|
+
QInConnectAssistantConfiguration?: {
|
100417
|
+
/**
|
100418
|
+
* @minLength `1`
|
100419
|
+
* @maxLength `200`
|
100420
|
+
* @pattern `^arn:[a-z-]*?:wisdom:[a-z0-9-]*?:[0-9]{12}:[a-z-]*?/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(?:/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}){0,2}$`
|
100421
|
+
*/
|
100422
|
+
AssistantArn: string;
|
100423
|
+
};
|
100424
|
+
};
|
100771
100425
|
/**
|
100772
100426
|
* Type definition for `AWS::Lex::Bot.QnAIntentConfiguration`.
|
100773
|
-
* Details about the the configuration of the built-in Amazon.QnAIntent.
|
100774
100427
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-qnaintentconfiguration.html}
|
100775
100428
|
*/
|
100776
100429
|
export type LexBotQnAIntentConfiguration = {
|
100777
|
-
/**
|
100778
|
-
* Contains information about the Amazon Bedrock model used to interpret the prompt used in descriptive bot building.
|
100779
|
-
*/
|
100780
100430
|
BedrockModelConfiguration: LexBotBedrockModelSpecification;
|
100781
|
-
/**
|
100782
|
-
* Contains details about the configuration of the data source used for the AMAZON.QnAIntent.
|
100783
|
-
*/
|
100784
100431
|
DataSourceConfiguration: {
|
100785
|
-
/**
|
100786
|
-
* Contains details about the configuration of a Amazon Bedrock knowledge base.
|
100787
|
-
*/
|
100788
100432
|
BedrockKnowledgeStoreConfiguration?: {
|
100789
|
-
/**
|
100790
|
-
* Contains the names of the fields used for an exact response to the user.
|
100791
|
-
*/
|
100792
100433
|
BKBExactResponseFields?: {
|
100793
100434
|
/**
|
100794
|
-
* The answer field used for an exact response from Bedrock Knowledge Store.
|
100795
100435
|
* @minLength `1`
|
100796
100436
|
* @maxLength `5000`
|
100797
100437
|
*/
|
100798
100438
|
AnswerField?: string;
|
100799
100439
|
};
|
100800
100440
|
/**
|
100801
|
-
* The base ARN of the knowledge base used.
|
100802
100441
|
* @minLength `1`
|
100803
100442
|
* @maxLength `5000`
|
100804
100443
|
*/
|
100805
100444
|
BedrockKnowledgeBaseArn?: string;
|
100806
|
-
/**
|
100807
|
-
* Specifies whether to return an exact response, or to return an answer generated by the model, using the fields you specify from the database.
|
100808
|
-
*/
|
100809
100445
|
ExactResponse?: boolean;
|
100810
100446
|
};
|
100811
|
-
/**
|
100812
|
-
* Contains details about the configuration of the Amazon Kendra index used for the AMAZON.QnAIntent.
|
100813
|
-
*/
|
100814
100447
|
KendraConfiguration?: LexBotQnAKendraConfiguration;
|
100815
|
-
/**
|
100816
|
-
* Contains details about the configuration of the Amazon OpenSearch Service database used for the AMAZON.QnAIntent.
|
100817
|
-
*/
|
100818
100448
|
OpensearchConfiguration?: {
|
100819
100449
|
/**
|
100820
|
-
* The endpoint of the Amazon OpenSearch Service domain.
|
100821
100450
|
* @minLength `1`
|
100822
100451
|
* @maxLength `5000`
|
100823
100452
|
*/
|
100824
100453
|
DomainEndpoint?: string;
|
100825
|
-
/**
|
100826
|
-
* Specifies whether to return an exact response or to return an answer generated by the model using the fields you specify from the database.
|
100827
|
-
*/
|
100828
100454
|
ExactResponse?: boolean;
|
100829
|
-
/**
|
100830
|
-
* Contains the names of the fields used for an exact response to the user.
|
100831
|
-
*/
|
100832
100455
|
ExactResponseFields?: {
|
100833
100456
|
/**
|
100834
|
-
* The name of the field that contains the answer to the query made to the OpenSearch Service database.
|
100835
100457
|
* @minLength `1`
|
100836
100458
|
* @maxLength `5000`
|
100837
100459
|
*/
|
100838
100460
|
AnswerField?: string;
|
100839
100461
|
/**
|
100840
|
-
* The name of the field that contains the query made to the OpenSearch Service database.
|
100841
100462
|
* @minLength `1`
|
100842
100463
|
* @maxLength `5000`
|
100843
100464
|
*/
|
100844
100465
|
QuestionField?: string;
|
100845
100466
|
};
|
100846
|
-
/**
|
100847
|
-
* List of fields to include
|
100848
|
-
*/
|
100849
100467
|
IncludeFields?: string[];
|
100850
100468
|
/**
|
100851
|
-
* The name of the Amazon OpenSearch Service index.
|
100852
100469
|
* @minLength `1`
|
100853
100470
|
* @maxLength `5000`
|
100854
100471
|
*/
|
@@ -100858,39 +100475,28 @@ export type LexBotQnAIntentConfiguration = {
|
|
100858
100475
|
};
|
100859
100476
|
/**
|
100860
100477
|
* Type definition for `AWS::Lex::Bot.QnAKendraConfiguration`.
|
100861
|
-
* Contains details about the configuration of the Amazon Kendra index used for the AMAZON.QnAIntent.
|
100862
100478
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-qnakendraconfiguration.html}
|
100863
100479
|
*/
|
100864
100480
|
export type LexBotQnAKendraConfiguration = {
|
100865
|
-
/**
|
100866
|
-
* Specifies whether to return an exact response from the Amazon Kendra index or to let the Amazon Bedrock model you select generate a response based on the results.
|
100867
|
-
*/
|
100868
100481
|
ExactResponse: boolean;
|
100869
100482
|
/**
|
100870
|
-
* The ARN of the Amazon Kendra index to use.
|
100871
100483
|
* @minLength `1`
|
100872
100484
|
* @maxLength `5000`
|
100873
100485
|
*/
|
100874
100486
|
KendraIndex: string;
|
100875
100487
|
/**
|
100876
|
-
* Contains the Amazon Kendra filter string to use if enabled.
|
100877
100488
|
* @minLength `1`
|
100878
100489
|
* @maxLength `5000`
|
100879
100490
|
*/
|
100880
100491
|
QueryFilterString?: string;
|
100881
|
-
/**
|
100882
|
-
* Specifies whether to enable an Amazon Kendra filter string or not.
|
100883
|
-
*/
|
100884
100492
|
QueryFilterStringEnabled: boolean;
|
100885
100493
|
};
|
100886
100494
|
/**
|
100887
100495
|
* Type definition for `AWS::Lex::Bot.Replication`.
|
100888
|
-
* Parameter used to create a replication of the source bot in the secondary region.
|
100889
100496
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-replication.html}
|
100890
100497
|
*/
|
100891
100498
|
export type LexBotReplication = {
|
100892
100499
|
/**
|
100893
|
-
* List of secondary regions for bot replication.
|
100894
100500
|
* @minLength `1`
|
100895
100501
|
* @maxLength `1`
|
100896
100502
|
*/
|
@@ -100898,16 +100504,11 @@ export type LexBotReplication = {
|
|
100898
100504
|
};
|
100899
100505
|
/**
|
100900
100506
|
* Type definition for `AWS::Lex::Bot.ResponseSpecification`.
|
100901
|
-
* A list of message groups that Amazon Lex uses to respond the user input.
|
100902
100507
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-responsespecification.html}
|
100903
100508
|
*/
|
100904
100509
|
export type LexBotResponseSpecification = {
|
100905
|
-
/**
|
100906
|
-
* Indicates whether the user can interrupt a speech prompt from the bot.
|
100907
|
-
*/
|
100908
100510
|
AllowInterrupt?: boolean;
|
100909
100511
|
/**
|
100910
|
-
* One to 5 message groups that contain update messages. Amazon Lex chooses one of the messages to play to the user.
|
100911
100512
|
* @minLength `1`
|
100912
100513
|
* @maxLength `5`
|
100913
100514
|
*/
|
@@ -100915,25 +100516,21 @@ export type LexBotResponseSpecification = {
|
|
100915
100516
|
};
|
100916
100517
|
/**
|
100917
100518
|
* Type definition for `AWS::Lex::Bot.S3BucketLogDestination`.
|
100918
|
-
* Specifies an Amazon S3 bucket for logging audio conversations
|
100919
100519
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-s3bucketlogdestination.html}
|
100920
100520
|
*/
|
100921
100521
|
export type LexBotS3BucketLogDestination = {
|
100922
100522
|
/**
|
100923
|
-
* The Amazon Resource Name (ARN) of an AWS Key Management Service (KMS) key for encrypting audio log files stored in an S3 bucket.
|
100924
100523
|
* @minLength `20`
|
100925
100524
|
* @maxLength `2048`
|
100926
100525
|
* @pattern `^arn:[\w\-]+:kms:[\w\-]+:[\d]{12}:(?:key\/[\w\-]+|alias\/[a-zA-Z0-9:\/_\-]{1,256})$`
|
100927
100526
|
*/
|
100928
100527
|
KmsKeyArn?: string;
|
100929
100528
|
/**
|
100930
|
-
* The Amazon S3 key of the deployment package.
|
100931
100529
|
* @minLength `0`
|
100932
100530
|
* @maxLength `1024`
|
100933
100531
|
*/
|
100934
100532
|
LogPrefix: string;
|
100935
100533
|
/**
|
100936
|
-
* The Amazon Resource Name (ARN) of an Amazon S3 bucket where audio log files are stored.
|
100937
100534
|
* @minLength `1`
|
100938
100535
|
* @maxLength `2048`
|
100939
100536
|
* @pattern `^arn:[\w\-]+:s3:::[a-z0-9][\.\-a-z0-9]{1,61}[a-z0-9]$`
|
@@ -100942,26 +100539,22 @@ export type LexBotS3BucketLogDestination = {
|
|
100942
100539
|
};
|
100943
100540
|
/**
|
100944
100541
|
* Type definition for `AWS::Lex::Bot.S3Location`.
|
100945
|
-
* S3 location of bot definitions zip file, if it's not defined inline in CloudFormation.
|
100946
100542
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-s3location.html}
|
100947
100543
|
*/
|
100948
100544
|
export type LexBotS3Location = {
|
100949
100545
|
/**
|
100950
|
-
* An Amazon S3 bucket in the same AWS Region as your function. The bucket can be in a different AWS account.
|
100951
100546
|
* @minLength `3`
|
100952
100547
|
* @maxLength `63`
|
100953
100548
|
* @pattern `^[a-z0-9][\.\-a-z0-9]{1,61}[a-z0-9]$`
|
100954
100549
|
*/
|
100955
100550
|
S3Bucket: string;
|
100956
100551
|
/**
|
100957
|
-
* The Amazon S3 key of the deployment package.
|
100958
100552
|
* @minLength `1`
|
100959
100553
|
* @maxLength `1024`
|
100960
100554
|
* @pattern `[\.\-\!\*\_\'\(\)a-zA-Z0-9][\.\-\!\*\_\'\(\)\/a-zA-Z0-9]*$`
|
100961
100555
|
*/
|
100962
100556
|
S3ObjectKey: string;
|
100963
100557
|
/**
|
100964
|
-
* For versioned objects, the version of the deployment package object to use. If not specified, the current object version will be used.
|
100965
100558
|
* @minLength `1`
|
100966
100559
|
* @maxLength `1024`
|
100967
100560
|
*/
|
@@ -100969,23 +100562,17 @@ export type LexBotS3Location = {
|
|
100969
100562
|
};
|
100970
100563
|
/**
|
100971
100564
|
* Type definition for `AWS::Lex::Bot.SampleUtterance`.
|
100972
|
-
* A sample utterance that invokes an intent or respond to a slot elicitation prompt.
|
100973
100565
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-sampleutterance.html}
|
100974
100566
|
*/
|
100975
100567
|
export type LexBotSampleUtterance = {
|
100976
|
-
/**
|
100977
|
-
* The sample utterance that Amazon Lex uses to build its machine-learning model to recognize intents/slots.
|
100978
|
-
*/
|
100979
100568
|
Utterance: string;
|
100980
100569
|
};
|
100981
100570
|
/**
|
100982
100571
|
* Type definition for `AWS::Lex::Bot.SampleValue`.
|
100983
|
-
* Defines one of the values for a slot type.
|
100984
100572
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-samplevalue.html}
|
100985
100573
|
*/
|
100986
100574
|
export type LexBotSampleValue = {
|
100987
100575
|
/**
|
100988
|
-
* The value that can be used for a slot type.
|
100989
100576
|
* @minLength `1`
|
100990
100577
|
* @maxLength `140`
|
100991
100578
|
*/
|
@@ -100993,7 +100580,6 @@ export type LexBotSampleValue = {
|
|
100993
100580
|
};
|
100994
100581
|
/**
|
100995
100582
|
* Type definition for `AWS::Lex::Bot.SessionAttribute`.
|
100996
|
-
* Key/value pair representing session-specific context information. It contains application information passed between Amazon Lex and a client application.
|
100997
100583
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-sessionattribute.html}
|
100998
100584
|
*/
|
100999
100585
|
export type LexBotSessionAttribute = {
|
@@ -101010,7 +100596,6 @@ export type LexBotSessionAttribute = {
|
|
101010
100596
|
};
|
101011
100597
|
/**
|
101012
100598
|
* Type definition for `AWS::Lex::Bot.Slot`.
|
101013
|
-
* A slot is a variable needed to fulfill an intent, where an intent can require zero or more slots.
|
101014
100599
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-slot.html}
|
101015
100600
|
*/
|
101016
100601
|
export type LexBotSlot = {
|
@@ -101019,67 +100604,29 @@ export type LexBotSlot = {
|
|
101019
100604
|
* @maxLength `200`
|
101020
100605
|
*/
|
101021
100606
|
Description?: string;
|
101022
|
-
/**
|
101023
|
-
* Indicates whether a slot can return multiple values.
|
101024
|
-
*/
|
101025
100607
|
MultipleValuesSetting?: LexBotMultipleValuesSetting;
|
101026
100608
|
/**
|
101027
|
-
* Unique name for a resource.
|
101028
100609
|
* @minLength `1`
|
101029
100610
|
* @maxLength `100`
|
101030
100611
|
* @pattern `^([0-9a-zA-Z][_-]?)+$`
|
101031
100612
|
*/
|
101032
100613
|
Name: string;
|
101033
|
-
/**
|
101034
|
-
* Determines whether Amazon Lex obscures slot values in conversation logs.
|
101035
|
-
*/
|
101036
100614
|
ObfuscationSetting?: LexBotObfuscationSetting;
|
101037
|
-
/**
|
101038
|
-
* The slot type name that is used in the slot. Allows for custom and built-in slot type names
|
101039
|
-
*/
|
101040
100615
|
SlotTypeName: string;
|
101041
|
-
/**
|
101042
|
-
* Settings that you can use for eliciting a slot value.
|
101043
|
-
*/
|
101044
100616
|
ValueElicitationSetting: LexBotSlotValueElicitationSetting;
|
101045
100617
|
};
|
101046
100618
|
/**
|
101047
100619
|
* Type definition for `AWS::Lex::Bot.SlotCaptureSetting`.
|
101048
|
-
* Settings used when Amazon Lex successfully captures a slot value from a user.
|
101049
100620
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-slotcapturesetting.html}
|
101050
100621
|
*/
|
101051
100622
|
export type LexBotSlotCaptureSetting = {
|
101052
|
-
/**
|
101053
|
-
* A list of conditional branches to evaluate after the slot value is captured.
|
101054
|
-
*/
|
101055
100623
|
CaptureConditional?: LexBotConditionalSpecification;
|
101056
|
-
/**
|
101057
|
-
* Specifies the next step that the bot runs when the slot value is captured before the code hook times out.
|
101058
|
-
*/
|
101059
100624
|
CaptureNextStep?: LexBotDialogState;
|
101060
|
-
/**
|
101061
|
-
* Specifies a list of message groups that Amazon Lex uses to respond the user input.
|
101062
|
-
*/
|
101063
100625
|
CaptureResponse?: LexBotResponseSpecification;
|
101064
|
-
/**
|
101065
|
-
* Code hook called after Amazon Lex successfully captures a slot value.
|
101066
|
-
*/
|
101067
100626
|
CodeHook?: LexBotDialogCodeHookInvocationSetting;
|
101068
|
-
/**
|
101069
|
-
* Code hook called when Amazon Lex doesn't capture a slot value.
|
101070
|
-
*/
|
101071
100627
|
ElicitationCodeHook?: LexBotElicitationCodeHookInvocationSetting;
|
101072
|
-
/**
|
101073
|
-
* A list of conditional branches to evaluate when the slot value isn't captured.
|
101074
|
-
*/
|
101075
100628
|
FailureConditional?: LexBotConditionalSpecification;
|
101076
|
-
/**
|
101077
|
-
* Specifies the next step that the bot runs when the slot value code is not recognized.
|
101078
|
-
*/
|
101079
100629
|
FailureNextStep?: LexBotDialogState;
|
101080
|
-
/**
|
101081
|
-
* Specifies a list of message groups that Amazon Lex uses to respond the user input.
|
101082
|
-
*/
|
101083
100630
|
FailureResponse?: LexBotResponseSpecification;
|
101084
100631
|
};
|
101085
100632
|
/**
|
@@ -101089,12 +100636,10 @@ export type LexBotSlotCaptureSetting = {
|
|
101089
100636
|
export type LexBotSlotConstraint = "Required" | "Optional";
|
101090
100637
|
/**
|
101091
100638
|
* Type definition for `AWS::Lex::Bot.SlotDefaultValue`.
|
101092
|
-
* The default value to use when a user doesn't provide a value for a slot.
|
101093
100639
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-slotdefaultvalue.html}
|
101094
100640
|
*/
|
101095
100641
|
export type LexBotSlotDefaultValue = {
|
101096
100642
|
/**
|
101097
|
-
* The default value to use when a user doesn't provide a value for a slot.
|
101098
100643
|
* @minLength `1`
|
101099
100644
|
* @maxLength `202`
|
101100
100645
|
*/
|
@@ -101102,30 +100647,25 @@ export type LexBotSlotDefaultValue = {
|
|
101102
100647
|
};
|
101103
100648
|
/**
|
101104
100649
|
* Type definition for `AWS::Lex::Bot.SlotDefaultValueSpecification`.
|
101105
|
-
* A list of values that Amazon Lex should use as the default value for a slot.
|
101106
100650
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-slotdefaultvaluespecification.html}
|
101107
100651
|
*/
|
101108
100652
|
export type LexBotSlotDefaultValueSpecification = {
|
101109
100653
|
/**
|
101110
|
-
* A list of slot default values
|
101111
100654
|
* @maxLength `10`
|
101112
100655
|
*/
|
101113
100656
|
DefaultValueList: LexBotSlotDefaultValue[];
|
101114
100657
|
};
|
101115
100658
|
/**
|
101116
100659
|
* Type definition for `AWS::Lex::Bot.SlotPriority`.
|
101117
|
-
* The priority that Amazon Lex should use when eliciting slot values from a user.
|
101118
100660
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-slotpriority.html}
|
101119
100661
|
*/
|
101120
100662
|
export type LexBotSlotPriority = {
|
101121
100663
|
/**
|
101122
|
-
* The priority that a slot should be elicited.
|
101123
100664
|
* @min `0`
|
101124
100665
|
* @max `100`
|
101125
100666
|
*/
|
101126
100667
|
Priority: number;
|
101127
100668
|
/**
|
101128
|
-
* The name of the slot.
|
101129
100669
|
* @minLength `1`
|
101130
100670
|
* @maxLength `100`
|
101131
100671
|
* @pattern `^([0-9a-zA-Z][_-]?)+$`
|
@@ -101134,70 +100674,51 @@ export type LexBotSlotPriority = {
|
|
101134
100674
|
};
|
101135
100675
|
/**
|
101136
100676
|
* Type definition for `AWS::Lex::Bot.SlotShape`.
|
101137
|
-
* The different shapes that a slot can be in during a conversation.
|
101138
100677
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-slotshape.html}
|
101139
100678
|
*/
|
101140
100679
|
export type LexBotSlotShape = "Scalar" | "List";
|
101141
100680
|
/**
|
101142
100681
|
* Type definition for `AWS::Lex::Bot.SlotType`.
|
101143
|
-
* A custom, extended built-in or a grammar slot type.
|
101144
100682
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-slottype.html}
|
101145
100683
|
*/
|
101146
100684
|
export type LexBotSlotType = {
|
100685
|
+
CompositeSlotTypeSetting?: LexBotCompositeSlotTypeSetting;
|
101147
100686
|
/**
|
101148
100687
|
* A description of the resource
|
101149
100688
|
* @maxLength `200`
|
101150
100689
|
*/
|
101151
100690
|
Description?: string;
|
101152
|
-
/**
|
101153
|
-
* Provides information about the external source of the slot type's definition.
|
101154
|
-
*/
|
101155
100691
|
ExternalSourceSetting?: LexBotExternalSourceSetting;
|
101156
100692
|
/**
|
101157
|
-
* Unique name for a resource.
|
101158
100693
|
* @minLength `1`
|
101159
100694
|
* @maxLength `100`
|
101160
100695
|
* @pattern `^([0-9a-zA-Z][_-]?)+$`
|
101161
100696
|
*/
|
101162
100697
|
Name: string;
|
101163
|
-
/**
|
101164
|
-
* The built-in slot type used as a parent of this slot type.
|
101165
|
-
*/
|
101166
100698
|
ParentSlotTypeSignature?: string;
|
101167
100699
|
/**
|
101168
|
-
* A List of slot type values
|
101169
100700
|
* @maxLength `10000`
|
101170
100701
|
*/
|
101171
100702
|
SlotTypeValues?: LexBotSlotTypeValue[];
|
101172
|
-
/**
|
101173
|
-
* Contains settings used by Amazon Lex to select a slot value.
|
101174
|
-
*/
|
101175
100703
|
ValueSelectionSetting?: LexBotSlotValueSelectionSetting;
|
101176
100704
|
};
|
101177
100705
|
/**
|
101178
100706
|
* Type definition for `AWS::Lex::Bot.SlotTypeValue`.
|
101179
|
-
* Value that the slot type can take.
|
101180
100707
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-slottypevalue.html}
|
101181
100708
|
*/
|
101182
100709
|
export type LexBotSlotTypeValue = {
|
101183
|
-
/**
|
101184
|
-
* Defines one of the values for a slot type.
|
101185
|
-
*/
|
101186
100710
|
SampleValue: LexBotSampleValue;
|
101187
100711
|
/**
|
101188
|
-
* Additional values related to the slot type entry.
|
101189
100712
|
* @maxLength `10000`
|
101190
100713
|
*/
|
101191
100714
|
Synonyms?: LexBotSampleValue[];
|
101192
100715
|
};
|
101193
100716
|
/**
|
101194
100717
|
* Type definition for `AWS::Lex::Bot.SlotValue`.
|
101195
|
-
* The value to set in a slot.
|
101196
100718
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-slotvalue.html}
|
101197
100719
|
*/
|
101198
100720
|
export type LexBotSlotValue = {
|
101199
100721
|
/**
|
101200
|
-
* The value that Amazon Lex determines for the slot.
|
101201
100722
|
* @minLength `1`
|
101202
100723
|
* @maxLength `202`
|
101203
100724
|
*/
|
@@ -101205,80 +100726,44 @@ export type LexBotSlotValue = {
|
|
101205
100726
|
};
|
101206
100727
|
/**
|
101207
100728
|
* Type definition for `AWS::Lex::Bot.SlotValueElicitationSetting`.
|
101208
|
-
* Settings that you can use for eliciting a slot value.
|
101209
100729
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-slotvalueelicitationsetting.html}
|
101210
100730
|
*/
|
101211
100731
|
export type LexBotSlotValueElicitationSetting = {
|
101212
|
-
/**
|
101213
|
-
* A list of default values for a slot.
|
101214
|
-
*/
|
101215
100732
|
DefaultValueSpecification?: LexBotSlotDefaultValueSpecification;
|
101216
|
-
/**
|
101217
|
-
* The prompt that Amazon Lex uses to elicit the slot value from the user.
|
101218
|
-
*/
|
101219
100733
|
PromptSpecification?: LexBotPromptSpecification;
|
101220
|
-
/**
|
101221
|
-
* If you know a specific pattern that users might respond to an Amazon Lex request for a slot value, you can provide those utterances to improve accuracy.
|
101222
|
-
*/
|
101223
100734
|
SampleUtterances?: LexBotSampleUtterance[];
|
101224
|
-
/**
|
101225
|
-
* Specifies the next stage in the conversation after capturing the slot.
|
101226
|
-
*/
|
101227
100735
|
SlotCaptureSetting?: LexBotSlotCaptureSetting;
|
101228
|
-
/**
|
101229
|
-
* Specifies whether the slot is required or optional.
|
101230
|
-
*/
|
101231
100736
|
SlotConstraint: LexBotSlotConstraint;
|
101232
|
-
/**
|
101233
|
-
* Specifies the prompts that Amazon Lex uses while a bot is waiting for customer input.
|
101234
|
-
*/
|
101235
100737
|
WaitAndContinueSpecification?: LexBotWaitAndContinueSpecification;
|
101236
100738
|
};
|
101237
100739
|
/**
|
101238
100740
|
* Type definition for `AWS::Lex::Bot.SlotValueOverride`.
|
101239
|
-
* The slot values that Amazon Lex uses when it sets slot values in a dialog step.
|
101240
100741
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-slotvalueoverride.html}
|
101241
100742
|
*/
|
101242
100743
|
export type LexBotSlotValueOverride = {
|
101243
|
-
/**
|
101244
|
-
* When the shape value is List, it indicates that the values field contains a list of slot values. When the value is Scalar, it indicates that the value field contains a single value.
|
101245
|
-
*/
|
101246
100744
|
Shape?: LexBotSlotShape;
|
101247
|
-
/**
|
101248
|
-
* The current value of the slot.
|
101249
|
-
*/
|
101250
100745
|
Value?: LexBotSlotValue;
|
101251
|
-
/**
|
101252
|
-
* A list of one or more values that the user provided for the slot. For example, for a slot that elicits pizza toppings, the values might be "pepperoni" and "pineapple."
|
101253
|
-
*/
|
101254
100746
|
Values?: LexBotSlotValueOverride[];
|
101255
100747
|
};
|
101256
100748
|
/**
|
101257
100749
|
* Type definition for `AWS::Lex::Bot.SlotValueOverrideMap`.
|
101258
|
-
* A map of slot names and their overridden values.
|
101259
100750
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-slotvalueoverridemap.html}
|
101260
100751
|
*/
|
101261
100752
|
export type LexBotSlotValueOverrideMap = {
|
101262
100753
|
/**
|
101263
|
-
* Unique name for a resource.
|
101264
100754
|
* @minLength `1`
|
101265
100755
|
* @maxLength `100`
|
101266
100756
|
* @pattern `^([0-9a-zA-Z][_-]?)+$`
|
101267
100757
|
*/
|
101268
100758
|
SlotName?: string;
|
101269
|
-
/**
|
101270
|
-
* The slot values that Amazon Lex uses when it sets slot values in a dialog step.
|
101271
|
-
*/
|
101272
100759
|
SlotValueOverride?: LexBotSlotValueOverride;
|
101273
100760
|
};
|
101274
100761
|
/**
|
101275
100762
|
* Type definition for `AWS::Lex::Bot.SlotValueRegexFilter`.
|
101276
|
-
* A regular expression used to validate the value of a slot.
|
101277
100763
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-slotvalueregexfilter.html}
|
101278
100764
|
*/
|
101279
100765
|
export type LexBotSlotValueRegexFilter = {
|
101280
100766
|
/**
|
101281
|
-
* Regex pattern
|
101282
100767
|
* @minLength `1`
|
101283
100768
|
* @maxLength `300`
|
101284
100769
|
*/
|
@@ -101288,31 +100773,22 @@ export type LexBotSlotValueRegexFilter = {
|
|
101288
100773
|
* Type definition for `AWS::Lex::Bot.SlotValueResolutionStrategy`.
|
101289
100774
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-slotvalueresolutionstrategy.html}
|
101290
100775
|
*/
|
101291
|
-
export type LexBotSlotValueResolutionStrategy = "ORIGINAL_VALUE" | "TOP_RESOLUTION";
|
100776
|
+
export type LexBotSlotValueResolutionStrategy = "ORIGINAL_VALUE" | "TOP_RESOLUTION" | "CONCATENATION";
|
101292
100777
|
/**
|
101293
100778
|
* Type definition for `AWS::Lex::Bot.SlotValueSelectionSetting`.
|
101294
|
-
* Contains settings used by Amazon Lex to select a slot value.
|
101295
100779
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-slotvalueselectionsetting.html}
|
101296
100780
|
*/
|
101297
100781
|
export type LexBotSlotValueSelectionSetting = {
|
101298
|
-
/**
|
101299
|
-
* Provides settings that enable advanced recognition settings for slot values.
|
101300
|
-
*/
|
101301
100782
|
AdvancedRecognitionSetting?: LexBotAdvancedRecognitionSetting;
|
101302
|
-
/**
|
101303
|
-
* A regular expression used to validate the value of a slot.
|
101304
|
-
*/
|
101305
100783
|
RegexFilter?: LexBotSlotValueRegexFilter;
|
101306
100784
|
ResolutionStrategy: LexBotSlotValueResolutionStrategy;
|
101307
100785
|
};
|
101308
100786
|
/**
|
101309
100787
|
* Type definition for `AWS::Lex::Bot.SSMLMessage`.
|
101310
|
-
* A message in Speech Synthesis Markup Language (SSML).
|
101311
100788
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-ssmlmessage.html}
|
101312
100789
|
*/
|
101313
100790
|
export type LexBotSSMLMessage = {
|
101314
100791
|
/**
|
101315
|
-
* The SSML text that defines the prompt.
|
101316
100792
|
* @minLength `1`
|
101317
100793
|
* @maxLength `1000`
|
101318
100794
|
*/
|
@@ -101320,47 +100796,55 @@ export type LexBotSSMLMessage = {
|
|
101320
100796
|
};
|
101321
100797
|
/**
|
101322
100798
|
* Type definition for `AWS::Lex::Bot.StillWaitingResponseSpecification`.
|
101323
|
-
* StillWaitingResponseSpecification.
|
101324
100799
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-stillwaitingresponsespecification.html}
|
101325
100800
|
*/
|
101326
100801
|
export type LexBotStillWaitingResponseSpecification = {
|
101327
|
-
/**
|
101328
|
-
* Indicates whether the user can interrupt a speech prompt from the bot.
|
101329
|
-
*/
|
101330
100802
|
AllowInterrupt?: boolean;
|
101331
100803
|
/**
|
101332
|
-
* How often a message should be sent to the user in seconds.
|
101333
100804
|
* @min `1`
|
101334
100805
|
* @max `300`
|
101335
100806
|
*/
|
101336
100807
|
FrequencyInSeconds: number;
|
101337
100808
|
/**
|
101338
|
-
* One to 5 message groups that contain update messages. Amazon Lex chooses one of the messages to play to the user.
|
101339
100809
|
* @minLength `1`
|
101340
100810
|
* @maxLength `5`
|
101341
100811
|
*/
|
101342
100812
|
MessageGroupsList: LexBotMessageGroup[];
|
101343
100813
|
/**
|
101344
|
-
* If Amazon Lex waits longer than this length of time in seconds for a response, it will stop sending messages.
|
101345
100814
|
* @min `1`
|
101346
100815
|
* @max `900`
|
101347
100816
|
*/
|
101348
100817
|
TimeoutInSeconds: number;
|
101349
100818
|
};
|
100819
|
+
/**
|
100820
|
+
* Type definition for `AWS::Lex::Bot.SubSlotTypeComposition`.
|
100821
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-subslottypecomposition.html}
|
100822
|
+
*/
|
100823
|
+
export type LexBotSubSlotTypeComposition = {
|
100824
|
+
/**
|
100825
|
+
* @minLength `1`
|
100826
|
+
* @maxLength `100`
|
100827
|
+
* @pattern `^([0-9a-zA-Z][_-]?){1,100}$`
|
100828
|
+
*/
|
100829
|
+
Name: string;
|
100830
|
+
/**
|
100831
|
+
* @minLength `1`
|
100832
|
+
* @maxLength `25`
|
100833
|
+
* @pattern `^((AMAZON\.)[a-zA-Z_]+?|[0-9a-zA-Z]+)$`
|
100834
|
+
*/
|
100835
|
+
SlotTypeId: string;
|
100836
|
+
};
|
101350
100837
|
/**
|
101351
100838
|
* Type definition for `AWS::Lex::Bot.Tag`.
|
101352
|
-
* A key-value pair for tagging Lex resources
|
101353
100839
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-tag.html}
|
101354
100840
|
*/
|
101355
100841
|
export type LexBotTag = {
|
101356
100842
|
/**
|
101357
|
-
* The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
101358
100843
|
* @minLength `1`
|
101359
100844
|
* @maxLength `128`
|
101360
100845
|
*/
|
101361
100846
|
Key: string;
|
101362
100847
|
/**
|
101363
|
-
* The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
101364
100848
|
* @minLength `0`
|
101365
100849
|
* @maxLength `256`
|
101366
100850
|
*/
|
@@ -101368,49 +100852,35 @@ export type LexBotTag = {
|
|
101368
100852
|
};
|
101369
100853
|
/**
|
101370
100854
|
* Type definition for `AWS::Lex::Bot.TestBotAliasSettings`.
|
101371
|
-
* Configuring the test bot alias settings for a given bot
|
101372
100855
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-testbotaliassettings.html}
|
101373
100856
|
*/
|
101374
100857
|
export type LexBotTestBotAliasSettings = {
|
101375
100858
|
/**
|
101376
|
-
* A list of bot alias locale settings to add to the bot alias.
|
101377
100859
|
* @maxLength `50`
|
101378
100860
|
*/
|
101379
100861
|
BotAliasLocaleSettings?: LexBotBotAliasLocaleSettingsItem[];
|
101380
|
-
/**
|
101381
|
-
* Contains information about code hooks that Amazon Lex calls during a conversation.
|
101382
|
-
*/
|
101383
100862
|
ConversationLogSettings?: LexBotConversationLogSettings;
|
101384
100863
|
/**
|
101385
100864
|
* A description of the resource
|
101386
100865
|
* @maxLength `200`
|
101387
100866
|
*/
|
101388
100867
|
Description?: string;
|
101389
|
-
/**
|
101390
|
-
* Determines whether Amazon Lex will use Amazon Comprehend to detect the sentiment of user utterances.
|
101391
|
-
*/
|
101392
100868
|
SentimentAnalysisSettings?: {
|
101393
|
-
/**
|
101394
|
-
* Enable to call Amazon Comprehend for Sentiment natively within Lex
|
101395
|
-
*/
|
101396
100869
|
DetectSentiment: boolean;
|
101397
100870
|
};
|
101398
100871
|
};
|
101399
100872
|
/**
|
101400
100873
|
* Type definition for `AWS::Lex::Bot.TextInputSpecification`.
|
101401
|
-
* Specifies the text input specifications.
|
101402
100874
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-textinputspecification.html}
|
101403
100875
|
*/
|
101404
100876
|
export type LexBotTextInputSpecification = {
|
101405
100877
|
/**
|
101406
|
-
* Time for which a bot waits before re-prompting a customer for text input.
|
101407
100878
|
* @min `1`
|
101408
100879
|
*/
|
101409
100880
|
StartTimeoutMs: number;
|
101410
100881
|
};
|
101411
100882
|
/**
|
101412
100883
|
* Type definition for `AWS::Lex::Bot.TextLogDestination`.
|
101413
|
-
* Defines the Amazon CloudWatch Logs destination log group for conversation text logs.
|
101414
100884
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-textlogdestination.html}
|
101415
100885
|
*/
|
101416
100886
|
export type LexBotTextLogDestination = {
|
@@ -101418,52 +100888,28 @@ export type LexBotTextLogDestination = {
|
|
101418
100888
|
};
|
101419
100889
|
/**
|
101420
100890
|
* Type definition for `AWS::Lex::Bot.TextLogSetting`.
|
101421
|
-
* Contains information about code hooks that Amazon Lex calls during a conversation.
|
101422
100891
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-textlogsetting.html}
|
101423
100892
|
*/
|
101424
100893
|
export type LexBotTextLogSetting = {
|
101425
|
-
/**
|
101426
|
-
* Defines the Amazon CloudWatch Logs destination log group for conversation text logs.
|
101427
|
-
*/
|
101428
100894
|
Destination: LexBotTextLogDestination;
|
101429
100895
|
Enabled: boolean;
|
101430
100896
|
};
|
101431
100897
|
/**
|
101432
100898
|
* Type definition for `AWS::Lex::Bot.VoiceSettings`.
|
101433
|
-
* Settings for using an Amazon Polly voice to communicate with a user.
|
101434
100899
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-voicesettings.html}
|
101435
100900
|
*/
|
101436
100901
|
export type LexBotVoiceSettings = {
|
101437
|
-
/**
|
101438
|
-
* Indicates the type of Amazon Polly voice that Amazon Lex should use for voice interaction with the user. For more information, see the engine parameter of the SynthesizeSpeech operation in the Amazon Polly developer guide.
|
101439
|
-
*/
|
101440
100902
|
Engine?: "standard" | "neural" | "long-form" | "generative";
|
101441
|
-
/**
|
101442
|
-
* The Amazon Polly voice ID that Amazon Lex uses for voice interaction with the user.
|
101443
|
-
*/
|
101444
100903
|
VoiceId: string;
|
101445
100904
|
};
|
101446
100905
|
/**
|
101447
100906
|
* Type definition for `AWS::Lex::Bot.WaitAndContinueSpecification`.
|
101448
|
-
* The prompts that Amazon Lex uses while a bot is waiting for customer input.
|
101449
100907
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-waitandcontinuespecification.html}
|
101450
100908
|
*/
|
101451
100909
|
export type LexBotWaitAndContinueSpecification = {
|
101452
|
-
/**
|
101453
|
-
* The response that Amazon Lex sends to indicate that the bot is ready to continue the conversation.
|
101454
|
-
*/
|
101455
100910
|
ContinueResponse: LexBotResponseSpecification;
|
101456
|
-
/**
|
101457
|
-
* Specifies whether the bot will wait for a user to respond.
|
101458
|
-
*/
|
101459
100911
|
IsActive?: boolean;
|
101460
|
-
/**
|
101461
|
-
* The response that Amazon Lex sends periodically to the user to indicate that the bot is still waiting for input from the user.
|
101462
|
-
*/
|
101463
100912
|
StillWaitingResponse?: LexBotStillWaitingResponseSpecification;
|
101464
|
-
/**
|
101465
|
-
* The response that Amazon Lex sends to indicate that the bot is waiting for the conversation to continue.
|
101466
|
-
*/
|
101467
100913
|
WaitingResponse: LexBotResponseSpecification;
|
101468
100914
|
};
|
101469
100915
|
/**
|
@@ -121390,6 +120836,7 @@ export type PaymentCryptographyAliasProps = {
|
|
121390
120836
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-paymentcryptography-key.html}
|
121391
120837
|
*/
|
121392
120838
|
export type PaymentCryptographyKeyProps = {
|
120839
|
+
DeriveKeyUsage?: PaymentCryptographyKeyDeriveKeyUsage;
|
121393
120840
|
Enabled?: boolean;
|
121394
120841
|
Exportable: boolean;
|
121395
120842
|
KeyAttributes: PaymentCryptographyKeyKeyAttributes;
|
@@ -121420,6 +120867,11 @@ export type PaymentCryptographyKeyAttributes = {
|
|
121420
120867
|
*/
|
121421
120868
|
KeyState: PaymentCryptographyKeyKeyState;
|
121422
120869
|
};
|
120870
|
+
/**
|
120871
|
+
* Type definition for `AWS::PaymentCryptography::Key.DeriveKeyUsage`.
|
120872
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-derivekeyusage.html}
|
120873
|
+
*/
|
120874
|
+
export type PaymentCryptographyKeyDeriveKeyUsage = "TR31_B0_BASE_DERIVATION_KEY" | "TR31_C0_CARD_VERIFICATION_KEY" | "TR31_D0_SYMMETRIC_DATA_ENCRYPTION_KEY" | "TR31_E0_EMV_MKEY_APP_CRYPTOGRAMS" | "TR31_E1_EMV_MKEY_CONFIDENTIALITY" | "TR31_E2_EMV_MKEY_INTEGRITY" | "TR31_E4_EMV_MKEY_DYNAMIC_NUMBERS" | "TR31_E5_EMV_MKEY_CARD_PERSONALIZATION" | "TR31_E6_EMV_MKEY_OTHER" | "TR31_K0_KEY_ENCRYPTION_KEY" | "TR31_K1_KEY_BLOCK_PROTECTION_KEY" | "TR31_M3_ISO_9797_3_MAC_KEY" | "TR31_M1_ISO_9797_1_MAC_KEY" | "TR31_M6_ISO_9797_5_CMAC_KEY" | "TR31_M7_HMAC_KEY" | "TR31_P0_PIN_ENCRYPTION_KEY" | "TR31_P1_PIN_GENERATION_KEY" | "TR31_V1_IBM3624_PIN_VERIFICATION_KEY" | "TR31_V2_VISA_PIN_VERIFICATION_KEY";
|
121423
120875
|
/**
|
121424
120876
|
* Type definition for `AWS::PaymentCryptography::Key.KeyAlgorithm`.
|
121425
120877
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyalgorithm.html}
|
@@ -121439,7 +120891,7 @@ export type PaymentCryptographyKeyKeyAttributes = {
|
|
121439
120891
|
* Type definition for `AWS::PaymentCryptography::Key.KeyCheckValueAlgorithm`.
|
121440
120892
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keycheckvaluealgorithm.html}
|
121441
120893
|
*/
|
121442
|
-
export type PaymentCryptographyKeyKeyCheckValueAlgorithm = "CMAC" | "ANSI_X9_24";
|
120894
|
+
export type PaymentCryptographyKeyKeyCheckValueAlgorithm = "CMAC" | "ANSI_X9_24" | "HMAC";
|
121443
120895
|
/**
|
121444
120896
|
* Type definition for `AWS::PaymentCryptography::Key.KeyClass`.
|
121445
120897
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyclass.html}
|
@@ -186112,6 +185564,7 @@ export type TransferWebAppProps = {
|
|
186112
185564
|
*/
|
186113
185565
|
Tags?: TransferWebAppTag[];
|
186114
185566
|
WebAppCustomization?: TransferWebAppWebAppCustomization;
|
185567
|
+
WebAppEndpointPolicy?: TransferWebAppWebAppEndpointPolicy;
|
186115
185568
|
/**
|
186116
185569
|
* A union that contains the value for number of concurrent connections or the user sessions on your web app.
|
186117
185570
|
*/
|
@@ -186210,6 +185663,11 @@ export type TransferWebAppWebAppCustomization = {
|
|
186210
185663
|
*/
|
186211
185664
|
Title?: string;
|
186212
185665
|
};
|
185666
|
+
/**
|
185667
|
+
* Type definition for `AWS::Transfer::WebApp.WebAppEndpointPolicy`.
|
185668
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-webapp-webappendpointpolicy.html}
|
185669
|
+
*/
|
185670
|
+
export type TransferWebAppWebAppEndpointPolicy = "STANDARD" | "FIPS";
|
186213
185671
|
/**
|
186214
185672
|
* Type definition for `AWS::Transfer::WebApp.WebAppUnits`.
|
186215
185673
|
* A union that contains the value for number of concurrent connections or the user sessions on your web app.
|