aws-cdk-lib.aws_lex.CfnBot.ExternalSourceSettingProperty

interface ExternalSourceSettingProperty

LanguageType name
.NETAmazon.CDK.AWS.Lex.CfnBot.ExternalSourceSettingProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awslex#CfnBot_ExternalSourceSettingProperty
Javasoftware.amazon.awscdk.services.lex.CfnBot.ExternalSourceSettingProperty
Pythonaws_cdk.aws_lex.CfnBot.ExternalSourceSettingProperty
TypeScript aws-cdk-lib » aws_lex » CfnBot » 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-lib';
const externalSourceSettingProperty: lex.CfnBot.ExternalSourceSettingProperty = {
  grammarSlotTypeSetting: {
    source: {
      s3BucketName: 's3BucketName',
      s3ObjectKey: 's3ObjectKey',

      // the properties below are optional
      kmsKeyArn: 'kmsKeyArn',
    },
  },
};

Properties

NameTypeDescription
grammarSlotTypeSetting?IResolvable | GrammarSlotTypeSettingPropertySettings required for a slot type based on a grammar that you provide.

grammarSlotTypeSetting?

Type: IResolvable | GrammarSlotTypeSettingProperty (optional)

Settings required for a slot type based on a grammar that you provide.