View a markdown version of this page

開始使用 - AWS Ground Station

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

開始使用

開始之前,您應該先熟悉其中的基本概念 AWS Ground Station。如需詳細資訊,請參閱AWS Ground Station 運作方式

註冊 AWS 帳戶

若要開始使用 AWS,您需要 AWS 帳戶。如需建立 的相關資訊 AWS 帳戶,請參閱《 AWS 帳戶管理 參考指南》中的 入門 AWS 帳戶

將 AWS Ground Station 許可新增至 AWS 您的帳戶

若要在不要求管理使用者 AWS Ground Station 的情況下使用 ,您需要建立新的政策並將其連接到 AWS 您的帳戶。

  1. 登入 AWS 管理主控台 並開啟 IAM 主控台

  2. 建立新政策。使用下列步驟:

    1. 在導覽窗格中,選擇 Policies (政策),然後選擇 Create Policy (建立政策)

    2. JSON 標籤中,使用下列值之一編輯 JSON。使用最適合您的應用程式的 JSON。

      • 對於 Ground Station 管理權限,將動作設定為 Groundstation:*,如下所示:

        JSON
        { "Version":"2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "groundstation:*" ], "Resource": [ "*" ] } ] }
      • 對於唯讀權限,請將 Action (動作) 設為 groundstation:get*groundstation:list*groundstation:describe*,如下所示:

        JSON
        { "Version":"2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "groundstation:Get*", "groundstation:List*", "groundstation:Describe*" ], "Resource": [ "*" ] } ] }
      • 如需透過多重驗證來增加安全性,將 Action (動作) 設定為 groundstation:* 和將 Condition/Bool (條件/布林) 設定為 aws:MultiFactorAuthPresent:true,如下所示:

        JSON
        { "Version":"2012-10-17", "Statement": [ { "Effect": "Allow", "Action": "groundstation:*", "Resource": "*", "Condition": { "Bool": { "aws:MultiFactorAuthPresent": true } } } ] }
  3. 在 IAM 主控台中,將您建立的政策連接到所需的使用者。

如需 IAM 使用者和連接政策的詳細資訊,請參閱 IAM 使用者指南