customer_metadatas
Creates, updates, deletes, gets or lists a customer_metadatas resource.
Overview
| Name | customer_metadatas |
| Type | Resource |
| Id | aws.directconnect.customer_metadatas |
Fields
The following fields are returned by SELECT queries:
- describe_customer_metadata
| Name | Datatype | Description |
|---|---|---|
agreements | array | The list of customer agreements. |
nni_partner_type | string | The type of network-to-network interface (NNI) partner. The partner type will be one of the following: V1: This partner can only allocate 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, or 500Mbps subgigabit connections. V2: This partner can only allocate 1GB, 2GB, 5GB, or 10GB hosted connections. nonPartner: The customer is not a partner. (v1, v2, nonPartner) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_customer_metadata | select | region | Get and view a list of customer agreements, along with their signed status and whether the customer is an NNIPartner, NNIPartnerV2, or a nonPartner. |
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 |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_customer_metadata
Get and view a list of customer agreements, along with their signed status and whether the customer is an NNIPartner, NNIPartnerV2, or a nonPartner.
SELECT
agreements,
nni_partner_type
FROM aws.directconnect.customer_metadatas
WHERE region = '{{ region }}' -- required
;