Module Values.CreateAssetRequestSource

A new MediaPackage VOD Asset configuration.

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

    The unique identifier for the Asset.

    *)
  2. packagingGroupId : string;
    (*

    The ID of the PackagingGroup for the Asset.

    *)
  3. resourceId : string option;
    (*

    The resource ID to include in SPEKE key requests.

    *)
  4. sourceArn : string;
    (*

    ARN of the source object in S3.

    *)
  5. sourceRoleArn : string;
    (*

    The IAM role ARN used to access the source S3 bucket.

    *)
  6. tags : Tags.t option;
}
Sourceval context_ : string
Sourceval make : ?resourceId:??? -> ?tags:??? -> id:string -> packagingGroupId:string -> sourceArn:string -> sourceRoleArn:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of string ] * [> `String of string ]) list | `String 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