Interface CfnOnlineEvaluationConfigPropsMixin.DataSourceConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOnlineEvaluationConfigPropsMixin.DataSourceConfigProperty.Jsii$Proxy
- Enclosing class:
CfnOnlineEvaluationConfigPropsMixin
@Stability(Stable)
public static interface CfnOnlineEvaluationConfigPropsMixin.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.cfnpropertymixins.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 classstatic final classAn implementation forCfnOnlineEvaluationConfigPropsMixin.DataSourceConfigProperty -
Method Summary
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
IResolvableorCfnOnlineEvaluationConfigPropsMixin.CloudWatchLogsInputConfigProperty- See Also:
-
builder
@Stability(Stable) static CfnOnlineEvaluationConfigPropsMixin.DataSourceConfigProperty.Builder builder()
-