@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-25T20:11:05.541Z") @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()
`AWS::CodePipeline::CustomActionType.Category`.
|
default Object |
getConfigurationProperties()
`AWS::CodePipeline::CustomActionType.ConfigurationProperties`.
|
Object |
getInputArtifactDetails()
`AWS::CodePipeline::CustomActionType.InputArtifactDetails`.
|
Object |
getOutputArtifactDetails()
`AWS::CodePipeline::CustomActionType.OutputArtifactDetails`.
|
String |
getProvider()
`AWS::CodePipeline::CustomActionType.Provider`.
|
default Object |
getSettings()
`AWS::CodePipeline::CustomActionType.Settings`.
|
default List<CfnTag> |
getTags()
`AWS::CodePipeline::CustomActionType.Tags`.
|
String |
getVersion()
`AWS::CodePipeline::CustomActionType.Version`.
|
@Stability(value=Stable) @NotNull String getCategory()
@Stability(value=Stable) @Nullable default Object getConfigurationProperties()
@Stability(value=Stable) @NotNull Object getInputArtifactDetails()
@Stability(value=Stable) @NotNull Object getOutputArtifactDetails()
@Stability(value=Stable) @NotNull String getProvider()
@Stability(value=Stable) @Nullable default Object getSettings()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) @NotNull String getVersion()
@Stability(value=Stable) static CfnCustomActionTypeProps.Builder builder()
CfnCustomActionTypeProps.Builder of CfnCustomActionTypePropsCopyright © 2021. All rights reserved.