diff options
author | dakovalkov <dakovalkov@yandex-team.com> | 2023-12-03 13:33:55 +0300 |
---|---|---|
committer | dakovalkov <dakovalkov@yandex-team.com> | 2023-12-03 14:04:39 +0300 |
commit | 2a718325637e5302334b6d0a6430f63168f8dbb3 (patch) | |
tree | 64be81080b7df9ec1d86d053a0c394ae53fcf1fe /contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/CSVInput.h | |
parent | e0d94a470142d95c3007e9c5d80380994940664a (diff) | |
download | ydb-2a718325637e5302334b6d0a6430f63168f8dbb3.tar.gz |
Update contrib/libs/aws-sdk-cpp to 1.11.37
Diffstat (limited to 'contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/CSVInput.h')
-rw-r--r-- | contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/CSVInput.h | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/CSVInput.h b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/CSVInput.h index ca40bb8ef9..3b591448db 100644 --- a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/CSVInput.h +++ b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/CSVInput.h @@ -29,14 +29,14 @@ namespace Model * href="http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/CSVInput">AWS API * Reference</a></p> */ - class AWS_S3_API CSVInput + class CSVInput { public: - CSVInput(); - CSVInput(const Aws::Utils::Xml::XmlNode& xmlNode); - CSVInput& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); + AWS_S3_API CSVInput(); + AWS_S3_API CSVInput(const Aws::Utils::Xml::XmlNode& xmlNode); + AWS_S3_API CSVInput& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); - void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const; + AWS_S3_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const; /** @@ -171,57 +171,57 @@ namespace Model /** * <p>A single character used for escaping the quotation mark character inside an - * already escaped value. For example, the value """ a , b """ is parsed as " a , b - * ".</p> + * already escaped value. For example, the value <code>""" a , b """</code> is + * parsed as <code>" a , b "</code>.</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. For example, the value """ a , b """ is parsed as " a , b - * ".</p> + * already escaped value. For example, the value <code>""" a , b """</code> is + * parsed as <code>" a , b "</code>.</p> */ inline bool QuoteEscapeCharacterHasBeenSet() const { return m_quoteEscapeCharacterHasBeenSet; } /** * <p>A single character used for escaping the quotation mark character inside an - * already escaped value. For example, the value """ a , b """ is parsed as " a , b - * ".</p> + * already escaped value. For example, the value <code>""" a , b """</code> is + * parsed as <code>" a , b "</code>.</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. For example, the value """ a , b """ is parsed as " a , b - * ".</p> + * already escaped value. For example, the value <code>""" a , b """</code> is + * parsed as <code>" a , b "</code>.</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. For example, the value """ a , b """ is parsed as " a , b - * ".</p> + * already escaped value. For example, the value <code>""" a , b """</code> is + * parsed as <code>" a , b "</code>.</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. For example, the value """ a , b """ is parsed as " a , b - * ".</p> + * already escaped value. For example, the value <code>""" a , b """</code> is + * parsed as <code>" a , b "</code>.</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. For example, the value """ a , b """ is parsed as " a , b - * ".</p> + * already escaped value. For example, the value <code>""" a , b """</code> is + * parsed as <code>" a , b "</code>.</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. For example, the value """ a , b """ is parsed as " a , b - * ".</p> + * already escaped value. For example, the value <code>""" a , b """</code> is + * parsed as <code>" a , b "</code>.</p> */ inline CSVInput& WithQuoteEscapeCharacter(const char* value) { SetQuoteEscapeCharacter(value); return *this;} @@ -420,25 +420,25 @@ namespace Model private: FileHeaderInfo m_fileHeaderInfo; - bool m_fileHeaderInfoHasBeenSet; + bool m_fileHeaderInfoHasBeenSet = false; Aws::String m_comments; - bool m_commentsHasBeenSet; + bool m_commentsHasBeenSet = false; Aws::String m_quoteEscapeCharacter; - bool m_quoteEscapeCharacterHasBeenSet; + bool m_quoteEscapeCharacterHasBeenSet = false; Aws::String m_recordDelimiter; - bool m_recordDelimiterHasBeenSet; + bool m_recordDelimiterHasBeenSet = false; Aws::String m_fieldDelimiter; - bool m_fieldDelimiterHasBeenSet; + bool m_fieldDelimiterHasBeenSet = false; Aws::String m_quoteCharacter; - bool m_quoteCharacterHasBeenSet; + bool m_quoteCharacterHasBeenSet = false; bool m_allowQuotedRecordDelimiter; - bool m_allowQuotedRecordDelimiterHasBeenSet; + bool m_allowQuotedRecordDelimiterHasBeenSet = false; }; } // namespace Model |