CfnPipelineMixinProps
- class aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnPipelineMixinProps(*, parallelism_configuration=None, pipeline_definition=None, pipeline_description=None, pipeline_display_name=None, pipeline_name=None, role_arn=None, tags=None)
Bases:
objectProperties for CfnPipelinePropsMixin.
- Parameters:
parallelism_configuration (
Any) – The parallelism configuration applied to the pipeline.pipeline_definition (
Any) – The definition of the pipeline. This can be either a JSON string or an Amazon S3 location.pipeline_description (
Optional[str]) – The description of the pipeline.pipeline_display_name (
Optional[str]) – The display name of the pipeline.pipeline_name (
Optional[str]) – The name of the pipeline.role_arn (
Optional[str]) – The Amazon Resource Name (ARN) of the IAM role used to execute the pipeline.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags of the pipeline.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-pipeline.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_sagemaker import mixins as sagemaker_mixins # parallelism_configuration: Any # pipeline_definition: Any cfn_pipeline_mixin_props = sagemaker_mixins.CfnPipelineMixinProps( parallelism_configuration=parallelism_configuration, pipeline_definition=pipeline_definition, pipeline_description="pipelineDescription", pipeline_display_name="pipelineDisplayName", pipeline_name="pipelineName", role_arn="roleArn", tags=[CfnTag( key="key", value="value" )] )
Attributes
- parallelism_configuration
The parallelism configuration applied to the pipeline.
- pipeline_definition
The definition of the pipeline.
This can be either a JSON string or an Amazon S3 location.
- pipeline_description
The description of the pipeline.
- pipeline_display_name
The display name of the pipeline.
- pipeline_name
The name of the pipeline.
- role_arn
The Amazon Resource Name (ARN) of the IAM role used to execute the pipeline.
- tags
The tags of the pipeline.