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

SdkConfigurationProperty

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

A configuration property of an SDK type.

interface SdkConfigurationProperty {
defaultValue?: string | null;
description?: string | null;
friendlyName?: string | null;
name?: string | null;
required?: boolean | null;
}

§Properties

§
defaultValue?: string | null
[src]

The default value of an SdkType configuration property.

§
description?: string | null
[src]

The description of an SdkType configuration property.

§
friendlyName?: string | null
[src]

The user-friendly name of an SdkType configuration property.

§
name?: string | null
[src]

The name of a an SdkType configuration property.

§
required?: boolean | null
[src]

A boolean flag of an SdkType configuration property to indicate if the associated SDK configuration property is required (true) or not (false).