Skip to content

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(domainIdentifier, entityIdentifier,
  entityType, entityRevision, action, clientToken)

Arguments

domainIdentifier

[required] The ID of the Amazon DataZone domain.

entityIdentifier

[required] The ID of the asset.

entityType

[required] The type of an entity.

entityRevision

The revision of an asset.

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.

Value

A list with the following syntax:

list(
  listingId = "string",
  listingRevision = "string",
  status = "CREATING"|"ACTIVE"|"INACTIVE"
)

Request syntax

svc$create_listing_change_set(
  domainIdentifier = "string",
  entityIdentifier = "string",
  entityType = "ASSET"|"DATA_PRODUCT",
  entityRevision = "string",
  action = "PUBLISH"|"UNPUBLISH",
  clientToken = "string"
)