azure-messaging-eventhubs
Loading...
Searching...
No Matches
consumer_client_models.hpp
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3#pragma once
4
5// cspell: word myservicebus
6#include <string>
7
8namespace Azure { namespace Messaging { namespace EventHubs { namespace Models {
9
13 {
17
21 std::string ConsumerGroup;
22
25 std::string EventHubName;
26
29 std::string ClientId;
30 };
31
32}}}} // namespace Azure::Messaging::EventHubs::Models
Contains options for the ConsumerClient creation.
Definition consumer_client_models.hpp:13
std::string ClientId
A unique name used to identify this consumer.
Definition consumer_client_models.hpp:29
std::string FullyQualifiedNamespace
The Fully Qualified Namespace that the Event Hub exists in.
Definition consumer_client_models.hpp:16
std::string ConsumerGroup
The name of the consumer group that this consumer is associated with. Events will be read only in the...
Definition consumer_client_models.hpp:21
std::string EventHubName
The name of the Event Hub that the consumer is connected to.
Definition consumer_client_models.hpp:25