/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Kafka { namespace Model { class UpdateStorageResult { public: AWS_KAFKA_API UpdateStorageResult(); AWS_KAFKA_API UpdateStorageResult(const Aws::AmazonWebServiceResult& result); AWS_KAFKA_API UpdateStorageResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The Amazon Resource Name (ARN) of the cluster.

*/ inline const Aws::String& GetClusterArn() const{ return m_clusterArn; } /** *

The Amazon Resource Name (ARN) of the cluster.

*/ inline void SetClusterArn(const Aws::String& value) { m_clusterArn = value; } /** *

The Amazon Resource Name (ARN) of the cluster.

*/ inline void SetClusterArn(Aws::String&& value) { m_clusterArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the cluster.

*/ inline void SetClusterArn(const char* value) { m_clusterArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the cluster.

*/ inline UpdateStorageResult& WithClusterArn(const Aws::String& value) { SetClusterArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the cluster.

*/ inline UpdateStorageResult& WithClusterArn(Aws::String&& value) { SetClusterArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the cluster.

*/ inline UpdateStorageResult& WithClusterArn(const char* value) { SetClusterArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the cluster operation.

* */ inline const Aws::String& GetClusterOperationArn() const{ return m_clusterOperationArn; } /** *

The Amazon Resource Name (ARN) of the cluster operation.

* */ inline void SetClusterOperationArn(const Aws::String& value) { m_clusterOperationArn = value; } /** *

The Amazon Resource Name (ARN) of the cluster operation.

* */ inline void SetClusterOperationArn(Aws::String&& value) { m_clusterOperationArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the cluster operation.

* */ inline void SetClusterOperationArn(const char* value) { m_clusterOperationArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the cluster operation.

* */ inline UpdateStorageResult& WithClusterOperationArn(const Aws::String& value) { SetClusterOperationArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the cluster operation.

* */ inline UpdateStorageResult& WithClusterOperationArn(Aws::String&& value) { SetClusterOperationArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the cluster operation.

* */ inline UpdateStorageResult& WithClusterOperationArn(const char* value) { SetClusterOperationArn(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline UpdateStorageResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline UpdateStorageResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline UpdateStorageResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_clusterArn; Aws::String m_clusterOperationArn; Aws::String m_requestId; }; } // namespace Model } // namespace Kafka } // namespace Aws