AWS SDK for C++

AWS SDK for C++ Version 1.11.695

Loading...
Searching...
No Matches
DeleteProvisionedConcurrencyConfigRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/lambda/LambdaRequest.h>
9#include <aws/lambda/Lambda_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Http {
15class URI;
16} // namespace Http
17namespace Lambda {
18namespace Model {
19
23 public:
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "DeleteProvisionedConcurrencyConfig"; }
31
32 AWS_LAMBDA_API Aws::String SerializePayload() const override;
33
34 AWS_LAMBDA_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
35
37
47 inline const Aws::String& GetFunctionName() const { return m_functionName; }
48 inline bool FunctionNameHasBeenSet() const { return m_functionNameHasBeenSet; }
49 template <typename FunctionNameT = Aws::String>
50 void SetFunctionName(FunctionNameT&& value) {
51 m_functionNameHasBeenSet = true;
52 m_functionName = std::forward<FunctionNameT>(value);
53 }
54 template <typename FunctionNameT = Aws::String>
56 SetFunctionName(std::forward<FunctionNameT>(value));
57 return *this;
58 }
60
62
65 inline const Aws::String& GetQualifier() const { return m_qualifier; }
66 inline bool QualifierHasBeenSet() const { return m_qualifierHasBeenSet; }
67 template <typename QualifierT = Aws::String>
68 void SetQualifier(QualifierT&& value) {
69 m_qualifierHasBeenSet = true;
70 m_qualifier = std::forward<QualifierT>(value);
71 }
72 template <typename QualifierT = Aws::String>
74 SetQualifier(std::forward<QualifierT>(value));
75 return *this;
76 }
78 private:
79 Aws::String m_functionName;
80 bool m_functionNameHasBeenSet = false;
81
82 Aws::String m_qualifier;
83 bool m_qualifierHasBeenSet = false;
84};
85
86} // namespace Model
87} // namespace Lambda
88} // namespace Aws
DeleteProvisionedConcurrencyConfigRequest & WithFunctionName(FunctionNameT &&value)
DeleteProvisionedConcurrencyConfigRequest & WithQualifier(QualifierT &&value)
AWS_LAMBDA_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
AWS_LAMBDA_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String