@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-03-22T19:35:39.966Z") public class CfnPipeline extends CfnResource implements IInspectable
The AWS::SageMaker::Pipeline
resource creates shell scripts that run when you create and/or start a SageMaker Pipeline. For information about SageMaker Pipelines, see SageMaker Pipelines in the Amazon SageMaker Developer Guide .
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.sagemaker.*; Object parallelismConfiguration; Object pipelineDefinition; CfnPipeline cfnPipeline = CfnPipeline.Builder.create(this, "MyCfnPipeline") .pipelineDefinition(pipelineDefinition) .pipelineName("pipelineName") .roleArn("roleArn") // the properties below are optional .parallelismConfiguration(parallelismConfiguration) .pipelineDescription("pipelineDescription") .pipelineDisplayName("pipelineDisplayName") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
Modifier and Type | Class and Description |
---|---|
static class |
CfnPipeline.Builder
A fluent builder for
CfnPipeline . |
static interface |
CfnPipeline.ParallelismConfigurationProperty
Configuration that controls the parallelism of the pipeline.
|
static interface |
CfnPipeline.PipelineDefinitionProperty
Example:
|
static interface |
CfnPipeline.S3LocationProperty
Example:
|
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy
IConstruct.Jsii$Default
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
|
Modifier | Constructor and Description |
---|---|
|
CfnPipeline(Construct scope,
java.lang.String id,
CfnPipelineProps props)
Create a new `AWS::SageMaker::Pipeline`.
|
protected |
CfnPipeline(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
CfnPipeline(software.amazon.jsii.JsiiObjectRef objRef) |
Modifier and Type | Method and Description |
---|---|
protected java.util.Map<java.lang.String,java.lang.Object> |
getCfnProperties() |
java.lang.Object |
getParallelismConfiguration()
`AWS::SageMaker::Pipeline.ParallelismConfiguration`.
|
java.lang.Object |
getPipelineDefinition()
The definition of the pipeline.
|
java.lang.String |
getPipelineDescription()
The description of the pipeline.
|
java.lang.String |
getPipelineDisplayName()
The display name of the pipeline.
|
java.lang.String |
getPipelineName()
The name of the pipeline.
|
java.lang.String |
getRoleArn()
The Amazon Resource Name (ARN) of the IAM role used to execute the pipeline.
|
TagManager |
getTags()
The tags of the pipeline.
|
void |
inspect(TreeInspector inspector)
Examines the CloudFormation resource and discloses attributes.
|
protected java.util.Map<java.lang.String,java.lang.Object> |
renderProperties(java.util.Map<java.lang.String,java.lang.Object> props) |
void |
setParallelismConfiguration(java.lang.Object value)
`AWS::SageMaker::Pipeline.ParallelismConfiguration`.
|
void |
setPipelineDefinition(java.lang.Object value)
The definition of the pipeline.
|
void |
setPipelineDescription(java.lang.String value)
The description of the pipeline.
|
void |
setPipelineDisplayName(java.lang.String value)
The display name of the pipeline.
|
void |
setPipelineName(java.lang.String value)
The name of the pipeline.
|
void |
setRoleArn(java.lang.String value)
The Amazon Resource Name (ARN) of the IAM role used to execute the pipeline.
|
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, isCfnResource, shouldSynthesize, toString, validateProperties
getRef
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validate
public static final java.lang.String CFN_RESOURCE_TYPE_NAME
protected CfnPipeline(software.amazon.jsii.JsiiObjectRef objRef)
protected CfnPipeline(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
public CfnPipeline(Construct scope, java.lang.String id, CfnPipelineProps props)
scope
- - scope in which this resource is defined. This parameter is required.id
- - scoped id of the resource. This parameter is required.props
- - resource properties. This parameter is required.public void inspect(TreeInspector inspector)
inspect
in interface IInspectable
inspector
- - tree inspector to collect and process attributes. This parameter is required.protected java.util.Map<java.lang.String,java.lang.Object> renderProperties(java.util.Map<java.lang.String,java.lang.Object> props)
renderProperties
in class CfnResource
props
- This parameter is required.protected java.util.Map<java.lang.String,java.lang.Object> getCfnProperties()
getCfnProperties
in class CfnResource
public TagManager getTags()
public java.lang.Object getParallelismConfiguration()
public void setParallelismConfiguration(java.lang.Object value)
public java.lang.Object getPipelineDefinition()
This can be either a JSON string or an Amazon S3 location.
public void setPipelineDefinition(java.lang.Object value)
This can be either a JSON string or an Amazon S3 location.
public java.lang.String getPipelineName()
public void setPipelineName(java.lang.String value)
public java.lang.String getRoleArn()
public void setRoleArn(java.lang.String value)
public java.lang.String getPipelineDescription()
public void setPipelineDescription(java.lang.String value)
public java.lang.String getPipelineDisplayName()
public void setPipelineDisplayName(java.lang.String value)