Interface CfnCustomActionTypeProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCustomActionTypeProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-10T13:40:00.864Z")
@Stability(Stable)
public interface CfnCustomActionTypeProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnCustomActionType.
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.codepipeline.*;
CfnCustomActionTypeProps cfnCustomActionTypeProps = CfnCustomActionTypeProps.builder()
.category("category")
.inputArtifactDetails(ArtifactDetailsProperty.builder()
.maximumCount(123)
.minimumCount(123)
.build())
.outputArtifactDetails(ArtifactDetailsProperty.builder()
.maximumCount(123)
.minimumCount(123)
.build())
.provider("provider")
.version("version")
// the properties below are optional
.configurationProperties(List.of(ConfigurationPropertiesProperty.builder()
.key(false)
.name("name")
.required(false)
.secret(false)
// the properties below are optional
.description("description")
.queryable(false)
.type("type")
.build()))
.settings(SettingsProperty.builder()
.entityUrlTemplate("entityUrlTemplate")
.executionUrlTemplate("executionUrlTemplate")
.revisionUrlTemplate("revisionUrlTemplate")
.thirdPartyConfigurationUrl("thirdPartyConfigurationUrl")
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCustomActionTypePropsstatic final classAn implementation forCfnCustomActionTypeProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The category of the custom action, such as a build action or a test action.default ObjectThe configuration properties for the custom action.The details of the input artifact for the action, such as its commit ID.The details of the output artifact of the action, such as its commit ID.The provider of the service used in the custom action, such as CodeDeploy.default ObjectURLs that provide users information about this custom action.getTags()The tags for the custom action.The version identifier of the custom action.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCategory
The category of the custom action, such as a build action or a test action.- See Also:
-
getInputArtifactDetails
The details of the input artifact for the action, such as its commit ID.Returns union: either
IResolvableorCfnCustomActionType.ArtifactDetailsProperty- See Also:
-
getOutputArtifactDetails
The details of the output artifact of the action, such as its commit ID.Returns union: either
IResolvableorCfnCustomActionType.ArtifactDetailsProperty- See Also:
-
getProvider
The provider of the service used in the custom action, such as CodeDeploy.- See Also:
-
getVersion
The version identifier of the custom action.- See Also:
-
getConfigurationProperties
The configuration properties for the custom action.You can refer to a name in the configuration properties of the custom action within the URL templates by following the format of {Config:name}, as long as the configuration property is both required and not secret. For more information, see Create a Custom Action for a Pipeline .
Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnCustomActionType.ConfigurationPropertiesProperty>- See Also:
-
getSettings
URLs that provide users information about this custom action.Returns union: either
IResolvableorCfnCustomActionType.SettingsProperty- See Also:
-
getTags
The tags for the custom action.- See Also:
-
builder
- Returns:
- a
CfnCustomActionTypeProps.BuilderofCfnCustomActionTypeProps
-