You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UpdateAuthorizerRequest as input to an Aws::Client method, you can use a vanilla 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.

Returns:

  • (String)

    The ARN of the authorizer\'s Lambda function.

#authorizer_nameString

The authorizer name.

Returns:

  • (String)

    The authorizer name.

#statusString

The status of the update authorizer request.

Possible values:

  • ACTIVE
  • INACTIVE

Returns:

  • (String)

    The status of the update authorizer request.

#token_key_nameString

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

Returns:

  • (String)

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

#token_signing_public_keysHash<String,String>

The public keys used to verify the token signature.

Returns:

  • (Hash<String,String>)

    The public keys used to verify the token signature.