[][src]Struct rusoto_apigateway::CreateUsagePlanKeyRequest

pub struct CreateUsagePlanKeyRequest {
    pub key_id: String,
    pub key_type: String,
    pub usage_plan_id: String,
}

The POST request to create a usage plan key for adding an existing API key to a usage plan.

Fields

key_id: String

[Required] The identifier of a UsagePlanKey resource for a plan customer.

key_type: String

[Required] The type of a UsagePlanKey resource for a plan customer.

usage_plan_id: String

[Required] The Id of the UsagePlan resource representing the usage plan containing the to-be-created UsagePlanKey resource representing a plan customer.

Trait Implementations

impl Clone for CreateUsagePlanKeyRequest[src]

impl Debug for CreateUsagePlanKeyRequest[src]

impl Default for CreateUsagePlanKeyRequest[src]

impl PartialEq<CreateUsagePlanKeyRequest> for CreateUsagePlanKeyRequest[src]

impl Serialize for CreateUsagePlanKeyRequest[src]

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