AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
UpdateFunction2020_05_31Request.h
1
6#pragma once
7#include <aws/cloudfront/CloudFront_EXPORTS.h>
8#include <aws/cloudfront/CloudFrontRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/cloudfront/model/FunctionConfig.h>
11#include <aws/core/utils/Array.h>
12#include <utility>
13
14namespace Aws
15{
16namespace CloudFront
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_CLOUDFRONT_API UpdateFunction2020_05_31Request() = default;
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "UpdateFunction"; }
33
34 AWS_CLOUDFRONT_API Aws::String SerializePayload() const override;
35
37
38
40
43 inline const Aws::String& GetName() const { return m_name; }
44 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
45 template<typename NameT = Aws::String>
46 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
47 template<typename NameT = Aws::String>
48 UpdateFunction2020_05_31Request& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
50
52
56 inline const Aws::String& GetIfMatch() const { return m_ifMatch; }
57 inline bool IfMatchHasBeenSet() const { return m_ifMatchHasBeenSet; }
58 template<typename IfMatchT = Aws::String>
59 void SetIfMatch(IfMatchT&& value) { m_ifMatchHasBeenSet = true; m_ifMatch = std::forward<IfMatchT>(value); }
60 template<typename IfMatchT = Aws::String>
61 UpdateFunction2020_05_31Request& WithIfMatch(IfMatchT&& value) { SetIfMatch(std::forward<IfMatchT>(value)); return *this;}
63
65
68 inline const FunctionConfig& GetFunctionConfig() const { return m_functionConfig; }
69 inline bool FunctionConfigHasBeenSet() const { return m_functionConfigHasBeenSet; }
70 template<typename FunctionConfigT = FunctionConfig>
71 void SetFunctionConfig(FunctionConfigT&& value) { m_functionConfigHasBeenSet = true; m_functionConfig = std::forward<FunctionConfigT>(value); }
72 template<typename FunctionConfigT = FunctionConfig>
73 UpdateFunction2020_05_31Request& WithFunctionConfig(FunctionConfigT&& value) { SetFunctionConfig(std::forward<FunctionConfigT>(value)); return *this;}
75
77
84 inline const Aws::Utils::CryptoBuffer& GetFunctionCode() const { return m_functionCode; }
85 inline bool FunctionCodeHasBeenSet() const { return m_functionCodeHasBeenSet; }
86 template<typename FunctionCodeT = Aws::Utils::CryptoBuffer>
87 void SetFunctionCode(FunctionCodeT&& value) { m_functionCodeHasBeenSet = true; m_functionCode = std::forward<FunctionCodeT>(value); }
88 template<typename FunctionCodeT = Aws::Utils::CryptoBuffer>
89 UpdateFunction2020_05_31Request& WithFunctionCode(FunctionCodeT&& value) { SetFunctionCode(std::forward<FunctionCodeT>(value)); return *this;}
91 private:
92
93 Aws::String m_name;
94 bool m_nameHasBeenSet = false;
95
96 Aws::String m_ifMatch;
97 bool m_ifMatchHasBeenSet = false;
98
99 FunctionConfig m_functionConfig;
100 bool m_functionConfigHasBeenSet = false;
101
102 Aws::Utils::CryptoBuffer m_functionCode{};
103 bool m_functionCodeHasBeenSet = false;
104 };
105
106} // namespace Model
107} // namespace CloudFront
108} // namespace Aws
AWS_CLOUDFRONT_API Aws::String SerializePayload() const override
UpdateFunction2020_05_31Request & WithIfMatch(IfMatchT &&value)
UpdateFunction2020_05_31Request & WithFunctionCode(FunctionCodeT &&value)
AWS_CLOUDFRONT_API UpdateFunction2020_05_31Request()=default
UpdateFunction2020_05_31Request & WithName(NameT &&value)
AWS_CLOUDFRONT_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
UpdateFunction2020_05_31Request & WithFunctionConfig(FunctionConfigT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String