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

ConnectionQueryStringParameter

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

Additional query string parameter for the connection. You can include up to 100 additional query string parameters per request. Each additional parameter counts towards the event payload size, which cannot exceed 64 KB.

interface ConnectionQueryStringParameter {
IsValueSecret?: boolean | null;
Key?: string | null;
Value?: string | null;
}

§Properties

§
IsValueSecret?: boolean | null
[src]

Specifies whether the value is secret.

§
Key?: string | null
[src]

The key for a query string parameter.

§
Value?: string | null
[src]

The value associated with the key for the query string parameter.