Class: Aws::SageMaker::Types::SelectiveExecutionConfig

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

The selective execution configuration applied to the pipeline run.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#selected_stepsArray<Types::SelectedStep>

A list of pipeline steps to run. All step(s) in all path(s) between two selected steps should be included.

Returns:



36266
36267
36268
36269
36270
36271
# File 'lib/aws-sdk-sagemaker/types.rb', line 36266

class SelectiveExecutionConfig < Struct.new(
  :source_pipeline_execution_arn,
  :selected_steps)
  SENSITIVE = []
  include Aws::Structure
end

#source_pipeline_execution_arnString

The ARN from a reference execution of the current pipeline. Used to copy input collaterals needed for the selected steps to run. The execution status of the pipeline can be either ‘Failed` or `Success`.

Returns:

  • (String)


36266
36267
36268
36269
36270
36271
# File 'lib/aws-sdk-sagemaker/types.rb', line 36266

class SelectiveExecutionConfig < Struct.new(
  :source_pipeline_execution_arn,
  :selected_steps)
  SENSITIVE = []
  include Aws::Structure
end