interface ExternalSourceSettingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lex.CfnBotPropsMixin.ExternalSourceSettingProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslex#CfnBotPropsMixin_ExternalSourceSettingProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lex.CfnBotPropsMixin.ExternalSourceSettingProperty |
Python | aws_cdk.cfn_property_mixins.aws_lex.CfnBotPropsMixin.ExternalSourceSettingProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lex » CfnBotPropsMixin » ExternalSourceSettingProperty |
Provides information about the external source of the slot type's definition.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lex as lex } from '@aws-cdk/cfn-property-mixins';
const externalSourceSettingProperty: lex.CfnBotPropsMixin.ExternalSourceSettingProperty = {
grammarSlotTypeSetting: {
source: {
kmsKeyArn: 'kmsKeyArn',
s3BucketName: 's3BucketName',
s3ObjectKey: 's3ObjectKey',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| grammar | IResolvable | Grammar | Settings required for a slot type based on a grammar that you provide. |
grammarSlotTypeSetting?
Type:
IResolvable | Grammar
(optional)
Settings required for a slot type based on a grammar that you provide.

.NET
Go
Java
Python
TypeScript