Class AutoMLJobSummary
- java.lang.Object
-
- software.amazon.awssdk.services.sagemaker.model.AutoMLJobSummary
-
- All Implemented Interfaces:
Serializable
,SdkPojo
,ToCopyableBuilder<AutoMLJobSummary.Builder,AutoMLJobSummary>
@Generated("software.amazon.awssdk:codegen") public final class AutoMLJobSummary extends Object implements SdkPojo, Serializable, ToCopyableBuilder<AutoMLJobSummary.Builder,AutoMLJobSummary>
Provides a summary about an AutoML job.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
AutoMLJobSummary.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
autoMLJobArn()
The ARN of the AutoML job.String
autoMLJobName()
The name of the AutoML job you are requesting.AutoMLJobSecondaryStatus
autoMLJobSecondaryStatus()
The secondary status of the AutoML job.String
autoMLJobSecondaryStatusAsString()
The secondary status of the AutoML job.AutoMLJobStatus
autoMLJobStatus()
The status of the AutoML job.String
autoMLJobStatusAsString()
The status of the AutoML job.static AutoMLJobSummary.Builder
builder()
Instant
creationTime()
When the AutoML job was created.Instant
endTime()
The end time of an AutoML job.boolean
equals(Object obj)
boolean
equalsBySdkFields(Object obj)
String
failureReason()
The failure reason of an AutoML job.<T> Optional<T>
getValueForField(String fieldName, Class<T> clazz)
int
hashCode()
boolean
hasPartialFailureReasons()
For responses, this returns true if the service returned a value for the PartialFailureReasons property.Instant
lastModifiedTime()
When the AutoML job was last modified.List<AutoMLPartialFailureReason>
partialFailureReasons()
The list of reasons for partial failures within an AutoML job.List<SdkField<?>>
sdkFields()
static Class<? extends AutoMLJobSummary.Builder>
serializableBuilderClass()
AutoMLJobSummary.Builder
toBuilder()
String
toString()
Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
autoMLJobName
public final String autoMLJobName()
The name of the AutoML job you are requesting.
- Returns:
- The name of the AutoML job you are requesting.
-
autoMLJobArn
public final String autoMLJobArn()
The ARN of the AutoML job.
- Returns:
- The ARN of the AutoML job.
-
autoMLJobStatus
public final AutoMLJobStatus autoMLJobStatus()
The status of the AutoML job.
If the service returns an enum value that is not available in the current SDK version,
autoMLJobStatus
will returnAutoMLJobStatus.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromautoMLJobStatusAsString()
.- Returns:
- The status of the AutoML job.
- See Also:
AutoMLJobStatus
-
autoMLJobStatusAsString
public final String autoMLJobStatusAsString()
The status of the AutoML job.
If the service returns an enum value that is not available in the current SDK version,
autoMLJobStatus
will returnAutoMLJobStatus.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromautoMLJobStatusAsString()
.- Returns:
- The status of the AutoML job.
- See Also:
AutoMLJobStatus
-
autoMLJobSecondaryStatus
public final AutoMLJobSecondaryStatus autoMLJobSecondaryStatus()
The secondary status of the AutoML job.
If the service returns an enum value that is not available in the current SDK version,
autoMLJobSecondaryStatus
will returnAutoMLJobSecondaryStatus.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromautoMLJobSecondaryStatusAsString()
.- Returns:
- The secondary status of the AutoML job.
- See Also:
AutoMLJobSecondaryStatus
-
autoMLJobSecondaryStatusAsString
public final String autoMLJobSecondaryStatusAsString()
The secondary status of the AutoML job.
If the service returns an enum value that is not available in the current SDK version,
autoMLJobSecondaryStatus
will returnAutoMLJobSecondaryStatus.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromautoMLJobSecondaryStatusAsString()
.- Returns:
- The secondary status of the AutoML job.
- See Also:
AutoMLJobSecondaryStatus
-
creationTime
public final Instant creationTime()
When the AutoML job was created.
- Returns:
- When the AutoML job was created.
-
endTime
public final Instant endTime()
The end time of an AutoML job.
- Returns:
- The end time of an AutoML job.
-
lastModifiedTime
public final Instant lastModifiedTime()
When the AutoML job was last modified.
- Returns:
- When the AutoML job was last modified.
-
failureReason
public final String failureReason()
The failure reason of an AutoML job.
- Returns:
- The failure reason of an AutoML job.
-
hasPartialFailureReasons
public final boolean hasPartialFailureReasons()
For responses, this returns true if the service returned a value for the PartialFailureReasons property. This DOES NOT check that the value is non-empty (for which, you should check theisEmpty()
method on the property). This is useful because the SDK will never return a null collection or map, but you may need to differentiate between the service returning nothing (or null) and the service returning an empty collection or map. For requests, this returns true if a value for the property was specified in the request builder, and false if a value was not specified.
-
partialFailureReasons
public final List<AutoMLPartialFailureReason> partialFailureReasons()
The list of reasons for partial failures within an AutoML job.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that you can differentiate between null and empty), you can use the
hasPartialFailureReasons()
method.- Returns:
- The list of reasons for partial failures within an AutoML job.
-
toBuilder
public AutoMLJobSummary.Builder toBuilder()
- Specified by:
toBuilder
in interfaceToCopyableBuilder<AutoMLJobSummary.Builder,AutoMLJobSummary>
-
builder
public static AutoMLJobSummary.Builder builder()
-
serializableBuilderClass
public static Class<? extends AutoMLJobSummary.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFields
in interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-