[][src]Struct rusoto_acm_pca::Permission

pub struct Permission {
    pub actions: Option<Vec<String>>,
    pub certificate_authority_arn: Option<String>,
    pub created_at: Option<f64>,
    pub policy: Option<String>,
    pub principal: Option<String>,
    pub source_account: Option<String>,
}

Permissions designate which private CA actions can be performed by an AWS service or entity. In order for ACM to automatically renew private certificates, you must give the ACM service principal all available permissions (IssueCertificate, GetCertificate, and ListPermissions). Permissions can be assigned with the CreatePermission action, removed with the DeletePermission action, and listed with the ListPermissions action.

Fields

actions: Option<Vec<String>>

The private CA actions that can be performed by the designated AWS service.

certificate_authority_arn: Option<String>

The Amazon Resource Number (ARN) of the private CA from which the permission was issued.

created_at: Option<f64>

The time at which the permission was created.

policy: Option<String>

The name of the policy that is associated with the permission.

principal: Option<String>

The AWS service or entity that holds the permission. At this time, the only valid principal is acm.amazonaws.com.

source_account: Option<String>

The ID of the account that assigned the permission.

Trait Implementations

impl Clone for Permission[src]

impl Debug for Permission[src]

impl Default for Permission[src]

impl<'de> Deserialize<'de> for Permission[src]

impl PartialEq<Permission> for Permission[src]

impl StructuralPartialEq for Permission[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument 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.