/** * 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 Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace DataExchange { namespace Model { /** *

A revision is a container for one or more assets.

See Also:

* AWS * API Reference

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

The ARN for the revision.

*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *

The ARN for the revision.

*/ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** *

The ARN for the revision.

*/ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** *

The ARN for the revision.

*/ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** *

The ARN for the revision.

*/ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** *

The ARN for the revision.

*/ inline RevisionEntry& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *

The ARN for the revision.

*/ inline RevisionEntry& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *

The ARN for the revision.

*/ inline RevisionEntry& WithArn(const char* value) { SetArn(value); return *this;} /** *

An optional comment about the revision.

*/ inline const Aws::String& GetComment() const{ return m_comment; } /** *

An optional comment about the revision.

*/ inline bool CommentHasBeenSet() const { return m_commentHasBeenSet; } /** *

An optional comment about the revision.

*/ inline void SetComment(const Aws::String& value) { m_commentHasBeenSet = true; m_comment = value; } /** *

An optional comment about the revision.

*/ inline void SetComment(Aws::String&& value) { m_commentHasBeenSet = true; m_comment = std::move(value); } /** *

An optional comment about the revision.

*/ inline void SetComment(const char* value) { m_commentHasBeenSet = true; m_comment.assign(value); } /** *

An optional comment about the revision.

*/ inline RevisionEntry& WithComment(const Aws::String& value) { SetComment(value); return *this;} /** *

An optional comment about the revision.

*/ inline RevisionEntry& WithComment(Aws::String&& value) { SetComment(std::move(value)); return *this;} /** *

An optional comment about the revision.

*/ inline RevisionEntry& WithComment(const char* value) { SetComment(value); return *this;} /** *

The date and time that the revision was created, in ISO 8601 format.

*/ inline const Aws::Utils::DateTime& GetCreatedAt() const{ return m_createdAt; } /** *

The date and time that the revision was created, in ISO 8601 format.

*/ inline bool CreatedAtHasBeenSet() const { return m_createdAtHasBeenSet; } /** *

The date and time that the revision was created, in ISO 8601 format.

*/ inline void SetCreatedAt(const Aws::Utils::DateTime& value) { m_createdAtHasBeenSet = true; m_createdAt = value; } /** *

The date and time that the revision was created, in ISO 8601 format.

*/ inline void SetCreatedAt(Aws::Utils::DateTime&& value) { m_createdAtHasBeenSet = true; m_createdAt = std::move(value); } /** *

The date and time that the revision was created, in ISO 8601 format.

*/ inline RevisionEntry& WithCreatedAt(const Aws::Utils::DateTime& value) { SetCreatedAt(value); return *this;} /** *

The date and time that the revision was created, in ISO 8601 format.

*/ inline RevisionEntry& WithCreatedAt(Aws::Utils::DateTime&& value) { SetCreatedAt(std::move(value)); return *this;} /** *

The unique identifier for the data set associated with this revision.

*/ inline const Aws::String& GetDataSetId() const{ return m_dataSetId; } /** *

The unique identifier for the data set associated with this revision.

*/ inline bool DataSetIdHasBeenSet() const { return m_dataSetIdHasBeenSet; } /** *

The unique identifier for the data set associated with this revision.

*/ inline void SetDataSetId(const Aws::String& value) { m_dataSetIdHasBeenSet = true; m_dataSetId = value; } /** *

The unique identifier for the data set associated with this revision.

*/ inline void SetDataSetId(Aws::String&& value) { m_dataSetIdHasBeenSet = true; m_dataSetId = std::move(value); } /** *

The unique identifier for the data set associated with this revision.

*/ inline void SetDataSetId(const char* value) { m_dataSetIdHasBeenSet = true; m_dataSetId.assign(value); } /** *

The unique identifier for the data set associated with this revision.

*/ inline RevisionEntry& WithDataSetId(const Aws::String& value) { SetDataSetId(value); return *this;} /** *

The unique identifier for the data set associated with this revision.

*/ inline RevisionEntry& WithDataSetId(Aws::String&& value) { SetDataSetId(std::move(value)); return *this;} /** *

The unique identifier for the data set associated with this revision.

*/ inline RevisionEntry& WithDataSetId(const char* value) { SetDataSetId(value); return *this;} /** *

To publish a revision to a data set in a product, the revision must first be * finalized. Finalizing a revision tells AWS Data Exchange that your changes to * the assets in the revision are complete. After it's in this read-only state, you * can publish the revision to your products.

Finalized revisions can be * published through the AWS Data Exchange console or the AWS Marketplace Catalog * API, using the StartChangeSet AWS Marketplace Catalog API action. When using the * API, revisions are uniquely identified by their ARN.

*/ inline bool GetFinalized() const{ return m_finalized; } /** *

To publish a revision to a data set in a product, the revision must first be * finalized. Finalizing a revision tells AWS Data Exchange that your changes to * the assets in the revision are complete. After it's in this read-only state, you * can publish the revision to your products.

Finalized revisions can be * published through the AWS Data Exchange console or the AWS Marketplace Catalog * API, using the StartChangeSet AWS Marketplace Catalog API action. When using the * API, revisions are uniquely identified by their ARN.

*/ inline bool FinalizedHasBeenSet() const { return m_finalizedHasBeenSet; } /** *

To publish a revision to a data set in a product, the revision must first be * finalized. Finalizing a revision tells AWS Data Exchange that your changes to * the assets in the revision are complete. After it's in this read-only state, you * can publish the revision to your products.

Finalized revisions can be * published through the AWS Data Exchange console or the AWS Marketplace Catalog * API, using the StartChangeSet AWS Marketplace Catalog API action. When using the * API, revisions are uniquely identified by their ARN.

*/ inline void SetFinalized(bool value) { m_finalizedHasBeenSet = true; m_finalized = value; } /** *

To publish a revision to a data set in a product, the revision must first be * finalized. Finalizing a revision tells AWS Data Exchange that your changes to * the assets in the revision are complete. After it's in this read-only state, you * can publish the revision to your products.

Finalized revisions can be * published through the AWS Data Exchange console or the AWS Marketplace Catalog * API, using the StartChangeSet AWS Marketplace Catalog API action. When using the * API, revisions are uniquely identified by their ARN.

*/ inline RevisionEntry& WithFinalized(bool value) { SetFinalized(value); return *this;} /** *

The unique identifier for the revision.

*/ inline const Aws::String& GetId() const{ return m_id; } /** *

The unique identifier for the revision.

*/ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** *

