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/CreateBucketResult.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/CreateBucketResult.h')
-rw-r--r-- | contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/CreateBucketResult.h | 36 |
1 files changed, 11 insertions, 25 deletions
diff --git a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/CreateBucketResult.h b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/CreateBucketResult.h index fb29599179..e5ec901a87 100644 --- a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/CreateBucketResult.h +++ b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/CreateBucketResult.h @@ -24,60 +24,46 @@ namespace S3 { namespace Model { - class AWS_S3_API CreateBucketResult + class CreateBucketResult { public: - CreateBucketResult(); - CreateBucketResult(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result); - CreateBucketResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result); + AWS_S3_API CreateBucketResult(); + AWS_S3_API CreateBucketResult(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result); + AWS_S3_API CreateBucketResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result); /** - * <p>Specifies the Region where the bucket will be created. If you are creating a - * bucket on the US East (N. Virginia) Region (us-east-1), you do not need to - * specify the location.</p> + * <p>A forward slash followed by the name of the bucket.</p> */ inline const Aws::String& GetLocation() const{ return m_location; } /** - * <p>Specifies the Region where the bucket will be created. If you are creating a - * bucket on the US East (N. Virginia) Region (us-east-1), you do not need to - * specify the location.</p> + * <p>A forward slash followed by the name of the bucket.</p> */ inline void SetLocation(const Aws::String& value) { m_location = value; } /** - * <p>Specifies the Region where the bucket will be created. If you are creating a - * bucket on the US East (N. Virginia) Region (us-east-1), you do not need to - * specify the location.</p> + * <p>A forward slash followed by the name of the bucket.</p> */ inline void SetLocation(Aws::String&& value) { m_location = std::move(value); } /** - * <p>Specifies the Region where the bucket will be created. If you are creating a - * bucket on the US East (N. Virginia) Region (us-east-1), you do not need to - * specify the location.</p> + * <p>A forward slash followed by the name of the bucket.</p> */ inline void SetLocation(const char* value) { m_location.assign(value); } /** - * <p>Specifies the Region where the bucket will be created. If you are creating a - * bucket on the US East (N. Virginia) Region (us-east-1), you do not need to - * specify the location.</p> + * <p>A forward slash followed by the name of the bucket.</p> */ inline CreateBucketResult& WithLocation(const Aws::String& value) { SetLocation(value); return *this;} /** - * <p>Specifies the Region where the bucket will be created. If you are creating a - * bucket on the US East (N. Virginia) Region (us-east-1), you do not need to - * specify the location.</p> + * <p>A forward slash followed by the name of the bucket.</p> */ inline CreateBucketResult& WithLocation(Aws::String&& value) { SetLocation(std::move(value)); return *this;} /** - * <p>Specifies the Region where the bucket will be created. If you are creating a - * bucket on the US East (N. Virginia) Region (us-east-1), you do not need to - * specify the location.</p> + * <p>A forward slash followed by the name of the bucket.</p> */ inline CreateBucketResult& WithLocation(const char* value) { SetLocation(value); return *this;} |