Interface IAction.Jsii$Default

All Superinterfaces:
IAction, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
IAction.Jsii$Proxy
Enclosing interface:
IAction

@Internal public static interface IAction.Jsii$Default extends IAction
Internal default implementation for IAction.
  • Method Details

    • getActionProperties

      @Stability(Stable) @NotNull default ActionProperties getActionProperties()
      The simple properties of the Action, like its Owner, name, etc.

      Note that this accessor will be called before the bind callback.

      Specified by:
      getActionProperties in interface IAction
    • bind

      @Stability(Stable) @NotNull default ActionConfig bind(@NotNull software.constructs.Construct scope, @NotNull IStage stage, @NotNull ActionBindOptions options)
      The callback invoked when this Action is added to a Pipeline.

      Specified by:
      bind in interface IAction
      Parameters:
      scope - the Construct tree scope the Action can use if it needs to create any resources. This parameter is required.
      stage - the IStage this Action is being added to. This parameter is required.
      options - additional options the Action can use, like the artifact Bucket of the pipeline it's being added to. This parameter is required.
    • onStateChange

      @Stability(Stable) @NotNull default Rule onStateChange(@NotNull String name, @Nullable IRuleTarget target, @Nullable RuleProps options)
      Creates an Event that will be triggered whenever the state of this Action changes.

      Specified by:
      onStateChange in interface IAction
      Parameters:
      name - the name to use for the new Event. This parameter is required.
      target - the optional target for the Event.
      options - additional options that can be used to customize the created Event.