The unique identifier for the revision.

*/ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** *

The unique identifier for the revision.

*/ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** *

The unique identifier for the revision.

*/ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** *

The unique identifier for the revision.

*/ inline RevisionEntry& WithId(const Aws::String& value) { SetId(value); return *this;} /** *

The unique identifier for the revision.

*/ inline RevisionEntry& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** *

The unique identifier for the revision.

*/ inline RevisionEntry& WithId(const char* value) { SetId(value); return *this;} /** *

The revision ID of the owned revision corresponding to the entitled revision * being viewed. This parameter is returned when a revision owner is viewing the * entitled copy of its owned revision.

*/ inline const Aws::String& GetSourceId() const{ return m_sourceId; } /** *

The revision ID of the owned revision corresponding to the entitled revision * being viewed. This parameter is returned when a revision owner is viewing the * entitled copy of its owned revision.

*/ inline bool SourceIdHasBeenSet() const { return m_sourceIdHasBeenSet; } /** *

The revision ID of the owned revision corresponding to the entitled revision * being viewed. This parameter is returned when a revision owner is viewing the * entitled copy of its owned revision.

*/ inline void SetSourceId(const Aws::String& value) { m_sourceIdHasBeenSet = true; m_sourceId = value; } /** *

The revision ID of the owned revision corresponding to the entitled revision * being viewed. This parameter is returned when a revision owner is viewing the * entitled copy of its owned revision.

*/ inline void SetSourceId(Aws::String&& value) { m_sourceIdHasBeenSet = true; m_sourceId = std::move(value); } /** *

The revision ID of the owned revision corresponding to the entitled revision * being viewed. This parameter is returned when a revision owner is viewing the * entitled copy of its owned revision.

*/ inline void SetSourceId(const char* value) { m_sourceIdHasBeenSet = true; m_sourceId.assign(value); } /** *

The revision ID of the owned revision corresponding to the entitled revision * being viewed. This parameter is returned when a revision owner is viewing the * entitled copy of its owned revision.

*/ inline RevisionEntry& WithSourceId(const Aws::String& value) { SetSourceId(value); return *this;} /** *

The revision ID of the owned revision corresponding to the entitled revision * being viewed. This parameter is returned when a revision owner is viewing the * entitled copy of its owned revision.

*/ inline RevisionEntry& WithSourceId(Aws::String&& value) { SetSourceId(std::move(value)); return *this;} /** *

The revision ID of the owned revision corresponding to the entitled revision * being viewed. This parameter is returned when a revision owner is viewing the * entitled copy of its owned revision.

*/ inline RevisionEntry& WithSourceId(const char* value) { SetSourceId(value); return *this;} /** *

The date and time that the revision was last updated, in ISO 8601 format.

*/ inline const Aws::Utils::DateTime& GetUpdatedAt() const{ return m_updatedAt; } /** *

The date and time that the revision was last updated, in ISO 8601 format.

*/ inline bool UpdatedAtHasBeenSet() const { return m_updatedAtHasBeenSet; } /** *

The date and time that the revision was last updated, in ISO 8601 format.

*/ inline void SetUpdatedAt(const Aws::Utils::DateTime& value) { m_updatedAtHasBeenSet = true; m_updatedAt = value; } /** *

The date and time that the revision was last updated, in ISO 8601 format.

*/ inline void SetUpdatedAt(Aws::Utils::DateTime&& value) { m_updatedAtHasBeenSet = true; m_updatedAt = std::move(value); } /** *

The date and time that the revision was last updated, in ISO 8601 format.

*/ inline RevisionEntry& WithUpdatedAt(const Aws::Utils::DateTime& value) { SetUpdatedAt(value); return *this;} /** *

The date and time that the revision was last updated, in ISO 8601 format.

*/ inline RevisionEntry& WithUpdatedAt(Aws::Utils::DateTime&& value) { SetUpdatedAt(std::move(value)); return *this;} private: Aws::String m_arn; bool m_arnHasBeenSet; Aws::String m_comment; bool m_commentHasBeenSet; Aws::Utils::DateTime m_createdAt; bool m_createdAtHasBeenSet; Aws::String m_dataSetId; bool m_dataSetIdHasBeenSet; bool m_finalized; bool m_finalizedHasBeenSet; Aws::String m_id; bool m_idHasBeenSet; Aws::String m_sourceId; bool m_sourceIdHasBeenSet; Aws::Utils::DateTime m_updatedAt; bool m_updatedAtHasBeenSet; }; } // namespace Model } // namespace DataExchange } // namespace Aws