Class PipelineExecutionSummary
- java.lang.Object
-
- software.amazon.awssdk.services.sagemaker.model.PipelineExecutionSummary
-
- All Implemented Interfaces:
Serializable
,SdkPojo
,ToCopyableBuilder<PipelineExecutionSummary.Builder,PipelineExecutionSummary>
@Generated("software.amazon.awssdk:codegen") public final class PipelineExecutionSummary extends Object implements SdkPojo, Serializable, ToCopyableBuilder<PipelineExecutionSummary.Builder,PipelineExecutionSummary>
A pipeline execution summary.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
PipelineExecutionSummary.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PipelineExecutionSummary.Builder
builder()
boolean
equals(Object obj)
boolean
equalsBySdkFields(Object obj)
<T> Optional<T>
getValueForField(String fieldName, Class<T> clazz)
int
hashCode()
String
pipelineExecutionArn()
The Amazon Resource Name (ARN) of the pipeline execution.String
pipelineExecutionDescription()
The description of the pipeline execution.String
pipelineExecutionDisplayName()
The display name of the pipeline execution.String
pipelineExecutionFailureReason()
A message generated by SageMaker Pipelines describing why the pipeline execution failed.PipelineExecutionStatus
pipelineExecutionStatus()
The status of the pipeline execution.String
pipelineExecutionStatusAsString()
The status of the pipeline execution.List<SdkField<?>>
sdkFields()
static Class<? extends PipelineExecutionSummary.Builder>
serializableBuilderClass()
Instant
startTime()
The start time of the pipeline execution.PipelineExecutionSummary.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
-
pipelineExecutionArn
public final String pipelineExecutionArn()
The Amazon Resource Name (ARN) of the pipeline execution.
- Returns:
- The Amazon Resource Name (ARN) of the pipeline execution.
-
startTime
public final Instant startTime()
The start time of the pipeline execution.
- Returns:
- The start time of the pipeline execution.
-
pipelineExecutionStatus
public final PipelineExecutionStatus pipelineExecutionStatus()
The status of the pipeline execution.
If the service returns an enum value that is not available in the current SDK version,
pipelineExecutionStatus
will returnPipelineExecutionStatus.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available frompipelineExecutionStatusAsString()
.- Returns:
- The status of the pipeline execution.
- See Also:
PipelineExecutionStatus
-
pipelineExecutionStatusAsString
public final String pipelineExecutionStatusAsString()
The status of the pipeline execution.
If the service returns an enum value that is not available in the current SDK version,
pipelineExecutionStatus
will returnPipelineExecutionStatus.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available frompipelineExecutionStatusAsString()
.- Returns:
- The status of the pipeline execution.
- See Also:
PipelineExecutionStatus
-
pipelineExecutionDescription
public final String pipelineExecutionDescription()
The description of the pipeline execution.
- Returns:
- The description of the pipeline execution.
-
pipelineExecutionDisplayName
public final String pipelineExecutionDisplayName()
The display name of the pipeline execution.
- Returns:
- The display name of the pipeline execution.
-
pipelineExecutionFailureReason
public final String pipelineExecutionFailureReason()
A message generated by SageMaker Pipelines describing why the pipeline execution failed.
- Returns:
- A message generated by SageMaker Pipelines describing why the pipeline execution failed.
-
toBuilder
public PipelineExecutionSummary.Builder toBuilder()
- Specified by:
toBuilder
in interfaceToCopyableBuilder<PipelineExecutionSummary.Builder,PipelineExecutionSummary>
-
builder
public static PipelineExecutionSummary.Builder builder()
-
serializableBuilderClass
public static Class<? extends PipelineExecutionSummary.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.
-
-