/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains success information for an entry that is associated with the BatchGetAssetPropertyAggregates
* API.See Also:
AWS
* API Reference
The ID of the entry.
*/ inline const Aws::String& GetEntryId() const{ return m_entryId; } /** *The ID of the entry.
*/ inline bool EntryIdHasBeenSet() const { return m_entryIdHasBeenSet; } /** *The ID of the entry.
*/ inline void SetEntryId(const Aws::String& value) { m_entryIdHasBeenSet = true; m_entryId = value; } /** *The ID of the entry.
*/ inline void SetEntryId(Aws::String&& value) { m_entryIdHasBeenSet = true; m_entryId = std::move(value); } /** *The ID of the entry.
*/ inline void SetEntryId(const char* value) { m_entryIdHasBeenSet = true; m_entryId.assign(value); } /** *The ID of the entry.
*/ inline BatchGetAssetPropertyAggregatesSuccessEntry& WithEntryId(const Aws::String& value) { SetEntryId(value); return *this;} /** *The ID of the entry.
*/ inline BatchGetAssetPropertyAggregatesSuccessEntry& WithEntryId(Aws::String&& value) { SetEntryId(std::move(value)); return *this;} /** *The ID of the entry.
*/ inline BatchGetAssetPropertyAggregatesSuccessEntry& WithEntryId(const char* value) { SetEntryId(value); return *this;} /** *The requested aggregated asset property values (for example, average, * minimum, and maximum).
*/ inline const Aws::VectorThe requested aggregated asset property values (for example, average, * minimum, and maximum).
*/ inline bool AggregatedValuesHasBeenSet() const { return m_aggregatedValuesHasBeenSet; } /** *The requested aggregated asset property values (for example, average, * minimum, and maximum).
*/ inline void SetAggregatedValues(const Aws::VectorThe requested aggregated asset property values (for example, average, * minimum, and maximum).
*/ inline void SetAggregatedValues(Aws::VectorThe requested aggregated asset property values (for example, average, * minimum, and maximum).
*/ inline BatchGetAssetPropertyAggregatesSuccessEntry& WithAggregatedValues(const Aws::VectorThe requested aggregated asset property values (for example, average, * minimum, and maximum).
*/ inline BatchGetAssetPropertyAggregatesSuccessEntry& WithAggregatedValues(Aws::VectorThe requested aggregated asset property values (for example, average, * minimum, and maximum).
*/ inline BatchGetAssetPropertyAggregatesSuccessEntry& AddAggregatedValues(const AggregatedValue& value) { m_aggregatedValuesHasBeenSet = true; m_aggregatedValues.push_back(value); return *this; } /** *The requested aggregated asset property values (for example, average, * minimum, and maximum).
*/ inline BatchGetAssetPropertyAggregatesSuccessEntry& AddAggregatedValues(AggregatedValue&& value) { m_aggregatedValuesHasBeenSet = true; m_aggregatedValues.push_back(std::move(value)); return *this; } private: Aws::String m_entryId; bool m_entryIdHasBeenSet = false; Aws::Vector