Interface TrialComponentSourceDetail.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<TrialComponentSourceDetail.Builder,TrialComponentSourceDetail>
,SdkBuilder<TrialComponentSourceDetail.Builder,TrialComponentSourceDetail>
,SdkPojo
- Enclosing class:
- TrialComponentSourceDetail
public static interface TrialComponentSourceDetail.Builder extends SdkPojo, CopyableBuilder<TrialComponentSourceDetail.Builder,TrialComponentSourceDetail>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default TrialComponentSourceDetail.Builder
processingJob(Consumer<ProcessingJob.Builder> processingJob)
Information about a processing job that's the source of a trial component.TrialComponentSourceDetail.Builder
processingJob(ProcessingJob processingJob)
Information about a processing job that's the source of a trial component.TrialComponentSourceDetail.Builder
sourceArn(String sourceArn)
The Amazon Resource Name (ARN) of the source.default TrialComponentSourceDetail.Builder
trainingJob(Consumer<TrainingJob.Builder> trainingJob)
Information about a training job that's the source of a trial component.TrialComponentSourceDetail.Builder
trainingJob(TrainingJob trainingJob)
Information about a training job that's the source of a trial component.default TrialComponentSourceDetail.Builder
transformJob(Consumer<TransformJob.Builder> transformJob)
Information about a transform job that's the source of a trial component.TrialComponentSourceDetail.Builder
transformJob(TransformJob transformJob)
Information about a transform job that's the source of a trial component.-
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, sdkFields
-
-
-
-
Method Detail
-
sourceArn
TrialComponentSourceDetail.Builder sourceArn(String sourceArn)
The Amazon Resource Name (ARN) of the source.
- Parameters:
sourceArn
- The Amazon Resource Name (ARN) of the source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
trainingJob
TrialComponentSourceDetail.Builder trainingJob(TrainingJob trainingJob)
Information about a training job that's the source of a trial component.
- Parameters:
trainingJob
- Information about a training job that's the source of a trial component.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
trainingJob
default TrialComponentSourceDetail.Builder trainingJob(Consumer<TrainingJob.Builder> trainingJob)
Information about a training job that's the source of a trial component.
This is a convenience method that creates an instance of theTrainingJob.Builder
avoiding the need to create one manually viaTrainingJob.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed totrainingJob(TrainingJob)
.- Parameters:
trainingJob
- a consumer that will call methods onTrainingJob.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
trainingJob(TrainingJob)
-
processingJob
TrialComponentSourceDetail.Builder processingJob(ProcessingJob processingJob)
Information about a processing job that's the source of a trial component.
- Parameters:
processingJob
- Information about a processing job that's the source of a trial component.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
processingJob
default TrialComponentSourceDetail.Builder processingJob(Consumer<ProcessingJob.Builder> processingJob)
Information about a processing job that's the source of a trial component.
This is a convenience method that creates an instance of theProcessingJob.Builder
avoiding the need to create one manually viaProcessingJob.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toprocessingJob(ProcessingJob)
.- Parameters:
processingJob
- a consumer that will call methods onProcessingJob.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
processingJob(ProcessingJob)
-
transformJob
TrialComponentSourceDetail.Builder transformJob(TransformJob transformJob)
Information about a transform job that's the source of a trial component.
- Parameters:
transformJob
- Information about a transform job that's the source of a trial component.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
transformJob
default TrialComponentSourceDetail.Builder transformJob(Consumer<TransformJob.Builder> transformJob)
Information about a transform job that's the source of a trial component.
This is a convenience method that creates an instance of theTransformJob.Builder
avoiding the need to create one manually viaTransformJob.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed totransformJob(TransformJob)
.- Parameters:
transformJob
- a consumer that will call methods onTransformJob.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
transformJob(TransformJob)
-
-