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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPipeline.ActionTypeIdProperty
static final class
An implementation forCfnPipeline.ActionTypeIdProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
A category defines what kind of action can be taken in the stage, and constrains the provider type for the action.getOwner()
The creator of the action being called.The provider of the service being called by the action.A string that describes the action version.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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
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
, andCustom
. For more information, see Valid Action Types and Providers in CodePipeline . -
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
A string that describes the action version. -
builder
-