All Downloads are FREE. Search and download functionalities are using the official Maven repository.

awscala.simpledb.DomainMetadata.scala Maven / Gradle / Ivy

package awscala.simpledb

import com.amazonaws.services.{ simpledb => aws }

object DomainMetadata {

  def apply(r: aws.model.DomainMetadataResult): DomainMetadata = new DomainMetadata(
    attributeNameCount = r.getAttributeNameCount,
    attributeNamesSizeBytes = r.getAttributeNamesSizeBytes,
    attributeValueCount = r.getAttributeValueCount,
    attributeValuesSizeBytes = r.getAttributeValuesSizeBytes,
    itemCount = r.getItemCount,
    itemNamesSizeBytes = r.getItemNamesSizeBytes,
    timestamp = r.getTimestamp)
}
case class DomainMetadata(
  attributeNameCount: Int, attributeNamesSizeBytes: Long,
  attributeValueCount: Int, attributeValuesSizeBytes: Long,
  itemCount: Int, itemNamesSizeBytes: Long,
  timestamp: Int)





© 2015 - 2024 Weber Informatics LLC | Privacy Policy