Scalr\Service\Aws\Ec2::describeAccountAttributes PHP Method

describeAccountAttributes() public method

Describes the specified attribute of your AWS account.
public describeAccountAttributes ( ListDataType | array | string $attributeNameList ) : Scalr\Service\Aws\Ec2\DataType\AccountAttributeSetList
$attributeNameList Scalr\Service\Aws\DataType\ListDataType | array | string List of the The following table lists the supported account attributes
return Scalr\Service\Aws\Ec2\DataType\AccountAttributeSetList Returns list of the names and values of the requested attributes
    public function describeAccountAttributes($attributeNameList)
    {
        if (!$attributeNameList instanceof ListDataType) {
            $attributeNameList = new ListDataType($attributeNameList);
        }
        return $this->getApiHandler()->describeAccountAttributes($attributeNameList);
    }