/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A structure that defines an Apache Iceberg metadata table to create in the
* catalog.See Also:
AWS
* API Reference
A required metadata operation. Can only be set to CREATE
.
A required metadata operation. Can only be set to CREATE
.
A required metadata operation. Can only be set to CREATE
.
A required metadata operation. Can only be set to CREATE
.
A required metadata operation. Can only be set to CREATE
.
A required metadata operation. Can only be set to CREATE
.
The table version for the Iceberg table. Defaults to 2.
*/ inline const Aws::String& GetVersion() const{ return m_version; } /** *The table version for the Iceberg table. Defaults to 2.
*/ inline bool VersionHasBeenSet() const { return m_versionHasBeenSet; } /** *The table version for the Iceberg table. Defaults to 2.
*/ inline void SetVersion(const Aws::String& value) { m_versionHasBeenSet = true; m_version = value; } /** *The table version for the Iceberg table. Defaults to 2.
*/ inline void SetVersion(Aws::String&& value) { m_versionHasBeenSet = true; m_version = std::move(value); } /** *The table version for the Iceberg table. Defaults to 2.
*/ inline void SetVersion(const char* value) { m_versionHasBeenSet = true; m_version.assign(value); } /** *The table version for the Iceberg table. Defaults to 2.
*/ inline IcebergInput& WithVersion(const Aws::String& value) { SetVersion(value); return *this;} /** *The table version for the Iceberg table. Defaults to 2.
*/ inline IcebergInput& WithVersion(Aws::String&& value) { SetVersion(std::move(value)); return *this;} /** *The table version for the Iceberg table. Defaults to 2.
*/ inline IcebergInput& WithVersion(const char* value) { SetVersion(value); return *this;} private: MetadataOperation m_metadataOperation; bool m_metadataOperationHasBeenSet = false; Aws::String m_version; bool m_versionHasBeenSet = false; }; } // namespace Model } // namespace Glue } // namespace Aws