Interface CfnPipeline.PipelineDefinitionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPipeline.PipelineDefinitionProperty.Jsii$Proxy
- Enclosing class:
CfnPipeline
@Stability(Stable)
public static interface CfnPipeline.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.services.sagemaker.*;
PipelineDefinitionProperty pipelineDefinitionProperty = PipelineDefinitionProperty.builder()
.pipelineDefinitionBody("pipelineDefinitionBody")
// the properties below are optional
.pipelineDefinitionS3Location(S3LocationProperty.builder()
.bucket("bucket")
.key("key")
// the properties below are optional
.eTag("eTag")
.version("version")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPipeline.PipelineDefinitionPropertystatic final classAn implementation forCfnPipeline.PipelineDefinitionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The 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
IResolvableorCfnPipeline.S3LocationProperty- See Also:
-
builder
-