Interface ModelQualityJobInput.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<ModelQualityJobInput.Builder,ModelQualityJobInput>
,SdkBuilder<ModelQualityJobInput.Builder,ModelQualityJobInput>
,SdkPojo
- Enclosing class:
- ModelQualityJobInput
public static interface ModelQualityJobInput.Builder extends SdkPojo, CopyableBuilder<ModelQualityJobInput.Builder,ModelQualityJobInput>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ModelQualityJobInput.Builder
batchTransformInput(Consumer<BatchTransformInput.Builder> batchTransformInput)
Input object for the batch transform job.ModelQualityJobInput.Builder
batchTransformInput(BatchTransformInput batchTransformInput)
Input object for the batch transform job.default ModelQualityJobInput.Builder
endpointInput(Consumer<EndpointInput.Builder> endpointInput)
Sets the value of the EndpointInput property for this object.ModelQualityJobInput.Builder
endpointInput(EndpointInput endpointInput)
Sets the value of the EndpointInput property for this object.default ModelQualityJobInput.Builder
groundTruthS3Input(Consumer<MonitoringGroundTruthS3Input.Builder> groundTruthS3Input)
The ground truth label provided for the model.ModelQualityJobInput.Builder
groundTruthS3Input(MonitoringGroundTruthS3Input groundTruthS3Input)
The ground truth label provided for the model.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
endpointInput
ModelQualityJobInput.Builder endpointInput(EndpointInput endpointInput)
Sets the value of the EndpointInput property for this object.- Parameters:
endpointInput
- The new value for the EndpointInput property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endpointInput
default ModelQualityJobInput.Builder endpointInput(Consumer<EndpointInput.Builder> endpointInput)
Sets the value of the EndpointInput property for this object. This is a convenience method that creates an instance of theEndpointInput.Builder
avoiding the need to create one manually viaEndpointInput.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toendpointInput(EndpointInput)
.- Parameters:
endpointInput
- a consumer that will call methods onEndpointInput.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
endpointInput(EndpointInput)
-
batchTransformInput
ModelQualityJobInput.Builder batchTransformInput(BatchTransformInput batchTransformInput)
Input object for the batch transform job.
- Parameters:
batchTransformInput
- Input object for the batch transform job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
batchTransformInput
default ModelQualityJobInput.Builder batchTransformInput(Consumer<BatchTransformInput.Builder> batchTransformInput)
Input object for the batch transform job.
This is a convenience method that creates an instance of theBatchTransformInput.Builder
avoiding the need to create one manually viaBatchTransformInput.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tobatchTransformInput(BatchTransformInput)
.- Parameters:
batchTransformInput
- a consumer that will call methods onBatchTransformInput.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
batchTransformInput(BatchTransformInput)
-
groundTruthS3Input
ModelQualityJobInput.Builder groundTruthS3Input(MonitoringGroundTruthS3Input groundTruthS3Input)
The ground truth label provided for the model.
- Parameters:
groundTruthS3Input
- The ground truth label provided for the model.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
groundTruthS3Input
default ModelQualityJobInput.Builder groundTruthS3Input(Consumer<MonitoringGroundTruthS3Input.Builder> groundTruthS3Input)
The ground truth label provided for the model.
This is a convenience method that creates an instance of theMonitoringGroundTruthS3Input.Builder
avoiding the need to create one manually viaMonitoringGroundTruthS3Input.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed togroundTruthS3Input(MonitoringGroundTruthS3Input)
.- Parameters:
groundTruthS3Input
- a consumer that will call methods onMonitoringGroundTruthS3Input.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
groundTruthS3Input(MonitoringGroundTruthS3Input)
-
-