Show / Hide Table of Contents

Enum ActionPoint

Defines Extension action points.

Namespace: Amazon.CDK.AWS.AppConfig
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public enum ActionPoint
Syntax (vb)
Public Enum ActionPoint
Remarks

See: https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions-about.html#working-with-appconfig-extensions-how-it-works-step-2

ExampleMetadata: infused

Examples
Function fn;


             new Extension(this, "MyExtension", new ExtensionProps {
                 Actions = new [] {
                     new Action(new ActionProps {
                         ActionPoints = new [] { ActionPoint.ON_DEPLOYMENT_START },
                         EventDestination = new LambdaDestination(fn)
                     }) }
             });

Synopsis

Fields

AT_DEPLOYMENT_TICK

Defines Extension action points.

ON_DEPLOYMENT_BAKING

Defines Extension action points.

ON_DEPLOYMENT_COMPLETE

Defines Extension action points.

ON_DEPLOYMENT_ROLLED_BACK

Defines Extension action points.

ON_DEPLOYMENT_START

Defines Extension action points.

ON_DEPLOYMENT_STEP

Defines Extension action points.

PRE_CREATE_HOSTED_CONFIGURATION_VERSION

Defines Extension action points.

PRE_START_DEPLOYMENT

Defines Extension action points.

Fields

Name Description
AT_DEPLOYMENT_TICK

Defines Extension action points.

ON_DEPLOYMENT_BAKING

Defines Extension action points.

ON_DEPLOYMENT_COMPLETE

Defines Extension action points.

ON_DEPLOYMENT_ROLLED_BACK

Defines Extension action points.

ON_DEPLOYMENT_START

Defines Extension action points.

ON_DEPLOYMENT_STEP

Defines Extension action points.

PRE_CREATE_HOSTED_CONFIGURATION_VERSION

Defines Extension action points.

PRE_START_DEPLOYMENT

Defines Extension action points.

Back to top Generated by DocFX