Describe Pipeline Execution
sagemaker_describe_pipeline_execution | R Documentation |
Describes the details of a pipeline execution¶
Description¶
Describes the details of a pipeline execution.
Usage¶
Arguments¶
PipelineExecutionArn
[required] The Amazon Resource Name (ARN) of the pipeline execution.
Value¶
A list with the following syntax:
list(
PipelineArn = "string",
PipelineExecutionArn = "string",
PipelineExecutionDisplayName = "string",
PipelineExecutionStatus = "Executing"|"Stopping"|"Stopped"|"Failed"|"Succeeded",
PipelineExecutionDescription = "string",
PipelineExperimentConfig = list(
ExperimentName = "string",
TrialName = "string"
),
FailureReason = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
CreatedBy = list(
UserProfileArn = "string",
UserProfileName = "string",
DomainId = "string",
IamIdentity = list(
Arn = "string",
PrincipalId = "string",
SourceIdentity = "string"
)
),
LastModifiedBy = list(
UserProfileArn = "string",
UserProfileName = "string",
DomainId = "string",
IamIdentity = list(
Arn = "string",
PrincipalId = "string",
SourceIdentity = "string"
)
),
ParallelismConfiguration = list(
MaxParallelExecutionSteps = 123
),
SelectiveExecutionConfig = list(
SourcePipelineExecutionArn = "string",
SelectedSteps = list(
list(
StepName = "string"
)
)
)
)