/** * 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 { /** *

See Also:

AWS * API Reference

*/ class DisableSnapshotCopyRequest : public RedshiftRequest { public: AWS_REDSHIFT_API DisableSnapshotCopyRequest(); // 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 "DisableSnapshotCopy"; } 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 the source cluster that you want to disable copying * of snapshots to a destination region.

Constraints: Must be the valid name * of an existing cluster that has cross-region snapshot copy enabled.

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

The unique identifier of the source cluster that you want to disable copying * of snapshots to a destination region.

Constraints: Must be the valid name * of an existing cluster that has cross-region snapshot copy enabled.

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

The unique identifier of the source cluster that you want to disable copying * of snapshots to a destination region.

Constraints: Must be the valid name * of an existing cluster that has cross-region snapshot copy enabled.

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

The unique identifier of the source cluster that you want to disable copying * of snapshots to a destination region.

Constraints: Must be the valid name * of an existing cluster that has cross-region snapshot copy enabled.

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

The unique identifier of the source cluster that you want to disable copying * of snapshots to a destination region.

Constraints: Must be the valid name * of an existing cluster that has cross-region snapshot copy enabled.

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

The unique identifier of the source cluster that you want to disable copying * of snapshots to a destination region.

Constraints: Must be the valid name * of an existing cluster that has cross-region snapshot copy enabled.

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

The unique identifier of the source cluster that you want to disable copying * of snapshots to a destination region.

Constraints: Must be the valid name * of an existing cluster that has cross-region snapshot copy enabled.

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

The unique identifier of the source cluster that you want to disable copying * of snapshots to a destination region.

Constraints: Must be the valid name * of an existing cluster that has cross-region snapshot copy enabled.

*/ inline DisableSnapshotCopyRequest& WithClusterIdentifier(const char* value) { SetClusterIdentifier(value); return *this;} private: Aws::String m_clusterIdentifier; bool m_clusterIdentifierHasBeenSet = false; }; } // namespace Model } // namespace Redshift } // namespace Aws