AWS SDK for C++

AWS SDK for C++ Version 1.11.768

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