Interface CfnPipeline.ActionTypeIdProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPipeline.ActionTypeIdProperty.Jsii$Proxy
Enclosing class:
CfnPipeline

@Stability(Stable) public static interface CfnPipeline.ActionTypeIdProperty extends software.amazon.jsii.JsiiSerializable
Represents information about an action type.

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.*;
 ActionTypeIdProperty actionTypeIdProperty = ActionTypeIdProperty.builder()
         .category("category")
         .owner("owner")
         .provider("provider")
         .version("version")
         .build();
 
  • Method Details

    • getCategory

      @Stability(Stable) @NotNull String getCategory()
      A category defines what kind of action can be taken in the stage, and constrains the provider type for the action.

      Valid categories are limited to one of the values below.

      • Source
      • Build
      • Test
      • Deploy
      • Invoke
      • Approval
    • getOwner

      @Stability(Stable) @NotNull String getOwner()
      The creator of the action being called.

      There are three valid values for the Owner field in the action category section within your pipeline structure: AWS , ThirdParty , and Custom . For more information, see Valid Action Types and Providers in CodePipeline .

    • getProvider

      @Stability(Stable) @NotNull String getProvider()
      The provider of the service being called by the action.

      Valid providers are determined by the action category. For example, an action in the Deploy category type might have a provider of CodeDeploy, which would be specified as CodeDeploy . For more information, see Valid Action Types and Providers in CodePipeline .

    • getVersion

      @Stability(Stable) @NotNull String getVersion()
      A string that describes the action version.
    • builder

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