Scalr\Service\Aws\Rds\DataType\DBInstanceData::getRestoreFromSnapshotRequest PHP 메소드

getRestoreFromSnapshotRequest() 공개 메소드

Gets a new RestoreDBInstanceFromDBSnapshotRequestData object for this DB Instance
public getRestoreFromSnapshotRequest ( string $dbSnapshotIdentifier ) : Scalr\Service\Aws\Rds\DataType\RestoreDBInstanceFromDBSnapshotRequestData
$dbSnapshotIdentifier string The DB Snapshot Identifier.
리턴 Scalr\Service\Aws\Rds\DataType\RestoreDBInstanceFromDBSnapshotRequestData
    public function getRestoreFromSnapshotRequest($dbSnapshotIdentifier)
    {
        $this->throwExceptionIfNotInitialized();
        return new RestoreDBInstanceFromDBSnapshotRequestData($this->dBInstanceIdentifier, $dbSnapshotIdentifier);
    }