interface S3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins.CfnBotPropsMixin.S3LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslex/mixins#CfnBotPropsMixin_S3LocationProperty |
Java | software.amazon.awscdk.mixins.preview.services.lex.mixins.CfnBotPropsMixin.S3LocationProperty |
Python | aws_cdk.mixins_preview.aws_lex.mixins.CfnBotPropsMixin.S3LocationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lex » mixins » CfnBotPropsMixin » 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 { mixins as lex_mixins } from '@aws-cdk/mixins-preview/aws-lex';
const s3LocationProperty: lex_mixins.CfnBotPropsMixin.S3LocationProperty = {
s3Bucket: 's3Bucket',
s3ObjectKey: 's3ObjectKey',
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
(optional)
The S3 bucket name.
s3ObjectKey?
Type:
string
(optional)
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.

.NET
Go
Java
Python
TypeScript