Show / Hide Table of Contents

Class CfnCodeInterpreterApplicationLogsS3Props

Inheritance
object
CfnCodeInterpreterApplicationLogsS3Props
Implements
ICfnCodeInterpreterApplicationLogsS3Props
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.BedrockAgentCore.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnCodeInterpreterApplicationLogsS3Props : ICfnCodeInterpreterApplicationLogsS3Props
Syntax (vb)
Public Class CfnCodeInterpreterApplicationLogsS3Props Implements ICfnCodeInterpreterApplicationLogsS3Props
Remarks

Stability: Experimental

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.Mixins.Preview.AWS.BedrockAgentCore.Mixins;
             using Amazon.CDK.Interfaces.KMS;

             IKeyRef keyRef;

             var cfnCodeInterpreterApplicationLogsS3Props = new CfnCodeInterpreterApplicationLogsS3Props {
                 EncryptionKey = keyRef,
                 OutputFormat = CfnCodeInterpreterApplicationLogsOutputFormat.S3.JSON,
                 RecordFields = new [] { CfnCodeInterpreterApplicationLogsRecordFields.ACCOUNT_ID }
             };

Synopsis

Constructors

CfnCodeInterpreterApplicationLogsS3Props()

Properties

EncryptionKey

(experimental) Encrpytion key for your delivery bucket.

OutputFormat

(experimental) Format for log output, options are json,plain,w3c,parquet.

RecordFields

(experimental) Record fields that can be provided to a log delivery.

Constructors

CfnCodeInterpreterApplicationLogsS3Props()

public CfnCodeInterpreterApplicationLogsS3Props()
Remarks

Stability: Experimental

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.Mixins.Preview.AWS.BedrockAgentCore.Mixins;
             using Amazon.CDK.Interfaces.KMS;

             IKeyRef keyRef;

             var cfnCodeInterpreterApplicationLogsS3Props = new CfnCodeInterpreterApplicationLogsS3Props {
                 EncryptionKey = keyRef,
                 OutputFormat = CfnCodeInterpreterApplicationLogsOutputFormat.S3.JSON,
                 RecordFields = new [] { CfnCodeInterpreterApplicationLogsRecordFields.ACCOUNT_ID }
             };

Properties

EncryptionKey

(experimental) Encrpytion key for your delivery bucket.

public IKeyRef? EncryptionKey { get; set; }
Property Value

IKeyRef

Remarks

Stability: Experimental

OutputFormat

(experimental) Format for log output, options are json,plain,w3c,parquet.

public CfnCodeInterpreterApplicationLogsOutputFormat.S3? OutputFormat { get; set; }
Property Value

CfnCodeInterpreterApplicationLogsOutputFormat.S3?

Remarks

Stability: Experimental

RecordFields

(experimental) Record fields that can be provided to a log delivery.

public CfnCodeInterpreterApplicationLogsRecordFields[]? RecordFields { get; set; }
Property Value

CfnCodeInterpreterApplicationLogsRecordFields[]

Remarks

Stability: Experimental

Implements

ICfnCodeInterpreterApplicationLogsS3Props
Back to top Generated by DocFX