Struct rusoto_apigateway::CreateUsagePlanKeyRequest[][src]

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

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

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

[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 Default for CreateUsagePlanKeyRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for CreateUsagePlanKeyRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateUsagePlanKeyRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateUsagePlanKeyRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations