AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
PutDataQualityProfileAnnotationRequest.h
1
6#pragma once
7#include <aws/glue/Glue_EXPORTS.h>
8#include <aws/glue/GlueRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/glue/model/InclusionAnnotationValue.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Glue
16{
17namespace Model
18{
19
23 {
24 public:
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "PutDataQualityProfileAnnotation"; }
32
33 AWS_GLUE_API Aws::String SerializePayload() const override;
34
36
37
39
42 inline const Aws::String& GetProfileId() const { return m_profileId; }
43 inline bool ProfileIdHasBeenSet() const { return m_profileIdHasBeenSet; }
44 template<typename ProfileIdT = Aws::String>
45 void SetProfileId(ProfileIdT&& value) { m_profileIdHasBeenSet = true; m_profileId = std::forward<ProfileIdT>(value); }
46 template<typename ProfileIdT = Aws::String>
47 PutDataQualityProfileAnnotationRequest& WithProfileId(ProfileIdT&& value) { SetProfileId(std::forward<ProfileIdT>(value)); return *this;}
49
51
54 inline InclusionAnnotationValue GetInclusionAnnotation() const { return m_inclusionAnnotation; }
55 inline bool InclusionAnnotationHasBeenSet() const { return m_inclusionAnnotationHasBeenSet; }
56 inline void SetInclusionAnnotation(InclusionAnnotationValue value) { m_inclusionAnnotationHasBeenSet = true; m_inclusionAnnotation = value; }
59 private:
60
61 Aws::String m_profileId;
62 bool m_profileIdHasBeenSet = false;
63
65 bool m_inclusionAnnotationHasBeenSet = false;
66 };
67
68} // namespace Model
69} // namespace Glue
70} // namespace Aws
AWS_GLUE_API Aws::String SerializePayload() const override
PutDataQualityProfileAnnotationRequest & WithProfileId(ProfileIdT &&value)
PutDataQualityProfileAnnotationRequest & WithInclusionAnnotation(InclusionAnnotationValue value)
AWS_GLUE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String