Batch Put Attributes Metadata
| datazone_batch_put_attributes_metadata | R Documentation |
Writes the attribute metadata¶
Description¶
Writes the attribute metadata.
Usage¶
datazone_batch_put_attributes_metadata(domainIdentifier, entityType,
entityIdentifier, clientToken, attributes)
Arguments¶
domainIdentifier |
[required] The domain ID where you want to write the attribute metadata. |
entityType |
[required] The entity type for which you want to write the attribute metadata. |
entityIdentifier |
[required] The entity ID for which you want to write the attribute metadata. |
clientToken |
A unique, case-sensitive identifier to ensure idempotency of the request. This field is automatically populated if not provided. |
attributes |
[required] The attributes of the metadata. |
Value¶
A list with the following syntax:
list(
errors = list(
list(
attributeIdentifier = "string",
code = "string",
message = "string"
)
),
attributes = list(
list(
attributeIdentifier = "string"
)
)
)
Request syntax¶
svc$batch_put_attributes_metadata(
domainIdentifier = "string",
entityType = "ASSET"|"LISTING",
entityIdentifier = "string",
clientToken = "string",
attributes = list(
list(
attributeIdentifier = "string",
forms = list(
list(
formName = "string",
typeIdentifier = "string",
typeRevision = "string",
content = "string"
)
)
)
)
)