

本文属于机器翻译版本。若本译文内容与英语原文存在差异，则一律以英文原文为准。

# 修改 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
```