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 updated name of the resource server.
-
#scopes ⇒ Array<Types::ResourceServerScopeType>
An array of updated custom scope names and descriptions that you want to associate with your resource server.
-
#user_pool_id ⇒ String
The ID of the user pool that contains the resource server that you want to update.
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.
11086 11087 11088 11089 11090 11091 11092 11093 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 11086 class UpdateResourceServerRequest < Struct.new( :user_pool_id, :identifier, :name, :scopes) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The updated name of the resource server.
11086 11087 11088 11089 11090 11091 11092 11093 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 11086 class UpdateResourceServerRequest < Struct.new( :user_pool_id, :identifier, :name, :scopes) SENSITIVE = [] include Aws::Structure end |
#scopes ⇒ Array<Types::ResourceServerScopeType>
An array of updated custom scope names and descriptions that you want to associate with your resource server.
11086 11087 11088 11089 11090 11091 11092 11093 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 11086 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 that contains the resource server that you want to update.
11086 11087 11088 11089 11090 11091 11092 11093 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 11086 class UpdateResourceServerRequest < Struct.new( :user_pool_id, :identifier, :name, :scopes) SENSITIVE = [] include Aws::Structure end |