AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
VerifyTrustRequest.h
1
6#pragma once
7#include <aws/ds/DirectoryService_EXPORTS.h>
8#include <aws/ds/DirectoryServiceRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace DirectoryService
15{
16namespace Model
17{
18
27 {
28 public:
29 AWS_DIRECTORYSERVICE_API VerifyTrustRequest() = default;
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "VerifyTrust"; }
36
37 AWS_DIRECTORYSERVICE_API Aws::String SerializePayload() const override;
38
39 AWS_DIRECTORYSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
40
41
43
46 inline const Aws::String& GetTrustId() const { return m_trustId; }
47 inline bool TrustIdHasBeenSet() const { return m_trustIdHasBeenSet; }
48 template<typename TrustIdT = Aws::String>
49 void SetTrustId(TrustIdT&& value) { m_trustIdHasBeenSet = true; m_trustId = std::forward<TrustIdT>(value); }
50 template<typename TrustIdT = Aws::String>
51 VerifyTrustRequest& WithTrustId(TrustIdT&& value) { SetTrustId(std::forward<TrustIdT>(value)); return *this;}
53 private:
54
55 Aws::String m_trustId;
56 bool m_trustIdHasBeenSet = false;
57 };
58
59} // namespace Model
60} // namespace DirectoryService
61} // namespace Aws
VerifyTrustRequest & WithTrustId(TrustIdT &&value)
virtual const char * GetServiceRequestName() const override
AWS_DIRECTORYSERVICE_API Aws::String SerializePayload() const override
AWS_DIRECTORYSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_DIRECTORYSERVICE_API VerifyTrustRequest()=default
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String