Module Values.RdsDbInstanceDetailsSource

Contains information about the resource type RDSDBInstance involved in a GuardDuty finding.

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

    The identifier associated to the database instance that was involved in the finding.

    *)
  2. engine : String_.t option;
    (*

    The database engine of the database instance involved in the finding.

    *)
  3. engineVersion : String_.t option;
    (*

    The version of the database engine that was involved in the finding.

    *)
  4. dbClusterIdentifier : String_.t option;
    (*

    The identifier of the database cluster that contains the database instance ID involved in the finding.

    *)
  5. dbInstanceArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) that identifies the database instance involved in the finding.

    *)
  6. dbiResourceId : String_.t option;
    (*

    The unique ID of the database resource involved in the activity that prompted GuardDuty to generate the finding.

    *)
  7. tags : Tags.t option;
    (*

    Information about the tag key-value pairs.

    *)
}
Sourceval make : ?dbInstanceIdentifier:??? -> ?engine:??? -> ?engineVersion:??? -> ?dbClusterIdentifier:??? -> ?dbInstanceArn:??? -> ?dbiResourceId:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) 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