Interface CfnBot.IS3BucketLogDestinationProperty
Specifies an Amazon S3 bucket for logging audio conversations.
Namespace: Amazon.CDK.AWS.Lex
Assembly: Amazon.CDK.AWS.Lex.dll
Syntax (csharp)
public interface IS3BucketLogDestinationProperty
Syntax (vb)
Public Interface IS3BucketLogDestinationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Lex;
var s3BucketLogDestinationProperty = new S3BucketLogDestinationProperty {
LogPrefix = "logPrefix",
S3BucketArn = "s3BucketArn",
// the properties below are optional
KmsKeyArn = "kmsKeyArn"
};
Synopsis
Properties
| KmsKeyArn | 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 | The S3 prefix to assign to audio log files. |
| S3BucketArn | The Amazon Resource Name (ARN) of an Amazon S3 bucket where audio log files are stored. |
Properties
KmsKeyArn
The Amazon Resource Name (ARN) of an AWS Key Management Service (KMS) key for encrypting audio log files stored in an Amazon S3 bucket.
virtual string KmsKeyArn { get; }
Property Value
System.String
Remarks
LogPrefix
The S3 prefix to assign to audio log files.
string LogPrefix { get; }
Property Value
System.String
Remarks
S3BucketArn
The Amazon Resource Name (ARN) of an Amazon S3 bucket where audio log files are stored.
string S3BucketArn { get; }
Property Value
System.String