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

ConnectionOAuthResponseParameters

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

Contains the response parameters when OAuth is specified as the authorization type.

interface ConnectionOAuthResponseParameters {
AuthorizationEndpoint?: string | null;
ClientParameters?: ConnectionOAuthClientResponseParameters | null;
HttpMethod?: ConnectionOAuthHttpMethod | null;
OAuthHttpParameters?: ConnectionHttpParameters | null;
}

§Properties

§
AuthorizationEndpoint?: string | null
[src]

The URL to the HTTP endpoint that authorized the request.

§

A ConnectionOAuthClientResponseParameters object that contains details about the client parameters returned when OAuth is specified as the authorization type.

§
HttpMethod?: ConnectionOAuthHttpMethod | null
[src]

The method used to connect to the HTTP endpoint.

§
OAuthHttpParameters?: ConnectionHttpParameters | null
[src]

The additional HTTP parameters used for the OAuth authorization request.