/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains information about the criteria used to query usage
* statistics.See Also:
AWS
* API Reference
The account IDs to aggregate usage statistics from.
*/ inline const Aws::VectorThe account IDs to aggregate usage statistics from.
*/ inline bool AccountIdsHasBeenSet() const { return m_accountIdsHasBeenSet; } /** *The account IDs to aggregate usage statistics from.
*/ inline void SetAccountIds(const Aws::VectorThe account IDs to aggregate usage statistics from.
*/ inline void SetAccountIds(Aws::VectorThe account IDs to aggregate usage statistics from.
*/ inline UsageCriteria& WithAccountIds(const Aws::VectorThe account IDs to aggregate usage statistics from.
*/ inline UsageCriteria& WithAccountIds(Aws::VectorThe account IDs to aggregate usage statistics from.
*/ inline UsageCriteria& AddAccountIds(const Aws::String& value) { m_accountIdsHasBeenSet = true; m_accountIds.push_back(value); return *this; } /** *The account IDs to aggregate usage statistics from.
*/ inline UsageCriteria& AddAccountIds(Aws::String&& value) { m_accountIdsHasBeenSet = true; m_accountIds.push_back(std::move(value)); return *this; } /** *The account IDs to aggregate usage statistics from.
*/ inline UsageCriteria& AddAccountIds(const char* value) { m_accountIdsHasBeenSet = true; m_accountIds.push_back(value); return *this; } /** *The resources to aggregate usage statistics from. Only accepts exact resource * names.
*/ inline const Aws::VectorThe resources to aggregate usage statistics from. Only accepts exact resource * names.
*/ inline bool ResourcesHasBeenSet() const { return m_resourcesHasBeenSet; } /** *The resources to aggregate usage statistics from. Only accepts exact resource * names.
*/ inline void SetResources(const Aws::VectorThe resources to aggregate usage statistics from. Only accepts exact resource * names.
*/ inline void SetResources(Aws::VectorThe resources to aggregate usage statistics from. Only accepts exact resource * names.
*/ inline UsageCriteria& WithResources(const Aws::VectorThe resources to aggregate usage statistics from. Only accepts exact resource * names.
*/ inline UsageCriteria& WithResources(Aws::VectorThe resources to aggregate usage statistics from. Only accepts exact resource * names.
*/ inline UsageCriteria& AddResources(const Aws::String& value) { m_resourcesHasBeenSet = true; m_resources.push_back(value); return *this; } /** *The resources to aggregate usage statistics from. Only accepts exact resource * names.
*/ inline UsageCriteria& AddResources(Aws::String&& value) { m_resourcesHasBeenSet = true; m_resources.push_back(std::move(value)); return *this; } /** *The resources to aggregate usage statistics from. Only accepts exact resource * names.
*/ inline UsageCriteria& AddResources(const char* value) { m_resourcesHasBeenSet = true; m_resources.push_back(value); return *this; } /** *The features to aggregate usage statistics from.
*/ inline const Aws::VectorThe features to aggregate usage statistics from.
*/ inline bool FeaturesHasBeenSet() const { return m_featuresHasBeenSet; } /** *The features to aggregate usage statistics from.
*/ inline void SetFeatures(const Aws::VectorThe features to aggregate usage statistics from.
*/ inline void SetFeatures(Aws::VectorThe features to aggregate usage statistics from.
*/ inline UsageCriteria& WithFeatures(const Aws::VectorThe features to aggregate usage statistics from.
*/ inline UsageCriteria& WithFeatures(Aws::VectorThe features to aggregate usage statistics from.
*/ inline UsageCriteria& AddFeatures(const UsageFeature& value) { m_featuresHasBeenSet = true; m_features.push_back(value); return *this; } /** *The features to aggregate usage statistics from.
*/ inline UsageCriteria& AddFeatures(UsageFeature&& value) { m_featuresHasBeenSet = true; m_features.push_back(std::move(value)); return *this; } private: Aws::Vector