664 lines
25 KiB
C++
664 lines
25 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/glue/Glue_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <aws/core/utils/DateTime.h>
|
|
#include <aws/glue/model/StorageDescriptor.h>
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|
#include <aws/core/utils/memory/stl/AWSMap.h>
|
|
#include <aws/glue/model/TableIdentifier.h>
|
|
#include <aws/glue/model/Column.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
class JsonView;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace Glue
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>A structure used to define a table.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/TableInput">AWS API
|
|
* Reference</a></p>
|
|
*/
|
|
class AWS_GLUE_API TableInput
|
|
{
|
|
public:
|
|
TableInput();
|
|
TableInput(Aws::Utils::Json::JsonView jsonValue);
|
|
TableInput& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|
|
|
|
|
/**
|
|
* <p>The table name. For Hive compatibility, this is folded to lowercase when it
|
|
* is stored.</p>
|
|
*/
|
|
inline const Aws::String& GetName() const{ return m_name; }
|
|
|
|
/**
|
|
* <p>The table name. For Hive compatibility, this is folded to lowercase when it
|
|
* is stored.</p>
|
|
*/
|
|
inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The table name. For Hive compatibility, this is folded to lowercase when it
|
|
* is stored.</p>
|
|
*/
|
|
inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
|
|
|
|
/**
|
|
* <p>The table name. For Hive compatibility, this is folded to lowercase when it
|
|
* is stored.</p>
|
|
*/
|
|
inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
|
|
|
|
/**
|
|
* <p>The table name. For Hive compatibility, this is folded to lowercase when it
|
|
* is stored.</p>
|
|
*/
|
|
inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
|
|
|
|
/**
|
|
* <p>The table name. For Hive compatibility, this is folded to lowercase when it
|
|
* is stored.</p>
|
|
*/
|
|
inline TableInput& WithName(const Aws::String& value) { SetName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The table name. For Hive compatibility, this is folded to lowercase when it
|
|
* is stored.</p>
|
|
*/
|
|
inline TableInput& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The table name. For Hive compatibility, this is folded to lowercase when it
|
|
* is stored.</p>
|
|
*/
|
|
inline TableInput& WithName(const char* value) { SetName(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>A description of the table.</p>
|
|
*/
|
|
inline const Aws::String& GetDescription() const{ return m_description; }
|
|
|
|
/**
|
|
* <p>A description of the table.</p>
|
|
*/
|
|
inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
|
|
|
|
/**
|
|
* <p>A description of the table.</p>
|
|
*/
|
|
inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
|
|
|
|
/**
|
|
* <p>A description of the table.</p>
|
|
*/
|
|
inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
|
|
|
|
/**
|
|
* <p>A description of the table.</p>
|
|
*/
|
|
inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
|
|
|
|
/**
|
|
* <p>A description of the table.</p>
|
|
*/
|
|
inline TableInput& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
|
|
|
|
/**
|
|
* <p>A description of the table.</p>
|
|
*/
|
|
inline TableInput& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>A description of the table.</p>
|
|
*/
|
|
inline TableInput& WithDescription(const char* value) { SetDescription(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The table owner.</p>
|
|
*/
|
|
inline const Aws::String& GetOwner() const{ return m_owner; }
|
|
|
|
/**
|
|
* <p>The table owner.</p>
|
|
*/
|
|
inline bool OwnerHasBeenSet() const { return m_ownerHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The table owner.</p>
|
|
*/
|
|
inline void SetOwner(const Aws::String& value) { m_ownerHasBeenSet = true; m_owner = value; }
|
|
|
|
/**
|
|
* <p>The table owner.</p>
|
|
*/
|
|
inline void SetOwner(Aws::String&& value) { m_ownerHasBeenSet = true; m_owner = std::move(value); }
|
|
|
|
/**
|
|
* <p>The table owner.</p>
|
|
*/
|
|
inline void SetOwner(const char* value) { m_ownerHasBeenSet = true; m_owner.assign(value); }
|
|
|
|
/**
|
|
* <p>The table owner.</p>
|
|
*/
|
|
inline TableInput& WithOwner(const Aws::String& value) { SetOwner(value); return *this;}
|
|
|
|
/**
|
|
* <p>The table owner.</p>
|
|
*/
|
|
inline TableInput& WithOwner(Aws::String&& value) { SetOwner(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The table owner.</p>
|
|
*/
|
|
inline TableInput& WithOwner(const char* value) { SetOwner(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The last time that the table was accessed.</p>
|
|
*/
|
|
inline const Aws::Utils::DateTime& GetLastAccessTime() const{ return m_lastAccessTime; }
|
|
|
|
/**
|
|
* <p>The last time that the table was accessed.</p>
|
|
*/
|
|
inline bool LastAccessTimeHasBeenSet() const { return m_lastAccessTimeHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The last time that the table was accessed.</p>
|
|
*/
|
|
inline void SetLastAccessTime(const Aws::Utils::DateTime& value) { m_lastAccessTimeHasBeenSet = true; m_lastAccessTime = value; }
|
|
|
|
/**
|
|
* <p>The last time that the table was accessed.</p>
|
|
*/
|
|
inline void SetLastAccessTime(Aws::Utils::DateTime&& value) { m_lastAccessTimeHasBeenSet = true; m_lastAccessTime = std::move(value); }
|
|
|
|
/**
|
|
* <p>The last time that the table was accessed.</p>
|
|
*/
|
|
inline TableInput& WithLastAccessTime(const Aws::Utils::DateTime& value) { SetLastAccessTime(value); return *this;}
|
|
|
|
/**
|
|
* <p>The last time that the table was accessed.</p>
|
|
*/
|
|
inline TableInput& WithLastAccessTime(Aws::Utils::DateTime&& value) { SetLastAccessTime(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The last time that column statistics were computed for this table.</p>
|
|
*/
|
|
inline const Aws::Utils::DateTime& GetLastAnalyzedTime() const{ return m_lastAnalyzedTime; }
|
|
|
|
/**
|
|
* <p>The last time that column statistics were computed for this table.</p>
|
|
*/
|
|
inline bool LastAnalyzedTimeHasBeenSet() const { return m_lastAnalyzedTimeHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The last time that column statistics were computed for this table.</p>
|
|
*/
|
|
inline void SetLastAnalyzedTime(const Aws::Utils::DateTime& value) { m_lastAnalyzedTimeHasBeenSet = true; m_lastAnalyzedTime = value; }
|
|
|
|
/**
|
|
* <p>The last time that column statistics were computed for this table.</p>
|
|
*/
|
|
inline void SetLastAnalyzedTime(Aws::Utils::DateTime&& value) { m_lastAnalyzedTimeHasBeenSet = true; m_lastAnalyzedTime = std::move(value); }
|
|
|
|
/**
|
|
* <p>The last time that column statistics were computed for this table.</p>
|
|
*/
|
|
inline TableInput& WithLastAnalyzedTime(const Aws::Utils::DateTime& value) { SetLastAnalyzedTime(value); return *this;}
|
|
|
|
/**
|
|
* <p>The last time that column statistics were computed for this table.</p>
|
|
*/
|
|
inline TableInput& WithLastAnalyzedTime(Aws::Utils::DateTime&& value) { SetLastAnalyzedTime(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The retention time for this table.</p>
|
|
*/
|
|
inline int GetRetention() const{ return m_retention; }
|
|
|
|
/**
|
|
* <p>The retention time for this table.</p>
|
|
*/
|
|
inline bool RetentionHasBeenSet() const { return m_retentionHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The retention time for this table.</p>
|
|
*/
|
|
inline void SetRetention(int value) { m_retentionHasBeenSet = true; m_retention = value; }
|
|
|
|
/**
|
|
* <p>The retention time for this table.</p>
|
|
*/
|
|
inline TableInput& WithRetention(int value) { SetRetention(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>A storage descriptor containing information about the physical storage of
|
|
* this table.</p>
|
|
*/
|
|
inline const StorageDescriptor& GetStorageDescriptor() const{ return m_storageDescriptor; }
|
|
|
|
/**
|
|
* <p>A storage descriptor containing information about the physical storage of
|
|
* this table.</p>
|
|
*/
|
|
inline bool StorageDescriptorHasBeenSet() const { return m_storageDescriptorHasBeenSet; }
|
|
|
|
/**
|
|
* <p>A storage descriptor containing information about the physical storage of
|
|
* this table.</p>
|
|
*/
|
|
inline void SetStorageDescriptor(const StorageDescriptor& value) { m_storageDescriptorHasBeenSet = true; m_storageDescriptor = value; }
|
|
|
|
/**
|
|
* <p>A storage descriptor containing information about the physical storage of
|
|
* this table.</p>
|
|
*/
|
|
inline void SetStorageDescriptor(StorageDescriptor&& value) { m_storageDescriptorHasBeenSet = true; m_storageDescriptor = std::move(value); }
|
|
|
|
/**
|
|
* <p>A storage descriptor containing information about the physical storage of
|
|
* this table.</p>
|
|
*/
|
|
inline TableInput& WithStorageDescriptor(const StorageDescriptor& value) { SetStorageDescriptor(value); return *this;}
|
|
|
|
/**
|
|
* <p>A storage descriptor containing information about the physical storage of
|
|
* this table.</p>
|
|
*/
|
|
inline TableInput& WithStorageDescriptor(StorageDescriptor&& value) { SetStorageDescriptor(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>A list of columns by which the table is partitioned. Only primitive types are
|
|
* supported as partition keys.</p> <p>When you create a table used by Amazon
|
|
* Athena, and you do not specify any <code>partitionKeys</code>, you must at least
|
|
* set the value of <code>partitionKeys</code> to an empty list. For example:</p>
|
|
* <p> <code>"PartitionKeys": []</code> </p>
|
|
*/
|
|
inline const Aws::Vector<Column>& GetPartitionKeys() const{ return m_partitionKeys; }
|
|
|
|
/**
|
|
* <p>A list of columns by which the table is partitioned. Only primitive types are
|
|
* supported as partition keys.</p> <p>When you create a table used by Amazon
|
|
* Athena, and you do not specify any <code>partitionKeys</code>, you must at least
|
|
* set the value of <code>partitionKeys</code> to an empty list. For example:</p>
|
|
* <p> <code>"PartitionKeys": []</code> </p>
|
|
*/
|
|
inline bool PartitionKeysHasBeenSet() const { return m_partitionKeysHasBeenSet; }
|
|
|
|
/**
|
|
* <p>A list of columns by which the table is partitioned. Only primitive types are
|
|
* supported as partition keys.</p> <p>When you create a table used by Amazon
|
|
* Athena, and you do not specify any <code>partitionKeys</code>, you must at least
|
|
* set the value of <code>partitionKeys</code> to an empty list. For example:</p>
|
|
* <p> <code>"PartitionKeys": []</code> </p>
|
|
*/
|
|
inline void SetPartitionKeys(const Aws::Vector<Column>& value) { m_partitionKeysHasBeenSet = true; m_partitionKeys = value; }
|
|
|
|
/**
|
|
* <p>A list of columns by which the table is partitioned. Only primitive types are
|
|
* supported as partition keys.</p> <p>When you create a table used by Amazon
|
|
* Athena, and you do not specify any <code>partitionKeys</code>, you must at least
|
|
* set the value of <code>partitionKeys</code> to an empty list. For example:</p>
|
|
* <p> <code>"PartitionKeys": []</code> </p>
|
|
*/
|
|
inline void SetPartitionKeys(Aws::Vector<Column>&& value) { m_partitionKeysHasBeenSet = true; m_partitionKeys = std::move(value); }
|
|
|
|
/**
|
|
* <p>A list of columns by which the table is partitioned. Only primitive types are
|
|
* supported as partition keys.</p> <p>When you create a table used by Amazon
|
|
* Athena, and you do not specify any <code>partitionKeys</code>, you must at least
|
|
* set the value of <code>partitionKeys</code> to an empty list. For example:</p>
|
|
* <p> <code>"PartitionKeys": []</code> </p>
|
|
*/
|
|
inline TableInput& WithPartitionKeys(const Aws::Vector<Column>& value) { SetPartitionKeys(value); return *this;}
|
|
|
|
/**
|
|
* <p>A list of columns by which the table is partitioned. Only primitive types are
|
|
* supported as partition keys.</p> <p>When you create a table used by Amazon
|
|
* Athena, and you do not specify any <code>partitionKeys</code>, you must at least
|
|
* set the value of <code>partitionKeys</code> to an empty list. For example:</p>
|
|
* <p> <code>"PartitionKeys": []</code> </p>
|
|
*/
|
|
inline TableInput& WithPartitionKeys(Aws::Vector<Column>&& value) { SetPartitionKeys(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>A list of columns by which the table is partitioned. Only primitive types are
|
|
* supported as partition keys.</p> <p>When you create a table used by Amazon
|
|
* Athena, and you do not specify any <code>partitionKeys</code>, you must at least
|
|
* set the value of <code>partitionKeys</code> to an empty list. For example:</p>
|
|
* <p> <code>"PartitionKeys": []</code> </p>
|
|
*/
|
|
inline TableInput& AddPartitionKeys(const Column& value) { m_partitionKeysHasBeenSet = true; m_partitionKeys.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>A list of columns by which the table is partitioned. Only primitive types are
|
|
* supported as partition keys.</p> <p>When you create a table used by Amazon
|
|
* Athena, and you do not specify any <code>partitionKeys</code>, you must at least
|
|
* set the value of <code>partitionKeys</code> to an empty list. For example:</p>
|
|
* <p> <code>"PartitionKeys": []</code> </p>
|
|
*/
|
|
inline TableInput& AddPartitionKeys(Column&& value) { m_partitionKeysHasBeenSet = true; m_partitionKeys.push_back(std::move(value)); return *this; }
|
|
|
|
|
|
/**
|
|
* <p>If the table is a view, the original text of the view; otherwise
|
|
* <code>null</code>.</p>
|
|
*/
|
|
inline const Aws::String& GetViewOriginalText() const{ return m_viewOriginalText; }
|
|
|
|
/**
|
|
* <p>If the table is a view, the original text of the view; otherwise
|
|
* <code>null</code>.</p>
|
|
*/
|
|
inline bool ViewOriginalTextHasBeenSet() const { return m_viewOriginalTextHasBeenSet; }
|
|
|
|
/**
|
|
* <p>If the table is a view, the original text of the view; otherwise
|
|
* <code>null</code>.</p>
|
|
*/
|
|
inline void SetViewOriginalText(const Aws::String& value) { m_viewOriginalTextHasBeenSet = true; m_viewOriginalText = value; }
|
|
|
|
/**
|
|
* <p>If the table is a view, the original text of the view; otherwise
|
|
* <code>null</code>.</p>
|
|
*/
|
|
inline void SetViewOriginalText(Aws::String&& value) { m_viewOriginalTextHasBeenSet = true; m_viewOriginalText = std::move(value); }
|
|
|
|
/**
|
|
* <p>If the table is a view, the original text of the view; otherwise
|
|
* <code>null</code>.</p>
|
|
*/
|
|
inline void SetViewOriginalText(const char* value) { m_viewOriginalTextHasBeenSet = true; m_viewOriginalText.assign(value); }
|
|
|
|
/**
|
|
* <p>If the table is a view, the original text of the view; otherwise
|
|
* <code>null</code>.</p>
|
|
*/
|
|
inline TableInput& WithViewOriginalText(const Aws::String& value) { SetViewOriginalText(value); return *this;}
|
|
|
|
/**
|
|
* <p>If the table is a view, the original text of the view; otherwise
|
|
* <code>null</code>.</p>
|
|
*/
|
|
inline TableInput& WithViewOriginalText(Aws::String&& value) { SetViewOriginalText(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>If the table is a view, the original text of the view; otherwise
|
|
* <code>null</code>.</p>
|
|
*/
|
|
inline TableInput& WithViewOriginalText(const char* value) { SetViewOriginalText(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>If the table is a view, the expanded text of the view; otherwise
|
|
* <code>null</code>.</p>
|
|
*/
|
|
inline const Aws::String& GetViewExpandedText() const{ return m_viewExpandedText; }
|
|
|
|
/**
|
|
* <p>If the table is a view, the expanded text of the view; otherwise
|
|
* <code>null</code>.</p>
|
|
*/
|
|
inline bool ViewExpandedTextHasBeenSet() const { return m_viewExpandedTextHasBeenSet; }
|
|
|
|
/**
|
|
* <p>If the table is a view, the expanded text of the view; otherwise
|
|
* <code>null</code>.</p>
|
|
*/
|
|
inline void SetViewExpandedText(const Aws::String& value) { m_viewExpandedTextHasBeenSet = true; m_viewExpandedText = value; }
|
|
|
|
/**
|
|
* <p>If the table is a view, the expanded text of the view; otherwise
|
|
* <code>null</code>.</p>
|
|
*/
|
|
inline void SetViewExpandedText(Aws::String&& value) { m_viewExpandedTextHasBeenSet = true; m_viewExpandedText = std::move(value); }
|
|
|
|
/**
|
|
* <p>If the table is a view, the expanded text of the view; otherwise
|
|
* <code>null</code>.</p>
|
|
*/
|
|
inline void SetViewExpandedText(const char* value) { m_viewExpandedTextHasBeenSet = true; m_viewExpandedText.assign(value); }
|
|
|
|
/**
|
|
* <p>If the table is a view, the expanded text of the view; otherwise
|
|
* <code>null</code>.</p>
|
|
*/
|
|
inline TableInput& WithViewExpandedText(const Aws::String& value) { SetViewExpandedText(value); return *this;}
|
|
|
|
/**
|
|
* <p>If the table is a view, the expanded text of the view; otherwise
|
|
* <code>null</code>.</p>
|
|
*/
|
|
inline TableInput& WithViewExpandedText(Aws::String&& value) { SetViewExpandedText(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>If the table is a view, the expanded text of the view; otherwise
|
|
* <code>null</code>.</p>
|
|
*/
|
|
inline TableInput& WithViewExpandedText(const char* value) { SetViewExpandedText(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The type of this table (<code>EXTERNAL_TABLE</code>,
|
|
* <code>VIRTUAL_VIEW</code>, etc.).</p>
|
|
*/
|
|
inline const Aws::String& GetTableType() const{ return m_tableType; }
|
|
|
|
/**
|
|
* <p>The type of this table (<code>EXTERNAL_TABLE</code>,
|
|
* <code>VIRTUAL_VIEW</code>, etc.).</p>
|
|
*/
|
|
inline bool TableTypeHasBeenSet() const { return m_tableTypeHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The type of this table (<code>EXTERNAL_TABLE</code>,
|
|
* <code>VIRTUAL_VIEW</code>, etc.).</p>
|
|
*/
|
|
inline void SetTableType(const Aws::String& value) { m_tableTypeHasBeenSet = true; m_tableType = value; }
|
|
|
|
/**
|
|
* <p>The type of this table (<code>EXTERNAL_TABLE</code>,
|
|
* <code>VIRTUAL_VIEW</code>, etc.).</p>
|
|
*/
|
|
inline void SetTableType(Aws::String&& value) { m_tableTypeHasBeenSet = true; m_tableType = std::move(value); }
|
|
|
|
/**
|
|
* <p>The type of this table (<code>EXTERNAL_TABLE</code>,
|
|
* <code>VIRTUAL_VIEW</code>, etc.).</p>
|
|
*/
|
|
inline void SetTableType(const char* value) { m_tableTypeHasBeenSet = true; m_tableType.assign(value); }
|
|
|
|
/**
|
|
* <p>The type of this table (<code>EXTERNAL_TABLE</code>,
|
|
* <code>VIRTUAL_VIEW</code>, etc.).</p>
|
|
*/
|
|
inline TableInput& WithTableType(const Aws::String& value) { SetTableType(value); return *this;}
|
|
|
|
/**
|
|
* <p>The type of this table (<code>EXTERNAL_TABLE</code>,
|
|
* <code>VIRTUAL_VIEW</code>, etc.).</p>
|
|
*/
|
|
inline TableInput& WithTableType(Aws::String&& value) { SetTableType(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The type of this table (<code>EXTERNAL_TABLE</code>,
|
|
* <code>VIRTUAL_VIEW</code>, etc.).</p>
|
|
*/
|
|
inline TableInput& WithTableType(const char* value) { SetTableType(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>These key-value pairs define properties associated with the table.</p>
|
|
*/
|
|
inline const Aws::Map<Aws::String, Aws::String>& GetParameters() const{ return m_parameters; }
|
|
|
|
/**
|
|
* <p>These key-value pairs define properties associated with the table.</p>
|
|
*/
|
|
inline bool ParametersHasBeenSet() const { return m_parametersHasBeenSet; }
|
|
|
|
/**
|
|
* <p>These key-value pairs define properties associated with the table.</p>
|
|
*/
|
|
inline void SetParameters(const Aws::Map<Aws::String, Aws::String>& value) { m_parametersHasBeenSet = true; m_parameters = value; }
|
|
|
|
/**
|
|
* <p>These key-value pairs define properties associated with the table.</p>
|
|
*/
|
|
inline void SetParameters(Aws::Map<Aws::String, Aws::String>&& value) { m_parametersHasBeenSet = true; m_parameters = std::move(value); }
|
|
|
|
/**
|
|
* <p>These key-value pairs define properties associated with the table.</p>
|
|
*/
|
|
inline TableInput& WithParameters(const Aws::Map<Aws::String, Aws::String>& value) { SetParameters(value); return *this;}
|
|
|
|
/**
|
|
* <p>These key-value pairs define properties associated with the table.</p>
|
|
*/
|
|
inline TableInput& WithParameters(Aws::Map<Aws::String, Aws::String>&& value) { SetParameters(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>These key-value pairs define properties associated with the table.</p>
|
|
*/
|
|
inline TableInput& AddParameters(const Aws::String& key, const Aws::String& value) { m_parametersHasBeenSet = true; m_parameters.emplace(key, value); return *this; }
|
|
|
|
/**
|
|
* <p>These key-value pairs define properties associated with the table.</p>
|
|
*/
|
|
inline TableInput& AddParameters(Aws::String&& key, const Aws::String& value) { m_parametersHasBeenSet = true; m_parameters.emplace(std::move(key), value); return *this; }
|
|
|
|
/**
|
|
* <p>These key-value pairs define properties associated with the table.</p>
|
|
*/
|
|
inline TableInput& AddParameters(const Aws::String& key, Aws::String&& value) { m_parametersHasBeenSet = true; m_parameters.emplace(key, std::move(value)); return *this; }
|
|
|
|
/**
|
|
* <p>These key-value pairs define properties associated with the table.</p>
|
|
*/
|
|
inline TableInput& AddParameters(Aws::String&& key, Aws::String&& value) { m_parametersHasBeenSet = true; m_parameters.emplace(std::move(key), std::move(value)); return *this; }
|
|
|
|
/**
|
|
* <p>These key-value pairs define properties associated with the table.</p>
|
|
*/
|
|
inline TableInput& AddParameters(const char* key, Aws::String&& value) { m_parametersHasBeenSet = true; m_parameters.emplace(key, std::move(value)); return *this; }
|
|
|
|
/**
|
|
* <p>These key-value pairs define properties associated with the table.</p>
|
|
*/
|
|
inline TableInput& AddParameters(Aws::String&& key, const char* value) { m_parametersHasBeenSet = true; m_parameters.emplace(std::move(key), value); return *this; }
|
|
|
|
/**
|
|
* <p>These key-value pairs define properties associated with the table.</p>
|
|
*/
|
|
inline TableInput& AddParameters(const char* key, const char* value) { m_parametersHasBeenSet = true; m_parameters.emplace(key, value); return *this; }
|
|
|
|
|
|
/**
|
|
* <p>A <code>TableIdentifier</code> structure that describes a target table for
|
|
* resource linking.</p>
|
|
*/
|
|
inline const TableIdentifier& GetTargetTable() const{ return m_targetTable; }
|
|
|
|
/**
|
|
* <p>A <code>TableIdentifier</code> structure that describes a target table for
|
|
* resource linking.</p>
|
|
*/
|
|
inline bool TargetTableHasBeenSet() const { return m_targetTableHasBeenSet; }
|
|
|
|
/**
|
|
* <p>A <code>TableIdentifier</code> structure that describes a target table for
|
|
* resource linking.</p>
|
|
*/
|
|
inline void SetTargetTable(const TableIdentifier& value) { m_targetTableHasBeenSet = true; m_targetTable = value; }
|
|
|
|
/**
|
|
* <p>A <code>TableIdentifier</code> structure that describes a target table for
|
|
* resource linking.</p>
|
|
*/
|
|
inline void SetTargetTable(TableIdentifier&& value) { m_targetTableHasBeenSet = true; m_targetTable = std::move(value); }
|
|
|
|
/**
|
|
* <p>A <code>TableIdentifier</code> structure that describes a target table for
|
|
* resource linking.</p>
|
|
*/
|
|
inline TableInput& WithTargetTable(const TableIdentifier& value) { SetTargetTable(value); return *this;}
|
|
|
|
/**
|
|
* <p>A <code>TableIdentifier</code> structure that describes a target table for
|
|
* resource linking.</p>
|
|
*/
|
|
inline TableInput& WithTargetTable(TableIdentifier&& value) { SetTargetTable(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_name;
|
|
bool m_nameHasBeenSet;
|
|
|
|
Aws::String m_description;
|
|
bool m_descriptionHasBeenSet;
|
|
|
|
Aws::String m_owner;
|
|
bool m_ownerHasBeenSet;
|
|
|
|
Aws::Utils::DateTime m_lastAccessTime;
|
|
bool m_lastAccessTimeHasBeenSet;
|
|
|
|
Aws::Utils::DateTime m_lastAnalyzedTime;
|
|
bool m_lastAnalyzedTimeHasBeenSet;
|
|
|
|
int m_retention;
|
|
bool m_retentionHasBeenSet;
|
|
|
|
StorageDescriptor m_storageDescriptor;
|
|
bool m_storageDescriptorHasBeenSet;
|
|
|
|
Aws::Vector<Column> m_partitionKeys;
|
|
bool m_partitionKeysHasBeenSet;
|
|
|
|
Aws::String m_viewOriginalText;
|
|
bool m_viewOriginalTextHasBeenSet;
|
|
|
|
Aws::String m_viewExpandedText;
|
|
bool m_viewExpandedTextHasBeenSet;
|
|
|
|
Aws::String m_tableType;
|
|
bool m_tableTypeHasBeenSet;
|
|
|
|
Aws::Map<Aws::String, Aws::String> m_parameters;
|
|
bool m_parametersHasBeenSet;
|
|
|
|
TableIdentifier m_targetTable;
|
|
bool m_targetTableHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace Glue
|
|
} // namespace Aws
|