Struct rusoto_cognito_idp::UpdateResourceServerRequest[][src]

pub struct UpdateResourceServerRequest {
    pub identifier: String,
    pub name: String,
    pub scopes: Option<Vec<ResourceServerScopeType>>,
    pub user_pool_id: String,
}

Fields

The identifier for the resource server.

The name of the resource server.

The scope values to be set for the resource server.

The user pool ID for the user pool.

Trait Implementations

impl Default for UpdateResourceServerRequest
[src]

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

impl Debug for UpdateResourceServerRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateResourceServerRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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