Create Asset
| datazone_create_asset | R Documentation |
Creates an asset in Amazon DataZone catalog¶
Description¶
Creates an asset in Amazon DataZone catalog.
Usage¶
datazone_create_asset(clientToken, description, domainIdentifier,
externalIdentifier, formsInput, glossaryTerms, name,
owningProjectIdentifier, predictionConfiguration, typeIdentifier,
typeRevision)
Arguments¶
clientTokenA unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
descriptionAsset description.
domainIdentifier[required] Amazon DataZone domain where the asset is created.
externalIdentifierThe external identifier of the asset.
formsInputMetadata forms attached to the asset.
glossaryTermsGlossary terms attached to the asset.
name[required] Asset name.
owningProjectIdentifier[required] The unique identifier of the project that owns this asset.
predictionConfigurationThe configuration of the automatically generated business-friendly metadata for the asset.
typeIdentifier[required] The unique identifier of this asset's type.
typeRevisionThe revision of this asset's type.
Value¶
A list with the following syntax:
list(
createdAt = as.POSIXct(
"2015-01-01"
),
createdBy = "string",
description = "string",
domainId = "string",
externalIdentifier = "string",
firstRevisionCreatedAt = as.POSIXct(
"2015-01-01"
),
firstRevisionCreatedBy = "string",
formsOutput = list(
list(
content = "string",
formName = "string",
typeName = "string",
typeRevision = "string"
)
),
glossaryTerms = list(
"string"
),
id = "string",
latestTimeSeriesDataPointFormsOutput = list(
list(
contentSummary = "string",
formName = "string",
id = "string",
timestamp = as.POSIXct(
"2015-01-01"
),
typeIdentifier = "string",
typeRevision = "string"
)
),
listing = list(
listingId = "string",
listingStatus = "CREATING"|"ACTIVE"|"INACTIVE"
),
name = "string",
owningProjectId = "string",
predictionConfiguration = list(
businessNameGeneration = list(
enabled = TRUE|FALSE
)
),
readOnlyFormsOutput = list(
list(
content = "string",
formName = "string",
typeName = "string",
typeRevision = "string"
)
),
revision = "string",
typeIdentifier = "string",
typeRevision = "string"
)
Request syntax¶
svc$create_asset(
clientToken = "string",
description = "string",
domainIdentifier = "string",
externalIdentifier = "string",
formsInput = list(
list(
content = "string",
formName = "string",
typeIdentifier = "string",
typeRevision = "string"
)
),
glossaryTerms = list(
"string"
),
name = "string",
owningProjectIdentifier = "string",
predictionConfiguration = list(
businessNameGeneration = list(
enabled = TRUE|FALSE
)
),
typeIdentifier = "string",
typeRevision = "string"
)