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

Returns information about the auto scaling settings of a table with * replicas.

*/ inline const TableAutoScalingDescription& GetTableAutoScalingDescription() const{ return m_tableAutoScalingDescription; } /** *

Returns information about the auto scaling settings of a table with * replicas.

*/ inline void SetTableAutoScalingDescription(const TableAutoScalingDescription& value) { m_tableAutoScalingDescription = value; } /** *

Returns information about the auto scaling settings of a table with * replicas.

*/ inline void SetTableAutoScalingDescription(TableAutoScalingDescription&& value) { m_tableAutoScalingDescription = std::move(value); } /** *

Returns information about the auto scaling settings of a table with * replicas.

*/ inline UpdateTableReplicaAutoScalingResult& WithTableAutoScalingDescription(const TableAutoScalingDescription& value) { SetTableAutoScalingDescription(value); return *this;} /** *

Returns information about the auto scaling settings of a table with * replicas.

*/ inline UpdateTableReplicaAutoScalingResult& WithTableAutoScalingDescription(TableAutoScalingDescription&& value) { SetTableAutoScalingDescription(std::move(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 UpdateTableReplicaAutoScalingResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline UpdateTableReplicaAutoScalingResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline UpdateTableReplicaAutoScalingResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: TableAutoScalingDescription m_tableAutoScalingDescription; Aws::String m_requestId; }; } // namespace Model } // namespace DynamoDB } // namespace Aws