public static interface PipelineExecutionStep.Builder extends SdkPojo, CopyableBuilder<PipelineExecutionStep.Builder,PipelineExecutionStep>
| Modifier and Type | Method and Description |
|---|---|
PipelineExecutionStep.Builder |
attemptCount(Integer attemptCount)
The current attempt of the execution step.
|
PipelineExecutionStep.Builder |
cacheHitResult(CacheHitResult cacheHitResult)
If this pipeline execution step was cached, details on the cache hit.
|
default PipelineExecutionStep.Builder |
cacheHitResult(Consumer<CacheHitResult.Builder> cacheHitResult)
If this pipeline execution step was cached, details on the cache hit.
|
PipelineExecutionStep.Builder |
endTime(Instant endTime)
The time that the step stopped executing.
|
PipelineExecutionStep.Builder |
failureReason(String failureReason)
The reason why the step failed execution.
|
default PipelineExecutionStep.Builder |
metadata(Consumer<PipelineExecutionStepMetadata.Builder> metadata)
Metadata to run the pipeline step.
|
PipelineExecutionStep.Builder |
metadata(PipelineExecutionStepMetadata metadata)
Metadata to run the pipeline step.
|
default PipelineExecutionStep.Builder |
selectiveExecutionResult(Consumer<SelectiveExecutionResult.Builder> selectiveExecutionResult)
The ARN from an execution of the current pipeline from which results are reused for this step.
|
PipelineExecutionStep.Builder |
selectiveExecutionResult(SelectiveExecutionResult selectiveExecutionResult)
The ARN from an execution of the current pipeline from which results are reused for this step.
|
PipelineExecutionStep.Builder |
startTime(Instant startTime)
The time that the step started executing.
|
PipelineExecutionStep.Builder |
stepDescription(String stepDescription)
The description of the step.
|
PipelineExecutionStep.Builder |
stepDisplayName(String stepDisplayName)
The display name of the step.
|
PipelineExecutionStep.Builder |
stepName(String stepName)
The name of the step that is executed.
|
PipelineExecutionStep.Builder |
stepStatus(StepStatus stepStatus)
The status of the step execution.
|
PipelineExecutionStep.Builder |
stepStatus(String stepStatus)
The status of the step execution.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildPipelineExecutionStep.Builder stepName(String stepName)
The name of the step that is executed.
stepName - The name of the step that is executed.PipelineExecutionStep.Builder stepDisplayName(String stepDisplayName)
The display name of the step.
stepDisplayName - The display name of the step.PipelineExecutionStep.Builder stepDescription(String stepDescription)
The description of the step.
stepDescription - The description of the step.PipelineExecutionStep.Builder startTime(Instant startTime)
The time that the step started executing.
startTime - The time that the step started executing.PipelineExecutionStep.Builder endTime(Instant endTime)
The time that the step stopped executing.
endTime - The time that the step stopped executing.PipelineExecutionStep.Builder stepStatus(String stepStatus)
The status of the step execution.
stepStatus - The status of the step execution.StepStatus,
StepStatusPipelineExecutionStep.Builder stepStatus(StepStatus stepStatus)
The status of the step execution.
stepStatus - The status of the step execution.StepStatus,
StepStatusPipelineExecutionStep.Builder cacheHitResult(CacheHitResult cacheHitResult)
If this pipeline execution step was cached, details on the cache hit.
cacheHitResult - If this pipeline execution step was cached, details on the cache hit.default PipelineExecutionStep.Builder cacheHitResult(Consumer<CacheHitResult.Builder> cacheHitResult)
If this pipeline execution step was cached, details on the cache hit.
This is a convenience method that creates an instance of theCacheHitResult.Builder avoiding the need
to create one manually via CacheHitResult.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its
result is passed to cacheHitResult(CacheHitResult).
cacheHitResult - a consumer that will call methods on CacheHitResult.BuildercacheHitResult(CacheHitResult)PipelineExecutionStep.Builder attemptCount(Integer attemptCount)
The current attempt of the execution step. For more information, see Retry Policy for SageMaker Pipelines steps.
attemptCount - The current attempt of the execution step. For more information, see Retry Policy for
SageMaker Pipelines steps.PipelineExecutionStep.Builder failureReason(String failureReason)
The reason why the step failed execution. This is only returned if the step failed its execution.
failureReason - The reason why the step failed execution. This is only returned if the step failed its execution.PipelineExecutionStep.Builder metadata(PipelineExecutionStepMetadata metadata)
Metadata to run the pipeline step.
metadata - Metadata to run the pipeline step.default PipelineExecutionStep.Builder metadata(Consumer<PipelineExecutionStepMetadata.Builder> metadata)
Metadata to run the pipeline step.
This is a convenience method that creates an instance of thePipelineExecutionStepMetadata.Builder
avoiding the need to create one manually via PipelineExecutionStepMetadata.builder().
When the Consumer completes, SdkBuilder.build() is called
immediately and its result is passed to metadata(PipelineExecutionStepMetadata).
metadata - a consumer that will call methods on PipelineExecutionStepMetadata.Buildermetadata(PipelineExecutionStepMetadata)PipelineExecutionStep.Builder selectiveExecutionResult(SelectiveExecutionResult selectiveExecutionResult)
The ARN from an execution of the current pipeline from which results are reused for this step.
selectiveExecutionResult - The ARN from an execution of the current pipeline from which results are reused for this step.default PipelineExecutionStep.Builder selectiveExecutionResult(Consumer<SelectiveExecutionResult.Builder> selectiveExecutionResult)
The ARN from an execution of the current pipeline from which results are reused for this step.
This is a convenience method that creates an instance of theSelectiveExecutionResult.Builder
avoiding the need to create one manually via SelectiveExecutionResult.builder().
When the Consumer completes, SdkBuilder.build() is called immediately
and its result is passed to selectiveExecutionResult(SelectiveExecutionResult).
selectiveExecutionResult - a consumer that will call methods on SelectiveExecutionResult.BuilderselectiveExecutionResult(SelectiveExecutionResult)Copyright © 2023. All rights reserved.