List Pipeline Execution Steps
| sagemaker_list_pipeline_execution_steps | R Documentation |
Gets a list of PipeLineExecutionStep objects¶
Description¶
Gets a list of PipeLineExecutionStep objects.
Usage¶
Arguments¶
PipelineExecutionArnThe Amazon Resource Name (ARN) of the pipeline execution.
NextTokenIf the result of the previous
list_pipeline_execution_stepsrequest was truncated, the response includes aNextToken. To retrieve the next set of pipeline execution steps, use the token in the next request.MaxResultsThe maximum number of pipeline execution steps to return in the response.
SortOrderThe field by which to sort results. The default is
CreatedTime.
Value¶
A list with the following syntax:
list(
PipelineExecutionSteps = list(
list(
StepName = "string",
StepDisplayName = "string",
StepDescription = "string",
StartTime = as.POSIXct(
"2015-01-01"
),
EndTime = as.POSIXct(
"2015-01-01"
),
StepStatus = "Starting"|"Executing"|"Stopping"|"Stopped"|"Failed"|"Succeeded",
CacheHitResult = list(
SourcePipelineExecutionArn = "string"
),
FailureReason = "string",
Metadata = list(
TrainingJob = list(
Arn = "string"
),
ProcessingJob = list(
Arn = "string"
),
TransformJob = list(
Arn = "string"
),
TuningJob = list(
Arn = "string"
),
Model = list(
Arn = "string"
),
RegisterModel = list(
Arn = "string"
),
Condition = list(
Outcome = "True"|"False"
),
Callback = list(
CallbackToken = "string",
SqsQueueUrl = "string",
OutputParameters = list(
list(
Name = "string",
Value = "string"
)
)
),
Lambda = list(
Arn = "string",
OutputParameters = list(
list(
Name = "string",
Value = "string"
)
)
),
EMR = list(
ClusterId = "string",
StepId = "string",
StepName = "string",
LogFilePath = "string"
),
QualityCheck = list(
CheckType = "string",
BaselineUsedForDriftCheckStatistics = "string",
BaselineUsedForDriftCheckConstraints = "string",
CalculatedBaselineStatistics = "string",
CalculatedBaselineConstraints = "string",
ModelPackageGroupName = "string",
ViolationReport = "string",
CheckJobArn = "string",
SkipCheck = TRUE|FALSE,
RegisterNewBaseline = TRUE|FALSE
),
ClarifyCheck = list(
CheckType = "string",
BaselineUsedForDriftCheckConstraints = "string",
CalculatedBaselineConstraints = "string",
ModelPackageGroupName = "string",
ViolationReport = "string",
CheckJobArn = "string",
SkipCheck = TRUE|FALSE,
RegisterNewBaseline = TRUE|FALSE
),
Fail = list(
ErrorMessage = "string"
),
AutoMLJob = list(
Arn = "string"
),
Endpoint = list(
Arn = "string"
),
EndpointConfig = list(
Arn = "string"
)
),
AttemptCount = 123,
SelectiveExecutionResult = list(
SourcePipelineExecutionArn = "string"
)
)
),
NextToken = "string"
)