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/ScanRange.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/ScanRange.h')
-rw-r--r-- | contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/ScanRange.h | 34 |
1 files changed, 19 insertions, 15 deletions
diff --git a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/ScanRange.h b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/ScanRange.h index dd964d0441..9daee6c68d 100644 --- a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/ScanRange.h +++ b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/ScanRange.h @@ -29,20 +29,21 @@ namespace Model * href="http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/ScanRange">AWS API * Reference</a></p> */ - class AWS_S3_API ScanRange + class ScanRange { public: - ScanRange(); - ScanRange(const Aws::Utils::Xml::XmlNode& xmlNode); - ScanRange& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); + AWS_S3_API ScanRange(); + AWS_S3_API ScanRange(const Aws::Utils::Xml::XmlNode& xmlNode); + AWS_S3_API ScanRange& 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; /** * <p>Specifies the start of the byte range. This parameter is optional. Valid - * values: non-negative integers. The default value is 0. If only start is - * supplied, it means scan from that point to the end of the file.For example; + * values: non-negative integers. The default value is 0. If only + * <code>start</code> is supplied, it means scan from that point to the end of the + * file. For example, * <code><scanrange><start>50</start></scanrange></code> * means scan from byte 50 until the end of the file.</p> */ @@ -50,8 +51,9 @@ namespace Model /** * <p>Specifies the start of the byte range. This parameter is optional. Valid - * values: non-negative integers. The default value is 0. If only start is - * supplied, it means scan from that point to the end of the file.For example; + * values: non-negative integers. The default value is 0. If only + * <code>start</code> is supplied, it means scan from that point to the end of the + * file. For example, * <code><scanrange><start>50</start></scanrange></code> * means scan from byte 50 until the end of the file.</p> */ @@ -59,8 +61,9 @@ namespace Model /** * <p>Specifies the start of the byte range. This parameter is optional. Valid - * values: non-negative integers. The default value is 0. If only start is - * supplied, it means scan from that point to the end of the file.For example; + * values: non-negative integers. The default value is 0. If only + * <code>start</code> is supplied, it means scan from that point to the end of the + * file. For example, * <code><scanrange><start>50</start></scanrange></code> * means scan from byte 50 until the end of the file.</p> */ @@ -68,8 +71,9 @@ namespace Model /** * <p>Specifies the start of the byte range. This parameter is optional. Valid - * values: non-negative integers. The default value is 0. If only start is - * supplied, it means scan from that point to the end of the file.For example; + * values: non-negative integers. The default value is 0. If only + * <code>start</code> is supplied, it means scan from that point to the end of the + * file. For example, * <code><scanrange><start>50</start></scanrange></code> * means scan from byte 50 until the end of the file.</p> */ @@ -119,10 +123,10 @@ namespace Model private: long long m_start; - bool m_startHasBeenSet; + bool m_startHasBeenSet = false; long long m_end; - bool m_endHasBeenSet; + bool m_endHasBeenSet = false; }; } // namespace Model |