/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies the sort order of a sorted column.See Also:
AWS API
* Reference
The name of the column.
*/ inline const Aws::String& GetColumn() const{ return m_column; } /** *The name of the column.
*/ inline bool ColumnHasBeenSet() const { return m_columnHasBeenSet; } /** *The name of the column.
*/ inline void SetColumn(const Aws::String& value) { m_columnHasBeenSet = true; m_column = value; } /** *The name of the column.
*/ inline void SetColumn(Aws::String&& value) { m_columnHasBeenSet = true; m_column = std::move(value); } /** *The name of the column.
*/ inline void SetColumn(const char* value) { m_columnHasBeenSet = true; m_column.assign(value); } /** *The name of the column.
*/ inline Order& WithColumn(const Aws::String& value) { SetColumn(value); return *this;} /** *The name of the column.
*/ inline Order& WithColumn(Aws::String&& value) { SetColumn(std::move(value)); return *this;} /** *The name of the column.
*/ inline Order& WithColumn(const char* value) { SetColumn(value); return *this;} /** *Indicates that the column is sorted in ascending order (== 1
),
* or in descending order (==0
).
Indicates that the column is sorted in ascending order (== 1
),
* or in descending order (==0
).
Indicates that the column is sorted in ascending order (== 1
),
* or in descending order (==0
).
Indicates that the column is sorted in ascending order (== 1
),
* or in descending order (==0
).