Show / Hide Table of Contents

Class CfnBot.S3BucketLogDestinationProperty

Specifies an Amazon S3 bucket for logging audio conversations.

Inheritance
object
CfnBot.S3BucketLogDestinationProperty
Implements
CfnBot.IS3BucketLogDestinationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Lex
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnBot.S3BucketLogDestinationProperty : CfnBot.IS3BucketLogDestinationProperty
Syntax (vb)
Public Class CfnBot.S3BucketLogDestinationProperty Implements CfnBot.IS3BucketLogDestinationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-s3bucketlogdestination.html

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

Constructors

S3BucketLogDestinationProperty()

Specifies an Amazon S3 bucket for logging audio conversations.

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.

Constructors

S3BucketLogDestinationProperty()

Specifies an Amazon S3 bucket for logging audio conversations.

public S3BucketLogDestinationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-s3bucketlogdestination.html

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"
             };

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.

public string? KmsKeyArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-s3bucketlogdestination.html#cfn-lex-bot-s3bucketlogdestination-kmskeyarn

LogPrefix

The S3 prefix to assign to audio log files.

public string LogPrefix { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-s3bucketlogdestination.html#cfn-lex-bot-s3bucketlogdestination-logprefix

S3BucketArn

The Amazon Resource Name (ARN) of an Amazon S3 bucket where audio log files are stored.

public string S3BucketArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-s3bucketlogdestination.html#cfn-lex-bot-s3bucketlogdestination-s3bucketarn

Implements

CfnBot.IS3BucketLogDestinationProperty
Back to top Generated by DocFX