[][src]Struct rusoto_sns::AddPermissionInput

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

Fields

aws_account_id: Vec<String>

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.

action_name: Vec<String>

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

Valid values: Any Amazon SNS action name, for example Publish.

label: String

A unique identifier for the new policy statement.

topic_arn: String

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

Trait Implementations

impl Clone for AddPermissionInput[src]

impl Debug for AddPermissionInput[src]

impl Default for AddPermissionInput[src]

impl PartialEq<AddPermissionInput> for AddPermissionInput[src]

impl StructuralPartialEq for AddPermissionInput[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.