attributes_metadatas
Creates, updates, deletes, gets or lists an attributes_metadatas resource.
Overview
| Name | attributes_metadatas |
| Type | Resource |
| Id | aws.datazone.attributes_metadatas |
Fields
The following fields are returned by SELECT queries:
- batch_get_attributes_metadata
| Name | Datatype | Description |
|---|---|---|
attributes | array | The results of the BatchGetAttributesMetadata action. |
errors | array | The errors generated when the BatchGetAttributesMetadata action is invoked. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
batch_get_attributes_metadata | select | domain_identifier, entity_type, entity_identifier, attributeIdentifier, region | entityRevision | Gets 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.
| Name | Datatype | Description |
|---|---|---|
attributeIdentifier | array | The attribute identifier. |
domain_identifier | string | The domain ID where you want to get the attribute metadata. |
entity_identifier | string | The entity ID for which you want to get attribute metadata. |
entity_type | string | The entity type for which you want to get attribute metadata. |
region | string | AWS region (default: us-east-1) |
entityRevision | string | The entity revision for which you want to get attribute metadata. |
SELECT examples
- batch_get_attributes_metadata
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 }}'
;