AWS SDK for C++

AWS SDK for C++ Version 1.11.795

Loading...
Searching...
No Matches
DescribeContactVersionRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/groundstation/GroundStationRequest.h>
9#include <aws/groundstation/GroundStation_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace GroundStation {
15namespace Model {
16
20 public:
21 AWS_GROUNDSTATION_API DescribeContactVersionRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "DescribeContactVersion"; }
28
29 AWS_GROUNDSTATION_API Aws::String SerializePayload() const override;
30
32
35 inline const Aws::String& GetContactId() const { return m_contactId; }
36 inline bool ContactIdHasBeenSet() const { return m_contactIdHasBeenSet; }
37 template <typename ContactIdT = Aws::String>
38 void SetContactId(ContactIdT&& value) {
39 m_contactIdHasBeenSet = true;
40 m_contactId = std::forward<ContactIdT>(value);
41 }
42 template <typename ContactIdT = Aws::String>
44 SetContactId(std::forward<ContactIdT>(value));
45 return *this;
46 }
48
50
53 inline int GetVersionId() const { return m_versionId; }
54 inline bool VersionIdHasBeenSet() const { return m_versionIdHasBeenSet; }
55 inline void SetVersionId(int value) {
56 m_versionIdHasBeenSet = true;
57 m_versionId = value;
58 }
60 SetVersionId(value);
61 return *this;
62 }
64 private:
65 Aws::String m_contactId;
66
67 int m_versionId{0};
68 bool m_contactIdHasBeenSet = false;
69 bool m_versionIdHasBeenSet = false;
70};
71
72} // namespace Model
73} // namespace GroundStation
74} // namespace Aws
AWS_GROUNDSTATION_API Aws::String SerializePayload() const override
AWS_GROUNDSTATION_API DescribeContactVersionRequest()=default
DescribeContactVersionRequest & WithContactId(ContactIdT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String