140 lines
5.5 KiB
C
140 lines
5.5 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/cloudfront/CloudFront_EXPORTS.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|||
|
|
#include <aws/cloudfront/model/LambdaFunctionAssociation.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Xml
|
|||
|
|
{
|
|||
|
|
class XmlNode;
|
|||
|
|
} // namespace Xml
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace CloudFront
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A complex type that specifies a list of Lambda functions associations for a
|
|||
|
|
* cache behavior.</p> <p>If you want to invoke one or more Lambda functions
|
|||
|
|
* triggered by requests that match the <code>PathPattern</code> of the cache
|
|||
|
|
* behavior, specify the applicable values for <code>Quantity</code> and
|
|||
|
|
* <code>Items</code>. Note that there can be up to 4
|
|||
|
|
* <code>LambdaFunctionAssociation</code> items in this list (one for each possible
|
|||
|
|
* value of <code>EventType</code>) and each <code>EventType</code> can be
|
|||
|
|
* associated with the Lambda function only once.</p> <p>If you don't want to
|
|||
|
|
* invoke any Lambda functions for the requests that match
|
|||
|
|
* <code>PathPattern</code>, specify <code>0</code> for <code>Quantity</code> and
|
|||
|
|
* omit <code>Items</code>. </p><p><h3>See Also:</h3> <a
|
|||
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/LambdaFunctionAssociations">AWS
|
|||
|
|
* API Reference</a></p>
|
|||
|
|
*/
|
|||
|
|
class AWS_CLOUDFRONT_API LambdaFunctionAssociations
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
LambdaFunctionAssociations();
|
|||
|
|
LambdaFunctionAssociations(const Aws::Utils::Xml::XmlNode& xmlNode);
|
|||
|
|
LambdaFunctionAssociations& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
|
|||
|
|
|
|||
|
|
void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of Lambda function associations for this cache behavior.</p>
|
|||
|
|
*/
|
|||
|
|
inline int GetQuantity() const{ return m_quantity; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of Lambda function associations for this cache behavior.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool QuantityHasBeenSet() const { return m_quantityHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of Lambda function associations for this cache behavior.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetQuantity(int value) { m_quantityHasBeenSet = true; m_quantity = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of Lambda function associations for this cache behavior.</p>
|
|||
|
|
*/
|
|||
|
|
inline LambdaFunctionAssociations& WithQuantity(int value) { SetQuantity(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p> <b>Optional</b>: A complex type that contains
|
|||
|
|
* <code>LambdaFunctionAssociation</code> items for this cache behavior. If
|
|||
|
|
* <code>Quantity</code> is <code>0</code>, you can omit <code>Items</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::Vector<LambdaFunctionAssociation>& GetItems() const{ return m_items; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p> <b>Optional</b>: A complex type that contains
|
|||
|
|
* <code>LambdaFunctionAssociation</code> items for this cache behavior. If
|
|||
|
|
* <code>Quantity</code> is <code>0</code>, you can omit <code>Items</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool ItemsHasBeenSet() const { return m_itemsHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p> <b>Optional</b>: A complex type that contains
|
|||
|
|
* <code>LambdaFunctionAssociation</code> items for this cache behavior. If
|
|||
|
|
* <code>Quantity</code> is <code>0</code>, you can omit <code>Items</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetItems(const Aws::Vector<LambdaFunctionAssociation>& value) { m_itemsHasBeenSet = true; m_items = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p> <b>Optional</b>: A complex type that contains
|
|||
|
|
* <code>LambdaFunctionAssociation</code> items for this cache behavior. If
|
|||
|
|
* <code>Quantity</code> is <code>0</code>, you can omit <code>Items</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetItems(Aws::Vector<LambdaFunctionAssociation>&& value) { m_itemsHasBeenSet = true; m_items = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p> <b>Optional</b>: A complex type that contains
|
|||
|
|
* <code>LambdaFunctionAssociation</code> items for this cache behavior. If
|
|||
|
|
* <code>Quantity</code> is <code>0</code>, you can omit <code>Items</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline LambdaFunctionAssociations& WithItems(const Aws::Vector<LambdaFunctionAssociation>& value) { SetItems(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p> <b>Optional</b>: A complex type that contains
|
|||
|
|
* <code>LambdaFunctionAssociation</code> items for this cache behavior. If
|
|||
|
|
* <code>Quantity</code> is <code>0</code>, you can omit <code>Items</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline LambdaFunctionAssociations& WithItems(Aws::Vector<LambdaFunctionAssociation>&& value) { SetItems(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p> <b>Optional</b>: A complex type that contains
|
|||
|
|
* <code>LambdaFunctionAssociation</code> items for this cache behavior. If
|
|||
|
|
* <code>Quantity</code> is <code>0</code>, you can omit <code>Items</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline LambdaFunctionAssociations& AddItems(const LambdaFunctionAssociation& value) { m_itemsHasBeenSet = true; m_items.push_back(value); return *this; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p> <b>Optional</b>: A complex type that contains
|
|||
|
|
* <code>LambdaFunctionAssociation</code> items for this cache behavior. If
|
|||
|
|
* <code>Quantity</code> is <code>0</code>, you can omit <code>Items</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline LambdaFunctionAssociations& AddItems(LambdaFunctionAssociation&& value) { m_itemsHasBeenSet = true; m_items.push_back(std::move(value)); return *this; }
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
int m_quantity;
|
|||
|
|
bool m_quantityHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::Vector<LambdaFunctionAssociation> m_items;
|
|||
|
|
bool m_itemsHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace CloudFront
|
|||
|
|
} // namespace Aws
|