AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
CreateFunction2020_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 CreateFunction2020_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 "CreateFunction"; }
33
34 AWS_CLOUDFRONT_API Aws::String SerializePayload() const override;
35
36
38
41 inline const Aws::String& GetName() const { return m_name; }
42 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
43 template<typename NameT = Aws::String>
44 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
45 template<typename NameT = Aws::String>
46 CreateFunction2020_05_31Request& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
48
50
54 inline const FunctionConfig& GetFunctionConfig() const { return m_functionConfig; }
55 inline bool FunctionConfigHasBeenSet() const { return m_functionConfigHasBeenSet; }
56 template<typename FunctionConfigT = FunctionConfig>
57 void SetFunctionConfig(FunctionConfigT&& value) { m_functionConfigHasBeenSet = true; m_functionConfig = std::forward<FunctionConfigT>(value); }
58 template<typename FunctionConfigT = FunctionConfig>
59 CreateFunction2020_05_31Request& WithFunctionConfig(FunctionConfigT&& value) { SetFunctionConfig(std::forward<FunctionConfigT>(value)); return *this;}
61
63
70 inline const Aws::Utils::CryptoBuffer& GetFunctionCode() const { return m_functionCode; }
71 inline bool FunctionCodeHasBeenSet() const { return m_functionCodeHasBeenSet; }
72 template<typename FunctionCodeT = Aws::Utils::CryptoBuffer>
73 void SetFunctionCode(FunctionCodeT&& value) { m_functionCodeHasBeenSet = true; m_functionCode = std::forward<FunctionCodeT>(value); }
74 template<typename FunctionCodeT = Aws::Utils::CryptoBuffer>
75 CreateFunction2020_05_31Request& WithFunctionCode(FunctionCodeT&& value) { SetFunctionCode(std::forward<FunctionCodeT>(value)); return *this;}
77 private:
78
79 Aws::String m_name;
80 bool m_nameHasBeenSet = false;
81
82 FunctionConfig m_functionConfig;
83 bool m_functionConfigHasBeenSet = false;
84
85 Aws::Utils::CryptoBuffer m_functionCode{};
86 bool m_functionCodeHasBeenSet = false;
87 };
88
89} // namespace Model
90} // namespace CloudFront
91} // namespace Aws
AWS_CLOUDFRONT_API Aws::String SerializePayload() const override
CreateFunction2020_05_31Request & WithFunctionConfig(FunctionConfigT &&value)
AWS_CLOUDFRONT_API CreateFunction2020_05_31Request()=default
CreateFunction2020_05_31Request & WithName(NameT &&value)
CreateFunction2020_05_31Request & WithFunctionCode(FunctionCodeT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String