interface CloudWatchLogsInputConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnOnlineEvaluationConfig.CloudWatchLogsInputConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnOnlineEvaluationConfig_CloudWatchLogsInputConfigProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnOnlineEvaluationConfig.CloudWatchLogsInputConfigProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnOnlineEvaluationConfig.CloudWatchLogsInputConfigProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnOnlineEvaluationConfig » CloudWatchLogsInputConfigProperty |
The configuration for reading agent traces from CloudWatch logs.
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';
const cloudWatchLogsInputConfigProperty: bedrockagentcore.CfnOnlineEvaluationConfig.CloudWatchLogsInputConfigProperty = {
logGroupNames: ['logGroupNames'],
serviceNames: ['serviceNames'],
};
Properties
| Name | Type | Description |
|---|---|---|
| log | string[] | The list of CloudWatch log group names to monitor for agent traces. |
| service | string[] | The list of service names to filter traces within the specified log groups. |
logGroupNames
Type:
string[]
The list of CloudWatch log group names to monitor for agent traces.
serviceNames
Type:
string[]
The list of service names to filter traces within the specified log groups.

.NET
Go
Java
Python
TypeScript