Interface CfnOnlineEvaluationConfigPropsMixin.OutputConfigProperty

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

@Stability(Stable) public static interface CfnOnlineEvaluationConfigPropsMixin.OutputConfigProperty extends software.amazon.jsii.JsiiSerializable
The configuration that specifies where evaluation results should be written.

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.*;
 OutputConfigProperty outputConfigProperty = OutputConfigProperty.builder()
         .cloudWatchConfig(CloudWatchOutputConfigProperty.builder()
                 .logGroupName("logGroupName")
                 .build())
         .build();
 

See Also: