Interface CfnTrigger.ActionProperty

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

@Stability(Stable) public static interface CfnTrigger.ActionProperty extends software.amazon.jsii.JsiiSerializable
Defines an action to be initiated by a trigger.

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.glue.*;
 Object arguments_;
 ActionProperty actionProperty = ActionProperty.builder()
         .arguments(arguments_)
         .crawlerName("crawlerName")
         .jobName("jobName")
         .notificationProperty(NotificationPropertyProperty.builder()
                 .notifyDelayAfter(123)
                 .build())
         .securityConfiguration("securityConfiguration")
         .timeout(123)
         .build();
 

See Also: