Module Values.AssetShallowSource

A MediaPackage VOD Asset resource.

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

    The ARN of the Asset.

    *)
  2. createdAt : string option;
    (*

    The time the Asset was initially submitted for Ingest.

    *)
  3. id : string option;
    (*

    The unique identifier for the Asset.

    *)
  4. packagingGroupId : string option;
    (*

    The ID of the PackagingGroup for the Asset.

    *)
  5. resourceId : string option;
    (*

    The resource ID to include in SPEKE key requests.

    *)
  6. sourceArn : string option;
    (*

    ARN of the source object in S3.

    *)
  7. sourceRoleArn : string option;
    (*

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

    *)
  8. tags : Tags.t option;
}
Sourceval make : ?arn:??? -> ?createdAt:??? -> ?id:??? -> ?packagingGroupId:??? -> ?resourceId:??? -> ?sourceArn:??? -> ?sourceRoleArn:??? -> ?tags:??? -> 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