Module Values.DatasetGroupSummarySource

Provides a summary of the properties of a dataset group. For a complete listing, call the DescribeDatasetGroup API.

Sourcetype nonrec t = {
  1. name : Name.t option;
    (*

    The name of the dataset group.

    *)
  2. datasetGroupArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the dataset group.

    *)
  3. status : Status.t option;
    (*

    The status of the dataset group. A dataset group can be in one of the following states: CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED DELETE PENDING

    *)
  4. creationDateTime : Date.t option;
    (*

    The date and time (in Unix time) that the dataset group was created.

    *)
  5. lastUpdatedDateTime : Date.t option;
    (*

    The date and time (in Unix time) that the dataset group was last updated.

    *)
  6. failureReason : FailureReason.t option;
    (*

    If creating a dataset group fails, the reason behind the failure.

    *)
  7. domain : Domain.t option;
    (*

    The domain of a Domain dataset group.

    *)
}
Sourceval make : ?name:??? -> ?datasetGroupArn:??? -> ?status:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> ?failureReason:??? -> ?domain:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Name.t | `Timestamp of Date.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