public static interface CfnPipeline.ActionTypeIdProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnPipeline.ActionTypeIdProperty.Builder
A builder for
CfnPipeline.ActionTypeIdProperty |
static class |
CfnPipeline.ActionTypeIdProperty.Jsii$Proxy
An implementation for
CfnPipeline.ActionTypeIdProperty |
Modifier and Type | Method and Description |
---|---|
static CfnPipeline.ActionTypeIdProperty.Builder |
builder() |
java.lang.String |
getCategory()
A category defines what kind of action can be taken in the stage, and constrains the provider type for the action.
|
java.lang.String |
getOwner()
The creator of the action being called.
|
java.lang.String |
getProvider()
The provider of the service being called by the action.
|
java.lang.String |
getVersion()
A string that describes the action version.
|
java.lang.String getCategory()
Valid categories are limited to one of the values below.
Source
Build
Test
Deploy
Invoke
Approval
java.lang.String getOwner()
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 .
java.lang.String getProvider()
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 .
java.lang.String getVersion()
static CfnPipeline.ActionTypeIdProperty.Builder builder()