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]

[src]

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

impl Debug for CreateResourceServerRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CreateResourceServerRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations