interface S3LocationProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Lex.CfnBot.S3LocationProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awslex#CfnBot_S3LocationProperty |
![]() | software.amazon.awscdk.services.lex.CfnBot.S3LocationProperty |
![]() | aws_cdk.aws_lex.CfnBot.S3LocationProperty |
![]() | aws-cdk-lib » aws_lex » CfnBot » S3LocationProperty |
Defines an Amazon S3 bucket location.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-s3location.html
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
Name | Type | Description |
---|---|---|
s3 | string | The S3 bucket name. |
s3 | string | The path and file name to the object in the S3 bucket. |
s3 | string | The 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.