[][src]Struct rusoto_signer::AddProfilePermissionRequest

pub struct AddProfilePermissionRequest {
    pub action: String,
    pub principal: String,
    pub profile_name: String,
    pub profile_version: Option<String>,
    pub revision_id: Option<String>,
    pub statement_id: String,
}

Fields

action: String

The AWS Signer action permitted as part of cross-account permissions.

principal: String

The AWS principal receiving cross-account permissions. This may be an IAM role or another AWS account ID.

profile_name: String

The human-readable name of the signing profile.

profile_version: Option<String>

The version of the signing profile.

revision_id: Option<String>

A unique identifier for the current profile revision.

statement_id: String

A unique identifier for the cross-account permission statement.

Trait Implementations

impl Clone for AddProfilePermissionRequest[src]

impl Debug for AddProfilePermissionRequest[src]

impl Default for AddProfilePermissionRequest[src]

impl PartialEq<AddProfilePermissionRequest> for AddProfilePermissionRequest[src]

impl Serialize for AddProfilePermissionRequest[src]

impl StructuralPartialEq for AddProfilePermissionRequest[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.