Interface CfnOnlineEvaluationConfig.DataSourceConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOnlineEvaluationConfig.DataSourceConfigProperty.Jsii$Proxy
- Enclosing class:
CfnOnlineEvaluationConfig
@Stability(Stable)
public static interface CfnOnlineEvaluationConfig.DataSourceConfigProperty
extends software.amazon.jsii.JsiiSerializable
The configuration that specifies where to read agent traces for online evaluation.
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.*;
DataSourceConfigProperty dataSourceConfigProperty = DataSourceConfigProperty.builder()
.cloudWatchLogs(CloudWatchLogsInputConfigProperty.builder()
.logGroupNames(List.of("logGroupNames"))
.serviceNames(List.of("serviceNames"))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnOnlineEvaluationConfig.DataSourceConfigPropertystatic final classAn implementation forCfnOnlineEvaluationConfig.DataSourceConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The configuration for reading agent traces from CloudWatch logs.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCloudWatchLogs
The configuration for reading agent traces from CloudWatch logs.Returns union: either
IResolvableorCfnOnlineEvaluationConfig.CloudWatchLogsInputConfigProperty- See Also:
-
builder
-