/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/clouddirectory/CloudDirectory_EXPORTS.h> #include <aws/core/utils/memory/stl/AWSVector.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <aws/clouddirectory/model/SchemaFacet.h> #include <utility> namespace Aws { template<typename RESULT_TYPE> class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace CloudDirectory { namespace Model { class GetObjectInformationResult { public: AWS_CLOUDDIRECTORY_API GetObjectInformationResult(); AWS_CLOUDDIRECTORY_API GetObjectInformationResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); AWS_CLOUDDIRECTORY_API GetObjectInformationResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); /** * <p>The facets attached to the specified object. Although the response does not * include minor version information, the most recently applied minor version of * each Facet is in effect. See <a>GetAppliedSchemaVersion</a> for details.</p> */ inline const Aws::Vector<SchemaFacet>& GetSchemaFacets() const{ return m_schemaFacets; } /** * <p>The facets attached to the specified object. Although the response does not * include minor version information, the most recently applied minor version of * each Facet is in effect. See <a>GetAppliedSchemaVersion</a> for details.</p> */ inline void SetSchemaFacets(const Aws::Vector<SchemaFacet>& value) { m_schemaFacets = value; } /** * <p>The facets attached to the specified object. Although the response does not * include minor version information, the most recently applied minor version of * each Facet is in effect. See <a>GetAppliedSchemaVersion</a> for details.</p> */ inline void SetSchemaFacets(Aws::Vector<SchemaFacet>&& value) { m_schemaFacets = std::move(value); } /** * <p>The facets attached to the specified object. Although the response does not * include minor version information, the most recently applied minor version of * each Facet is in effect. See <a>GetAppliedSchemaVersion</a> for details.</p> */ inline GetObjectInformationResult& WithSchemaFacets(const Aws::Vector<SchemaFacet>& value) { SetSchemaFacets(value); return *this;} /** * <p>The facets attached to the specified object. Although the response does not * include minor version information, the most recently applied minor version of * each Facet is in effect. See <a>GetAppliedSchemaVersion</a> for details.</p> */ inline GetObjectInformationResult& WithSchemaFacets(Aws::Vector<SchemaFacet>&& value) { SetSchemaFacets(std::move(value)); return *this;} /** * <p>The facets attached to the specified object. Although the response does not * include minor version information, the most recently applied minor version of * each Facet is in effect. See <a>GetAppliedSchemaVersion</a> for details.</p> */ inline GetObjectInformationResult& AddSchemaFacets(const SchemaFacet& value) { m_schemaFacets.push_back(value); return *this; } /** * <p>The facets attached to the specified object. Although the response does not * include minor version information, the most recently applied minor version of * each Facet is in effect. See <a>GetAppliedSchemaVersion</a> for details.</p> */ inline GetObjectInformationResult& AddSchemaFacets(SchemaFacet&& value) { m_schemaFacets.push_back(std::move(value)); return *this; } /** * <p>The <code>ObjectIdentifier</code> of the specified object.</p> */ inline const Aws::String& GetObjectIdentifier() const{ return m_objectIdentifier; } /** * <p>The <code>ObjectIdentifier</code> of the specified object.</p> */ inline void SetObjectIdentifier(const Aws::String& value) { m_objectIdentifier = value; } /** * <p>The <code>ObjectIdentifier</code> of the specified object.</p> */ inline void SetObjectIdentifier(Aws::String&& value) { m_objectIdentifier = std::move(value); } /** * <p>The <code>ObjectIdentifier</code> of the specified object.</p> */ inline void SetObjectIdentifier(const char* value) { m_objectIdentifier.assign(value); } /** * <p>The <code>ObjectIdentifier</code> of the specified object.</p> */ inline GetObjectInformationResult& WithObjectIdentifier(const Aws::String& value) { SetObjectIdentifier(value); return *this;} /** * <p>The <code>ObjectIdentifier</code> of the specified object.</p> */ inline GetObjectInformationResult& WithObjectIdentifier(Aws::String&& value) { SetObjectIdentifier(std::move(value)); return *this;} /** * <p>The <code>ObjectIdentifier</code> of the specified object.</p> */ inline GetObjectInformationResult& WithObjectIdentifier(const char* value) { SetObjectIdentifier(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetObjectInformationResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetObjectInformationResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetObjectInformationResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector<SchemaFacet> m_schemaFacets; Aws::String m_objectIdentifier; Aws::String m_requestId; }; } // namespace Model } // namespace CloudDirectory } // namespace Aws