Struct rusoto_cognito_idp::ResourceServerType[][src]

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

A container for information about a resource server for a user pool.

Fields

The identifier for the resource server.

The name of the resource server.

A list of scopes that are defined for the resource server.

The user pool ID for the user pool that hosts the resource server.

Trait Implementations

impl Default for ResourceServerType
[src]

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

impl Debug for ResourceServerType
[src]

Formats the value using the given formatter. Read more

impl Clone for ResourceServerType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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