Module Values.GetAssetOutputSource

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. id : AssetId.t option;
    (*

    The ID of the asset.

    *)
  2. name : AssetName.t option;
    (*

    The name of the asset.

    *)
  3. typeIdentifier : AssetTypeIdentifier.t option;
    (*

    The ID of the asset type.

    *)
  4. typeRevision : Revision.t option;
    (*

    The revision of the asset type.

    *)
  5. externalIdentifier : ExternalIdentifier.t option;
    (*

    The external ID of the asset.

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

    The revision of the asset.

    *)
  7. description : Description.t option;
    (*

    The description of the Amazon DataZone asset.

    *)
  8. createdAt : CreatedAt.t option;
    (*

    The timestamp of when the asset was created.

    *)
  9. createdBy : CreatedBy.t option;
    (*

    The Amazon DataZone user who created the asset.

    *)
  10. firstRevisionCreatedAt : CreatedAt.t option;
    (*

    The timestamp of when the first revision of the asset was created.

    *)
  11. firstRevisionCreatedBy : CreatedBy.t option;
    (*

    The Amazon DataZone user who created the first revision of the asset.

    *)
  12. glossaryTerms : GlossaryTerms.t option;
    (*

    The business glossary terms attached to the asset.

    *)
  13. governedGlossaryTerms : GetAssetOutputGovernedGlossaryTermsList.t option;
    (*

    The restricted glossary terms attached to an asset.

    *)
  14. owningProjectId : ProjectId.t option;
    (*

    The ID of the project that owns the asset.

    *)
  15. domainId : DomainId.t option;
    (*

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

    *)
  16. listing : AssetListingDetails.t option;
    (*

    The listing of the asset.

    *)
  17. formsOutput : FormOutputList.t option;
    (*

    The metadata forms attached to the asset.

    *)
  18. readOnlyFormsOutput : FormOutputList.t option;
    (*

    The read-only metadata forms attached to the asset.

    *)
  19. latestTimeSeriesDataPointFormsOutput : TimeSeriesDataPointSummaryFormOutputList.t option;
    (*

    The latest data point that was imported into the time series form for the asset.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `UnauthorizedException of UnauthorizedException.t
  6. | `ValidationException of ValidationException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?id:??? -> ?name:??? -> ?typeIdentifier:??? -> ?typeRevision:??? -> ?externalIdentifier:??? -> ?revision:??? -> ?description:??? -> ?createdAt:??? -> ?createdBy:??? -> ?firstRevisionCreatedAt:??? -> ?firstRevisionCreatedBy:??? -> ?glossaryTerms:??? -> ?governedGlossaryTerms:??? -> ?owningProjectId:??? -> ?domainId:??? -> ?listing:??? -> ?formsOutput:??? -> ?readOnlyFormsOutput:??? -> ?latestTimeSeriesDataPointFormsOutput:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `UnauthorizedException of UnauthorizedException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `UnauthorizedException of UnauthorizedException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of GlossaryTermId.t | `Structure of (string * [> `String of FormName.t | `Timestamp of Timestamp.t ]) list ] list | `String of AssetId.t | `Structure of (string * [> `Enum of string | `String of ListingId.t ]) list | `Timestamp of CreatedAt.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