interface S3LocationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Lex.CfnBot.S3LocationProperty |
Java | software.amazon.awscdk.services.lex.CfnBot.S3LocationProperty |
Python | aws_cdk.aws_lex.CfnBot.S3LocationProperty |
TypeScript | @aws-cdk/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 * as lex from '@aws-cdk/aws-lex';
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.