| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| """Pipeline parameters and conditions for workflow.""" |
| from __future__ import absolute_import |
|
|
| from typing import List |
| from sagemaker.workflow.entities import ( |
| RequestType, |
| PipelineVariable, |
| ) |
|
|
|
|
| class ExecutionVariable(PipelineVariable): |
| """Pipeline execution variables for workflow.""" |
|
|
| def __init__(self, name: str): |
| """Create a pipeline execution variable. |
| |
| Args: |
| name (str): The name of the execution variable. |
| """ |
| self.name = name |
|
|
| def __eq__(self, other): |
| """Override default equals method""" |
| if not isinstance(other, ExecutionVariable): |
| return NotImplemented |
| return self.name == other.name |
|
|
| def to_string(self) -> PipelineVariable: |
| """Prompt the pipeline to convert the pipeline variable to String in runtime |
| |
| As ExecutionVariable is treated as String in runtime, no extra actions are needed. |
| """ |
| return self |
|
|
| @property |
| def expr(self) -> RequestType: |
| """The 'Get' expression dict for an `ExecutionVariable`.""" |
| return {"Get": f"Execution.{self.name}"} |
|
|
| @property |
| def _referenced_steps(self) -> List[str]: |
| """List of step names that this function depends on.""" |
| return [] |
|
|
|
|
| class ExecutionVariables: |
| """Provide access to all available execution variables: |
| |
| - ExecutionVariables.START_DATETIME |
| - ExecutionVariables.CURRENT_DATETIME |
| - ExecutionVariables.PIPELINE_NAME |
| - ExecutionVariables.PIPELINE_ARN |
| - ExecutionVariables.PIPELINE_EXECUTION_ID |
| - ExecutionVariables.PIPELINE_EXECUTION_ARN |
| - ExecutionVariables.TRAINING_JOB_NAME |
| - ExecutionVariables.PROCESSING_JOB_NAME |
| """ |
|
|
| START_DATETIME = ExecutionVariable("StartDateTime") |
| CURRENT_DATETIME = ExecutionVariable("CurrentDateTime") |
| PIPELINE_NAME = ExecutionVariable("PipelineName") |
| PIPELINE_ARN = ExecutionVariable("PipelineArn") |
| PIPELINE_EXECUTION_ID = ExecutionVariable("PipelineExecutionId") |
| PIPELINE_EXECUTION_ARN = ExecutionVariable("PipelineExecutionArn") |
| TRAINING_JOB_NAME = ExecutionVariable("TrainingJobName") |
| PROCESSING_JOB_NAME = ExecutionVariable("ProcessingJobName") |
|
|