Class: Aws::IoT::Types::AuthorizerDescription
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoT::Types::AuthorizerDescription
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iot/types.rb
 
Overview
The authorizer description.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #authorizer_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The authorizer ARN.
 - 
  
    
      #authorizer_function_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The authorizer’s Lambda function ARN.
 - 
  
    
      #authorizer_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The authorizer name.
 - 
  
    
      #creation_date  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The UNIX timestamp of when the authorizer was created.
 - 
  
    
      #enable_caching_for_http  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
When ‘true`, the result from the authorizer’s Lambda function is cached for the time specified in `refreshAfterInSeconds`.
 - 
  
    
      #last_modified_date  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The UNIX timestamp of when the authorizer was last updated.
 - 
  
    
      #signing_disabled  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies whether IoT validates the token signature in an authorization request.
 - 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The status of the authorizer.
 - 
  
    
      #token_key_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The key used to extract the token from the HTTP headers.
 - 
  
    
      #token_signing_public_keys  ⇒ Hash<String,String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The public keys used to validate the token signature returned by your custom authentication service.
 
Instance Attribute Details
#authorizer_arn ⇒ String
The authorizer ARN.
      1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 1098 class AuthorizerDescription < Struct.new( :authorizer_name, :authorizer_arn, :authorizer_function_arn, :token_key_name, :token_signing_public_keys, :status, :creation_date, :last_modified_date, :signing_disabled, :enable_caching_for_http) SENSITIVE = [] include Aws::Structure end  | 
  
#authorizer_function_arn ⇒ String
The authorizer’s Lambda function ARN.
      1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 1098 class AuthorizerDescription < Struct.new( :authorizer_name, :authorizer_arn, :authorizer_function_arn, :token_key_name, :token_signing_public_keys, :status, :creation_date, :last_modified_date, :signing_disabled, :enable_caching_for_http) SENSITIVE = [] include Aws::Structure end  | 
  
#authorizer_name ⇒ String
The authorizer name.
      1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 1098 class AuthorizerDescription < Struct.new( :authorizer_name, :authorizer_arn, :authorizer_function_arn, :token_key_name, :token_signing_public_keys, :status, :creation_date, :last_modified_date, :signing_disabled, :enable_caching_for_http) SENSITIVE = [] include Aws::Structure end  | 
  
#creation_date ⇒ Time
The UNIX timestamp of when the authorizer was created.
      1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 1098 class AuthorizerDescription < Struct.new( :authorizer_name, :authorizer_arn, :authorizer_function_arn, :token_key_name, :token_signing_public_keys, :status, :creation_date, :last_modified_date, :signing_disabled, :enable_caching_for_http) SENSITIVE = [] include Aws::Structure end  | 
  
#enable_caching_for_http ⇒ Boolean
When ‘true`, the result from the authorizer’s Lambda function is cached for the time specified in `refreshAfterInSeconds`. The cached result is used while the device reuses the same HTTP connection.
      1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 1098 class AuthorizerDescription < Struct.new( :authorizer_name, :authorizer_arn, :authorizer_function_arn, :token_key_name, :token_signing_public_keys, :status, :creation_date, :last_modified_date, :signing_disabled, :enable_caching_for_http) SENSITIVE = [] include Aws::Structure end  | 
  
#last_modified_date ⇒ Time
The UNIX timestamp of when the authorizer was last updated.
      1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 1098 class AuthorizerDescription < Struct.new( :authorizer_name, :authorizer_arn, :authorizer_function_arn, :token_key_name, :token_signing_public_keys, :status, :creation_date, :last_modified_date, :signing_disabled, :enable_caching_for_http) SENSITIVE = [] include Aws::Structure end  | 
  
#signing_disabled ⇒ Boolean
Specifies whether IoT validates the token signature in an authorization request.
      1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 1098 class AuthorizerDescription < Struct.new( :authorizer_name, :authorizer_arn, :authorizer_function_arn, :token_key_name, :token_signing_public_keys, :status, :creation_date, :last_modified_date, :signing_disabled, :enable_caching_for_http) SENSITIVE = [] include Aws::Structure end  | 
  
#status ⇒ String
The status of the authorizer.
      1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 1098 class AuthorizerDescription < Struct.new( :authorizer_name, :authorizer_arn, :authorizer_function_arn, :token_key_name, :token_signing_public_keys, :status, :creation_date, :last_modified_date, :signing_disabled, :enable_caching_for_http) SENSITIVE = [] include Aws::Structure end  | 
  
#token_key_name ⇒ String
The key used to extract the token from the HTTP headers.
      1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 1098 class AuthorizerDescription < Struct.new( :authorizer_name, :authorizer_arn, :authorizer_function_arn, :token_key_name, :token_signing_public_keys, :status, :creation_date, :last_modified_date, :signing_disabled, :enable_caching_for_http) SENSITIVE = [] include Aws::Structure end  | 
  
#token_signing_public_keys ⇒ Hash<String,String>
The public keys used to validate the token signature returned by your custom authentication service.
      1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 1098 class AuthorizerDescription < Struct.new( :authorizer_name, :authorizer_arn, :authorizer_function_arn, :token_key_name, :token_signing_public_keys, :status, :creation_date, :last_modified_date, :signing_disabled, :enable_caching_for_http) SENSITIVE = [] include Aws::Structure end  |