Module Values.GetAssetInputSource

Gets an Amazon DataZone asset. An asset is the fundamental building block in Amazon DataZone, representing any data resource that needs to be cataloged and managed. It can take many forms, from Amazon S3 buckets and database tables to dashboards and machine learning models. Each asset contains comprehensive metadata about the resource, including its location, schema, ownership, and lineage information. Assets are essential for organizing and managing data resources across an organization, making them discoverable and usable while maintaining proper governance. Before using the Amazon DataZone GetAsset command, ensure the following prerequisites are met: Domain identifier must exist and be valid Asset identifier must exist User must have the required permissions to perform the action

Sourcetype nonrec t = {
  1. domainIdentifier : DomainId.t;
    (*

    The ID of the Amazon DataZone domain to which the asset belongs.

    *)
  2. identifier : AssetIdentifier.t;
    (*

    The ID of the Amazon DataZone asset. This parameter supports either the value of assetId or externalIdentifier as input. If you are passing the value of externalIdentifier, you must prefix this value with externalIdentifer%2F.

    *)
  3. revision : Revision.t option;
    (*

    The revision of the Amazon DataZone asset.

    *)
}
Sourceval context_ : string
Sourceval make : ?revision:??? -> domainIdentifier:DomainId.t -> identifier:AssetIdentifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DomainId.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