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

ConnectionBodyParameter

import type { ConnectionBodyParameter } from "https://aws-api.deno.dev/v0.4/services/eventbridge.ts?docs=full";

Additional parameter included in the body. You can include up to 100 additional body parameters per request. An event payload cannot exceed 64 KB.

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

§Properties

§
IsValueSecret?: boolean | null
[src]

Specified whether the value is secret.

§
Key?: string | null
[src]

The key for the parameter.

§
Value?: string | null
[src]

The value associated with the key.