[][src]Struct rusoto_license_manager::TokenData

pub struct TokenData {
    pub expiration_time: Option<String>,
    pub license_arn: Option<String>,
    pub role_arns: Option<Vec<String>>,
    pub status: Option<String>,
    pub token_id: Option<String>,
    pub token_properties: Option<Vec<String>>,
    pub token_type: Option<String>,
}

Describes a token.

Fields

expiration_time: Option<String>

Token expiration time, in ISO8601-UTC format.

license_arn: Option<String>

Amazon Resource Name (ARN) of the license.

role_arns: Option<Vec<String>>

Amazon Resource Names (ARN) of the roles included in the token.

status: Option<String>

Token status. The possible values are AVAILABLE and DELETED.

token_id: Option<String>

Token ID.

token_properties: Option<Vec<String>>

Data specified by the caller.

token_type: Option<String>

Type of token generated. The supported value is REFRESH_TOKEN.

Trait Implementations

impl Clone for TokenData[src]

impl Debug for TokenData[src]

impl Default for TokenData[src]

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

impl PartialEq<TokenData> for TokenData[src]

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