Show / Hide Table of Contents

Class ActionCategory

Inheritance
System.Object
ActionCategory
Namespace: Amazon.CDK.AWS.CodePipeline
Assembly: Amazon.CDK.AWS.CodePipeline.dll
Syntax (csharp)
public sealed class ActionCategory : Enum
Syntax (vb)
Public NotInheritable Class ActionCategory
    Inherits

     Enum
Remarks

ExampleMetadata: fixture=action infused

Examples
// MyAction is some action type that produces variables, like EcrSourceAction
MyAction myAction = new MyAction(new MyActionProps {
    // ...
    ActionName = "myAction"
});
new OtherAction(new OtherActionProps {
    // ...
    Config = myAction.Variables.MyVariable,
    ActionName = "otherAction"
});

Synopsis

Fields

APPROVAL
BUILD
DEPLOY
INVOKE
SOURCE
TEST
value__

Fields

APPROVAL

public const ActionCategory APPROVAL
Field Value
Type Description
ActionCategory

BUILD

public const ActionCategory BUILD
Field Value
Type Description
ActionCategory

DEPLOY

public const ActionCategory DEPLOY
Field Value
Type Description
ActionCategory

INVOKE

public const ActionCategory INVOKE
Field Value
Type Description
ActionCategory

SOURCE

public const ActionCategory SOURCE
Field Value
Type Description
ActionCategory

TEST

public const ActionCategory TEST
Field Value
Type Description
ActionCategory

value__

public int value__
Field Value
Type Description
System.Int32
Back to top Generated by DocFX