/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about the published revision.See Also:
AWS
* API Reference
The data set ID of the published revision.
*/ inline const Aws::String& GetDataSetId() const{ return m_dataSetId; } /** *The data set ID of the published revision.
*/ inline bool DataSetIdHasBeenSet() const { return m_dataSetIdHasBeenSet; } /** *The data set ID of the published revision.
*/ inline void SetDataSetId(const Aws::String& value) { m_dataSetIdHasBeenSet = true; m_dataSetId = value; } /** *The data set ID of the published revision.
*/ inline void SetDataSetId(Aws::String&& value) { m_dataSetIdHasBeenSet = true; m_dataSetId = std::move(value); } /** *The data set ID of the published revision.
*/ inline void SetDataSetId(const char* value) { m_dataSetIdHasBeenSet = true; m_dataSetId.assign(value); } /** *The data set ID of the published revision.
*/ inline RevisionPublished& WithDataSetId(const Aws::String& value) { SetDataSetId(value); return *this;} /** *The data set ID of the published revision.
*/ inline RevisionPublished& WithDataSetId(Aws::String&& value) { SetDataSetId(std::move(value)); return *this;} /** *The data set ID of the published revision.
*/ inline RevisionPublished& WithDataSetId(const char* value) { SetDataSetId(value); return *this;} private: Aws::String m_dataSetId; bool m_dataSetIdHasBeenSet = false; }; } // namespace Model } // namespace DataExchange } // namespace Aws