C# Класс Amazon.RDS.Model.CreateDBParameterGroupRequest

Container for the parameters to the CreateDBParameterGroup operation.

Creates a new DB parameter group.

A DB parameter group is initially created with the default parameters for the database engine used by the DB instance. To provide custom values for any of the parameters, you must modify the group after creating it using ModifyDBParameterGroup . Once you've created a DB parameter group, you need to associate it with your DB instance using ModifyDBInstance . When you associate a new DB parameter group with a running DB instance, you need to reboot the DB Instance for the new DB parameter group and associated settings to take effect.

Наследование: AmazonRDSRequest
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
CreateDBParameterGroupRequest ( ) : System

Empty constructor used to set properties independently even when a simple constructor is available

CreateDBParameterGroupRequest ( string dbParameterGroupName, string dbParameterGroupFamily, string description ) : System

Instantiates CreateDBParameterGroupRequest with the parameterized properties

Приватные методы

Метод Описание
IsSetDBParameterGroupFamily ( ) : bool
IsSetDBParameterGroupName ( ) : bool
IsSetDescription ( ) : bool
IsSetTags ( ) : bool

Описание методов

CreateDBParameterGroupRequest() публичный Метод

Empty constructor used to set properties independently even when a simple constructor is available
public CreateDBParameterGroupRequest ( ) : System
Результат System

CreateDBParameterGroupRequest() публичный Метод

Instantiates CreateDBParameterGroupRequest with the parameterized properties
public CreateDBParameterGroupRequest ( string dbParameterGroupName, string dbParameterGroupFamily, string description ) : System
dbParameterGroupName string The name of the DB parameter group. Constraints:
  • Must be 1 to 255 alphanumeric characters
  • First character must be a letter
  • Cannot end with a hyphen or contain two consecutive hyphens
This value is stored as a lowercase string.
dbParameterGroupFamily string The DB parameter group family name. A DB parameter group can be associated with one and only one DB parameter group family, and can be applied only to a DB instance running a database engine and engine version compatible with that DB parameter group family.
description string The description for the DB parameter group.
Результат System