interface LoggingConfig
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.Agentcore.Alpha.LoggingConfig |
Go | github.com/aws/aws-cdk-go/awsbedrockagentcorealpha/v2#LoggingConfig |
Java | software.amazon.awscdk.services.bedrock.agentcore.alpha.LoggingConfig |
Python | aws_cdk.aws_bedrock_agentcore_alpha.LoggingConfig |
TypeScript (source) | @aws-cdk/aws-bedrock-agentcore-alpha ยป 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 * as bedrock_agentcore_alpha from '@aws-cdk/aws-bedrock-agentcore-alpha';
declare const loggingDestination: bedrock_agentcore_alpha.LoggingDestination;
declare const logType: bedrock_agentcore_alpha.LogType;
const loggingConfig: bedrock_agentcore_alpha.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 (