Class CodePipelineActionFactoryResult
The result of adding actions to the pipeline.
Inheritance
Implements
Namespace: Amazon.CDK.Pipelines
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CodePipelineActionFactoryResult : Object, ICodePipelineActionFactoryResult
Syntax (vb)
Public Class CodePipelineActionFactoryResult
Inherits Object
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
Code |
Properties
Project | If a CodeBuild project got created, the project. |
Run |
How many RunOrders were consumed. |
Constructors
CodePipelineActionFactoryResult()
public CodePipelineActionFactoryResult()
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
System.
Remarks
If you add 1 action, return the value 1 here.