

Terjemahan disediakan oleh mesin penerjemah. Jika konten terjemahan yang diberikan bertentangan dengan versi bahasa Inggris aslinya, utamakan versi bahasa Inggris.

# Contoh: Upgrade versi utama dari 1.1.1.0 ke 1.2.0.2 dengan grup parameter default
<a name="cfn-engine-update-1110-1202-default"></a>

Temukan `DBCluster` yang ingin Anda tingkatkan, dan templat yang Anda gunakan untuk membuatnya. Contoh:

```
Description: Base Template to create Neptune Stack with Engine Version 1.1.1.0 using default Parameter Groups
Parameters:
  DbInstanceType:
    Description: Neptune DB instance type
    Type: String
    Default: db.r5.large
Resources:
  NeptuneDBCluster:
    Type: 'AWS::Neptune::DBCluster'
    Properties:
      EngineVersion: 1.1.1.0
  NeptuneDBInstance:
    Type: 'AWS::Neptune::DBInstance'
    Properties:
      DBClusterIdentifier:
        Ref: NeptuneDBCluster
      DBInstanceClass:
        Ref: DbInstanceType
    DependsOn:
      - NeptuneDBCluster
Outputs:
  DBClusterId:
    Description: Neptune Cluster Identifier
    Value:
      Ref: NeptuneDBCluster
```
+ Perbarui default `DBClusterParameterGroup` ke yang ada di keluarga grup parameter yang digunakan oleh versi mesin baru (di sini`default.neptune1.2`).
+ Untuk setiap yang `DBInstance` dilampirkan ke`DBCluster`, perbarui default `DBParameterGroup` ke yang ada di keluarga yang digunakan oleh versi mesin baru (di sini`default.neptune1.2`).
+ Setel `DBInstanceParameterGroupName` properti ke grup parameter default dalam keluarga itu (di sini`default.neptune1.2`).
+ Perbarui `EngineVersion` properti dari `1.1.0.0` ke`1.2.0.2`.

Template akan terlihat seperti ini:

```
Description: Template to upgrade major engine version to 1.2.0.2 by using upgraded default parameter groups
Parameters:
  DbInstanceType:
    Description: Neptune DB instance type
    Type: String
    Default: db.r5.large
Resources:
  NeptuneDBCluster:
    Type: 'AWS::Neptune::DBCluster'
    Properties:
      EngineVersion: 1.2.0.2
      DBClusterParameterGroupName: default.neptune1.2
      DBInstanceParameterGroupName: default.neptune1.2
  NeptuneDBInstance:
    Type: 'AWS::Neptune::DBInstance'
    Properties:
      DBClusterIdentifier:
        Ref: NeptuneDBCluster
      DBInstanceClass:
        Ref: DbInstanceType
      DBParameterGroupName: default.neptune1.2
    DependsOn:
      - NeptuneDBCluster
Outputs:
  DBClusterId:
    Description: Neptune Cluster Identifier
    Value:
```

Sekarang gunakan CloudFormation untuk menjalankan template yang direvisi.