Scalr\Service\Aws\Rds\DataType\CreateDBClusterRequestData::__construct PHP Метод

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

Constructor
public __construct ( string $dBClusterIdentifier, string $engine, string $masterUsername, string $masterUserPassword )
$dBClusterIdentifier string A user-supplied cluster identifier
$engine string The name of the database engine to be used for this DB Cluster
$masterUsername string The master username for database instances in this cluster
$masterUserPassword string The password form database instances in this cluster
    public function __construct($dBClusterIdentifier, $engine, $masterUsername, $masterUserPassword)
    {
        parent::__construct();
        $this->dBClusterIdentifier = (string) $dBClusterIdentifier;
        $this->engine = (string) $engine;
        $this->masterUsername = (string) $masterUsername;
        $this->masterUserPassword = (string) $masterUserPassword;
    }