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

FeatureMetadata

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

The metadata for a feature. For example, the metadata might indicate that a feature is turned on or off on a specific DB instance.

interface FeatureMetadata {
Status?: FeatureStatus | null;
}

§Properties

§
Status?: FeatureStatus | null
[src]

The status of the feature on the DB instance. Possible values include the following:

  • ENABLED: the feature is enabled on the instance.
  • DISABLED: the feature is disabled on the instance.
  • UNSUPPORTED: the feature isn't supported on the instance.
  • ENABLED_PENDING_REBOOT: the feature is enabled on the instance but requires a reboot to take effect.
  • DISABLED_PENDING_REBOOT: the feature is disabled on the instance but requires a reboot to take effect.
  • UNKNOWN: the feature status couldn't be determined.