Interface CfnCustomActionTypeProps

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:37.903Z") @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();
 
  • Method Details

    • getCategory

      @Stability(Stable) @NotNull String getCategory()
      The category of the custom action, such as a build action or a test action.
    • getInputArtifactDetails

      @Stability(Stable) @NotNull Object getInputArtifactDetails()
      The details of the input artifact for the action, such as its commit ID.
    • getOutputArtifactDetails

      @Stability(Stable) @NotNull Object getOutputArtifactDetails()
      The details of the output artifact of the action, such as its commit ID.
    • getProvider

      @Stability(Stable) @NotNull String getProvider()
      The provider of the service used in the custom action, such as CodeDeploy.
    • getVersion

      @Stability(Stable) @NotNull String getVersion()
      The version identifier of the custom action.
    • getConfigurationProperties

      @Stability(Stable) @Nullable default Object 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 .

    • getSettings

      @Stability(Stable) @Nullable default Object getSettings()
      URLs that provide users information about this custom action.
    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      The tags for the custom action.
    • builder

      @Stability(Stable) static CfnCustomActionTypeProps.Builder builder()
      Returns:
      a CfnCustomActionTypeProps.Builder of CfnCustomActionTypeProps