You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Feature] Introduce ProcessingStep to use SageMaker Processing Job (aws#68)
* Add ProcessingStep for SageMaker Processing Job
* Add integration test for ProcessingStep
* Update the doc for ProcessingStep
* Upgrade SageMaker version to have all the fixes for ProcessingStep
* Fix the failed unit tests
state_id (str): State name whose length **must be** less than or equal to 128 unicode characters. State names **must be** unique within the scope of the whole state machine.
371
+
processor (sagemaker.processing.Processor): The processor for the processing step.
372
+
job_name (str or Placeholder): Specify a processing job name, this is required for the processing job to run. We recommend to use :py:class:`~stepfunctions.inputs.ExecutionInput` placeholder collection to pass the value dynamically in each execution.
373
+
inputs (list[:class:`~sagemaker.processing.ProcessingInput`]): Input files for
experiment_config (dict, optional): Specify the experiment config for the processing. (Default: None)
380
+
container_arguments ([str]): The arguments for a container used to run a processing job.
381
+
container_entrypoint ([str]): The entrypoint for a container used to run a processing job.
382
+
kms_key_id (str): The AWS Key Management Service (AWS KMS) key that Amazon SageMaker
383
+
uses to encrypt the processing job output. KmsKeyId can be an ID of a KMS key,
384
+
ARN of a KMS key, alias of a KMS key, or alias of a KMS key.
385
+
The KmsKeyId is applied to all outputs.
386
+
wait_for_completion (bool, optional): Boolean value set to `True` if the Task state should wait for the processing job to complete before proceeding to the next step in the workflow. Set to `False` if the Task state should submit the processing job and proceed to the next step. (default: True)
387
+
tags (list[dict], optional): `List to tags <https://docs.aws.amazon.com/sagemaker/latest/dg/API_Tag.html>`_ to associate with the resource.
0 commit comments