Struct rusoto_cognito_idp::CreateResourceServerRequest[][src]

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

Fields

A unique resource server identifier for the resource server. This could be an HTTPS endpoint where the resource server is located. For example, https://my-weather-api.example.com.

A friendly name for the resource server.

A list of scopes. Each scope is map, where the keys are name and description.

The user pool ID for the user pool.

Trait Implementations

impl Default for CreateResourceServerRequest
[src]

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

impl Debug for CreateResourceServerRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateResourceServerRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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