Struct rusoto_sns::AddPermissionInput [] [src]

pub struct AddPermissionInput {
    pub aws_account_id: Vec<String>,
    pub action_name: Vec<String>,
    pub label: String,
    pub topic_arn: String,
}

Fields

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.

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

Valid values: any Amazon SNS action name.

A unique identifier for the new policy statement.

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

Trait Implementations

impl Default for AddPermissionInput
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for AddPermissionInput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for AddPermissionInput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations