@Generated(value="jsii-pacmak/1.58.0 (build f8ba112)",
date="2022-05-13T01:13:40.803Z")
public interface CodePipelineActionFactoryResult
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.codebuild.*; import software.amazon.awscdk.pipelines.*; Project project; CodePipelineActionFactoryResult codePipelineActionFactoryResult = CodePipelineActionFactoryResult.builder() .runOrdersConsumed(123) // the properties below are optional .project(project) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CodePipelineActionFactoryResult.Builder
A builder for
CodePipelineActionFactoryResult |
static class |
CodePipelineActionFactoryResult.Jsii$Proxy
An implementation for
CodePipelineActionFactoryResult |
Modifier and Type | Method and Description |
---|---|
static CodePipelineActionFactoryResult.Builder |
builder() |
default IProject |
getProject()
If a CodeBuild project got created, the project.
|
java.lang.Number |
getRunOrdersConsumed()
How many RunOrders were consumed.
|
java.lang.Number getRunOrdersConsumed()
If you add 1 action, return the value 1 here.
default IProject getProject()
Default: - This factory did not create a CodeBuild project
static CodePipelineActionFactoryResult.Builder builder()