aws-cdk-lib.aws_lex.CfnBot.S3LocationProperty

interface S3LocationProperty

LanguageType name
.NETAmazon.CDK.AWS.Lex.CfnBot.S3LocationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awslex#CfnBot_S3LocationProperty
Javasoftware.amazon.awscdk.services.lex.CfnBot.S3LocationProperty
Pythonaws_cdk.aws_lex.CfnBot.S3LocationProperty
TypeScript aws-cdk-lib » aws_lex » CfnBot » S3LocationProperty

Defines an Amazon S3 bucket location.

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 s3LocationProperty: lex.CfnBot.S3LocationProperty = {
  s3Bucket: 's3Bucket',
  s3ObjectKey: 's3ObjectKey',

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

Properties

NameTypeDescription
s3BucketstringThe S3 bucket name.
s3ObjectKeystringThe path and file name to the object in the S3 bucket.
s3ObjectVersion?stringThe version of the object in the S3 bucket.

s3Bucket

Type: string

The S3 bucket name.


s3ObjectKey

Type: string

The path and file name to the object in the S3 bucket.


s3ObjectVersion?

Type: string (optional)

The version of the object in the S3 bucket.