/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace Glacier { namespace Model { /** *

Contains information about the comma-separated value (CSV) file that the job * results are stored in.

See Also:

AWS * API Reference

*/ class CSVOutput { public: AWS_GLACIER_API CSVOutput(); AWS_GLACIER_API CSVOutput(Aws::Utils::Json::JsonView jsonValue); AWS_GLACIER_API CSVOutput& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_GLACIER_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

A value that indicates whether all output fields should be contained within * quotation marks.

*/ inline const QuoteFields& GetQuoteFields() const{ return m_quoteFields; } /** *

A value that indicates whether all output fields should be contained within * quotation marks.

*/ inline bool QuoteFieldsHasBeenSet() const { return m_quoteFieldsHasBeenSet; } /** *

A value that indicates whether all output fields should be contained within * quotation marks.

*/ inline void SetQuoteFields(const QuoteFields& value) { m_quoteFieldsHasBeenSet = true; m_quoteFields = value; } /** *

A value that indicates whether all output fields should be contained within * quotation marks.

*/ inline void SetQuoteFields(QuoteFields&& value) { m_quoteFieldsHasBeenSet = true; m_quoteFields = std::move(value); } /** *

A value that indicates whether all output fields should be contained within * quotation marks.

*/ inline CSVOutput& WithQuoteFields(const QuoteFields& value) { SetQuoteFields(value); return *this;} /** *

A value that indicates whether all output fields should be contained within * quotation marks.

*/ inline CSVOutput& WithQuoteFields(QuoteFields&& value) { SetQuoteFields(std::move(value)); return *this;} /** *

A single character used for escaping the quotation-mark character inside an * already escaped value.

*/ inline const Aws::String& GetQuoteEscapeCharacter() const{ return m_quoteEscapeCharacter; } /** *

A single character used for escaping the quotation-mark character inside an * already escaped value.

*/ inline bool QuoteEscapeCharacterHasBeenSet() const { return m_quoteEscapeCharacterHasBeenSet; } /** *

A single character used for escaping the quotation-mark character inside an * already escaped value.

*/ inline void SetQuoteEscapeCharacter(const Aws::String& value) { m_quoteEscapeCharacterHasBeenSet = true; m_quoteEscapeCharacter = value; } /** *

A single character used for escaping the quotation-mark character inside an * already escaped value.

*/ inline void SetQuoteEscapeCharacter(Aws::String&& value) { m_quoteEscapeCharacterHasBeenSet = true; m_quoteEscapeCharacter = std::move(value); } /** *

A single character used for escaping the quotation-mark character inside an * already escaped value.

*/ inline void SetQuoteEscapeCharacter(const char* value) { m_quoteEscapeCharacterHasBeenSet = true; m_quoteEscapeCharacter.assign(value); } /** *

A single character used for escaping the quotation-mark character inside an * already escaped value.

*/ inline CSVOutput& WithQuoteEscapeCharacter(const Aws::String& value) { SetQuoteEscapeCharacter(value); return *this;} /** *

A single character used for escaping the quotation-mark character inside an * already escaped value.

*/ inline CSVOutput& WithQuoteEscapeCharacter(Aws::String&& value) { SetQuoteEscapeCharacter(std::move(value)); return *this;} /** *

A single character used for escaping the quotation-mark character inside an * already escaped value.

*/ inline CSVOutput& WithQuoteEscapeCharacter(const char* value) { SetQuoteEscapeCharacter(value); return *this;} /** *

A value used to separate individual records from each other.

*/ inline const Aws::String& GetRecordDelimiter() const{ return m_recordDelimiter; } /** *

A value used to separate individual records from each other.

*/ inline bool RecordDelimiterHasBeenSet() const { return m_recordDelimiterHasBeenSet; } /** *

A value used to separate individual records from each other.

*/ inline void SetRecordDelimiter(const Aws::String& value) { m_recordDelimiterHasBeenSet = true; m_recordDelimiter = value; } /** *

A value used to separate individual records from each other.

*/ inline void SetRecordDelimiter(Aws::String&& value) { m_recordDelimiterHasBeenSet = true; m_recordDelimiter = std::move(value); } /** *

A value used to separate individual records from each other.

*/ inline void SetRecordDelimiter(const char* value) { m_recordDelimiterHasBeenSet = true; m_recordDelimiter.assign(value); } /** *

A value used to separate individual records from each other.

*/ inline CSVOutput& WithRecordDelimiter(const Aws::String& value) { SetRecordDelimiter(value); return *this;} /** *

A value used to separate individual records from each other.

*/ inline CSVOutput& WithRecordDelimiter(Aws::String&& value) { SetRecordDelimiter(std::move(value)); return *this;} /** *

A value used to separate individual records from each other.

*/ inline CSVOutput& WithRecordDelimiter(const char* value) { SetRecordDelimiter(value); return *this;} /** *

A value used to separate individual fields from each other within a * record.

*/ inline const Aws::String& GetFieldDelimiter() const{ return m_fieldDelimiter; } /** *

A value used to separate individual fields from each other within a * record.

*/ inline bool FieldDelimiterHasBeenSet() const { return m_fieldDelimiterHasBeenSet; } /** *

A value used to separate individual fields from each other within a * record.

*/ inline void SetFieldDelimiter(const Aws::String& value) { m_fieldDelimiterHasBeenSet = true; m_fieldDelimiter = value; } /** *

A value used to separate individual fields from each other within a * record.

*/ inline void SetFieldDelimiter(Aws::String&& value) { m_fieldDelimiterHasBeenSet = true; m_fieldDelimiter = std::move(value); } /** *

A value used to separate individual fields from each other within a * record.

*/ inline void SetFieldDelimiter(const char* value) { m_fieldDelimiterHasBeenSet = true; m_fieldDelimiter.assign(value); } /** *

A value used to separate individual fields from each other within a * record.

*/ inline CSVOutput& WithFieldDelimiter(const Aws::String& value) { SetFieldDelimiter(value); return *this;} /** *

A value used to separate individual fields from each other within a * record.

*/ inline CSVOutput& WithFieldDelimiter(Aws::String&& value) { SetFieldDelimiter(std::move(value)); return *this;} /** *

A value used to separate individual fields from each other within a * record.

*/ inline CSVOutput& WithFieldDelimiter(const char* value) { SetFieldDelimiter(value); return *this;} /** *

A value used as an escape character where the field delimiter is part of the * value.

*/ inline const Aws::String& GetQuoteCharacter() const{ return m_quoteCharacter; } /** *

A value used as an escape character where the field delimiter is part of the * value.

*/ inline bool QuoteCharacterHasBeenSet() const { return m_quoteCharacterHasBeenSet; } /** *

A value used as an escape character where the field delimiter is part of the * value.

*/ inline void SetQuoteCharacter(const Aws::String& value) { m_quoteCharacterHasBeenSet = true; m_quoteCharacter = value; } /** *

A value used as an escape character where the field delimiter is part of the * value.

*/ inline void SetQuoteCharacter(Aws::String&& value) { m_quoteCharacterHasBeenSet = true; m_quoteCharacter = std::move(value); } /** *

A value used as an escape character where the field delimiter is part of the * value.

*/ inline void SetQuoteCharacter(const char* value) { m_quoteCharacterHasBeenSet = true; m_quoteCharacter.assign(value); } /** *

A value used as an escape character where the field delimiter is part of the * value.

*/ inline CSVOutput& WithQuoteCharacter(const Aws::String& value) { SetQuoteCharacter(value); return *this;} /** *

A value used as an escape character where the field delimiter is part of the * value.

*/ inline CSVOutput& WithQuoteCharacter(Aws::String&& value) { SetQuoteCharacter(std::move(value)); return *this;} /** *

A value used as an escape character where the field delimiter is part of the * value.

*/ inline CSVOutput& WithQuoteCharacter(const char* value) { SetQuoteCharacter(value); return *this;} private: QuoteFields m_quoteFields; bool m_quoteFieldsHasBeenSet = false; Aws::String m_quoteEscapeCharacter; bool m_quoteEscapeCharacterHasBeenSet = false; Aws::String m_recordDelimiter; bool m_recordDelimiterHasBeenSet = false; Aws::String m_fieldDelimiter; bool m_fieldDelimiterHasBeenSet = false; Aws::String m_quoteCharacter; bool m_quoteCharacterHasBeenSet = false; }; } // namespace Model } // namespace Glacier } // namespace Aws