interface AudioLogDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins.CfnBotAliasPropsMixin.AudioLogDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslex/mixins#CfnBotAliasPropsMixin_AudioLogDestinationProperty |
Java | software.amazon.awscdk.mixins.preview.services.lex.mixins.CfnBotAliasPropsMixin.AudioLogDestinationProperty |
Python | aws_cdk.mixins_preview.aws_lex.mixins.CfnBotAliasPropsMixin.AudioLogDestinationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lex » mixins » CfnBotAliasPropsMixin » AudioLogDestinationProperty |
Specifies the S3 bucket location where audio logs are stored.
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 audioLogDestinationProperty: lex_mixins.CfnBotAliasPropsMixin.AudioLogDestinationProperty = {
s3Bucket: {
kmsKeyArn: 'kmsKeyArn',
logPrefix: 'logPrefix',
s3BucketArn: 's3BucketArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | IResolvable | S3 | The S3 bucket location where audio logs are stored. |
s3Bucket?
Type:
IResolvable | S3
(optional)
The S3 bucket location where audio logs are stored.

.NET
Go
Java
Python
TypeScript