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

AuthorizationConfig

import type { AuthorizationConfig } from "https://aws-api.deno.dev/v0.3/services/appsync.ts?docs=full";

The authorization configuration in case the HTTP endpoint requires authorization.

interface AuthorizationConfig {
authorizationType: AuthorizationType;
awsIamConfig?: AwsIamConfig | null;
}

§Properties

§
authorizationType: AuthorizationType
[src]

The authorization type that the HTTP endpoint requires.

  • AWS_IAM: The authorization type is Signature Version 4 (SigV4).
§
awsIamConfig?: AwsIamConfig | null
[src]

The Identity and Access Management (IAM) settings.