AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
BatchRemoveFacetFromObject.h
1
6#pragma once
7#include <aws/clouddirectory/CloudDirectory_EXPORTS.h>
8#include <aws/clouddirectory/model/SchemaFacet.h>
9#include <aws/clouddirectory/model/ObjectReference.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace CloudDirectory
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_CLOUDDIRECTORY_API BatchRemoveFacetFromObject();
37 AWS_CLOUDDIRECTORY_API BatchRemoveFacetFromObject(Aws::Utils::Json::JsonView jsonValue);
39 AWS_CLOUDDIRECTORY_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const SchemaFacet& GetSchemaFacet() const{ return m_schemaFacet; }
47 inline bool SchemaFacetHasBeenSet() const { return m_schemaFacetHasBeenSet; }
48 inline void SetSchemaFacet(const SchemaFacet& value) { m_schemaFacetHasBeenSet = true; m_schemaFacet = value; }
49 inline void SetSchemaFacet(SchemaFacet&& value) { m_schemaFacetHasBeenSet = true; m_schemaFacet = std::move(value); }
50 inline BatchRemoveFacetFromObject& WithSchemaFacet(const SchemaFacet& value) { SetSchemaFacet(value); return *this;}
51 inline BatchRemoveFacetFromObject& WithSchemaFacet(SchemaFacet&& value) { SetSchemaFacet(std::move(value)); return *this;}
53
55
58 inline const ObjectReference& GetObjectReference() const{ return m_objectReference; }
59 inline bool ObjectReferenceHasBeenSet() const { return m_objectReferenceHasBeenSet; }
60 inline void SetObjectReference(const ObjectReference& value) { m_objectReferenceHasBeenSet = true; m_objectReference = value; }
61 inline void SetObjectReference(ObjectReference&& value) { m_objectReferenceHasBeenSet = true; m_objectReference = std::move(value); }
63 inline BatchRemoveFacetFromObject& WithObjectReference(ObjectReference&& value) { SetObjectReference(std::move(value)); return *this;}
65 private:
66
67 SchemaFacet m_schemaFacet;
68 bool m_schemaFacetHasBeenSet = false;
69
70 ObjectReference m_objectReference;
71 bool m_objectReferenceHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace CloudDirectory
76} // namespace Aws
BatchRemoveFacetFromObject & WithSchemaFacet(SchemaFacet &&value)
AWS_CLOUDDIRECTORY_API BatchRemoveFacetFromObject(Aws::Utils::Json::JsonView jsonValue)
AWS_CLOUDDIRECTORY_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_CLOUDDIRECTORY_API BatchRemoveFacetFromObject & operator=(Aws::Utils::Json::JsonView jsonValue)
BatchRemoveFacetFromObject & WithObjectReference(ObjectReference &&value)
BatchRemoveFacetFromObject & WithSchemaFacet(const SchemaFacet &value)
BatchRemoveFacetFromObject & WithObjectReference(const ObjectReference &value)
Aws::Utils::Json::JsonValue JsonValue