/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace HealthLake { namespace Model { class DescribeFHIRDatastoreResult { public: AWS_HEALTHLAKE_API DescribeFHIRDatastoreResult(); AWS_HEALTHLAKE_API DescribeFHIRDatastoreResult(const Aws::AmazonWebServiceResult& result); AWS_HEALTHLAKE_API DescribeFHIRDatastoreResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

All properties associated with a data store, including the data store ID, * data store ARN, data store name, data store status, when the data store was * created, data store type version, and the data store's endpoint.

*/ inline const DatastoreProperties& GetDatastoreProperties() const{ return m_datastoreProperties; } /** *

All properties associated with a data store, including the data store ID, * data store ARN, data store name, data store status, when the data store was * created, data store type version, and the data store's endpoint.

*/ inline void SetDatastoreProperties(const DatastoreProperties& value) { m_datastoreProperties = value; } /** *

All properties associated with a data store, including the data store ID, * data store ARN, data store name, data store status, when the data store was * created, data store type version, and the data store's endpoint.

*/ inline void SetDatastoreProperties(DatastoreProperties&& value) { m_datastoreProperties = std::move(value); } /** *

All properties associated with a data store, including the data store ID, * data store ARN, data store name, data store status, when the data store was * created, data store type version, and the data store's endpoint.

*/ inline DescribeFHIRDatastoreResult& WithDatastoreProperties(const DatastoreProperties& value) { SetDatastoreProperties(value); return *this;} /** *

All properties associated with a data store, including the data store ID, * data store ARN, data store name, data store status, when the data store was * created, data store type version, and the data store's endpoint.

*/ inline DescribeFHIRDatastoreResult& WithDatastoreProperties(DatastoreProperties&& value) { SetDatastoreProperties(std::move(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 DescribeFHIRDatastoreResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeFHIRDatastoreResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeFHIRDatastoreResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: DatastoreProperties m_datastoreProperties; Aws::String m_requestId; }; } // namespace Model } // namespace HealthLake } // namespace Aws