Class: Aws::IoT::Types::UpdateAuthorizerRequest

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 UpdateAuthorizerRequest data as a hash:

{
  authorizer_name: "AuthorizerName", # required
  authorizer_function_arn: "AuthorizerFunctionArn",
  token_key_name: "TokenKeyName",
  token_signing_public_keys: {
    "KeyName" => "KeyValue",
  },
  status: "ACTIVE", # accepts ACTIVE, INACTIVE
}

Instance Attribute Summary collapse

Instance Attribute Details

#authorizer_function_arnString

The ARN of the authorizer’s Lambda function.



10780
10781
10782
10783
10784
10785
10786
10787
# File 'lib/aws-sdk-iot/types.rb', line 10780

class UpdateAuthorizerRequest < Struct.new(
  :authorizer_name,
  :authorizer_function_arn,
  :token_key_name,
  :token_signing_public_keys,
  :status)
  include Aws::Structure
end

#authorizer_nameString

The authorizer name.



10780
10781
10782
10783
10784
10785
10786
10787
# File 'lib/aws-sdk-iot/types.rb', line 10780

class UpdateAuthorizerRequest < Struct.new(
  :authorizer_name,
  :authorizer_function_arn,
  :token_key_name,
  :token_signing_public_keys,
  :status)
  include Aws::Structure
end

#statusString

The status of the update authorizer request.



10780
10781
10782
10783
10784
10785
10786
10787
# File 'lib/aws-sdk-iot/types.rb', line 10780

class UpdateAuthorizerRequest < Struct.new(
  :authorizer_name,
  :authorizer_function_arn,
  :token_key_name,
  :token_signing_public_keys,
  :status)
  include Aws::Structure
end

#token_key_nameString

The key used to extract the token from the HTTP headers.



10780
10781
10782
10783
10784
10785
10786
10787
# File 'lib/aws-sdk-iot/types.rb', line 10780

class UpdateAuthorizerRequest < Struct.new(
  :authorizer_name,
  :authorizer_function_arn,
  :token_key_name,
  :token_signing_public_keys,
  :status)
  include Aws::Structure
end

#token_signing_public_keysHash<String,String>

The public keys used to verify the token signature.



10780
10781
10782
10783
10784
10785
10786
10787
# File 'lib/aws-sdk-iot/types.rb', line 10780

class UpdateAuthorizerRequest < Struct.new(
  :authorizer_name,
  :authorizer_function_arn,
  :token_key_name,
  :token_signing_public_keys,
  :status)
  include Aws::Structure
end