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: