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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnActionMixinPropsstatic final classAn implementation forCfnActionMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnActionMixinProps.Builderbuilder()default StringThe name of the action.default StringThe action type.default StringThe description of the action.default ObjectReturns union: eitherIResolvableorCfnActionPropsMixin.MetadataPropertiesPropertydefault ObjectA list of properties to add to the action.default ObjectReturns union: eitherIResolvableorCfnActionPropsMixin.ActionSourcePropertydefault StringThe status of the action.getTags()A list of tags to apply to the action.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getActionName
The name of the action.Must be unique to your account in an AWS Region.
- See Also:
-
getActionType
The action type.- See Also:
-
getDescription
The description of the action.- See Also:
-
getMetadataProperties
Returns union: eitherIResolvableorCfnActionPropsMixin.MetadataPropertiesProperty- See Also:
-
getProperties
A list of properties to add to the action.Returns union: either
IResolvableor Mapinvalid input: '<'String,String>- See Also:
-
getSource
Returns union: eitherIResolvableorCfnActionPropsMixin.ActionSourceProperty- See Also:
-
getStatus
The status of the action.- See Also:
-
getTags
A list of tags to apply to the action.- See Also:
-
builder
- Returns:
- a
CfnActionMixinProps.BuilderofCfnActionMixinProps
-