Module Values.IngestionDestinationSource

Contains information about an ingestion destination.

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

    The Amazon Resource Name (ARN) of the ingestion destination.

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

    The Amazon Resource Name (ARN) of the ingestion.

    *)
  3. processingConfiguration : ProcessingConfiguration.t option;
    (*

    Contains information about how ingested data is processed.

    *)
  4. destinationConfiguration : DestinationConfiguration.t option;
    (*

    Contains information about the destination of ingested data.

    *)
  5. status : IngestionDestinationStatus.t option;
    (*

    The state of the ingestion destination. The following states are possible: Active: The ingestion destination is active and is ready to be used. Failed: The ingestion destination has failed. If the ingestion destination is in this state, you should verify the ingestion destination configuration and try again.

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

    The reason for the current status of the ingestion destination. Only present when the status of ingestion destination is Failed.

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

    The timestamp of when the ingestion destination was created.

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

    The timestamp of when the ingestion destination was last updated.

    *)
}
Sourceval make : ?arn:??? -> ?ingestionArn:??? -> ?processingConfiguration:??? -> ?destinationConfiguration:??? -> ?status:??? -> ?statusReason:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Arn.t | `Structure of (string * [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Structure of (string * [> `String of String63.t ]) list ]) list ]) list ]) list | `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