Skip to main content

buyer_dashboards

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

Overview

Namebuyer_dashboards
TypeResource
Idaws.marketplace_reporting.buyer_dashboards

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
dashboard_identifierstringThe ARN of the returned dashboard. (pattern: <code>arn:aws:aws-marketplace::[0-9]{12}:AWSMarketplace/ReportingData/(Agreement_V1/Dashboard/AgreementSummary_V1|BillingEvent_V1/Dashboard/CostAnalysis_V1)</code>)
embed_urlstringThe dashboard's embedding URL.
embedding_domainsarrayThe fully qualified domains specified in the request. The domains enable access to the generated URL that is then embedded. You can list up to two domains or subdomains in each API call. To include all subdomains under a specific domain, use . For example, https:​//.amazon.com includes all subdomains under https:​//aws.amazon.com.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_buyer_dashboardselectregionGenerates an embedding URL for an Amazon QuickSight dashboard for an anonymous user. This API is available only to Amazon Web Services Organization management accounts or delegated administrators registered for the procurement insights (procurement-insights.marketplace.amazonaws.com) feature. The following rules apply to a generated URL: It contains a temporary bearer token, valid for 5 minutes after it is generated. Once redeemed within that period, it cannot be re-used again. It has a session lifetime of one hour. The 5-minute validity period runs separately from the session lifetime.

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

Generates an embedding URL for an Amazon QuickSight dashboard for an anonymous user. This API is available only to Amazon Web Services Organization management accounts or delegated administrators registered for the procurement insights (procurement-insights.marketplace.amazonaws.com) feature. The following rules apply to a generated URL: It contains a temporary bearer token, valid for 5 minutes after it is generated. Once redeemed within that period, it cannot be re-used again. It has a session lifetime of one hour. The 5-minute validity period runs separately from the session lifetime.

SELECT
dashboard_identifier,
embed_url,
embedding_domains
FROM aws.marketplace_reporting.buyer_dashboards
WHERE region = '{{ region }}' -- required
;