Class: Aws::IoT::Types::TestInvokeAuthorizerRequest

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

Overview

Note:

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

{
  authorizer_name: "AuthorizerName", # required
  token: "Token", # required
  token_signature: "TokenSignature", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#authorizer_nameString

The custom authorizer name.



9897
9898
9899
9900
9901
9902
# File 'lib/aws-sdk-iot/types.rb', line 9897

class TestInvokeAuthorizerRequest < Struct.new(
  :authorizer_name,
  :token,
  :token_signature)
  include Aws::Structure
end

#tokenString

The token returned by your custom authentication service.



9897
9898
9899
9900
9901
9902
# File 'lib/aws-sdk-iot/types.rb', line 9897

class TestInvokeAuthorizerRequest < Struct.new(
  :authorizer_name,
  :token,
  :token_signature)
  include Aws::Structure
end

#token_signatureString

The signature made with the token and your custom authentication service’s private key.



9897
9898
9899
9900
9901
9902
# File 'lib/aws-sdk-iot/types.rb', line 9897

class TestInvokeAuthorizerRequest < Struct.new(
  :authorizer_name,
  :token,
  :token_signature)
  include Aws::Structure
end