Interface CfnModelBiasJobDefinition.ModelBiasJobInputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelBiasJobDefinition.ModelBiasJobInputProperty.Jsii$Proxy
- Enclosing class:
CfnModelBiasJobDefinition
@Stability(Stable)
public static interface CfnModelBiasJobDefinition.ModelBiasJobInputProperty
extends software.amazon.jsii.JsiiSerializable
Inputs for the model bias job.
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.sagemaker.*; ModelBiasJobInputProperty modelBiasJobInputProperty = ModelBiasJobInputProperty.builder() .groundTruthS3Input(MonitoringGroundTruthS3InputProperty.builder() .s3Uri("s3Uri") .build()) // the properties below are optional .batchTransformInput(BatchTransformInputProperty.builder() .dataCapturedDestinationS3Uri("dataCapturedDestinationS3Uri") .datasetFormat(DatasetFormatProperty.builder() .csv(CsvProperty.builder() .header(false) .build()) .json(JsonProperty.builder() .line(false) .build()) .parquet(false) .build()) .localPath("localPath") // the properties below are optional .endTimeOffset("endTimeOffset") .featuresAttribute("featuresAttribute") .inferenceAttribute("inferenceAttribute") .probabilityAttribute("probabilityAttribute") .probabilityThresholdAttribute(123) .s3DataDistributionType("s3DataDistributionType") .s3InputMode("s3InputMode") .startTimeOffset("startTimeOffset") .build()) .endpointInput(EndpointInputProperty.builder() .endpointName("endpointName") .localPath("localPath") // the properties below are optional .endTimeOffset("endTimeOffset") .featuresAttribute("featuresAttribute") .inferenceAttribute("inferenceAttribute") .probabilityAttribute("probabilityAttribute") .probabilityThresholdAttribute(123) .s3DataDistributionType("s3DataDistributionType") .s3InputMode("s3InputMode") .startTimeOffset("startTimeOffset") .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnModelBiasJobDefinition.ModelBiasJobInputProperty
static final class
An implementation forCfnModelBiasJobDefinition.ModelBiasJobInputProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGroundTruthS3Input
Location of ground truth labels to use in model bias job.- See Also:
-
getBatchTransformInput
Input object for the batch transform job.- See Also:
-
getEndpointInput
Input object for the endpoint.- See Also:
-
builder
-