List Asset Revisions
| datazone_list_asset_revisions | R Documentation |
Lists the revisions for the asset¶
Description¶
Lists the revisions for the asset.
Prerequisites:
-
The asset must exist in the domain.
-
There must be at least one revision of the asset (which happens automatically after creation).
-
The domain must be valid and active.
-
User must have permissions on the asset and domain.
Usage¶
datazone_list_asset_revisions(domainIdentifier, identifier, nextToken,
maxResults)
Arguments¶
domainIdentifier |
[required] The identifier of the domain. |
identifier |
[required] The identifier of the asset. |
nextToken |
When the number of revisions is greater than the default value
for the |
maxResults |
The maximum number of revisions to return in a single call to
|
Value¶
A list with the following syntax:
list(
items = list(
list(
domainId = "string",
id = "string",
revision = "string",
createdBy = "string",
createdAt = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_asset_revisions(
domainIdentifier = "string",
identifier = "string",
nextToken = "string",
maxResults = 123
)