AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetContactMethodsRequest.h
1
6#pragma once
7#include <aws/lightsail/Lightsail_EXPORTS.h>
8#include <aws/lightsail/LightsailRequest.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/lightsail/model/ContactProtocol.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Lightsail
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_LIGHTSAIL_API GetContactMethodsRequest();
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "GetContactMethods"; }
32
33 AWS_LIGHTSAIL_API Aws::String SerializePayload() const override;
34
36
37
39
44 inline const Aws::Vector<ContactProtocol>& GetProtocols() const{ return m_protocols; }
45 inline bool ProtocolsHasBeenSet() const { return m_protocolsHasBeenSet; }
46 inline void SetProtocols(const Aws::Vector<ContactProtocol>& value) { m_protocolsHasBeenSet = true; m_protocols = value; }
47 inline void SetProtocols(Aws::Vector<ContactProtocol>&& value) { m_protocolsHasBeenSet = true; m_protocols = std::move(value); }
49 inline GetContactMethodsRequest& WithProtocols(Aws::Vector<ContactProtocol>&& value) { SetProtocols(std::move(value)); return *this;}
50 inline GetContactMethodsRequest& AddProtocols(const ContactProtocol& value) { m_protocolsHasBeenSet = true; m_protocols.push_back(value); return *this; }
51 inline GetContactMethodsRequest& AddProtocols(ContactProtocol&& value) { m_protocolsHasBeenSet = true; m_protocols.push_back(std::move(value)); return *this; }
53 private:
54
56 bool m_protocolsHasBeenSet = false;
57 };
58
59} // namespace Model
60} // namespace Lightsail
61} // namespace Aws
AWS_LIGHTSAIL_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
GetContactMethodsRequest & AddProtocols(const ContactProtocol &value)
virtual const char * GetServiceRequestName() const override
GetContactMethodsRequest & WithProtocols(const Aws::Vector< ContactProtocol > &value)
void SetProtocols(const Aws::Vector< ContactProtocol > &value)
GetContactMethodsRequest & AddProtocols(ContactProtocol &&value)
GetContactMethodsRequest & WithProtocols(Aws::Vector< ContactProtocol > &&value)
const Aws::Vector< ContactProtocol > & GetProtocols() const
void SetProtocols(Aws::Vector< ContactProtocol > &&value)
AWS_LIGHTSAIL_API Aws::String SerializePayload() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector