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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AutoMLJobSummary.BuilderautoMLJobArn(String autoMLJobArn)The ARN of the AutoML job.AutoMLJobSummary.BuilderautoMLJobName(String autoMLJobName)The name of the AutoML job you are requesting.AutoMLJobSummary.BuilderautoMLJobSecondaryStatus(String autoMLJobSecondaryStatus)The secondary status of the AutoML job.AutoMLJobSummary.BuilderautoMLJobSecondaryStatus(AutoMLJobSecondaryStatus autoMLJobSecondaryStatus)The secondary status of the AutoML job.AutoMLJobSummary.BuilderautoMLJobStatus(String autoMLJobStatus)The status of the AutoML job.AutoMLJobSummary.BuilderautoMLJobStatus(AutoMLJobStatus autoMLJobStatus)The status of the AutoML job.AutoMLJobSummary.BuildercreationTime(Instant creationTime)When the AutoML job was created.AutoMLJobSummary.BuilderendTime(Instant endTime)The end time of an AutoML job.AutoMLJobSummary.BuilderfailureReason(String failureReason)The failure reason of an AutoML job.AutoMLJobSummary.BuilderlastModifiedTime(Instant lastModifiedTime)When the AutoML job was last modified.AutoMLJobSummary.BuilderpartialFailureReasons(Collection<AutoMLPartialFailureReason> partialFailureReasons)The list of reasons for partial failures within an AutoML job.AutoMLJobSummary.BuilderpartialFailureReasons(Consumer<AutoMLPartialFailureReason.Builder>... partialFailureReasons)The list of reasons for partial failures within an AutoML job.AutoMLJobSummary.BuilderpartialFailureReasons(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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
autoMLJobName
AutoMLJobSummary.Builder autoMLJobName(String 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
AutoMLJobSummary.Builder autoMLJobArn(String 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
AutoMLJobSummary.Builder autoMLJobStatus(String 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,AutoMLJobStatus
-
autoMLJobStatus
AutoMLJobSummary.Builder autoMLJobStatus(AutoMLJobStatus 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,AutoMLJobStatus
-
autoMLJobSecondaryStatus
AutoMLJobSummary.Builder autoMLJobSecondaryStatus(String 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,AutoMLJobSecondaryStatus
-
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:
AutoMLJobSecondaryStatus,AutoMLJobSecondaryStatus
-
creationTime
AutoMLJobSummary.Builder creationTime(Instant 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
AutoMLJobSummary.Builder endTime(Instant 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
AutoMLJobSummary.Builder lastModifiedTime(Instant 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
AutoMLJobSummary.Builder failureReason(String 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
AutoMLJobSummary.Builder partialFailureReasons(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
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.Builderavoiding the need to create one manually viaAutoMLPartialFailureReason.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#partialFailureReasons(List.) - 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:
#partialFailureReasons(java.util.Collection)
-
-