Interface CfnRule.SageMakerPipelineParametersProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRule.SageMakerPipelineParametersProperty.Jsii$Proxy
Enclosing class:
CfnRule

@Stability(Stable) public static interface CfnRule.SageMakerPipelineParametersProperty extends software.amazon.jsii.JsiiSerializable
These are custom parameters to use when the target is a SageMaker Model Building Pipeline that starts based on EventBridge events.

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.events.*;
 SageMakerPipelineParametersProperty sageMakerPipelineParametersProperty = SageMakerPipelineParametersProperty.builder()
         .pipelineParameterList(List.of(SageMakerPipelineParameterProperty.builder()
                 .name("name")
                 .value("value")
                 .build()))
         .build();
 

See Also: