Interface CfnActionMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnActionMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-08-10T14:51:25.761Z") @Stability(Stable) public interface CfnActionMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnActionPropsMixin.

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.*;
 CfnActionMixinProps cfnActionMixinProps = CfnActionMixinProps.builder()
         .actionName("actionName")
         .actionType("actionType")
         .description("description")
         .metadataProperties(MetadataPropertiesProperty.builder()
                 .commitId("commitId")
                 .generatedBy("generatedBy")
                 .projectId("projectId")
                 .repository("repository")
                 .build())
         .properties(Map.of(
                 "propertiesKey", "properties"))
         .source(ActionSourceProperty.builder()
                 .sourceId("sourceId")
                 .sourceType("sourceType")
                 .sourceUri("sourceUri")
                 .build())
         .status("status")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: