Interface AutoMLJobSummary.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<AutoMLJobSummary.Builder,
,AutoMLJobSummary> SdkBuilder<AutoMLJobSummary.Builder,
,AutoMLJobSummary> SdkPojo
- Enclosing class:
AutoMLJobSummary
public static interface AutoMLJobSummary.Builder
extends SdkPojo, CopyableBuilder<AutoMLJobSummary.Builder,AutoMLJobSummary>
-
Method Summary
Modifier and TypeMethodDescriptionautoMLJobArn
(String autoMLJobArn) The ARN of the AutoML job.autoMLJobName
(String autoMLJobName) The name of the AutoML job you are requesting.autoMLJobSecondaryStatus
(String autoMLJobSecondaryStatus) The secondary status of the AutoML job.autoMLJobSecondaryStatus
(AutoMLJobSecondaryStatus autoMLJobSecondaryStatus) The secondary status of the AutoML job.autoMLJobStatus
(String autoMLJobStatus) The status of the AutoML job.autoMLJobStatus
(AutoMLJobStatus autoMLJobStatus) The status of the AutoML job.creationTime
(Instant creationTime) When the AutoML job was created.The end time of an AutoML job.failureReason
(String failureReason) The failure reason of an AutoML job.lastModifiedTime
(Instant lastModifiedTime) When the AutoML job was last modified.partialFailureReasons
(Collection<AutoMLPartialFailureReason> partialFailureReasons) The list of reasons for partial failures within an AutoML job.partialFailureReasons
(Consumer<AutoMLPartialFailureReason.Builder>... partialFailureReasons) The list of reasons for partial failures within an AutoML job.partialFailureReasons
(AutoMLPartialFailureReason... partialFailureReasons) The list of reasons for partial failures within an AutoML 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, sdkFields
-
Method Details
-
autoMLJobName
The name of the AutoML job you are requesting.
- Parameters:
autoMLJobName
- The name of the AutoML job you are requesting.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
autoMLJobArn
The ARN of the AutoML job.
- Parameters:
autoMLJobArn
- The ARN of the AutoML job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
autoMLJobStatus
The status of the AutoML job.
- Parameters:
autoMLJobStatus
- The status of the AutoML job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
autoMLJobStatus
The status of the AutoML job.
- Parameters:
autoMLJobStatus
- The status of the AutoML job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
autoMLJobSecondaryStatus
The secondary status of the AutoML job.
- Parameters:
autoMLJobSecondaryStatus
- The secondary status of the AutoML job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
autoMLJobSecondaryStatus
AutoMLJobSummary.Builder autoMLJobSecondaryStatus(AutoMLJobSecondaryStatus autoMLJobSecondaryStatus) The secondary status of the AutoML job.
- Parameters:
autoMLJobSecondaryStatus
- The secondary status of the AutoML job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
creationTime
When the AutoML job was created.
- Parameters:
creationTime
- When the AutoML job was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endTime
The end time of an AutoML job.
- Parameters:
endTime
- The end time of an AutoML job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModifiedTime
When the AutoML job was last modified.
- Parameters:
lastModifiedTime
- When the AutoML job was last modified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failureReason
The failure reason of an AutoML job.
- Parameters:
failureReason
- The failure reason of an AutoML job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
partialFailureReasons
AutoMLJobSummary.Builder partialFailureReasons(Collection<AutoMLPartialFailureReason> partialFailureReasons) The list of reasons for partial failures within an AutoML job.
- Parameters:
partialFailureReasons
- The list of reasons for partial failures within an AutoML job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
partialFailureReasons
The list of reasons for partial failures within an AutoML job.
- Parameters:
partialFailureReasons
- The list of reasons for partial failures within an AutoML job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
partialFailureReasons
AutoMLJobSummary.Builder partialFailureReasons(Consumer<AutoMLPartialFailureReason.Builder>... partialFailureReasons) The list of reasons for partial failures within an AutoML job.
This is a convenience method that creates an instance of theAutoMLPartialFailureReason.Builder
avoiding the need to create one manually viaAutoMLPartialFailureReason.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed topartialFailureReasons(List<AutoMLPartialFailureReason>)
.- Parameters:
partialFailureReasons
- a consumer that will call methods onAutoMLPartialFailureReason.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-