Class: Aws::IoT::Types::TestInvokeAuthorizerRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::TestInvokeAuthorizerRequest
- 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
-
#authorizer_name ⇒ String
The custom authorizer name.
-
#token ⇒ String
The token returned by your custom authentication service.
-
#token_signature ⇒ String
The signature made with the token and your custom authentication service’s private key.
Instance Attribute Details
#authorizer_name ⇒ String
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 |
#token ⇒ String
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_signature ⇒ String
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 |