/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace DataExchange { namespace Model { /** *

Information about the published revision.

See Also:

AWS * API Reference

*/ class RevisionPublished { public: AWS_DATAEXCHANGE_API RevisionPublished(); AWS_DATAEXCHANGE_API RevisionPublished(Aws::Utils::Json::JsonView jsonValue); AWS_DATAEXCHANGE_API RevisionPublished& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_DATAEXCHANGE_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

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