This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-glacier/include/aws/glacier/model/CSVInput.h

339 lines
12 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/glacier/Glacier_EXPORTS.h>
#include <aws/glacier/model/FileHeaderInfo.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace Glacier
{
namespace Model
{
/**
* <p>Contains information about the comma-separated value (CSV) file to select
* from.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/glacier-2012-06-01/CSVInput">AWS
* API Reference</a></p>
*/
class AWS_GLACIER_API CSVInput
{
public:
CSVInput();
CSVInput(Aws::Utils::Json::JsonView jsonValue);
CSVInput& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>Describes the first line of input. Valid values are <code>None</code>,
* <code>Ignore</code>, and <code>Use</code>.</p>
*/
inline const FileHeaderInfo& GetFileHeaderInfo() const{ return m_fileHeaderInfo; }
/**
* <p>Describes the first line of input. Valid values are <code>None</code>,
* <code>Ignore</code>, and <code>Use</code>.</p>
*/
inline bool FileHeaderInfoHasBeenSet() const { return m_fileHeaderInfoHasBeenSet; }
/**
* <p>Describes the first line of input. Valid values are <code>None</code>,
* <code>Ignore</code>, and <code>Use</code>.</p>
*/
inline void SetFileHeaderInfo(const FileHeaderInfo& value) { m_fileHeaderInfoHasBeenSet = true; m_fileHeaderInfo = value; }
/**
* <p>Describes the first line of input. Valid values are <code>None</code>,
* <code>Ignore</code>, and <code>Use</code>.</p>
*/
inline void SetFileHeaderInfo(FileHeaderInfo&& value) { m_fileHeaderInfoHasBeenSet = true; m_fileHeaderInfo = std::move(value); }
/**
* <p>Describes the first line of input. Valid values are <code>None</code>,
* <code>Ignore</code>, and <code>Use</code>.</p>
*/
inline CSVInput& WithFileHeaderInfo(const FileHeaderInfo& value) { SetFileHeaderInfo(value); return *this;}
/**
* <p>Describes the first line of input. Valid values are <code>None</code>,
* <code>Ignore</code>, and <code>Use</code>.</p>
*/
inline CSVInput& WithFileHeaderInfo(FileHeaderInfo&& value) { SetFileHeaderInfo(std::move(value)); return *this;}
/**
* <p>A single character used to indicate that a row should be ignored when the
* character is present at the start of that row.</p>
*/
inline const Aws::String& GetComments() const{ return m_comments; }
/**
* <p>A single character used to indicate that a row should be ignored when the
* character is present at the start of that row.</p>
*/
inline bool CommentsHasBeenSet() const { return m_commentsHasBeenSet; }
/**
* <p>A single character used to indicate that a row should be ignored when the
* character is present at the start of that row.</p>
*/
inline void SetComments(const Aws::String& value) { m_commentsHasBeenSet = true; m_comments = value; }
/**
* <p>A single character used to indicate that a row should be ignored when the
* character is present at the start of that row.</p>
*/
inline void SetComments(Aws::String&& value) { m_commentsHasBeenSet = true; m_comments = std::move(value); }
/**
* <p>A single character used to indicate that a row should be ignored when the
* character is present at the start of that row.</p>
*/
inline void SetComments(const char* value) { m_commentsHasBeenSet = true; m_comments.assign(value); }
/**
* <p>A single character used to indicate that a row should be ignored when the
* character is present at the start of that row.</p>
*/
inline CSVInput& WithComments(const Aws::String& value) { SetComments(value); return *this;}
/**
* <p>A single character used to indicate that a row should be ignored when the
* character is present at the start of that row.</p>
*/
inline CSVInput& WithComments(Aws::String&& value) { SetComments(std::move(value)); return *this;}
/**
* <p>A single character used to indicate that a row should be ignored when the
* character is present at the start of that row.</p>
*/
inline CSVInput& WithComments(const char* value) { SetComments(value); return *this;}
/**
* <p>A single character used for escaping the quotation-mark character inside an
* already escaped value.</p>
*/
inline const Aws::String& GetQuoteEscapeCharacter() const{ return m_quoteEscapeCharacter; }
/**
* <p>A single character used for escaping the quotation-mark character inside an
* already escaped value.</p>
*/
inline bool QuoteEscapeCharacterHasBeenSet() const { return m_quoteEscapeCharacterHasBeenSet; }
/**
* <p>A single character used for escaping the quotation-mark character inside an
* already escaped value.</p>
*/
inline void SetQuoteEscapeCharacter(const Aws::String& value) { m_quoteEscapeCharacterHasBeenSet = true; m_quoteEscapeCharacter = value; }
/**
* <p>A single character used for escaping the quotation-mark character inside an
* already escaped value.</p>
*/
inline void SetQuoteEscapeCharacter(Aws::String&& value) { m_quoteEscapeCharacterHasBeenSet = true; m_quoteEscapeCharacter = std::move(value); }
/**
* <p>A single character used for escaping the quotation-mark character inside an
* already escaped value.</p>
*/
inline void SetQuoteEscapeCharacter(const char* value) { m_quoteEscapeCharacterHasBeenSet = true; m_quoteEscapeCharacter.assign(value); }
/**
* <p>A single character used for escaping the quotation-mark character inside an
* already escaped value.</p>
*/
inline CSVInput& WithQuoteEscapeCharacter(const Aws::String& value) { SetQuoteEscapeCharacter(value); return *this;}
/**
* <p>A single character used for escaping the quotation-mark character inside an
* already escaped value.</p>
*/
inline CSVInput& WithQuoteEscapeCharacter(Aws::String&& value) { SetQuoteEscapeCharacter(std::move(value)); return *this;}
/**
* <p>A single character used for escaping the quotation-mark character inside an
* already escaped value.</p>
*/
inline CSVInput& WithQuoteEscapeCharacter(const char* value) { SetQuoteEscapeCharacter(value); return *this;}
/**
* <p>A value used to separate individual records from each other.</p>
*/
inline const Aws::String& GetRecordDelimiter() const{ return m_recordDelimiter; }
/**
* <p>A value used to separate individual records from each other.</p>
*/
inline bool RecordDelimiterHasBeenSet() const { return m_recordDelimiterHasBeenSet; }
/**
* <p>A value used to separate individual records from each other.</p>
*/
inline void SetRecordDelimiter(const Aws::String& value) { m_recordDelimiterHasBeenSet = true; m_recordDelimiter = value; }
/**
* <p>A value used to separate individual records from each other.</p>
*/
inline void SetRecordDelimiter(Aws::String&& value) { m_recordDelimiterHasBeenSet = true; m_recordDelimiter = std::move(value); }
/**
* <p>A value used to separate individual records from each other.</p>
*/
inline void SetRecordDelimiter(const char* value) { m_recordDelimiterHasBeenSet = true; m_recordDelimiter.assign(value); }
/**
* <p>A value used to separate individual records from each other.</p>
*/
inline CSVInput& WithRecordDelimiter(const Aws::String& value) { SetRecordDelimiter(value); return *this;}
/**
* <p>A value used to separate individual records from each other.</p>
*/
inline CSVInput& WithRecordDelimiter(Aws::String&& value) { SetRecordDelimiter(std::move(value)); return *this;}
/**
* <p>A value used to separate individual records from each other.</p>
*/
inline CSVInput& WithRecordDelimiter(const char* value) { SetRecordDelimiter(value); return *this;}
/**
* <p>A value used to separate individual fields from each other within a
* record.</p>
*/
inline const Aws::String& GetFieldDelimiter() const{ return m_fieldDelimiter; }
/**
* <p>A value used to separate individual fields from each other within a
* record.</p>
*/
inline bool FieldDelimiterHasBeenSet() const { return m_fieldDelimiterHasBeenSet; }
/**
* <p>A value used to separate individual fields from each other within a
* record.</p>
*/
inline void SetFieldDelimiter(const Aws::String& value) { m_fieldDelimiterHasBeenSet = true; m_fieldDelimiter = value; }
/**
* <p>A value used to separate individual fields from each other within a
* record.</p>
*/
inline void SetFieldDelimiter(Aws::String&& value) { m_fieldDelimiterHasBeenSet = true; m_fieldDelimiter = std::move(value); }
/**
* <p>A value used to separate individual fields from each other within a
* record.</p>
*/
inline void SetFieldDelimiter(const char* value) { m_fieldDelimiterHasBeenSet = true; m_fieldDelimiter.assign(value); }
/**
* <p>A value used to separate individual fields from each other within a
* record.</p>
*/
inline CSVInput& WithFieldDelimiter(const Aws::String& value) { SetFieldDelimiter(value); return *this;}
/**
* <p>A value used to separate individual fields from each other within a
* record.</p>
*/
inline CSVInput& WithFieldDelimiter(Aws::String&& value) { SetFieldDelimiter(std::move(value)); return *this;}
/**
* <p>A value used to separate individual fields from each other within a
* record.</p>
*/
inline CSVInput& WithFieldDelimiter(const char* value) { SetFieldDelimiter(value); return *this;}
/**
* <p>A value used as an escape character where the field delimiter is part of the
* value.</p>
*/
inline const Aws::String& GetQuoteCharacter() const{ return m_quoteCharacter; }
/**
* <p>A value used as an escape character where the field delimiter is part of the
* value.</p>
*/
inline bool QuoteCharacterHasBeenSet() const { return m_quoteCharacterHasBeenSet; }
/**
* <p>A value used as an escape character where the field delimiter is part of the
* value.</p>
*/
inline void SetQuoteCharacter(const Aws::String& value) { m_quoteCharacterHasBeenSet = true; m_quoteCharacter = value; }
/**
* <p>A value used as an escape character where the field delimiter is part of the
* value.</p>
*/
inline void SetQuoteCharacter(Aws::String&& value) { m_quoteCharacterHasBeenSet = true; m_quoteCharacter = std::move(value); }
/**
* <p>A value used as an escape character where the field delimiter is part of the
* value.</p>
*/
inline void SetQuoteCharacter(const char* value) { m_quoteCharacterHasBeenSet = true; m_quoteCharacter.assign(value); }
/**
* <p>A value used as an escape character where the field delimiter is part of the
* value.</p>
*/
inline CSVInput& WithQuoteCharacter(const Aws::String& value) { SetQuoteCharacter(value); return *this;}
/**
* <p>A value used as an escape character where the field delimiter is part of the
* value.</p>
*/
inline CSVInput& WithQuoteCharacter(Aws::String&& value) { SetQuoteCharacter(std::move(value)); return *this;}
/**
* <p>A value used as an escape character where the field delimiter is part of the
* value.</p>
*/
inline CSVInput& WithQuoteCharacter(const char* value) { SetQuoteCharacter(value); return *this;}
private:
FileHeaderInfo m_fileHeaderInfo;
bool m_fileHeaderInfoHasBeenSet;
Aws::String m_comments;
bool m_commentsHasBeenSet;
Aws::String m_quoteEscapeCharacter;
bool m_quoteEscapeCharacterHasBeenSet;
Aws::String m_recordDelimiter;
bool m_recordDelimiterHasBeenSet;
Aws::String m_fieldDelimiter;
bool m_fieldDelimiterHasBeenSet;
Aws::String m_quoteCharacter;
bool m_quoteCharacterHasBeenSet;
};
} // namespace Model
} // namespace Glacier
} // namespace Aws