@Stability(value=Stable)
public static interface CfnPipeline.ActionTypeIdProperty
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.*;
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() |
String |
getCategory()
A category defines what kind of action can be taken in the stage, and constrains the provider type for the action.
|
String |
getOwner()
The creator of the action being called.
|
String |
getProvider()
The provider of the service being called by the action.
|
String |
getVersion()
A string that describes the action version.
|
@Stability(value=Stable) @NotNull String getCategory()
Valid categories are limited to one of the values below.
SourceBuildTestDeployInvokeApproval@Stability(value=Stable) @NotNull 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 .
@Stability(value=Stable) @NotNull 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 .
@Stability(value=Stable) @NotNull String getVersion()
@Stability(value=Stable) static CfnPipeline.ActionTypeIdProperty.Builder builder()
Copyright © 2022. All rights reserved.