AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
FederatedAuthenticationRequest.h
1
6#pragma once
7#include <aws/ec2/EC2_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 EC2
22{
23namespace Model
24{
25
33 {
34 public:
38
39 AWS_EC2_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
40 AWS_EC2_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
41
42
44
47 inline const Aws::String& GetSAMLProviderArn() const{ return m_sAMLProviderArn; }
48 inline bool SAMLProviderArnHasBeenSet() const { return m_sAMLProviderArnHasBeenSet; }
49 inline void SetSAMLProviderArn(const Aws::String& value) { m_sAMLProviderArnHasBeenSet = true; m_sAMLProviderArn = value; }
50 inline void SetSAMLProviderArn(Aws::String&& value) { m_sAMLProviderArnHasBeenSet = true; m_sAMLProviderArn = std::move(value); }
51 inline void SetSAMLProviderArn(const char* value) { m_sAMLProviderArnHasBeenSet = true; m_sAMLProviderArn.assign(value); }
53 inline FederatedAuthenticationRequest& WithSAMLProviderArn(Aws::String&& value) { SetSAMLProviderArn(std::move(value)); return *this;}
54 inline FederatedAuthenticationRequest& WithSAMLProviderArn(const char* value) { SetSAMLProviderArn(value); return *this;}
56
58
62 inline const Aws::String& GetSelfServiceSAMLProviderArn() const{ return m_selfServiceSAMLProviderArn; }
63 inline bool SelfServiceSAMLProviderArnHasBeenSet() const { return m_selfServiceSAMLProviderArnHasBeenSet; }
64 inline void SetSelfServiceSAMLProviderArn(const Aws::String& value) { m_selfServiceSAMLProviderArnHasBeenSet = true; m_selfServiceSAMLProviderArn = value; }
65 inline void SetSelfServiceSAMLProviderArn(Aws::String&& value) { m_selfServiceSAMLProviderArnHasBeenSet = true; m_selfServiceSAMLProviderArn = std::move(value); }
66 inline void SetSelfServiceSAMLProviderArn(const char* value) { m_selfServiceSAMLProviderArnHasBeenSet = true; m_selfServiceSAMLProviderArn.assign(value); }
71 private:
72
73 Aws::String m_sAMLProviderArn;
74 bool m_sAMLProviderArnHasBeenSet = false;
75
76 Aws::String m_selfServiceSAMLProviderArn;
77 bool m_selfServiceSAMLProviderArnHasBeenSet = false;
78 };
79
80} // namespace Model
81} // namespace EC2
82} // namespace Aws
FederatedAuthenticationRequest & WithSelfServiceSAMLProviderArn(Aws::String &&value)
FederatedAuthenticationRequest & WithSelfServiceSAMLProviderArn(const char *value)
AWS_EC2_API void OutputToStream(Aws::OStream &oStream, const char *location) const
FederatedAuthenticationRequest & WithSAMLProviderArn(Aws::String &&value)
AWS_EC2_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
AWS_EC2_API FederatedAuthenticationRequest(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_EC2_API FederatedAuthenticationRequest & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
FederatedAuthenticationRequest & WithSAMLProviderArn(const Aws::String &value)
FederatedAuthenticationRequest & WithSelfServiceSAMLProviderArn(const Aws::String &value)
FederatedAuthenticationRequest & WithSAMLProviderArn(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream