interface LoggingConfig
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.LoggingConfig |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#LoggingConfig |
Java | software.amazon.awscdk.services.bedrockagentcore.LoggingConfig |
Python | aws_cdk.aws_bedrockagentcore.LoggingConfig |
TypeScript (source) | aws-cdk-lib » aws_bedrockagentcore » LoggingConfig |
Configuration for logging with log type and destination.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrockagentcore as bedrockagentcore } from 'aws-cdk-lib';
declare const loggingDestination: bedrockagentcore.LoggingDestination;
declare const logType: bedrockagentcore.LogType;
const loggingConfig: bedrockagentcore.LoggingConfig = {
destination: loggingDestination,
logType: logType,
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | Logging | The destination for logs. |
| log | Log | The type of logs to deliver. |
destination
Type:
Logging
The destination for logs.
logType
Type:
Log
The type of logs to deliver.

.NET
Go
Java
Python
TypeScript (