diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-03-02 12:50:27 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-03-02 12:50:27 +0300 |
commit | d0f80d5e60d77854f9d6262a59a7349e2b21f9d2 (patch) | |
tree | 01f1e033ce5519d96b7d6a83718221dcb8021eec /contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/ObjectIdentifier.h | |
parent | 26286f616cee657612a9d820be6da2cdbd4de0ef (diff) | |
download | ydb-d0f80d5e60d77854f9d6262a59a7349e2b21f9d2.tar.gz |
intermediate changes
ref:40ac71fae6ea311a73473cf4297ca93bf27559c3
Diffstat (limited to 'contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/ObjectIdentifier.h')
-rw-r--r-- | contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/ObjectIdentifier.h | 48 |
1 files changed, 40 insertions, 8 deletions
diff --git a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/ObjectIdentifier.h b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/ObjectIdentifier.h index ef7bdd50a8..82e3c611da 100644 --- a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/ObjectIdentifier.h +++ b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/ObjectIdentifier.h @@ -39,42 +39,74 @@ namespace Model /** - * <p>Key name of the object to delete.</p> + * <p>Key name of the object.</p> <p>Replacement must be made for + * object keys containing special characters (such as carriage returns) when using + * XML requests. For more information, see <a + * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html#object-key-xml-related-constraints"> + * XML related object key constraints</a>.</p> */ inline const Aws::String& GetKey() const{ return m_key; } /** - * <p>Key name of the object to delete.</p> + * <p>Key name of the object.</p> <p>Replacement must be made for + * object keys containing special characters (such as carriage returns) when using + * XML requests. For more information, see <a + * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html#object-key-xml-related-constraints"> + * XML related object key constraints</a>.</p> */ inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; } /** - * <p>Key name of the object to delete.</p> + * <p>Key name of the object.</p> <p>Replacement must be made for + * object keys containing special characters (such as carriage returns) when using + * XML requests. For more information, see <a + * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html#object-key-xml-related-constraints"> + * XML related object key constraints</a>.</p> */ inline void SetKey(const Aws::String& value) { m_keyHasBeenSet = true; m_key = value; } /** - * <p>Key name of the object to delete.</p> + * <p>Key name of the object.</p> <p>Replacement must be made for + * object keys containing special characters (such as carriage returns) when using + * XML requests. For more information, see <a + * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html#object-key-xml-related-constraints"> + * XML related object key constraints</a>.</p> */ inline void SetKey(Aws::String&& value) { m_keyHasBeenSet = true; m_key = std::move(value); } /** - * <p>Key name of the object to delete.</p> + * <p>Key name of the object.</p> <p>Replacement must be made for + * object keys containing special characters (such as carriage returns) when using + * XML requests. For more information, see <a + * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html#object-key-xml-related-constraints"> + * XML related object key constraints</a>.</p> */ inline void SetKey(const char* value) { m_keyHasBeenSet = true; m_key.assign(value); } /** - * <p>Key name of the object to delete.</p> + * <p>Key name of the object.</p> <p>Replacement must be made for + * object keys containing special characters (such as carriage returns) when using + * XML requests. For more information, see <a + * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html#object-key-xml-related-constraints"> + * XML related object key constraints</a>.</p> */ inline ObjectIdentifier& WithKey(const Aws::String& value) { SetKey(value); return *this;} /** - * <p>Key name of the object to delete.</p> + * <p>Key name of the object.</p> <p>Replacement must be made for + * object keys containing special characters (such as carriage returns) when using + * XML requests. For more information, see <a + * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html#object-key-xml-related-constraints"> + * XML related object key constraints</a>.</p> */ inline ObjectIdentifier& WithKey(Aws::String&& value) { SetKey(std::move(value)); return *this;} /** - * <p>Key name of the object to delete.</p> + * <p>Key name of the object.</p> <p>Replacement must be made for + * object keys containing special characters (such as carriage returns) when using + * XML requests. For more information, see <a + * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html#object-key-xml-related-constraints"> + * XML related object key constraints</a>.</p> */ inline ObjectIdentifier& WithKey(const char* value) { SetKey(value); return *this;} |