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
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. |