Struct rusoto_apigateway::UpdateAuthorizerRequest[][src]

pub struct UpdateAuthorizerRequest {
    pub authorizer_id: String,
    pub patch_operations: Option<Vec<PatchOperation>>,
    pub rest_api_id: String,
}

Request to update an existing Authorizer resource.

Fields

[Required] The identifier of the Authorizer resource.

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

[Required] The string identifier of the associated RestApi.

Trait Implementations

impl Default for UpdateAuthorizerRequest
[src]

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

impl Debug for UpdateAuthorizerRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateAuthorizerRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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