You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
f.StringVar(&c.Type, "type", "", `The type of the event stream destination. Only "sns" is supported at the moment.`)
30
-
f.StringVar(&c.RoleArn, "aws-iam-role-arn", "", "The ARN of the AWS IAM role to assume when publishing messages to the SNS topic.")
31
-
f.StringVar(&c.TopicArn, "aws-sns-topic-arn", "", "The ARN of the AWS SNS topic.")
55
+
f.StringVar(&c.Type, "type", "", `The type of the event stream destination. Supported values are "sns" for AWS SNS topics and "https" for generic HTTPS endpoints.`)
56
+
c.RoleArn=f.String("aws-iam-role-arn", "", "The ARN of the AWS IAM role to assume when publishing messages to the SNS topic.")
57
+
c.TopicArn=f.String("aws-sns-topic-arn", "", "The ARN of the AWS SNS topic.")
58
+
c.HttpsEndpoint=f.String("https-endpoint", "", "The URL of the HTTPS endpoint.")
0 commit comments