Show / Hide Table of Contents

Class CodePipelineActionFactoryResult

The result of adding actions to the pipeline.

Inheritance
object
CodePipelineActionFactoryResult
Implements
ICodePipelineActionFactoryResult
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

IProject

Remarks

Default: - This factory did not create a CodeBuild project

RunOrdersConsumed

How many RunOrders were consumed.

public double RunOrdersConsumed { get; set; }
Property Value

double

Remarks

If you add 1 action, return the value 1 here.

Implements

ICodePipelineActionFactoryResult
Back to top Generated by DocFX