Class: Aws::CognitoIdentityProvider::Types::UpdateResourceServerRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cognitoidentityprovider/types.rb

Overview

Note:

When making an API call, you may pass UpdateResourceServerRequest data as a hash:

{
  user_pool_id: "UserPoolIdType", # required
  identifier: "ResourceServerIdentifierType", # required
  name: "ResourceServerNameType", # required
  scopes: [
    {
      scope_name: "ResourceServerScopeNameType", # required
      scope_description: "ResourceServerScopeDescriptionType", # required
    },
  ],
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#identifierString

The identifier for the resource server.

Returns:

  • (String)


9420
9421
9422
9423
9424
9425
9426
9427
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 9420

class UpdateResourceServerRequest < Struct.new(
  :user_pool_id,
  :identifier,
  :name,
  :scopes)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the resource server.

Returns:

  • (String)


9420
9421
9422
9423
9424
9425
9426
9427
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 9420

class UpdateResourceServerRequest < Struct.new(
  :user_pool_id,
  :identifier,
  :name,
  :scopes)
  SENSITIVE = []
  include Aws::Structure
end

#scopesArray<Types::ResourceServerScopeType>

The scope values to be set for the resource server.

Returns:



9420
9421
9422
9423
9424
9425
9426
9427
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 9420

class UpdateResourceServerRequest < Struct.new(
  :user_pool_id,
  :identifier,
  :name,
  :scopes)
  SENSITIVE = []
  include Aws::Structure
end

#user_pool_idString

The user pool ID for the user pool.

Returns:

  • (String)


9420
9421
9422
9423
9424
9425
9426
9427
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 9420

class UpdateResourceServerRequest < Struct.new(
  :user_pool_id,
  :identifier,
  :name,
  :scopes)
  SENSITIVE = []
  include Aws::Structure
end