[][src]Struct rusoto_apigateway::DeleteUsagePlanKeyRequest

pub struct DeleteUsagePlanKeyRequest {
    pub key_id: String,
    pub usage_plan_id: String,
}

The DELETE request to delete a usage plan key and remove the underlying API key from the associated usage plan.

Fields

key_id: String

[Required] The Id of the UsagePlanKey resource to be deleted.

usage_plan_id: String

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

Trait Implementations

impl Clone for DeleteUsagePlanKeyRequest[src]

impl Debug for DeleteUsagePlanKeyRequest[src]

impl Default for DeleteUsagePlanKeyRequest[src]

impl PartialEq<DeleteUsagePlanKeyRequest> for DeleteUsagePlanKeyRequest[src]

impl Serialize for DeleteUsagePlanKeyRequest[src]

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