/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains error information for asset property value entries that are
* associated with the BatchPutAssetPropertyValue
* API.See Also:
AWS
* API Reference
The ID of the failed entry.
*/ inline const Aws::String& GetEntryId() const{ return m_entryId; } /** *The ID of the failed entry.
*/ inline bool EntryIdHasBeenSet() const { return m_entryIdHasBeenSet; } /** *The ID of the failed entry.
*/ inline void SetEntryId(const Aws::String& value) { m_entryIdHasBeenSet = true; m_entryId = value; } /** *The ID of the failed entry.
*/ inline void SetEntryId(Aws::String&& value) { m_entryIdHasBeenSet = true; m_entryId = std::move(value); } /** *The ID of the failed entry.
*/ inline void SetEntryId(const char* value) { m_entryIdHasBeenSet = true; m_entryId.assign(value); } /** *The ID of the failed entry.
*/ inline BatchPutAssetPropertyErrorEntry& WithEntryId(const Aws::String& value) { SetEntryId(value); return *this;} /** *The ID of the failed entry.
*/ inline BatchPutAssetPropertyErrorEntry& WithEntryId(Aws::String&& value) { SetEntryId(std::move(value)); return *this;} /** *The ID of the failed entry.
*/ inline BatchPutAssetPropertyErrorEntry& WithEntryId(const char* value) { SetEntryId(value); return *this;} /** *The list of update property value errors.
*/ inline const Aws::VectorThe list of update property value errors.
*/ inline bool ErrorsHasBeenSet() const { return m_errorsHasBeenSet; } /** *The list of update property value errors.
*/ inline void SetErrors(const Aws::VectorThe list of update property value errors.
*/ inline void SetErrors(Aws::VectorThe list of update property value errors.
*/ inline BatchPutAssetPropertyErrorEntry& WithErrors(const Aws::VectorThe list of update property value errors.
*/ inline BatchPutAssetPropertyErrorEntry& WithErrors(Aws::VectorThe list of update property value errors.
*/ inline BatchPutAssetPropertyErrorEntry& AddErrors(const BatchPutAssetPropertyError& value) { m_errorsHasBeenSet = true; m_errors.push_back(value); return *this; } /** *The list of update property value errors.
*/ inline BatchPutAssetPropertyErrorEntry& AddErrors(BatchPutAssetPropertyError&& value) { m_errorsHasBeenSet = true; m_errors.push_back(std::move(value)); return *this; } private: Aws::String m_entryId; bool m_entryIdHasBeenSet = false; Aws::Vector