[][src]Struct rusoto_apigateway::ApiKey

pub struct ApiKey {
    pub created_date: Option<f64>,
    pub customer_id: Option<String>,
    pub description: Option<String>,
    pub enabled: Option<bool>,
    pub id: Option<String>,
    pub last_updated_date: Option<f64>,
    pub name: Option<String>,
    pub stage_keys: Option<Vec<String>>,
    pub tags: Option<HashMap<String, String>>,
    pub value: Option<String>,
}

A resource that can be distributed to callers for executing Method resources that require an API key. API keys can be mapped to any Stage on any RestApi, which indicates that the callers with the API key can make requests to that stage.

Fields

created_date: Option<f64>

The timestamp when the API Key was created.

customer_id: Option<String>

An AWS Marketplace customer identifier , when integrating with the AWS SaaS Marketplace.

description: Option<String>

The description of the API Key.

enabled: Option<bool>

Specifies whether the API Key can be used by callers.

id: Option<String>

The identifier of the API Key.

last_updated_date: Option<f64>

The timestamp when the API Key was last updated.

name: Option<String>

The name of the API Key.

stage_keys: Option<Vec<String>>

A list of Stage resources that are associated with the ApiKey resource.

tags: Option<HashMap<String, String>>

The collection of tags. Each tag element is associated with a given resource.

value: Option<String>

The value of the API Key.

Trait Implementations

impl PartialEq<ApiKey> for ApiKey[src]

impl Default for ApiKey[src]

impl Clone for ApiKey[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ApiKey[src]

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

Auto Trait Implementations

impl Send for ApiKey

impl Sync for ApiKey

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self