/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Xml { class XmlNode; } // namespace Xml } // namespace Utils namespace S3 { namespace Model { /** *

Describes the cross-origin access configuration for objects in an Amazon S3 * bucket. For more information, see Enabling * Cross-Origin Resource Sharing in the Amazon S3 User * Guide.

See Also:

AWS * API Reference

*/ class AWS_S3_API CORSConfiguration { public: CORSConfiguration(); CORSConfiguration(const Aws::Utils::Xml::XmlNode& xmlNode); CORSConfiguration& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const; /** *

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 bool CORSRulesHasBeenSet() const { return m_cORSRulesHasBeenSet; } /** *

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_cORSRulesHasBeenSet = true; 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_cORSRulesHasBeenSet = true; 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 CORSConfiguration& 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 CORSConfiguration& 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 CORSConfiguration& AddCORSRules(const CORSRule& value) { m_cORSRulesHasBeenSet = true; 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 CORSConfiguration& AddCORSRules(CORSRule&& value) { m_cORSRulesHasBeenSet = true; m_cORSRules.push_back(std::move(value)); return *this; } private: Aws::Vector m_cORSRules; bool m_cORSRulesHasBeenSet; }; } // namespace Model } // namespace S3 } // namespace Aws