AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
DeleteTimeSeriesDataPointsRequest.h
1
6#pragma once
7#include <aws/datazone/DataZone_EXPORTS.h>
8#include <aws/datazone/DataZoneRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/datazone/model/TimeSeriesEntityType.h>
11#include <utility>
12#include <aws/core/utils/UUID.h>
13
14namespace Aws
15{
16namespace Http
17{
18 class URI;
19} //namespace Http
20namespace DataZone
21{
22namespace Model
23{
24
28 {
29 public:
30 AWS_DATAZONE_API DeleteTimeSeriesDataPointsRequest() = default;
31
32 // Service request name is the Operation name which will send this request out,
33 // each operation should has unique request name, so that we can get operation's name from this request.
34 // Note: this is not true for response, multiple operations may have the same response name,
35 // so we can not get operation's name from response.
36 inline virtual const char* GetServiceRequestName() const override { return "DeleteTimeSeriesDataPoints"; }
37
38 AWS_DATAZONE_API Aws::String SerializePayload() const override;
39
40 AWS_DATAZONE_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
41
42
44
48 inline const Aws::String& GetClientToken() const { return m_clientToken; }
49 inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; }
50 template<typename ClientTokenT = Aws::String>
51 void SetClientToken(ClientTokenT&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::forward<ClientTokenT>(value); }
52 template<typename ClientTokenT = Aws::String>
53 DeleteTimeSeriesDataPointsRequest& WithClientToken(ClientTokenT&& value) { SetClientToken(std::forward<ClientTokenT>(value)); return *this;}
55
57
61 inline const Aws::String& GetDomainIdentifier() const { return m_domainIdentifier; }
62 inline bool DomainIdentifierHasBeenSet() const { return m_domainIdentifierHasBeenSet; }
63 template<typename DomainIdentifierT = Aws::String>
64 void SetDomainIdentifier(DomainIdentifierT&& value) { m_domainIdentifierHasBeenSet = true; m_domainIdentifier = std::forward<DomainIdentifierT>(value); }
65 template<typename DomainIdentifierT = Aws::String>
66 DeleteTimeSeriesDataPointsRequest& WithDomainIdentifier(DomainIdentifierT&& value) { SetDomainIdentifier(std::forward<DomainIdentifierT>(value)); return *this;}
68
70
73 inline const Aws::String& GetEntityIdentifier() const { return m_entityIdentifier; }
74 inline bool EntityIdentifierHasBeenSet() const { return m_entityIdentifierHasBeenSet; }
75 template<typename EntityIdentifierT = Aws::String>
76 void SetEntityIdentifier(EntityIdentifierT&& value) { m_entityIdentifierHasBeenSet = true; m_entityIdentifier = std::forward<EntityIdentifierT>(value); }
77 template<typename EntityIdentifierT = Aws::String>
78 DeleteTimeSeriesDataPointsRequest& WithEntityIdentifier(EntityIdentifierT&& value) { SetEntityIdentifier(std::forward<EntityIdentifierT>(value)); return *this;}
80
82
85 inline TimeSeriesEntityType GetEntityType() const { return m_entityType; }
86 inline bool EntityTypeHasBeenSet() const { return m_entityTypeHasBeenSet; }
87 inline void SetEntityType(TimeSeriesEntityType value) { m_entityTypeHasBeenSet = true; m_entityType = value; }
90
92
95 inline const Aws::String& GetFormName() const { return m_formName; }
96 inline bool FormNameHasBeenSet() const { return m_formNameHasBeenSet; }
97 template<typename FormNameT = Aws::String>
98 void SetFormName(FormNameT&& value) { m_formNameHasBeenSet = true; m_formName = std::forward<FormNameT>(value); }
99 template<typename FormNameT = Aws::String>
100 DeleteTimeSeriesDataPointsRequest& WithFormName(FormNameT&& value) { SetFormName(std::forward<FormNameT>(value)); return *this;}
102 private:
103
105 bool m_clientTokenHasBeenSet = true;
106
107 Aws::String m_domainIdentifier;
108 bool m_domainIdentifierHasBeenSet = false;
109
110 Aws::String m_entityIdentifier;
111 bool m_entityIdentifierHasBeenSet = false;
112
114 bool m_entityTypeHasBeenSet = false;
115
116 Aws::String m_formName;
117 bool m_formNameHasBeenSet = false;
118 };
119
120} // namespace Model
121} // namespace DataZone
122} // namespace Aws
AWS_DATAZONE_API DeleteTimeSeriesDataPointsRequest()=default
DeleteTimeSeriesDataPointsRequest & WithDomainIdentifier(DomainIdentifierT &&value)
DeleteTimeSeriesDataPointsRequest & WithEntityIdentifier(EntityIdentifierT &&value)
AWS_DATAZONE_API Aws::String SerializePayload() const override
DeleteTimeSeriesDataPointsRequest & WithFormName(FormNameT &&value)
DeleteTimeSeriesDataPointsRequest & WithEntityType(TimeSeriesEntityType value)
DeleteTimeSeriesDataPointsRequest & WithClientToken(ClientTokenT &&value)
AWS_DATAZONE_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
static Aws::Utils::UUID PseudoRandomUUID()
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String