Interface CfnOnlineEvaluationConfig.CloudWatchLogsInputConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnOnlineEvaluationConfig.CloudWatchLogsInputConfigProperty.Jsii$Proxy
Enclosing class:
CfnOnlineEvaluationConfig

@Stability(Stable) public static interface CfnOnlineEvaluationConfig.CloudWatchLogsInputConfigProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.bedrockagentcore.*;
 CloudWatchLogsInputConfigProperty cloudWatchLogsInputConfigProperty = CloudWatchLogsInputConfigProperty.builder()
         .logGroupNames(List.of("logGroupNames"))
         .serviceNames(List.of("serviceNames"))
         .build();
 

See Also: