SnsTopic

class aws_cdk.aws_events_targets.SnsTopic(topic, *, message=None)

Bases: object

Use an SNS topic as a target for Amazon EventBridge rules.

Example:

# publish to an SNS topic every time code is committed
# to a CodeCommit repository
repository.on_commit("onCommit", target=targets.SnsTopic(topic))
Parameters:
  • topic (ITopic) –

  • message (Optional[RuleTargetInput]) – The message to send to the topic. Default: the entire EventBridge event

Methods

bind(_rule, _id=None)

Returns a RuleTarget that can be used to trigger this SNS topic as a result from an EventBridge event.

Parameters:
  • _rule (IRule) –

  • _id (Optional[str]) –

See:

https://docs.aws.amazon.com/eventbridge/latest/userguide/resource-based-policies-eventbridge.html#sns-permissions

Return type:

RuleTargetConfig

Attributes

topic