interface ExternalSourceSettingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins.CfnBotPropsMixin.ExternalSourceSettingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslex/mixins#CfnBotPropsMixin_ExternalSourceSettingProperty |
Java | software.amazon.awscdk.mixins.preview.services.lex.mixins.CfnBotPropsMixin.ExternalSourceSettingProperty |
Python | aws_cdk.mixins_preview.aws_lex.mixins.CfnBotPropsMixin.ExternalSourceSettingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lex » mixins » 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 { mixins as lex_mixins } from '@aws-cdk/mixins-preview/aws-lex';
const externalSourceSettingProperty: lex_mixins.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