Skip to content

Get Asset Type

datazone_get_asset_type R Documentation

Gets an Amazon DataZone asset type

Description

Gets an Amazon DataZone asset type.

Asset types define the categories and characteristics of different kinds of data assets within Amazon DataZone.. They determine what metadata fields are required, what operations are possible, and how the asset integrates with other Amazon Web Services services. Asset types can range from built-in types like Amazon S3 buckets and Amazon Web Services Glue tables to custom types defined for specific organizational needs. Understanding asset types is crucial for properly organizing and managing different kinds of data resources.

Prerequisites:

  • The asset type with identifier must exist in the domain. ResourceNotFoundException.

  • You must have the GetAssetType permission.

  • Ensure the domain-identifier value is correct and accessible.

Usage

datazone_get_asset_type(domainIdentifier, identifier, revision)

Arguments

domainIdentifier

[required] The ID of the Amazon DataZone domain in which the asset type exists.

identifier

[required] The ID of the asset type.

revision

The revision of the asset type.

Value

A list with the following syntax:

list(
  domainId = "string",
  name = "string",
  revision = "string",
  description = "string",
  formsOutput = list(
    list(
      typeName = "string",
      typeRevision = "string",
      required = TRUE|FALSE
    )
  ),
  owningProjectId = "string",
  originDomainId = "string",
  originProjectId = "string",
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  createdBy = "string",
  updatedAt = as.POSIXct(
    "2015-01-01"
  ),
  updatedBy = "string"
)

Request syntax

svc$get_asset_type(
  domainIdentifier = "string",
  identifier = "string",
  revision = "string"
)