paws.application.integration (version 0.1.0)

sns_add_permission: Adds a statement to a topic's access control policy, granting access for the specified AWS accounts to the specified actions

Description

Adds a statement to a topic's access control policy, granting access for the specified AWS accounts to the specified actions.

Usage

sns_add_permission(TopicArn, Label, AWSAccountId, ActionName)

Arguments

TopicArn

[required] The ARN of the topic whose access control policy you wish to modify.

Label

[required] A unique identifier for the new policy statement.

AWSAccountId

[required] The AWS account IDs of the users (principals) who will be given access to the specified actions. The users must have AWS accounts, but do not need to be signed up for this service.

ActionName

[required] The action you want to allow for the specified principal(s).

Valid values: any Amazon SNS action name.

Request syntax

svc$add_permission(
  TopicArn = "string",
  Label = "string",
  AWSAccountId = list(
    "string"
  ),
  ActionName = list(
    "string"
  )
)