Class: Aws::CognitoIdentityProvider::Types::UpdateResourceServerRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CognitoIdentityProvider::Types::UpdateResourceServerRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-cognitoidentityprovider/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #identifier  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A unique resource server identifier for the resource server.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the resource server.
 - 
  
    
      #scopes  ⇒ Array<Types::ResourceServerScopeType> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The scope values to be set for the resource server.
 - 
  
    
      #user_pool_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the user pool.
 
Instance Attribute Details
#identifier ⇒ String
A unique resource server identifier for the resource server. The identifier can be an API friendly name like ‘solar-system-data`. You can also set an API URL like `solar-system-data-api.example.com` as your identifier.
Amazon Cognito represents scopes in the access token in the format ‘$resource-server-identifier/$scope`. Longer scope-identifier strings increase the size of your access tokens.
      11157 11158 11159 11160 11161 11162 11163 11164  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 11157 class UpdateResourceServerRequest < Struct.new( :user_pool_id, :identifier, :name, :scopes) SENSITIVE = [] include Aws::Structure end  | 
  
#name ⇒ String
The name of the resource server.
      11157 11158 11159 11160 11161 11162 11163 11164  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 11157 class UpdateResourceServerRequest < Struct.new( :user_pool_id, :identifier, :name, :scopes) SENSITIVE = [] include Aws::Structure end  | 
  
#scopes ⇒ Array<Types::ResourceServerScopeType>
The scope values to be set for the resource server.
      11157 11158 11159 11160 11161 11162 11163 11164  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 11157 class UpdateResourceServerRequest < Struct.new( :user_pool_id, :identifier, :name, :scopes) SENSITIVE = [] include Aws::Structure end  | 
  
#user_pool_id ⇒ String
The ID of the user pool.
      11157 11158 11159 11160 11161 11162 11163 11164  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 11157 class UpdateResourceServerRequest < Struct.new( :user_pool_id, :identifier, :name, :scopes) SENSITIVE = [] include Aws::Structure end  |