Module Values.GetResourceMetadataResponseSource

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

Sourcetype nonrec t = {
  1. identifier : String_.t option;
    (*

    An immutable identifier for a data source that is unique for an Amazon Web Services Region. Performance Insights gathers metrics from this data source. To use a DB instance as a data source, specify its DbiResourceId value. For example, specify db-ABCDEFGHIJKLMNOPQRSTU1VW2X.

    *)
  2. features : FeatureMetadataMap.t option;
    (*

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

    *)
}
Sourcetype nonrec error = [
  1. | `InternalServiceError of InternalServiceError.t
  2. | `InvalidArgumentException of InvalidArgumentException.t
  3. | `NotAuthorizedException of NotAuthorizedException.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?identifier:??? -> ?features:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalServiceError of InternalServiceError.t | `InvalidArgumentException of InvalidArgumentException.t | `NotAuthorizedException of NotAuthorizedException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalServiceError of InternalServiceError.t | `InvalidArgumentException of InvalidArgumentException.t | `NotAuthorizedException of NotAuthorizedException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of String_.t ] * [> `Structure of (string * [> `Enum of string ]) list ]) list | `String of String_.t ]) 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