interface CfnKnowledgeBaseApplicationLogsS3Props
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnKnowledgeBaseApplicationLogsS3Props |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnKnowledgeBaseApplicationLogsS3Props |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnKnowledgeBaseApplicationLogsS3Props |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnKnowledgeBaseApplicationLogsS3Props |
TypeScript | @aws-cdk/mixins-preview ยป aws_bedrock ยป mixins ยป CfnKnowledgeBaseApplicationLogsS3Props |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
import { aws_kms as interfaces_kms } from 'aws-cdk-lib/interfaces';
declare const keyRef: interfaces_kms.IKeyRef;
const cfnKnowledgeBaseApplicationLogsS3Props: bedrock_mixins.CfnKnowledgeBaseApplicationLogsS3Props = {
encryptionKey: keyRef,
outputFormat: bedrock_mixins.CfnKnowledgeBaseApplicationLogsOutputFormat.S3.JSON,
recordFields: [bedrock_mixins.CfnKnowledgeBaseApplicationLogsRecordFields.EVENT_TIMESTAMP],
};
Properties
| Name | Type | Description |
|---|---|---|
| encryption | IKey | Encrpytion key for your delivery bucket. |
| output | S3 | Format for log output, options are json,plain,w3c. |
| record | Cfn[] | Record fields that can be provided to a log delivery. |
encryptionKey?
Type:
IKey
(optional)
Encrpytion key for your delivery bucket.
outputFormat?
Type:
S3
(optional)
Format for log output, options are json,plain,w3c.
recordFields?
Type:
Cfn[]
(optional)
Record fields that can be provided to a log delivery.

.NET
Go
Java
Python
TypeScript