Skip to main content

customer_metadatas

Creates, updates, deletes, gets or lists a customer_metadatas resource.

Overview

Namecustomer_metadatas
TypeResource
Idaws.directconnect.customer_metadatas

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
agreementsarrayThe list of customer agreements.
nni_partner_typestringThe 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:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_customer_metadataselectregionGet 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;