interface CloudWatchLogsInputConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnOnlineEvaluationConfigPropsMixin.CloudWatchLogsInputConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnOnlineEvaluationConfigPropsMixin_CloudWatchLogsInputConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnOnlineEvaluationConfigPropsMixin.CloudWatchLogsInputConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnOnlineEvaluationConfigPropsMixin.CloudWatchLogsInputConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnOnlineEvaluationConfigPropsMixin » 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/cfn-property-mixins';
const cloudWatchLogsInputConfigProperty: bedrockagentcore.CfnOnlineEvaluationConfigPropsMixin.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[]
(optional)
The list of CloudWatch log group names to monitor for agent traces.
serviceNames?
Type:
string[]
(optional)
The list of service names to filter traces within the specified log groups.

.NET
Go
Java
Python
TypeScript