﻿/**
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0.
 */

#pragma once
#include <aws/s3/S3_EXPORTS.h>

namespace Aws {
namespace Utils {
namespace Xml {
class XmlNode;
}  // namespace Xml
}  // namespace Utils
namespace S3 {
namespace Model {

/**
 * <p>Container for the stats details.</p><p><h3>See Also:</h3>   <a
 * href="http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/Stats">AWS API
 * Reference</a></p>
 */
class Stats {
 public:
  AWS_S3_API Stats() = default;
  AWS_S3_API Stats(const Aws::Utils::Xml::XmlNode& xmlNode);
  AWS_S3_API Stats& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);

  AWS_S3_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;

  ///@{
  /**
   * <p>The total number of object bytes scanned.</p>
   */
  inline long long GetBytesScanned() const { return m_bytesScanned; }
  inline bool BytesScannedHasBeenSet() const { return m_bytesScannedHasBeenSet; }
  inline void SetBytesScanned(long long value) {
    m_bytesScannedHasBeenSet = true;
    m_bytesScanned = value;
  }
  inline Stats& WithBytesScanned(long long value) {
    SetBytesScanned(value);
    return *this;
  }
  ///@}

  ///@{
  /**
   * <p>The total number of uncompressed object bytes processed.</p>
   */
  inline long long GetBytesProcessed() const { return m_bytesProcessed; }
  inline bool BytesProcessedHasBeenSet() const { return m_bytesProcessedHasBeenSet; }
  inline void SetBytesProcessed(long long value) {
    m_bytesProcessedHasBeenSet = true;
    m_bytesProcessed = value;
  }
  inline Stats& WithBytesProcessed(long long value) {
    SetBytesProcessed(value);
    return *this;
  }
  ///@}

  ///@{
  /**
   * <p>The total number of bytes of records payload data returned.</p>
   */
  inline long long GetBytesReturned() const { return m_bytesReturned; }
  inline bool BytesReturnedHasBeenSet() const { return m_bytesReturnedHasBeenSet; }
  inline void SetBytesReturned(long long value) {
    m_bytesReturnedHasBeenSet = true;
    m_bytesReturned = value;
  }
  inline Stats& WithBytesReturned(long long value) {
    SetBytesReturned(value);
    return *this;
  }
  ///@}
 private:
  long long m_bytesScanned{0};

  long long m_bytesProcessed{0};

  long long m_bytesReturned{0};
  bool m_bytesScannedHasBeenSet = false;
  bool m_bytesProcessedHasBeenSet = false;
  bool m_bytesReturnedHasBeenSet = false;
};

}  // namespace Model
}  // namespace S3
}  // namespace Aws
