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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnOnlineEvaluationConfig.CloudWatchLogsInputConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The list of CloudWatch log group names to monitor for agent traces.The list of service names to filter traces within the specified log groups.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLogGroupNames
The list of CloudWatch log group names to monitor for agent traces.- See Also:
-
getServiceNames
The list of service names to filter traces within the specified log groups.- See Also:
-
builder
@Stability(Stable) static CfnOnlineEvaluationConfig.CloudWatchLogsInputConfigProperty.Builder builder()
-