interface CfnPipelineMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnPipelineMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnPipelineMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnPipelineMixinProps |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnPipelineMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnPipelineMixinProps |
Properties for CfnPipelinePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-pipeline.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
declare const parallelismConfiguration: any;
declare const pipelineDefinition: any;
const cfnPipelineMixinProps: sagemaker_mixins.CfnPipelineMixinProps = {
parallelismConfiguration: parallelismConfiguration,
pipelineDefinition: pipelineDefinition,
pipelineDescription: 'pipelineDescription',
pipelineDisplayName: 'pipelineDisplayName',
pipelineName: 'pipelineName',
roleArn: 'roleArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| parallelism | any | The parallelism configuration applied to the pipeline. |
| pipeline | any | The definition of the pipeline. |
| pipeline | string | The description of the pipeline. |
| pipeline | string | The display name of the pipeline. |
| pipeline | string | The name of the pipeline. |
| role | string | The Amazon Resource Name (ARN) of the IAM role used to execute the pipeline. |
| tags? | Cfn[] | The tags of the pipeline. |
parallelismConfiguration?
Type:
any
(optional)
The parallelism configuration applied to the pipeline.
pipelineDefinition?
Type:
any
(optional)
The definition of the pipeline.
This can be either a JSON string or an Amazon S3 location.
pipelineDescription?
Type:
string
(optional)
The description of the pipeline.
pipelineDisplayName?
Type:
string
(optional)
The display name of the pipeline.
pipelineName?
Type:
string
(optional)
The name of the pipeline.
roleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the IAM role used to execute the pipeline.
tags?
Type:
Cfn[]
(optional)
The tags of the pipeline.

.NET
Go
Java
Python
TypeScript