Module Values.PresetSource

A preset is a collection of preconfigured media conversion settings that you want MediaConvert to apply to the output during the conversion process.

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

    An identifier for this resource that is unique within all of AWS.

    *)
  2. category : string option;
    (*

    An optional category you create to organize your presets.

    *)
  3. createdAt : string option;
    (*

    The timestamp in epoch seconds for preset creation.

    *)
  4. description : string option;
    (*

    An optional description you create for each preset.

    *)
  5. lastUpdated : string option;
    (*

    The timestamp in epoch seconds when the preset was last updated.

    *)
  6. name : string option;
    (*

    A name you create for each preset. Each name must be unique within your account.

    *)
  7. settings : PresetSettings.t option;
    (*

    Settings for preset

    *)
  8. type_ : Type.t option;
    (*

    A preset can be of two types: system or custom. System or built-in preset can't be modified or deleted by the user.

    *)
}
Sourceval make : ?arn:??? -> ?category:??? -> ?createdAt:??? -> ?description:??? -> ?lastUpdated:??? -> ?name:??? -> ?settings:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of string | `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `Integer of int | `String of string | `Structure of (string * [> `Double of float | `Enum of string | `Integer of int | `List of [> `Enum of string ] list | `Structure of (string * [> `Double of float | `Enum of string | `Integer of int | `List of [> `Enum of string | `Structure of (string * [> `List of [> `Double of float | `Integer of int ] list ]) list ] list | `String of string ]) list ]) list ]) list ] list | `Structure of (string * [> `Enum of string | `Integer of int | `Structure of (string * [> `Double of float | `Enum of string | `Integer of int | `List of [> `Integer of int ] list | `String of string | `Structure of (string * [> `Double of float | `Enum of string | `Integer of int | `List of [> `Enum of string | `Structure of (string * [> `Integer of int | `String of string ]) list ] list | `String of string | `Structure of (string * [> `Double of float | `Enum of string | `Integer of int | `String of string ]) list ]) list ]) list ]) list ]) list | `Timestamp of string ]) 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