Interface CfnDeploymentGroup.TriggerConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDeploymentGroup.TriggerConfigProperty.Jsii$Proxy
Enclosing class:
CfnDeploymentGroup

@Stability(Stable) public static interface CfnDeploymentGroup.TriggerConfigProperty extends software.amazon.jsii.JsiiSerializable
Information about notification triggers for the deployment group.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.codedeploy.*;
 TriggerConfigProperty triggerConfigProperty = TriggerConfigProperty.builder()
         .triggerEvents(List.of("triggerEvents"))
         .triggerName("triggerName")
         .triggerTargetArn("triggerTargetArn")
         .build();