

# Amazon RDS のDB パラメータグループのパラメータ値の表示
<a name="USER_WorkingWithParamGroups.Viewing"></a>

DB パラメータグループのすべてのパラメータとそれらの値のリストを取得できます。

## コンソール
<a name="USER_WorkingWithParamGroups.Viewing.CON"></a>

**DB パラメータグループのパラメータ値を表示するには**

1. AWS マネジメントコンソール にサインインし、Amazon RDS コンソール ([https://console.aws.amazon.com/rds/](https://console.aws.amazon.com/rds/)) を開きます。

1. ナビゲーションペインで、[**パラメータグループ**] を選択します。

   DB パラメータグループがリストに表示されます。

1. パラメータを一覧表示するパラメータグループの名前を選択します。

## AWS CLI
<a name="USER_WorkingWithParamGroups.Viewing.CLI"></a>

DB パラメータグループのパラメータ値を表示するには、以下の必須パラメータを指定して、AWS CLI の [https://docs.aws.amazon.com/cli/latest/reference/rds/describe-db-parameters.html](https://docs.aws.amazon.com/cli/latest/reference/rds/describe-db-parameters.html) コマンドを使用します。
+ `--db-parameter-group-name`

**Example**  
以下の例では、*mydbparametergroup* という名前の DB パラメータグループのパラメータとその値を一覧表示しています。  

```
aws rds describe-db-parameters --db-parameter-group-name mydbparametergroup
```
このコマンドでは次のようなレスポンスが返されます。  

```
DBPARAMETER  Parameter Name            Parameter Value  Source           Data Type  Apply Type  Is Modifiable
DBPARAMETER  allow-suspicious-udfs                      engine-default   boolean    static      false
DBPARAMETER  auto_increment_increment                   engine-default   integer    dynamic     true
DBPARAMETER  auto_increment_offset                      engine-default   integer    dynamic     true
DBPARAMETER  binlog_cache_size         32768            system           integer    dynamic     true
DBPARAMETER  socket                    /tmp/mysql.sock  system           string     static      false
```

## RDS API
<a name="USER_WorkingWithParamGroups.Viewing.API"></a>

DB パラメータグループのパラメータ値を表示するには、以下の必須パラメータを指定して、RDS API の [https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBParameters.html](https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBParameters.html) コマンドを使用します。
+ `DBParameterGroupName`