Class CodePipelineActionFactoryResult
The result of adding actions to the pipeline.
Implements
Inherited Members
Namespace: Amazon.CDK.Pipelines
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CodePipelineActionFactoryResult : ICodePipelineActionFactoryResult
Syntax (vb)
Public Class CodePipelineActionFactoryResult Implements ICodePipelineActionFactoryResult
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CodeBuild;
using Amazon.CDK.Pipelines;
Project project;
var codePipelineActionFactoryResult = new CodePipelineActionFactoryResult {
RunOrdersConsumed = 123,
// the properties below are optional
Project = project
};
Synopsis
Constructors
CodePipelineActionFactoryResult() | The result of adding actions to the pipeline. |
Properties
Project | If a CodeBuild project got created, the project. |
RunOrdersConsumed | How many RunOrders were consumed. |
Constructors
CodePipelineActionFactoryResult()
The result of adding actions to the pipeline.
public CodePipelineActionFactoryResult()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CodeBuild;
using Amazon.CDK.Pipelines;
Project project;
var codePipelineActionFactoryResult = new CodePipelineActionFactoryResult {
RunOrdersConsumed = 123,
// the properties below are optional
Project = project
};
Properties
Project
If a CodeBuild project got created, the project.
public IProject? Project { get; set; }
Property Value
Remarks
Default: - This factory did not create a CodeBuild project
RunOrdersConsumed
How many RunOrders were consumed.
public double RunOrdersConsumed { get; set; }
Property Value
Remarks
If you add 1 action, return the value 1 here.