/** * 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 CloudFront { namespace Model { /** *

A complex type that controls whether CloudFront caches the response to * requests using the specified HTTP methods. There are two choices:

  • *

    CloudFront caches responses to GET and HEAD * requests.

  • CloudFront caches responses to GET, * HEAD, and OPTIONS requests.

If you * pick the second choice for your Amazon S3 Origin, you may need to forward * Access-Control-Request-Method, Access-Control-Request-Headers, and Origin * headers for the responses to be cached correctly.

See Also:

AWS * API Reference

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

The number of HTTP methods for which you want CloudFront to cache responses. * Valid values are 2 (for caching responses to GET and * HEAD requests) and 3 (for caching responses to * GET, HEAD, and OPTIONS requests).

*/ inline int GetQuantity() const{ return m_quantity; } /** *

The number of HTTP methods for which you want CloudFront to cache responses. * Valid values are 2 (for caching responses to GET and * HEAD requests) and 3 (for caching responses to * GET, HEAD, and OPTIONS requests).

*/ inline bool QuantityHasBeenSet() const { return m_quantityHasBeenSet; } /** *

The number of HTTP methods for which you want CloudFront to cache responses. * Valid values are 2 (for caching responses to GET and * HEAD requests) and 3 (for caching responses to * GET, HEAD, and OPTIONS requests).

*/ inline void SetQuantity(int value) { m_quantityHasBeenSet = true; m_quantity = value; } /** *

The number of HTTP methods for which you want CloudFront to cache responses. * Valid values are 2 (for caching responses to GET and * HEAD requests) and 3 (for caching responses to * GET, HEAD, and OPTIONS requests).

*/ inline CachedMethods& WithQuantity(int value) { SetQuantity(value); return *this;} /** *

A complex type that contains the HTTP methods that you want CloudFront to * cache responses to.

*/ inline const Aws::Vector& GetItems() const{ return m_items; } /** *

A complex type that contains the HTTP methods that you want CloudFront to * cache responses to.

*/ inline bool ItemsHasBeenSet() const { return m_itemsHasBeenSet; } /** *

A complex type that contains the HTTP methods that you want CloudFront to * cache responses to.

*/ inline void SetItems(const Aws::Vector& value) { m_itemsHasBeenSet = true; m_items = value; } /** *

A complex type that contains the HTTP methods that you want CloudFront to * cache responses to.

*/ inline void SetItems(Aws::Vector&& value) { m_itemsHasBeenSet = true; m_items = std::move(value); } /** *

A complex type that contains the HTTP methods that you want CloudFront to * cache responses to.

*/ inline CachedMethods& WithItems(const Aws::Vector& value) { SetItems(value); return *this;} /** *

A complex type that contains the HTTP methods that you want CloudFront to * cache responses to.

*/ inline CachedMethods& WithItems(Aws::Vector&& value) { SetItems(std::move(value)); return *this;} /** *

A complex type that contains the HTTP methods that you want CloudFront to * cache responses to.

*/ inline CachedMethods& AddItems(const Method& value) { m_itemsHasBeenSet = true; m_items.push_back(value); return *this; } /** *

A complex type that contains the HTTP methods that you want CloudFront to * cache responses to.

*/ inline CachedMethods& AddItems(Method&& value) { m_itemsHasBeenSet = true; m_items.push_back(std::move(value)); return *this; } private: int m_quantity; bool m_quantityHasBeenSet = false; Aws::Vector m_items; bool m_itemsHasBeenSet = false; }; } // namespace Model } // namespace CloudFront } // namespace Aws