[][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 Clone for ApiKey[src]

impl Debug for ApiKey[src]

impl Default for ApiKey[src]

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

impl PartialEq<ApiKey> for ApiKey[src]

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