AWS SDK for C++

AWS SDK for C++ Version 1.11.606

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() = default;
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 template<typename ProtocolsT = Aws::Vector<ContactProtocol>>
47 void SetProtocols(ProtocolsT&& value) { m_protocolsHasBeenSet = true; m_protocols = std::forward<ProtocolsT>(value); }
48 template<typename ProtocolsT = Aws::Vector<ContactProtocol>>
49 GetContactMethodsRequest& WithProtocols(ProtocolsT&& value) { SetProtocols(std::forward<ProtocolsT>(value)); return *this;}
50 inline GetContactMethodsRequest& AddProtocols(ContactProtocol value) { m_protocolsHasBeenSet = true; m_protocols.push_back(value); return *this; }
52 private:
53
55 bool m_protocolsHasBeenSet = false;
56 };
57
58} // namespace Model
59} // namespace Lightsail
60} // namespace Aws
GetContactMethodsRequest & WithProtocols(ProtocolsT &&value)
AWS_LIGHTSAIL_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
virtual const char * GetServiceRequestName() const override
const Aws::Vector< ContactProtocol > & GetProtocols() const
AWS_LIGHTSAIL_API GetContactMethodsRequest()=default
AWS_LIGHTSAIL_API Aws::String SerializePayload() const override
GetContactMethodsRequest & AddProtocols(ContactProtocol value)
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