Scalr\Service\Aws\Rds\V20141031\RdsApi::_loadDBClusterSnapshotData PHP Méthode

_loadDBClusterSnapshotData() protected méthode

Loads DBClusterSnapshotData from simple xml object
protected _loadDBClusterSnapshotData ( SimpleXMLElement $sxml ) : Scalr\Service\Aws\Rds\DataType\DBClusterSnapshotData
$sxml SimpleXMLElement
Résultat Scalr\Service\Aws\Rds\DataType\DBClusterSnapshotData Returns DBClusterSnapshotData object
    protected function _loadDBClusterSnapshotData(\SimpleXMLElement $sxml)
    {
        $item = null;
        if ($this->exist($sxml)) {
            $item = new DBClusterSnapshotData();
            $item->setRds($this->rds);
            $this->fill($item, $sxml, ['allocatedStorage' => 'int', 'clusterCreateTime' => 'DateTime', 'dBClusterIdentifier', 'dBClusterSnapshotIdentifier', 'engine', 'engineVersion', 'licenseModel', 'masterUsername', 'percentProgress' => 'int', 'port' => 'int', 'snapshotCreateTime' => 'DateTime', 'snapshotType', 'status', 'vpcId', 'availabilityZones' => '_loadAvailabilityZonesList']);
        }
        return $item;
    }
RdsApi