Interface PredictorBacktestExportJobSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PredictorBacktestExportJobSummary.Builder,PredictorBacktestExportJobSummary>,SdkBuilder<PredictorBacktestExportJobSummary.Builder,PredictorBacktestExportJobSummary>,SdkPojo
- Enclosing class:
- PredictorBacktestExportJobSummary
public static interface PredictorBacktestExportJobSummary.Builder extends SdkPojo, CopyableBuilder<PredictorBacktestExportJobSummary.Builder,PredictorBacktestExportJobSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description PredictorBacktestExportJobSummary.BuildercreationTime(Instant creationTime)When the predictor backtest export job was created.default PredictorBacktestExportJobSummary.Builderdestination(Consumer<DataDestination.Builder> destination)Sets the value of the Destination property for this object.PredictorBacktestExportJobSummary.Builderdestination(DataDestination destination)Sets the value of the Destination property for this object.PredictorBacktestExportJobSummary.BuilderlastModificationTime(Instant lastModificationTime)The last time the resource was modified.PredictorBacktestExportJobSummary.Buildermessage(String message)Information about any errors that may have occurred during the backtest export.PredictorBacktestExportJobSummary.BuilderpredictorBacktestExportJobArn(String predictorBacktestExportJobArn)The Amazon Resource Name (ARN) of the predictor backtest export job.PredictorBacktestExportJobSummary.BuilderpredictorBacktestExportJobName(String predictorBacktestExportJobName)The name of the predictor backtest export job.PredictorBacktestExportJobSummary.Builderstatus(String status)The status of the predictor backtest export job.-
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
-
predictorBacktestExportJobArn
PredictorBacktestExportJobSummary.Builder predictorBacktestExportJobArn(String predictorBacktestExportJobArn)
The Amazon Resource Name (ARN) of the predictor backtest export job.
- Parameters:
predictorBacktestExportJobArn- The Amazon Resource Name (ARN) of the predictor backtest export job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
predictorBacktestExportJobName
PredictorBacktestExportJobSummary.Builder predictorBacktestExportJobName(String predictorBacktestExportJobName)
The name of the predictor backtest export job.
- Parameters:
predictorBacktestExportJobName- The name of the predictor backtest export job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destination
PredictorBacktestExportJobSummary.Builder destination(DataDestination destination)
Sets the value of the Destination property for this object.- Parameters:
destination- The new value for the Destination property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destination
default PredictorBacktestExportJobSummary.Builder destination(Consumer<DataDestination.Builder> destination)
Sets the value of the Destination property for this object. This is a convenience method that creates an instance of theDataDestination.Builderavoiding the need to create one manually viaDataDestination.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todestination(DataDestination).- Parameters:
destination- a consumer that will call methods onDataDestination.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
destination(DataDestination)
-
status
PredictorBacktestExportJobSummary.Builder status(String status)
The status of the predictor backtest export job. States include:
-
ACTIVE -
CREATE_PENDING,CREATE_IN_PROGRESS,CREATE_FAILED -
CREATE_STOPPING,CREATE_STOPPED -
DELETE_PENDING,DELETE_IN_PROGRESS,DELETE_FAILED
- Parameters:
status- The status of the predictor backtest export job. States include:-
ACTIVE -
CREATE_PENDING,CREATE_IN_PROGRESS,CREATE_FAILED -
CREATE_STOPPING,CREATE_STOPPED -
DELETE_PENDING,DELETE_IN_PROGRESS,DELETE_FAILED
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
message
PredictorBacktestExportJobSummary.Builder message(String message)
Information about any errors that may have occurred during the backtest export.
- Parameters:
message- Information about any errors that may have occurred during the backtest export.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationTime
PredictorBacktestExportJobSummary.Builder creationTime(Instant creationTime)
When the predictor backtest export job was created.
- Parameters:
creationTime- When the predictor backtest export job was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModificationTime
PredictorBacktestExportJobSummary.Builder lastModificationTime(Instant lastModificationTime)
The last time the resource was modified. The timestamp depends on the status of the job:
-
CREATE_PENDING- TheCreationTime. -
CREATE_IN_PROGRESS- The current timestamp. -
CREATE_STOPPING- The current timestamp. -
CREATE_STOPPED- When the job stopped. -
ACTIVEorCREATE_FAILED- When the job finished or failed.
- Parameters:
lastModificationTime- The last time the resource was modified. The timestamp depends on the status of the job:-
CREATE_PENDING- TheCreationTime. -
CREATE_IN_PROGRESS- The current timestamp. -
CREATE_STOPPING- The current timestamp. -
CREATE_STOPPED- When the job stopped. -
ACTIVEorCREATE_FAILED- When the job finished or failed.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
-