/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace FinSpaceData { namespace Model { /** */ class GetExternalDataViewAccessDetailsRequest : public FinSpaceDataRequest { public: AWS_FINSPACEDATA_API GetExternalDataViewAccessDetailsRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "GetExternalDataViewAccessDetails"; } AWS_FINSPACEDATA_API Aws::String SerializePayload() const override; /** *

The unique identifier for the Dataview that you want to access.

*/ inline const Aws::String& GetDataViewId() const{ return m_dataViewId; } /** *

The unique identifier for the Dataview that you want to access.

*/ inline bool DataViewIdHasBeenSet() const { return m_dataViewIdHasBeenSet; } /** *

The unique identifier for the Dataview that you want to access.

*/ inline void SetDataViewId(const Aws::String& value) { m_dataViewIdHasBeenSet = true; m_dataViewId = value; } /** *

The unique identifier for the Dataview that you want to access.

*/ inline void SetDataViewId(Aws::String&& value) { m_dataViewIdHasBeenSet = true; m_dataViewId = std::move(value); } /** *

The unique identifier for the Dataview that you want to access.

*/ inline void SetDataViewId(const char* value) { m_dataViewIdHasBeenSet = true; m_dataViewId.assign(value); } /** *

The unique identifier for the Dataview that you want to access.

*/ inline GetExternalDataViewAccessDetailsRequest& WithDataViewId(const Aws::String& value) { SetDataViewId(value); return *this;} /** *

The unique identifier for the Dataview that you want to access.

*/ inline GetExternalDataViewAccessDetailsRequest& WithDataViewId(Aws::String&& value) { SetDataViewId(std::move(value)); return *this;} /** *

The unique identifier for the Dataview that you want to access.

*/ inline GetExternalDataViewAccessDetailsRequest& WithDataViewId(const char* value) { SetDataViewId(value); return *this;} /** *

The unique identifier for the Dataset.

*/ inline const Aws::String& GetDatasetId() const{ return m_datasetId; } /** *

The unique identifier for the Dataset.

*/ inline bool DatasetIdHasBeenSet() const { return m_datasetIdHasBeenSet; } /** *

The unique identifier for the Dataset.

*/ inline void SetDatasetId(const Aws::String& value) { m_datasetIdHasBeenSet = true; m_datasetId = value; } /** *

The unique identifier for the Dataset.

*/ inline void SetDatasetId(Aws::String&& value) { m_datasetIdHasBeenSet = true; m_datasetId = std::move(value); } /** *

The unique identifier for the Dataset.

*/ inline void SetDatasetId(const char* value) { m_datasetIdHasBeenSet = true; m_datasetId.assign(value); } /** *

The unique identifier for the Dataset.

*/ inline GetExternalDataViewAccessDetailsRequest& WithDatasetId(const Aws::String& value) { SetDatasetId(value); return *this;} /** *

The unique identifier for the Dataset.

*/ inline GetExternalDataViewAccessDetailsRequest& WithDatasetId(Aws::String&& value) { SetDatasetId(std::move(value)); return *this;} /** *

The unique identifier for the Dataset.

*/ inline GetExternalDataViewAccessDetailsRequest& WithDatasetId(const char* value) { SetDatasetId(value); return *this;} private: Aws::String m_dataViewId; bool m_dataViewIdHasBeenSet = false; Aws::String m_datasetId; bool m_datasetIdHasBeenSet = false; }; } // namespace Model } // namespace FinSpaceData } // namespace Aws