Module Values.DestinationSource

Contains information about the publishing destination, including the ID, type, and status.

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

    The unique ID of the publishing destination.

    *)
  2. destinationType : DestinationType.t option;
    (*

    The type of resource used for the publishing destination. Currently, only Amazon S3 buckets are supported.

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

    The status of the publishing destination.

    *)
}
Sourceval make : ?destinationId:??? -> ?destinationType:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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