Create Listing Change Set
datazone_create_listing_change_set | R Documentation |
Publishes a listing (a record of an asset at a given time) or removes a listing from the catalog¶
Description¶
Publishes a listing (a record of an asset at a given time) or removes a listing from the catalog.
Usage¶
datazone_create_listing_change_set(action, clientToken,
domainIdentifier, entityIdentifier, entityRevision, entityType)
Arguments¶
action |
[required] Specifies whether to publish or unpublish a listing. |
clientToken |
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request. |
domainIdentifier |
[required] The ID of the Amazon DataZone domain. |
entityIdentifier |
[required] The ID of the asset. |
entityRevision |
The revision of an asset. |
entityType |
[required] The type of an entity. |
Value¶
A list with the following syntax:
list(
listingId = "string",
listingRevision = "string",
status = "CREATING"|"ACTIVE"|"INACTIVE"
)
Request syntax¶
svc$create_listing_change_set(
action = "PUBLISH"|"UNPUBLISH",
clientToken = "string",
domainIdentifier = "string",
entityIdentifier = "string",
entityRevision = "string",
entityType = "ASSET"|"DATA_PRODUCT"
)