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:



38715
38716
38717
38718
38719
38720
# File 'lib/aws-sdk-sagemaker/types.rb', line 38715

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`.

This field is required if the steps you specify for ‘SelectedSteps` depend on output collaterals from any non-specified pipeline steps. For more information, see [Selective Execution for Pipeline Steps].

[1]: docs.aws.amazon.com/sagemaker/latest/dg/pipelines-selective-ex.html

Returns:

  • (String)


38715
38716
38717
38718
38719
38720
# File 'lib/aws-sdk-sagemaker/types.rb', line 38715

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