Interface CfnJob.StatisticsConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnJob.StatisticsConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnJob
@Stability(Stable)
public static interface CfnJob.StatisticsConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Configuration of evaluations for a profile job.
This configuration can be used to select evaluations and override the parameters of selected evaluations.
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.databrew.*;
StatisticsConfigurationProperty statisticsConfigurationProperty = StatisticsConfigurationProperty.builder()
.includedStatistics(List.of("includedStatistics"))
.overrides(List.of(StatisticOverrideProperty.builder()
.parameters(Map.of(
"parametersKey", "parameters"))
.statistic("statistic")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnJob.StatisticsConfigurationPropertystatic final classAn implementation forCfnJob.StatisticsConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIncludedStatistics
List of included evaluations.When the list is undefined, all supported evaluations will be included.
- See Also:
-
getOverrides
List of overrides for evaluations.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnJob.StatisticOverrideProperty>- See Also:
-
builder
-