Interface OnImageScanCompletedOptions

All Superinterfaces:
EventCommonOptions, software.amazon.jsii.JsiiSerializable, OnEventOptions
All Known Implementing Classes:
OnImageScanCompletedOptions.Jsii$Proxy

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:16.209Z") @Stability(Stable) public interface OnImageScanCompletedOptions extends software.amazon.jsii.JsiiSerializable, OnEventOptions
Options for the OnImageScanCompleted method.

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.ecr.*;
 import software.amazon.awscdk.services.events.*;
 import software.constructs.*;
 Construct construct;
 Object detail;
 IRuleTarget ruleTarget;
 OnImageScanCompletedOptions onImageScanCompletedOptions = OnImageScanCompletedOptions.builder()
         .crossStackScope(construct)
         .description("description")
         .eventPattern(EventPattern.builder()
                 .account(List.of("account"))
                 .detail(Map.of(
                         "detailKey", detail))
                 .detailType(List.of("detailType"))
                 .id(List.of("id"))
                 .region(List.of("region"))
                 .resources(List.of("resources"))
                 .source(List.of("source"))
                 .time(List.of("time"))
                 .version(List.of("version"))
                 .build())
         .imageTags(List.of("imageTags"))
         .ruleName("ruleName")
         .target(ruleTarget)
         .build();