Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UpdateAuthorizerRequest

import type { UpdateAuthorizerRequest } from "https://aws-api.deno.dev/v0.3/services/iot.ts?docs=full";
interface UpdateAuthorizerRequest {
authorizerFunctionArn?: string | null;
authorizerName: string;
enableCachingForHttp?: boolean | null;
status?: AuthorizerStatus | null;
tokenKeyName?: string | null;
tokenSigningPublicKeys?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
authorizerFunctionArn?: string | null
[src]

The ARN of the authorizer's Lambda function.

§
authorizerName: string
[src]

The authorizer name.

§
enableCachingForHttp?: boolean | null
[src]

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.

§
status?: AuthorizerStatus | null
[src]

The status of the update authorizer request.

§
tokenKeyName?: string | null
[src]

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

§
tokenSigningPublicKeys?: {
[key: string]: string | null | undefined;
}
| null
[src]

The public keys used to verify the token signature.