

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

# 開始使用
<a name="getting-started"></a>

開始之前，您應該先熟悉其中的基本概念AWS Ground Station。如需詳細資訊，請參閱[AWS Ground Station 運作方式](how-it-works.md)。

## 註冊AWS 帳戶
<a name="sign-up-for-aws"></a>

若要開始使用AWS，您需要AWS 帳戶。如需建立 的相關資訊AWS 帳戶，請參閱《 *AWS 帳戶管理參考指南*》中的 [入門AWS 帳戶](https://docs.aws.amazon.com//accounts/latest/reference/getting-started.html)。

## 將AWS Ground Station許可新增至AWS您的帳戶
<a name="add-permissions-to-account"></a>

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

1.  登入AWS 管理主控台並開啟 [IAM 主控台](https://console.aws.amazon.com/iam)。

1.  建立新政策。使用下列步驟：

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

   1.  在 **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
                        }
                    }
                }
            ]
        }
        ```

------

1.  在 IAM 主控台中，將您建立的政策連接到所需的使用者。

 如需 IAM 使用者和連接政策的詳細資訊，請參閱 [IAM 使用者指南](https://docs.aws.amazon.com/IAM/latest/UserGuide/introduction.html)。