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.

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

Request syntax

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