/** * 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 DynamoDB { namespace Model { class AWS_DYNAMODB_API DescribeTableReplicaAutoScalingResult { public: DescribeTableReplicaAutoScalingResult(); DescribeTableReplicaAutoScalingResult(const Aws::AmazonWebServiceResult& result); DescribeTableReplicaAutoScalingResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Represents the auto scaling properties of the table.

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

Represents the auto scaling properties of the table.

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

Represents the auto scaling properties of the table.

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

Represents the auto scaling properties of the table.

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

Represents the auto scaling properties of the table.

*/ inline DescribeTableReplicaAutoScalingResult& WithTableAutoScalingDescription(TableAutoScalingDescription&& value) { SetTableAutoScalingDescription(std::move(value)); return *this;} private: TableAutoScalingDescription m_tableAutoScalingDescription; }; } // namespace Model } // namespace DynamoDB } // namespace Aws