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

RemediationParameterValue

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

The value is either a dynamic (resource) value or a static value. You must select either a dynamic value or a static value.

interface RemediationParameterValue {
ResourceValue?: ResourceValue | null;
StaticValue?: StaticValue | null;
}

§Properties

§
ResourceValue?: ResourceValue | null
[src]

The value is dynamic and changes at run-time.

§
StaticValue?: StaticValue | null
[src]

The value is static and does not change at run-time.