【发布时间】:2020-07-24 14:18:09
【问题描述】:
我正在尝试使用 CDK 创建一个简单的堆栈,其中代码管道触发 lambda。
我在尝试设置 CfnNotificationRule 的目标时遇到了困难:
THE_PIPELINE_ARN = "arn:aws:codepipeline:eu-west-2:121212121212:the-pipeline"
class ExampleStack(core.Stack):
def __init__(self, scope: core.Construct, id: str, **kwargs) -> None:
super().__init__(scope, id, **kwargs)
notification_topic = aws_sns.Topic(self, "TheNotificationTopic")
notification_rule = aws_codestarnotifications.CfnNotificationRule(
self,
"StackStatusChangeNotificationRule",
detail_type="FULL",
event_type_ids=[
"codepipeline-pipeline-action-execution-succeeded",
"codepipeline-pipeline-action-execution-failed",
],
name="TheStackCodeStarNotificationsNotificationRule",
resource=THE_PIPELINE_ARN,
targets= # what goes here?
)
我希望通知转到由 notification_topic 定义的 SNS 主题。
我认为这应该是基于 aws_cdk.aws_codestarnotifications.TargetProperty https://docs.aws.amazon.com/cdk/api/latest/docs/@aws-cdk_aws-codestarnotifications.CfnNotificationRule.TargetProperty.html 但 Python 似乎不存在该类型。
【问题讨论】: