/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Xml { class XmlDocument; } // namespace Xml } // namespace Utils namespace S3 { namespace Model { class AWS_S3_API GetBucketCorsResult { public: GetBucketCorsResult(); GetBucketCorsResult(const Aws::AmazonWebServiceResult& result); 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; } private: Aws::Vector m_cORSRules; }; } // namespace Model } // namespace S3 } // namespace Aws