Struct rusoto_apigateway::UpdateApiKeyRequest[][src]

pub struct UpdateApiKeyRequest {
    pub api_key: String,
    pub patch_operations: Option<Vec<PatchOperation>>,
}

A request to change information about an ApiKey resource.

Fields

[Required] The identifier of the ApiKey resource to be updated.

A list of update operations to be applied to the specified resource and in the order specified in this list.

Trait Implementations

impl Default for UpdateApiKeyRequest
[src]

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

impl Debug for UpdateApiKeyRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateApiKeyRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateApiKeyRequest
[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