Module Values.RecoveryPointSource

The automatically created recovery point of a namespace. Recovery points are created every 30 minutes and kept for 24 hours.

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

    The Amazon Resource Name (ARN) of the namespace the recovery point is associated with.

    *)
  2. namespaceName : NamespaceName.t option;
    (*

    The name of the namespace the recovery point is associated with.

    *)
  3. recoveryPointCreateTime : SyntheticTimestamp_date_time.t option;
    (*

    The time the recovery point is created.

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

    The unique identifier of the recovery point.

    *)
  5. totalSizeInMegaBytes : Double.t option;
    (*

    The total size of the data in the recovery point in megabytes.

    *)
  6. workgroupName : WorkgroupName.t option;
    (*

    The name of the workgroup the recovery point is associated with.

    *)
}
Sourceval make : ?namespaceArn:??? -> ?namespaceName:??? -> ?recoveryPointCreateTime:??? -> ?recoveryPointId:??? -> ?totalSizeInMegaBytes:??? -> ?workgroupName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `String of String_.t | `Timestamp of SyntheticTimestamp_date_time.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