

本文為英文版的機器翻譯版本，如內容有任何歧義或不一致之處，概以英文版為準。

# 賣方儀表板
<a name="dashboards"></a>

AWS Marketplace 提供由 [Amazon Quick](https://docs.aws.amazon.com/quicksight/latest/user/welcome.html) 支援的儀表板，其中包含圖表、圖表和洞見，可協助您存取和分析財務、銷售和行銷資料。賣方儀表板包括：

**[財務操作的儀表板](finance-operations.md)**
+ [計費收入儀表板](billed-revenue-dashboard.md) – 提供用於會計和其他財務報告目的之計費收入的相關資訊。
+ [集合和支出儀表板](collections-disbursement-dashboard.md) – 提供自上一次付款以來 AWS ，收集並撥付至您銀行帳戶之資金的相關資訊。
+ [稅務儀表板](taxation-dashboard.md) – 提供賣方交易稅金的相關資訊。

**[銷售操作的儀表板](sales-operations.md)**
+ [協議和續約儀表板](agreements-renewals-dashboard.md) – 在簽署協議後的 24 小時內提供協議和續約的相關資訊 AWS Marketplace。
+ [用量儀表板](usage-dashboard.md) – 為使用 SaaS 和伺服器用量型產品的客戶提供視覺化和精細資料。
+ [行銷儀表板](marketing-dashboards.md) – 提供多個儀表板，協助您追蹤行銷資料。

**[行銷儀表板](marketing-dashboards.md)**
+ [客戶協議儀表板](customer-agreements-dashboard.md) – 提供有關訂閱您產品的協議和客戶的資料。
+ [列出效能儀表板](listing-performance-dashboard.md) – 提供 AWS Marketplace 清單中流量和使用者行為的資料。
+ [搜尋效能儀表板](search-performance-dashboard.md) – 提供套用至 AWS Marketplace 清單之關鍵字的資料。

具有適當許可的 AWS Marketplace 賣方可以使用儀表板。

## 存取儀表板
<a name="reports-accessing"></a>

根據預設，賣方帳戶的 AWS Marketplace 系統管理員可以存取 中 Insights 索引標籤上的所有儀表板 AWS Marketplace 管理入口網站。系統管理員可以建立 AWS Identity and Access Management (IAM) 政策，為賣方公司中的其他使用者提供特定儀表板的存取權。

**注意**  
在 2023 年 9 月，我們將不再支援存取由舊版 IAM 許可啟用的賣方儀表板。在下列程式碼範例中，使用新的 Amazon Resource Name (ARN) 格式更新您的 IAM 許可。

如需建立政策的相關資訊，請參閱[建立 IAM 政策](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_create.html)。

### 儀表板政策
<a name="dashboard-policy"></a>

使用下列其中一個政策來提供部分或全部儀表板的存取權。

下列範例提供目前和未來 AWS Marketplace 資源的存取權，包括儀表板和報告。它使用所有目前和未來的資料饋送：

------
#### [ JSON ]

****  

```
{
    "Version":"2012-10-17",		 	 	 
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "aws-marketplace:GetSellerDashboard"
            ],
            "Resource": [
                "arn:aws:aws-marketplace::{{111122223333}}:AWSMarketplace/*"
            ]
        }
    ]
}
```

------

您也可以包含一或多個儀表板ARNs 來提供存取權。下列範例顯示如何提供所有儀表板的存取權：

------
#### [ JSON ]

****  

```
{
    "Version":"2012-10-17",		 	 	 
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "aws-marketplace:GetSellerDashboard"
            ],
            "Resource": [
                "arn:aws:aws-marketplace::{{111122223333}}:AWSMarketplace/ReportingData/BillingEvent_V1/Dashboard/BilledRevenue_V1",
                "arn:aws:aws-marketplace::{{111122223333}}:AWSMarketplace/ReportingData/BillingEvent_V1/Dashboard/CollectionsAndDisbursements_V1",
                "arn:aws:aws-marketplace::{{111122223333}}:AWSMarketplace/ReportingData/Agreement_V1/Dashboard/AgreementsAndRenewals_V1",
                "arn:aws:aws-marketplace::{{111122223333}}:AWSMarketplace/ReportingData/Usage_V1/Dashboard/Usage_V1",
                "arn:aws:aws-marketplace::{{111122223333}}:AWSMarketplace/ReportingData/TaxItem_V1/Dashboard/Tax_V1",
                "arn:aws:aws-marketplace::{{111122223333}}:AWSMarketplace/ReportingData/Marketing_V1/Dashboard/CustomerAgreements_V1",
                "arn:aws:aws-marketplace::{{111122223333}}:AWSMarketplace/ReportingData/Marketing_V1/Dashboard/ListingPerformance_V1",
                "arn:aws:aws-marketplace::{{111122223333}}:AWSMarketplace/ReportingData/Marketing_V1/Dashboard/SearchPerformance_V1"
            ]
        }
    ]
}
```

------

若要移除儀表板的存取權，請從政策的 `Resource`區段將其刪除。

**注意**  
如需建立 AWS Identity and Access Management (IAM) 政策的詳細資訊，請參閱*AWS Identity and Access Management *[《 使用者指南》中的建立 IAM 政策](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_create.html)。