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

TestInvokeAuthorizerRequest

import type { TestInvokeAuthorizerRequest } from "https://aws-api.deno.dev/v0.3/services/iot.ts?docs=full";
interface TestInvokeAuthorizerRequest {
authorizerName: string;
httpContext?: HttpContext | null;
mqttContext?: MqttContext | null;
tlsContext?: TlsContext | null;
token?: string | null;
tokenSignature?: string | null;
}

§Properties

§
authorizerName: string
[src]

The custom authorizer name.

§
httpContext?: HttpContext | null
[src]

Specifies a test HTTP authorization request.

§
mqttContext?: MqttContext | null
[src]

Specifies a test MQTT authorization request.

§
tlsContext?: TlsContext | null
[src]

Specifies a test TLS authorization request.

§
token?: string | null
[src]

The token returned by your custom authentication service.

§
tokenSignature?: string | null
[src]

The signature made with the token and your custom authentication service's private key. This value must be Base-64-encoded.