Module Values.AssetSource

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. egressEndpoints : EgressEndpoint.t list option;
    (*

    The list of egress endpoints available for the Asset.

    *)
  4. id : string option;
    (*

    The unique identifier for the Asset.

    *)
  5. packagingGroupId : string option;
    (*

    The ID of the PackagingGroup for the Asset.

    *)
  6. resourceId : string option;
    (*

    The resource ID to include in SPEKE key requests.

    *)
  7. sourceArn : string option;
    (*

    ARN of the source object in S3.

    *)
  8. sourceRoleArn : string option;
    (*

    The IAM role_arn used to access the source S3 bucket.

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