Module Values.IngestionSummarySource

Contains a summary of an ingestion.

Sourcetype nonrec t = {
  1. arn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the ingestion.

    *)
  2. app : String255.t option;
    (*

    The name of the application.

    *)
  3. tenantId : TenantIdentifier.t option;
    (*

    The ID of the application tenant.

    *)
  4. state : IngestionState.t option;
    (*

    The status of the ingestion.

    *)
}
Sourceval make : ?arn:??? -> ?app:??? -> ?tenantId:??? -> ?state:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Arn.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