/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies a data target that writes to Amazon S3 in Apache Parquet columnar
* storage.See Also:
AWS
* API Reference
The name of the data target.
*/ inline const Aws::String& GetName() const{ return m_name; } /** *The name of the data target.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *The name of the data target.
*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *The name of the data target.
*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *The name of the data target.
*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *The name of the data target.
*/ inline S3GlueParquetTarget& WithName(const Aws::String& value) { SetName(value); return *this;} /** *The name of the data target.
*/ inline S3GlueParquetTarget& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *The name of the data target.
*/ inline S3GlueParquetTarget& WithName(const char* value) { SetName(value); return *this;} /** *The nodes that are inputs to the data target.
*/ inline const Aws::VectorThe nodes that are inputs to the data target.
*/ inline bool InputsHasBeenSet() const { return m_inputsHasBeenSet; } /** *The nodes that are inputs to the data target.
*/ inline void SetInputs(const Aws::VectorThe nodes that are inputs to the data target.
*/ inline void SetInputs(Aws::VectorThe nodes that are inputs to the data target.
*/ inline S3GlueParquetTarget& WithInputs(const Aws::VectorThe nodes that are inputs to the data target.
*/ inline S3GlueParquetTarget& WithInputs(Aws::VectorThe nodes that are inputs to the data target.
*/ inline S3GlueParquetTarget& AddInputs(const Aws::String& value) { m_inputsHasBeenSet = true; m_inputs.push_back(value); return *this; } /** *The nodes that are inputs to the data target.
*/ inline S3GlueParquetTarget& AddInputs(Aws::String&& value) { m_inputsHasBeenSet = true; m_inputs.push_back(std::move(value)); return *this; } /** *The nodes that are inputs to the data target.
*/ inline S3GlueParquetTarget& AddInputs(const char* value) { m_inputsHasBeenSet = true; m_inputs.push_back(value); return *this; } /** *Specifies native partitioning using a sequence of keys.
*/ inline const Aws::VectorSpecifies native partitioning using a sequence of keys.
*/ inline bool PartitionKeysHasBeenSet() const { return m_partitionKeysHasBeenSet; } /** *Specifies native partitioning using a sequence of keys.
*/ inline void SetPartitionKeys(const Aws::VectorSpecifies native partitioning using a sequence of keys.
*/ inline void SetPartitionKeys(Aws::VectorSpecifies native partitioning using a sequence of keys.
*/ inline S3GlueParquetTarget& WithPartitionKeys(const Aws::VectorSpecifies native partitioning using a sequence of keys.
*/ inline S3GlueParquetTarget& WithPartitionKeys(Aws::VectorSpecifies native partitioning using a sequence of keys.
*/ inline S3GlueParquetTarget& AddPartitionKeys(const Aws::VectorSpecifies native partitioning using a sequence of keys.
*/ inline S3GlueParquetTarget& AddPartitionKeys(Aws::VectorA single Amazon S3 path to write to.
*/ inline const Aws::String& GetPath() const{ return m_path; } /** *A single Amazon S3 path to write to.
*/ inline bool PathHasBeenSet() const { return m_pathHasBeenSet; } /** *A single Amazon S3 path to write to.
*/ inline void SetPath(const Aws::String& value) { m_pathHasBeenSet = true; m_path = value; } /** *A single Amazon S3 path to write to.
*/ inline void SetPath(Aws::String&& value) { m_pathHasBeenSet = true; m_path = std::move(value); } /** *A single Amazon S3 path to write to.
*/ inline void SetPath(const char* value) { m_pathHasBeenSet = true; m_path.assign(value); } /** *A single Amazon S3 path to write to.
*/ inline S3GlueParquetTarget& WithPath(const Aws::String& value) { SetPath(value); return *this;} /** *A single Amazon S3 path to write to.
*/ inline S3GlueParquetTarget& WithPath(Aws::String&& value) { SetPath(std::move(value)); return *this;} /** *A single Amazon S3 path to write to.
*/ inline S3GlueParquetTarget& WithPath(const char* value) { SetPath(value); return *this;} /** *Specifies how the data is compressed. This is generally not necessary if the
* data has a standard file extension. Possible values are "gzip"
and
* "bzip"
).
Specifies how the data is compressed. This is generally not necessary if the
* data has a standard file extension. Possible values are "gzip"
and
* "bzip"
).
Specifies how the data is compressed. This is generally not necessary if the
* data has a standard file extension. Possible values are "gzip"
and
* "bzip"
).
Specifies how the data is compressed. This is generally not necessary if the
* data has a standard file extension. Possible values are "gzip"
and
* "bzip"
).
Specifies how the data is compressed. This is generally not necessary if the
* data has a standard file extension. Possible values are "gzip"
and
* "bzip"
).
Specifies how the data is compressed. This is generally not necessary if the
* data has a standard file extension. Possible values are "gzip"
and
* "bzip"
).
A policy that specifies update behavior for the crawler.
*/ inline const DirectSchemaChangePolicy& GetSchemaChangePolicy() const{ return m_schemaChangePolicy; } /** *A policy that specifies update behavior for the crawler.
*/ inline bool SchemaChangePolicyHasBeenSet() const { return m_schemaChangePolicyHasBeenSet; } /** *A policy that specifies update behavior for the crawler.
*/ inline void SetSchemaChangePolicy(const DirectSchemaChangePolicy& value) { m_schemaChangePolicyHasBeenSet = true; m_schemaChangePolicy = value; } /** *A policy that specifies update behavior for the crawler.
*/ inline void SetSchemaChangePolicy(DirectSchemaChangePolicy&& value) { m_schemaChangePolicyHasBeenSet = true; m_schemaChangePolicy = std::move(value); } /** *A policy that specifies update behavior for the crawler.
*/ inline S3GlueParquetTarget& WithSchemaChangePolicy(const DirectSchemaChangePolicy& value) { SetSchemaChangePolicy(value); return *this;} /** *A policy that specifies update behavior for the crawler.
*/ inline S3GlueParquetTarget& WithSchemaChangePolicy(DirectSchemaChangePolicy&& value) { SetSchemaChangePolicy(std::move(value)); return *this;} private: Aws::String m_name; bool m_nameHasBeenSet = false; Aws::Vector