AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ObjectLambdaTransformationConfiguration.h
1
6#pragma once
7#include <aws/s3control/S3Control_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/s3control/model/ObjectLambdaContentTransformation.h>
10#include <aws/s3control/model/ObjectLambdaTransformationConfigurationAction.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Xml
18{
19 class XmlNode;
20} // namespace Xml
21} // namespace Utils
22namespace S3Control
23{
24namespace Model
25{
26
34 {
35 public:
39
40 AWS_S3CONTROL_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
41
42
44
50 inline bool ActionsHasBeenSet() const { return m_actionsHasBeenSet; }
51 inline void SetActions(const Aws::Vector<ObjectLambdaTransformationConfigurationAction>& value) { m_actionsHasBeenSet = true; m_actions = value; }
52 inline void SetActions(Aws::Vector<ObjectLambdaTransformationConfigurationAction>&& value) { m_actionsHasBeenSet = true; m_actions = std::move(value); }
55 inline ObjectLambdaTransformationConfiguration& AddActions(const ObjectLambdaTransformationConfigurationAction& value) { m_actionsHasBeenSet = true; m_actions.push_back(value); return *this; }
56 inline ObjectLambdaTransformationConfiguration& AddActions(ObjectLambdaTransformationConfigurationAction&& value) { m_actionsHasBeenSet = true; m_actions.push_back(std::move(value)); return *this; }
58
60
64 inline const ObjectLambdaContentTransformation& GetContentTransformation() const{ return m_contentTransformation; }
65 inline bool ContentTransformationHasBeenSet() const { return m_contentTransformationHasBeenSet; }
66 inline void SetContentTransformation(const ObjectLambdaContentTransformation& value) { m_contentTransformationHasBeenSet = true; m_contentTransformation = value; }
67 inline void SetContentTransformation(ObjectLambdaContentTransformation&& value) { m_contentTransformationHasBeenSet = true; m_contentTransformation = std::move(value); }
71 private:
72
74 bool m_actionsHasBeenSet = false;
75
76 ObjectLambdaContentTransformation m_contentTransformation;
77 bool m_contentTransformationHasBeenSet = false;
78 };
79
80} // namespace Model
81} // namespace S3Control
82} // namespace Aws
ObjectLambdaTransformationConfiguration & WithActions(Aws::Vector< ObjectLambdaTransformationConfigurationAction > &&value)
void SetActions(Aws::Vector< ObjectLambdaTransformationConfigurationAction > &&value)
ObjectLambdaTransformationConfiguration & WithActions(const Aws::Vector< ObjectLambdaTransformationConfigurationAction > &value)
AWS_S3CONTROL_API ObjectLambdaTransformationConfiguration(const Aws::Utils::Xml::XmlNode &xmlNode)
void SetContentTransformation(const ObjectLambdaContentTransformation &value)
ObjectLambdaTransformationConfiguration & AddActions(const ObjectLambdaTransformationConfigurationAction &value)
ObjectLambdaTransformationConfiguration & WithContentTransformation(ObjectLambdaContentTransformation &&value)
ObjectLambdaTransformationConfiguration & AddActions(ObjectLambdaTransformationConfigurationAction &&value)
ObjectLambdaTransformationConfiguration & WithContentTransformation(const ObjectLambdaContentTransformation &value)
const Aws::Vector< ObjectLambdaTransformationConfigurationAction > & GetActions() const
AWS_S3CONTROL_API ObjectLambdaTransformationConfiguration & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_S3CONTROL_API void AddToNode(Aws::Utils::Xml::XmlNode &parentNode) const
void SetActions(const Aws::Vector< ObjectLambdaTransformationConfigurationAction > &value)
std::vector< T, Aws::Allocator< T > > Vector