/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Xml { class XmlDocument; } // namespace Xml } // namespace Utils namespace S3Crt { namespace Model { class GetBucketCorsResult { public: AWS_S3CRT_API GetBucketCorsResult(); AWS_S3CRT_API GetBucketCorsResult(const Aws::AmazonWebServiceResult& result); AWS_S3CRT_API GetBucketCorsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A set of origins and methods (cross-origin access that you want to allow). * You can add up to 100 rules to the configuration.

*/ inline const Aws::Vector& GetCORSRules() const{ return m_cORSRules; } /** *

A set of origins and methods (cross-origin access that you want to allow). * You can add up to 100 rules to the configuration.

*/ inline void SetCORSRules(const Aws::Vector& value) { m_cORSRules = value; } /** *

A set of origins and methods (cross-origin access that you want to allow). * You can add up to 100 rules to the configuration.

*/ inline void SetCORSRules(Aws::Vector&& value) { m_cORSRules = std::move(value); } /** *

A set of origins and methods (cross-origin access that you want to allow). * You can add up to 100 rules to the configuration.

*/ inline GetBucketCorsResult& WithCORSRules(const Aws::Vector& value) { SetCORSRules(value); return *this;} /** *

A set of origins and methods (cross-origin access that you want to allow). * You can add up to 100 rules to the configuration.

*/ inline GetBucketCorsResult& WithCORSRules(Aws::Vector&& value) { SetCORSRules(std::move(value)); return *this;} /** *

A set of origins and methods (cross-origin access that you want to allow). * You can add up to 100 rules to the configuration.

*/ inline GetBucketCorsResult& AddCORSRules(const CORSRule& value) { m_cORSRules.push_back(value); return *this; } /** *

A set of origins and methods (cross-origin access that you want to allow). * You can add up to 100 rules to the configuration.

*/ inline GetBucketCorsResult& AddCORSRules(CORSRule&& value) { m_cORSRules.push_back(std::move(value)); return *this; } inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetBucketCorsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetBucketCorsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetBucketCorsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_cORSRules; Aws::String m_requestId; }; } // namespace Model } // namespace S3Crt } // namespace Aws