Show / Hide Table of Contents

Interface ICfnCodeDeployBlueGreenLifecycleEventHooks

Lifecycle events for blue-green deployments.

Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnCodeDeployBlueGreenLifecycleEventHooks
Syntax (vb)
Public Interface ICfnCodeDeployBlueGreenLifecycleEventHooks
Remarks

The type of the CfnCodeDeployBlueGreenHookProps.lifecycleEventHooks property.

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;

             var cfnCodeDeployBlueGreenLifecycleEventHooks = new CfnCodeDeployBlueGreenLifecycleEventHooks {
                 AfterAllowTestTraffic = "afterAllowTestTraffic",
                 AfterAllowTraffic = "afterAllowTraffic",
                 AfterInstall = "afterInstall",
                 BeforeAllowTraffic = "beforeAllowTraffic",
                 BeforeInstall = "beforeInstall"
             };

Synopsis

Properties

AfterAllowTestTraffic

Function to use to run tasks after the test listener serves traffic to the replacement task set.

AfterAllowTraffic

Function to use to run tasks after the second target group serves traffic to the replacement task set.

AfterInstall

Function to use to run tasks after the replacement task set is created and one of the target groups is associated with it.

BeforeAllowTraffic

Function to use to run tasks after the second target group is associated with the replacement task set, but before traffic is shifted to the replacement task set.

BeforeInstall

Function to use to run tasks before the replacement task set is created.

Properties

AfterAllowTestTraffic

Function to use to run tasks after the test listener serves traffic to the replacement task set.

string? AfterAllowTestTraffic { get; }
Property Value

string

Remarks

Default: - none

AfterAllowTraffic

Function to use to run tasks after the second target group serves traffic to the replacement task set.

string? AfterAllowTraffic { get; }
Property Value

string

Remarks

Default: - none

AfterInstall

Function to use to run tasks after the replacement task set is created and one of the target groups is associated with it.

string? AfterInstall { get; }
Property Value

string

Remarks

Default: - none

BeforeAllowTraffic

Function to use to run tasks after the second target group is associated with the replacement task set, but before traffic is shifted to the replacement task set.

string? BeforeAllowTraffic { get; }
Property Value

string

Remarks

Default: - none

BeforeInstall

Function to use to run tasks before the replacement task set is created.

string? BeforeInstall { get; }
Property Value

string

Remarks

Default: - none

Back to top Generated by DocFX