Class CfnCodeDeployBlueGreenLifecycleEventHooks
Lifecycle events for blue-green deployments.
public class CfnCodeDeployBlueGreenLifecycleEventHooks : ICfnCodeDeployBlueGreenLifecycleEventHooks
- Inheritance
-
CfnCodeDeployBlueGreenLifecycleEventHooks
- Implements
- Inherited Members
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"
};
Remarks
The type of the {@link CfnCodeDeployBlueGreenHookProps.lifecycleEventHooks} property.
ExampleMetadata: fixture=_generated
Constructors
CfnCodeDeployBlueGreenLifecycleEventHooks()
public CfnCodeDeployBlueGreenLifecycleEventHooks()
Properties
AfterAllowTestTraffic
Function to use to run tasks after the test listener serves traffic to the replacement task set.
public string? AfterAllowTestTraffic { get; set; }
Property Value
Remarks
Default: - none
AfterAllowTraffic
Function to use to run tasks after the second target group serves traffic to the replacement task set.
public string? AfterAllowTraffic { get; set; }
Property Value
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.
public string? AfterInstall { get; set; }
Property Value
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.
public string? BeforeAllowTraffic { get; set; }
Property Value
Remarks
Default: - none
BeforeInstall
Function to use to run tasks before the replacement task set is created.
public string? BeforeInstall { get; set; }
Property Value
Remarks
Default: - none