/** * 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 Redshift { namespace Model { /** */ class ModifyClusterDbRevisionRequest : public RedshiftRequest { public: AWS_REDSHIFT_API ModifyClusterDbRevisionRequest(); // 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 "ModifyClusterDbRevision"; } AWS_REDSHIFT_API Aws::String SerializePayload() const override; protected: AWS_REDSHIFT_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

The unique identifier of a cluster whose database revision you want to * modify.

Example: examplecluster

*/ inline const Aws::String& GetClusterIdentifier() const{ return m_clusterIdentifier; } /** *

The unique identifier of a cluster whose database revision you want to * modify.

Example: examplecluster

*/ inline bool ClusterIdentifierHasBeenSet() const { return m_clusterIdentifierHasBeenSet; } /** *

The unique identifier of a cluster whose database revision you want to * modify.

Example: examplecluster

*/ inline void SetClusterIdentifier(const Aws::String& value) { m_clusterIdentifierHasBeenSet = true; m_clusterIdentifier = value; } /** *

The unique identifier of a cluster whose database revision you want to * modify.

Example: examplecluster

*/ inline void SetClusterIdentifier(Aws::String&& value) { m_clusterIdentifierHasBeenSet = true; m_clusterIdentifier = std::move(value); } /** *

The unique identifier of a cluster whose database revision you want to * modify.

Example: examplecluster

*/ inline void SetClusterIdentifier(const char* value) { m_clusterIdentifierHasBeenSet = true; m_clusterIdentifier.assign(value); } /** *

The unique identifier of a cluster whose database revision you want to * modify.

Example: examplecluster

*/ inline ModifyClusterDbRevisionRequest& WithClusterIdentifier(const Aws::String& value) { SetClusterIdentifier(value); return *this;} /** *

The unique identifier of a cluster whose database revision you want to * modify.

Example: examplecluster

*/ inline ModifyClusterDbRevisionRequest& WithClusterIdentifier(Aws::String&& value) { SetClusterIdentifier(std::move(value)); return *this;} /** *

The unique identifier of a cluster whose database revision you want to * modify.

Example: examplecluster

*/ inline ModifyClusterDbRevisionRequest& WithClusterIdentifier(const char* value) { SetClusterIdentifier(value); return *this;} /** *

The identifier of the database revision. You can retrieve this value from the * response to the DescribeClusterDbRevisions request.

*/ inline const Aws::String& GetRevisionTarget() const{ return m_revisionTarget; } /** *

The identifier of the database revision. You can retrieve this value from the * response to the DescribeClusterDbRevisions request.

*/ inline bool RevisionTargetHasBeenSet() const { return m_revisionTargetHasBeenSet; } /** *

The identifier of the database revision. You can retrieve this value from the * response to the DescribeClusterDbRevisions request.

*/ inline void SetRevisionTarget(const Aws::String& value) { m_revisionTargetHasBeenSet = true; m_revisionTarget = value; } /** *

The identifier of the database revision. You can retrieve this value from the * response to the DescribeClusterDbRevisions request.

*/ inline void SetRevisionTarget(Aws::String&& value) { m_revisionTargetHasBeenSet = true; m_revisionTarget = std::move(value); } /** *

The identifier of the database revision. You can retrieve this value from the * response to the DescribeClusterDbRevisions request.

*/ inline void SetRevisionTarget(const char* value) { m_revisionTargetHasBeenSet = true; m_revisionTarget.assign(value); } /** *

The identifier of the database revision. You can retrieve this value from the * response to the DescribeClusterDbRevisions request.

*/ inline ModifyClusterDbRevisionRequest& WithRevisionTarget(const Aws::String& value) { SetRevisionTarget(value); return *this;} /** *

The identifier of the database revision. You can retrieve this value from the * response to the DescribeClusterDbRevisions request.

*/ inline ModifyClusterDbRevisionRequest& WithRevisionTarget(Aws::String&& value) { SetRevisionTarget(std::move(value)); return *this;} /** *

The identifier of the database revision. You can retrieve this value from the * response to the DescribeClusterDbRevisions request.

*/ inline ModifyClusterDbRevisionRequest& WithRevisionTarget(const char* value) { SetRevisionTarget(value); return *this;} private: Aws::String m_clusterIdentifier; bool m_clusterIdentifierHasBeenSet = false; Aws::String m_revisionTarget; bool m_revisionTargetHasBeenSet = false; }; } // namespace Model } // namespace Redshift } // namespace Aws