Module Values.IngestionSource

Contains information about an ingestion.

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

    The Amazon Resource Name (ARN) of the ingestion.

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

    The Amazon Resource Name (ARN) of the app bundle for the ingestion.

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

    The name of the application.

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

    The ID of the application tenant.

    *)
  5. createdAt : DateTime.t option;
    (*

    The timestamp of when the ingestion was created.

    *)
  6. updatedAt : DateTime.t option;
    (*

    The timestamp of when the ingestion was last updated.

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

    The status of the ingestion.

    *)
  8. ingestionType : IngestionType.t option;
    (*

    The type of the ingestion.

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