Interface CfnPipelinePropsMixin.PipelineDefinitionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPipelinePropsMixin.PipelineDefinitionProperty.Jsii$Proxy
- Enclosing class:
CfnPipelinePropsMixin
@Stability(Stable)
public static interface CfnPipelinePropsMixin.PipelineDefinitionProperty
extends software.amazon.jsii.JsiiSerializable
The definition of the pipeline.
This can be either a JSON string or an Amazon S3 location.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.sagemaker.*;
PipelineDefinitionProperty pipelineDefinitionProperty = PipelineDefinitionProperty.builder()
.pipelineDefinitionBody("pipelineDefinitionBody")
.pipelineDefinitionS3Location(S3LocationProperty.builder()
.bucket("bucket")
.eTag("eTag")
.key("key")
.version("version")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPipelinePropsMixin.PipelineDefinitionPropertystatic final classAn implementation forCfnPipelinePropsMixin.PipelineDefinitionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe JSON pipeline definition of the pipeline.default ObjectThe location of the pipeline definition stored in Amazon S3.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPipelineDefinitionBody
The JSON pipeline definition of the pipeline.- See Also:
-
getPipelineDefinitionS3Location
The location of the pipeline definition stored in Amazon S3.If specified, SageMaker retrieves the pipeline definition from this location.
Returns union: either
IResolvableorCfnPipelinePropsMixin.S3LocationProperty- See Also:
-
builder
-