/** * 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 DeleteFHIRDatastoreResult { public: AWS_HEALTHLAKE_API DeleteFHIRDatastoreResult(); AWS_HEALTHLAKE_API DeleteFHIRDatastoreResult(const Aws::AmazonWebServiceResult& result); AWS_HEALTHLAKE_API DeleteFHIRDatastoreResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The AWS-generated ID for the data store to be deleted.

*/ inline const Aws::String& GetDatastoreId() const{ return m_datastoreId; } /** *

The AWS-generated ID for the data store to be deleted.

*/ inline void SetDatastoreId(const Aws::String& value) { m_datastoreId = value; } /** *

The AWS-generated ID for the data store to be deleted.

*/ inline void SetDatastoreId(Aws::String&& value) { m_datastoreId = std::move(value); } /** *

The AWS-generated ID for the data store to be deleted.

*/ inline void SetDatastoreId(const char* value) { m_datastoreId.assign(value); } /** *

The AWS-generated ID for the data store to be deleted.

*/ inline DeleteFHIRDatastoreResult& WithDatastoreId(const Aws::String& value) { SetDatastoreId(value); return *this;} /** *

The AWS-generated ID for the data store to be deleted.

*/ inline DeleteFHIRDatastoreResult& WithDatastoreId(Aws::String&& value) { SetDatastoreId(std::move(value)); return *this;} /** *

The AWS-generated ID for the data store to be deleted.

*/ inline DeleteFHIRDatastoreResult& WithDatastoreId(const char* value) { SetDatastoreId(value); return *this;} /** *

The Amazon Resource Name (ARN) that gives AWS HealthLake access * permission.

*/ inline const Aws::String& GetDatastoreArn() const{ return m_datastoreArn; } /** *

The Amazon Resource Name (ARN) that gives AWS HealthLake access * permission.

*/ inline void SetDatastoreArn(const Aws::String& value) { m_datastoreArn = value; } /** *

The Amazon Resource Name (ARN) that gives AWS HealthLake access * permission.

*/ inline void SetDatastoreArn(Aws::String&& value) { m_datastoreArn = std::move(value); } /** *

The Amazon Resource Name (ARN) that gives AWS HealthLake access * permission.

*/ inline void SetDatastoreArn(const char* value) { m_datastoreArn.assign(value); } /** *

The Amazon Resource Name (ARN) that gives AWS HealthLake access * permission.

*/ inline DeleteFHIRDatastoreResult& WithDatastoreArn(const Aws::String& value) { SetDatastoreArn(value); return *this;} /** *

The Amazon Resource Name (ARN) that gives AWS HealthLake access * permission.

*/ inline DeleteFHIRDatastoreResult& WithDatastoreArn(Aws::String&& value) { SetDatastoreArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) that gives AWS HealthLake access * permission.

*/ inline DeleteFHIRDatastoreResult& WithDatastoreArn(const char* value) { SetDatastoreArn(value); return *this;} /** *

The status of the data store that the user has requested to be deleted.

*/ inline const DatastoreStatus& GetDatastoreStatus() const{ return m_datastoreStatus; } /** *

The status of the data store that the user has requested to be deleted.

*/ inline void SetDatastoreStatus(const DatastoreStatus& value) { m_datastoreStatus = value; } /** *

The status of the data store that the user has requested to be deleted.

*/ inline void SetDatastoreStatus(DatastoreStatus&& value) { m_datastoreStatus = std::move(value); } /** *

The status of the data store that the user has requested to be deleted.

*/ inline DeleteFHIRDatastoreResult& WithDatastoreStatus(const DatastoreStatus& value) { SetDatastoreStatus(value); return *this;} /** *

The status of the data store that the user has requested to be deleted.

*/ inline DeleteFHIRDatastoreResult& WithDatastoreStatus(DatastoreStatus&& value) { SetDatastoreStatus(std::move(value)); return *this;} /** *

The AWS endpoint for the data store the user has requested to be deleted.

*/ inline const Aws::String& GetDatastoreEndpoint() const{ return m_datastoreEndpoint; } /** *

The AWS endpoint for the data store the user has requested to be deleted.

*/ inline void SetDatastoreEndpoint(const Aws::String& value) { m_datastoreEndpoint = value; } /** *

The AWS endpoint for the data store the user has requested to be deleted.

*/ inline void SetDatastoreEndpoint(Aws::String&& value) { m_datastoreEndpoint = std::move(value); } /** *

The AWS endpoint for the data store the user has requested to be deleted.

*/ inline void SetDatastoreEndpoint(const char* value) { m_datastoreEndpoint.assign(value); } /** *

The AWS endpoint for the data store the user has requested to be deleted.

*/ inline DeleteFHIRDatastoreResult& WithDatastoreEndpoint(const Aws::String& value) { SetDatastoreEndpoint(value); return *this;} /** *

The AWS endpoint for the data store the user has requested to be deleted.

*/ inline DeleteFHIRDatastoreResult& WithDatastoreEndpoint(Aws::String&& value) { SetDatastoreEndpoint(std::move(value)); return *this;} /** *

The AWS endpoint for the data store the user has requested to be deleted.

*/ inline DeleteFHIRDatastoreResult& WithDatastoreEndpoint(const char* value) { SetDatastoreEndpoint(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 DeleteFHIRDatastoreResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DeleteFHIRDatastoreResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DeleteFHIRDatastoreResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_datastoreId; Aws::String m_datastoreArn; DatastoreStatus m_datastoreStatus; Aws::String m_datastoreEndpoint; Aws::String m_requestId; }; } // namespace Model } // namespace HealthLake } // namespace Aws