

翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。

# スタンドアロンアカウントの RDS Protection の設定
<a name="configure-rds-pro-standalone"></a>

スタンドアロンアカウントは、特定の の で保護プランを有効または無効にする決定を所有 AWS アカウント します AWS リージョン。

アカウントが を通じて AWS Organizations、または招待方法によって GuardDuty 管理者アカウントに関連付けられている場合、このセクションはアカウントには適用されません。詳細については、「[マルチアカウント環境での RDS Protection の有効化](configure-rds-pro-multi-account.md)」を参照してください。

RDS Protection を有効にすると、GuardDuty はアカウントでサポートされているデータベースの「[RDS ログインアクティビティ](rds-protection.md#guardduty-rds-login-events)」のモニタリングを開始します。

任意のアクセス方法を選択して、スタンドアロンアカウントの RDS Protection を設定します。

------
#### [ Console ]

1. [https://console.aws.amazon.com/guardduty/](https://console.aws.amazon.com/guardduty/) で GuardDuty コンソールを開きます。

1. ナビゲーションペインで、**保護プラン**を選択します。

1. **すべての有効化の設定** を選択します。**RDS Protection** で、**Enable** を選択して RDS Protection を有効にします。

1. **すべて保存**を選択し、**確認して保存**を選択します。

------
#### [ API/CLI ]

ユーザー独自のリージョンレベルのディテクター ID を使用し、`features` オブジェクト `name` を `RDS_LOGIN_EVENTS` として、`status` を `ENABLED` として渡して、[https://docs.aws.amazon.com/guardduty/latest/APIReference/API_UpdateDetector.html](https://docs.aws.amazon.com/guardduty/latest/APIReference/API_UpdateDetector.html) API オペレーションを実行します。

または、 AWS CLI を使用して RDS Protection を有効にすることもできます。次のコマンドを実行し、{{12abc34d567e8fa901bc2d34e56789f0}} をアカウントのディテクター ID に置き換え、{{us-east-1}} を RDS Protection を有効にするリージョンに置き換えます。

アカウントと現在のリージョンの `detectorId` を検索するには、[https://console.aws.amazon.com/guardduty/](https://console.aws.amazon.com/guardduty/) コンソールの **[設定]** ページを参照するか、[https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html](https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html) API を実行します。

```
aws guardduty update-detector --detector-id {{12abc34d567e8fa901bc2d34e56789f0}} --region {{us-east-1}} --features '[{"Name" : "RDS_LOGIN_EVENTS", "Status" : "ENABLED"}]'
```

------