AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
InvalidLambdaFunctionException.h
1
6#pragma once
7#include <aws/email/SES_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Xml
17{
18 class XmlNode;
19} // namespace Xml
20} // namespace Utils
21namespace SES
22{
23namespace Model
24{
25
36 {
37 public:
38 AWS_SES_API InvalidLambdaFunctionException() = default;
41
42 AWS_SES_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
43 AWS_SES_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
44
45
47
50 inline const Aws::String& GetFunctionArn() const { return m_functionArn; }
51 inline bool FunctionArnHasBeenSet() const { return m_functionArnHasBeenSet; }
52 template<typename FunctionArnT = Aws::String>
53 void SetFunctionArn(FunctionArnT&& value) { m_functionArnHasBeenSet = true; m_functionArn = std::forward<FunctionArnT>(value); }
54 template<typename FunctionArnT = Aws::String>
55 InvalidLambdaFunctionException& WithFunctionArn(FunctionArnT&& value) { SetFunctionArn(std::forward<FunctionArnT>(value)); return *this;}
57 private:
58
59 Aws::String m_functionArn;
60 bool m_functionArnHasBeenSet = false;
61 };
62
63} // namespace Model
64} // namespace SES
65} // namespace Aws
AWS_SES_API void OutputToStream(Aws::OStream &oStream, const char *location) const
InvalidLambdaFunctionException & WithFunctionArn(FunctionArnT &&value)
AWS_SES_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
AWS_SES_API InvalidLambdaFunctionException & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_SES_API InvalidLambdaFunctionException(const Aws::Utils::Xml::XmlNode &xmlNode)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream