@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:37.456Z") @Stability(value=Stable) public interface CfnCustomActionTypeProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnCustomActionTypeProps.Builder
A builder for
CfnCustomActionTypeProps |
static class |
CfnCustomActionTypeProps.Jsii$Proxy
An implementation for
CfnCustomActionTypeProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnCustomActionTypeProps.Builder |
builder() |
String |
getCategory()
The category of the custom action, such as a build action or a test action.
|
default Object |
getConfigurationProperties()
The configuration properties for the custom action.
|
Object |
getInputArtifactDetails()
The details of the input artifact for the action, such as its commit ID.
|
Object |
getOutputArtifactDetails()
The details of the output artifact of the action, such as its commit ID.
|
String |
getProvider()
The provider of the service used in the custom action, such as CodeDeploy.
|
default Object |
getSettings()
URLs that provide users information about this custom action.
|
default List<CfnTag> |
getTags()
The tags for the custom action.
|
String |
getVersion()
The version identifier of the custom action.
|
@Stability(value=Stable) @NotNull String getCategory()
@Stability(value=Stable) @NotNull Object getInputArtifactDetails()
@Stability(value=Stable) @NotNull Object getOutputArtifactDetails()
@Stability(value=Stable) @NotNull String getProvider()
@Stability(value=Stable) @NotNull String getVersion()
@Stability(value=Stable) @Nullable default Object getConfigurationProperties()
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 .
@Stability(value=Stable) @Nullable default Object getSettings()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnCustomActionTypeProps.Builder builder()
CfnCustomActionTypeProps.Builder of CfnCustomActionTypePropsCopyright © 2022. All rights reserved.