@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.310Z") @Stability(value=Stable) public interface OnEventOptions extends software.amazon.jsii.JsiiSerializable, EventCommonOptions
Example:
// Lambda function containing logic that evaluates compliance with the rule.
Function evalComplianceFn = Function.Builder.create(this, "CustomFunction")
.code(AssetCode.fromInline("exports.handler = (event) => console.log(event);"))
.handler("index.handler")
.runtime(Runtime.NODEJS_14_X)
.build();
// A custom rule that runs on configuration changes of EC2 instances
CustomRule customRule = CustomRule.Builder.create(this, "Custom")
.configurationChanges(true)
.lambdaFunction(evalComplianceFn)
.ruleScope(RuleScope.fromResource(ResourceType.EC2_INSTANCE))
.build();
// A rule to detect stack drifts
CloudFormationStackDriftDetectionCheck driftRule = new CloudFormationStackDriftDetectionCheck(this, "Drift");
// Topic to which compliance notification events will be published
Topic complianceTopic = new Topic(this, "ComplianceTopic");
// Send notification on compliance change events
driftRule.onComplianceChange("ComplianceChange", OnEventOptions.builder()
.target(new SnsTopic(complianceTopic))
.build());
| Modifier and Type | Interface and Description |
|---|---|
static class |
OnEventOptions.Builder
A builder for
OnEventOptions |
static class |
OnEventOptions.Jsii$Proxy
An implementation for
OnEventOptions |
| Modifier and Type | Method and Description |
|---|---|
static OnEventOptions.Builder |
builder() |
default IRuleTarget |
getTarget()
The target to register for the event.
|
getCrossStackScope, getDescription, getEventPattern, getRuleName@Stability(value=Stable) @Nullable default IRuleTarget getTarget()
Default: - No target is added to the rule. Use `addTarget()` to add a target.
@Stability(value=Stable) static OnEventOptions.Builder builder()
builder in interface EventCommonOptionsOnEventOptions.Builder of OnEventOptionsCopyright © 2022. All rights reserved.