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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemaker/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:



45549
45550
45551
45552
45553
45554
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 45549

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.

Returns:

  • (String)


45549
45550
45551
45552
45553
45554
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 45549

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