

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

# 修改 Neptune 全球資料庫
<a name="neptune-gdb-modifying"></a>

雖然可以針對全球資料庫中的每個 Neptune 資料庫叢集個別設定資料庫叢集參數群組，但是最好讓叢集之間的設定保持一致，以避免次要叢集必須升級為主要叢集時發生意外的行為變更。

您可以使用 [modify-global-cluster](https://docs.aws.amazon.com/cli/latest/reference/neptune/modify-global-cluster.html) CLI 命令 (其中包裝 [ModifyGlobalCluster](api-global-dbs.md#ModifyGlobalCluster) API) 來修改全球資料庫本身的設定。例如，您可以變更全球資料庫識別符，同時關閉刪除保護，如下所示：

```
aws neptune modify-global-cluster \
  --region (region of the DB cluster to modify) \
  --global-cluster-identifier (current global database ID) \
  --new-global-cluster-identifier (new global database ID to assign) \
  --no-deletion-protection
```