Skip to main content

attributes_metadatas

Creates, updates, deletes, gets or lists an attributes_metadatas resource.

Overview

Nameattributes_metadatas
TypeResource
Idaws.datazone.attributes_metadatas

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
attributesarrayThe results of the BatchGetAttributesMetadata action.
errorsarrayThe errors generated when the BatchGetAttributesMetadata action is invoked.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
batch_get_attributes_metadataselectdomain_identifier, entity_type, entity_identifier, attributeIdentifier, regionentityRevisionGets the attribute metadata.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
attributeIdentifierarrayThe attribute identifier.
domain_identifierstringThe domain ID where you want to get the attribute metadata.
entity_identifierstringThe entity ID for which you want to get attribute metadata.
entity_typestringThe entity type for which you want to get attribute metadata.
regionstringAWS region (default: us-east-1)
entityRevisionstringThe entity revision for which you want to get attribute metadata.

SELECT examples

Gets the attribute metadata.

SELECT
attributes,
errors
FROM aws.datazone.attributes_metadatas
WHERE domain_identifier = '{{ domain_identifier }}' -- required
AND entity_type = '{{ entity_type }}' -- required
AND entity_identifier = '{{ entity_identifier }}' -- required
AND attributeIdentifier = '{{ attributeIdentifier }}' -- required
AND region = '{{ region }}' -- required
AND entityRevision = '{{ entityRevision }}'
;