Seller dashboards
AWS Marketplace provides dashboards powered by Amazon QuickSight with charts, graphs, and insights that help you access and analyze financial data. The seller dashboards include:
-
Billed revenue dashboard – Provides information about billed revenue for accounting and other financial reporting purposes.
-
Collections and disbursement dashboard – Provides information about funds that AWS collected and disbursed to your bank accounts since the previous disbursement.
Dashboards are available to AWS Marketplace sellers who have the appropriate permissions.
Accessing dashboards
By default, AWS Marketplace system administrators for seller accounts have access to all dashboards on the Insights tab in the AWS Marketplace Management Portal. System administrators can create an AWS Identity and Access Management (IAM) policy to provide access for specific dashboards to other users in the seller company.
For information about creating policies, see Creating IAM policies.
Dashboard policy
Use the following policy to provide access to the billed revenue dashboard and the collections and disbursements dashboard.
You can provide access to a single dashboard by including the specific Amazon Resource
Name (ARN) in the Resource
section, as shown in the following code example. For
example, to provide access only to the billed revenue dashboard, remove this line from the
following code example:
arn:aws:aws-marketplace::<awsAccountID>:AWSMarketplace/SellerDashboard/
CollectionsAndDisbursements_V1
.
{ "Version": "2012-10-17", "Statement": [{ "Effect": "Allow", "Action": [ "aws-marketplace:GetSellerDashboard" ], "Resource": [ "arn:aws:aws-marketplace::<awsAccountID>:AWSMarketplace/SellerDashboard/BilledRevenue_V1", "arn:aws:aws-marketplace::<awsAccountID>:AWSMarketplace/SellerDashboard/CollectionsAndDisbursements_V1" ] }] }