/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies a batch of events to process.See Also:
AWS
* API Reference
The batch of events to process. For each item in a batch, the endpoint ID * acts as a key that has an EventsBatch object as its value.
*/ inline const Aws::MapThe batch of events to process. For each item in a batch, the endpoint ID * acts as a key that has an EventsBatch object as its value.
*/ inline bool BatchItemHasBeenSet() const { return m_batchItemHasBeenSet; } /** *The batch of events to process. For each item in a batch, the endpoint ID * acts as a key that has an EventsBatch object as its value.
*/ inline void SetBatchItem(const Aws::MapThe batch of events to process. For each item in a batch, the endpoint ID * acts as a key that has an EventsBatch object as its value.
*/ inline void SetBatchItem(Aws::MapThe batch of events to process. For each item in a batch, the endpoint ID * acts as a key that has an EventsBatch object as its value.
*/ inline EventsRequest& WithBatchItem(const Aws::MapThe batch of events to process. For each item in a batch, the endpoint ID * acts as a key that has an EventsBatch object as its value.
*/ inline EventsRequest& WithBatchItem(Aws::MapThe batch of events to process. For each item in a batch, the endpoint ID * acts as a key that has an EventsBatch object as its value.
*/ inline EventsRequest& AddBatchItem(const Aws::String& key, const EventsBatch& value) { m_batchItemHasBeenSet = true; m_batchItem.emplace(key, value); return *this; } /** *The batch of events to process. For each item in a batch, the endpoint ID * acts as a key that has an EventsBatch object as its value.
*/ inline EventsRequest& AddBatchItem(Aws::String&& key, const EventsBatch& value) { m_batchItemHasBeenSet = true; m_batchItem.emplace(std::move(key), value); return *this; } /** *The batch of events to process. For each item in a batch, the endpoint ID * acts as a key that has an EventsBatch object as its value.
*/ inline EventsRequest& AddBatchItem(const Aws::String& key, EventsBatch&& value) { m_batchItemHasBeenSet = true; m_batchItem.emplace(key, std::move(value)); return *this; } /** *The batch of events to process. For each item in a batch, the endpoint ID * acts as a key that has an EventsBatch object as its value.
*/ inline EventsRequest& AddBatchItem(Aws::String&& key, EventsBatch&& value) { m_batchItemHasBeenSet = true; m_batchItem.emplace(std::move(key), std::move(value)); return *this; } /** *The batch of events to process. For each item in a batch, the endpoint ID * acts as a key that has an EventsBatch object as its value.
*/ inline EventsRequest& AddBatchItem(const char* key, EventsBatch&& value) { m_batchItemHasBeenSet = true; m_batchItem.emplace(key, std::move(value)); return *this; } /** *The batch of events to process. For each item in a batch, the endpoint ID * acts as a key that has an EventsBatch object as its value.
*/ inline EventsRequest& AddBatchItem(const char* key, const EventsBatch& value) { m_batchItemHasBeenSet = true; m_batchItem.emplace(key, value); return *this; } private: Aws::Map