AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
RemoveSchemaVersionMetadataRequest.h
1
6#pragma once
7#include <aws/glue/Glue_EXPORTS.h>
8#include <aws/glue/GlueRequest.h>
9#include <aws/glue/model/SchemaId.h>
10#include <aws/glue/model/SchemaVersionNumber.h>
11#include <aws/core/utils/memory/stl/AWSString.h>
12#include <aws/glue/model/MetadataKeyValuePair.h>
13#include <utility>
14
15namespace Aws
16{
17namespace Glue
18{
19namespace Model
20{
21
25 {
26 public:
28
29 // Service request name is the Operation name which will send this request out,
30 // each operation should has unique request name, so that we can get operation's name from this request.
31 // Note: this is not true for response, multiple operations may have the same response name,
32 // so we can not get operation's name from response.
33 inline virtual const char* GetServiceRequestName() const override { return "RemoveSchemaVersionMetadata"; }
34
35 AWS_GLUE_API Aws::String SerializePayload() const override;
36
38
39
41
45 inline const SchemaId& GetSchemaId() const{ return m_schemaId; }
46 inline bool SchemaIdHasBeenSet() const { return m_schemaIdHasBeenSet; }
47 inline void SetSchemaId(const SchemaId& value) { m_schemaIdHasBeenSet = true; m_schemaId = value; }
48 inline void SetSchemaId(SchemaId&& value) { m_schemaIdHasBeenSet = true; m_schemaId = std::move(value); }
49 inline RemoveSchemaVersionMetadataRequest& WithSchemaId(const SchemaId& value) { SetSchemaId(value); return *this;}
50 inline RemoveSchemaVersionMetadataRequest& WithSchemaId(SchemaId&& value) { SetSchemaId(std::move(value)); return *this;}
52
54
57 inline const SchemaVersionNumber& GetSchemaVersionNumber() const{ return m_schemaVersionNumber; }
58 inline bool SchemaVersionNumberHasBeenSet() const { return m_schemaVersionNumberHasBeenSet; }
59 inline void SetSchemaVersionNumber(const SchemaVersionNumber& value) { m_schemaVersionNumberHasBeenSet = true; m_schemaVersionNumber = value; }
60 inline void SetSchemaVersionNumber(SchemaVersionNumber&& value) { m_schemaVersionNumberHasBeenSet = true; m_schemaVersionNumber = std::move(value); }
64
66
69 inline const Aws::String& GetSchemaVersionId() const{ return m_schemaVersionId; }
70 inline bool SchemaVersionIdHasBeenSet() const { return m_schemaVersionIdHasBeenSet; }
71 inline void SetSchemaVersionId(const Aws::String& value) { m_schemaVersionIdHasBeenSet = true; m_schemaVersionId = value; }
72 inline void SetSchemaVersionId(Aws::String&& value) { m_schemaVersionIdHasBeenSet = true; m_schemaVersionId = std::move(value); }
73 inline void SetSchemaVersionId(const char* value) { m_schemaVersionIdHasBeenSet = true; m_schemaVersionId.assign(value); }
75 inline RemoveSchemaVersionMetadataRequest& WithSchemaVersionId(Aws::String&& value) { SetSchemaVersionId(std::move(value)); return *this;}
76 inline RemoveSchemaVersionMetadataRequest& WithSchemaVersionId(const char* value) { SetSchemaVersionId(value); return *this;}
78
80
83 inline const MetadataKeyValuePair& GetMetadataKeyValue() const{ return m_metadataKeyValue; }
84 inline bool MetadataKeyValueHasBeenSet() const { return m_metadataKeyValueHasBeenSet; }
85 inline void SetMetadataKeyValue(const MetadataKeyValuePair& value) { m_metadataKeyValueHasBeenSet = true; m_metadataKeyValue = value; }
86 inline void SetMetadataKeyValue(MetadataKeyValuePair&& value) { m_metadataKeyValueHasBeenSet = true; m_metadataKeyValue = std::move(value); }
90 private:
91
92 SchemaId m_schemaId;
93 bool m_schemaIdHasBeenSet = false;
94
95 SchemaVersionNumber m_schemaVersionNumber;
96 bool m_schemaVersionNumberHasBeenSet = false;
97
98 Aws::String m_schemaVersionId;
99 bool m_schemaVersionIdHasBeenSet = false;
100
101 MetadataKeyValuePair m_metadataKeyValue;
102 bool m_metadataKeyValueHasBeenSet = false;
103 };
104
105} // namespace Model
106} // namespace Glue
107} // namespace Aws
RemoveSchemaVersionMetadataRequest & WithMetadataKeyValue(MetadataKeyValuePair &&value)
RemoveSchemaVersionMetadataRequest & WithSchemaId(const SchemaId &value)
RemoveSchemaVersionMetadataRequest & WithSchemaVersionId(const char *value)
RemoveSchemaVersionMetadataRequest & WithSchemaVersionId(Aws::String &&value)
RemoveSchemaVersionMetadataRequest & WithSchemaVersionNumber(SchemaVersionNumber &&value)
AWS_GLUE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
RemoveSchemaVersionMetadataRequest & WithSchemaId(SchemaId &&value)
AWS_GLUE_API Aws::String SerializePayload() const override
RemoveSchemaVersionMetadataRequest & WithMetadataKeyValue(const MetadataKeyValuePair &value)
RemoveSchemaVersionMetadataRequest & WithSchemaVersionId(const Aws::String &value)
RemoveSchemaVersionMetadataRequest & WithSchemaVersionNumber(const SchemaVersionNumber &value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String