interface AudioLogDestinationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Lex.CfnBotAlias.AudioLogDestinationProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awslex#CfnBotAlias_AudioLogDestinationProperty | 
|  Java | software.amazon.awscdk.services.lex.CfnBotAlias.AudioLogDestinationProperty | 
|  Python | aws_cdk.aws_lex.CfnBotAlias.AudioLogDestinationProperty | 
|  TypeScript | aws-cdk-lib»aws_lex»CfnBotAlias»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 { aws_lex as lex } from 'aws-cdk-lib';
const audioLogDestinationProperty: lex.CfnBotAlias.AudioLogDestinationProperty = {
  s3Bucket: {
    logPrefix: 'logPrefix',
    s3BucketArn: 's3BucketArn',
    // the properties below are optional
    kmsKeyArn: 'kmsKeyArn',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| s3 | IResolvable | S3 | The S3 bucket location where audio logs are stored. | 
s3Bucket
Type:
IResolvable | S3
The S3 bucket location where audio logs are stored.
