Module Values.FeatureMetadataSource

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

Sourcetype nonrec t = {
  1. status : FeatureStatus.t option;
    (*

    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.

    *)
}
Sourceval make : ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t