interface S3BucketLogDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins.CfnBotPropsMixin.S3BucketLogDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslex/mixins#CfnBotPropsMixin_S3BucketLogDestinationProperty |
Java | software.amazon.awscdk.mixins.preview.services.lex.mixins.CfnBotPropsMixin.S3BucketLogDestinationProperty |
Python | aws_cdk.mixins_preview.aws_lex.mixins.CfnBotPropsMixin.S3BucketLogDestinationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lex » mixins » CfnBotPropsMixin » S3BucketLogDestinationProperty |
Specifies an Amazon S3 bucket for logging audio conversations.
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 s3BucketLogDestinationProperty: lex_mixins.CfnBotPropsMixin.S3BucketLogDestinationProperty = {
kmsKeyArn: 'kmsKeyArn',
logPrefix: 'logPrefix',
s3BucketArn: 's3BucketArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| kms | string | The Amazon Resource Name (ARN) of an AWS Key Management Service (KMS) key for encrypting audio log files stored in an Amazon S3 bucket. |
| log | string | The S3 prefix to assign to audio log files. |
| s3 | string | The Amazon Resource Name (ARN) of an Amazon S3 bucket where audio log files are stored. |
kmsKeyArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of an AWS Key Management Service (KMS) key for encrypting audio log files stored in an Amazon S3 bucket.
logPrefix?
Type:
string
(optional)
The S3 prefix to assign to audio log files.
s3BucketArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of an Amazon S3 bucket where audio log files are stored.

.NET
Go
Java
Python
TypeScript