[][src]Struct rusoto_ram::ResourceSharePermissionSummary

pub struct ResourceSharePermissionSummary {
    pub arn: Option<String>,
    pub creation_time: Option<f64>,
    pub default_version: Option<bool>,
    pub last_updated_time: Option<f64>,
    pub name: Option<String>,
    pub resource_type: Option<String>,
    pub status: Option<String>,
    pub version: Option<String>,
}

Information about a permission that is associated with a resource share.

Fields

arn: Option<String>

The ARN of the permission.

creation_time: Option<f64>

The date and time when the permission was created.

default_version: Option<bool>

The identifier for the version of the permission that is set as the default version.

last_updated_time: Option<f64>

The date and time when the permission was last updated.

name: Option<String>

The name of the permission.

resource_type: Option<String>

The type of resource to which the permission applies.

status: Option<String>

The current status of the permission.

version: Option<String>

The identifier for the version of the permission.

Trait Implementations

impl Clone for ResourceSharePermissionSummary[src]

impl Debug for ResourceSharePermissionSummary[src]

impl Default for ResourceSharePermissionSummary[src]

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

impl PartialEq<ResourceSharePermissionSummary> for ResourceSharePermissionSummary[src]

impl StructuralPartialEq for ResourceSharePermissionSummary[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: Deserialize<'de>, 
[src]

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