Module Values.DatabaseSummarySource

The summary of the database.

Sourcetype nonrec t = {
  1. applicationId : ApplicationId.t option;
    (*

    The ID of the application.

    *)
  2. componentId : ComponentId.t option;
    (*

    The ID of the component.

    *)
  3. databaseId : DatabaseId.t option;
    (*

    The ID of the database.

    *)
  4. databaseType : DatabaseType.t option;
    (*

    The type of the database.

    *)
  5. arn : SsmSapArn.t option;
    (*

    The Amazon Resource Name (ARN) of the database.

    *)
  6. tags : TagMap.t option;
    (*

    The tags of the database.

    *)
}
Sourceval make : ?applicationId:??? -> ?componentId:??? -> ?databaseId:??? -> ?databaseType:??? -> ?arn:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ApplicationId.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