AWS SDK for C++

AWS SDK for C++ Version 1.11.752

Loading...
Searching...
No Matches
GetTransformerJobRequest.h
1
6#pragma once
7#include <aws/b2bi/B2BIRequest.h>
8#include <aws/b2bi/B2BI_EXPORTS.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10
11#include <utility>
12
13namespace Aws {
14namespace B2BI {
15namespace Model {
16
20 public:
21 AWS_B2BI_API GetTransformerJobRequest() = 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 "GetTransformerJob"; }
28
29 AWS_B2BI_API Aws::String SerializePayload() const override;
30
32
34
37 inline const Aws::String& GetTransformerJobId() const { return m_transformerJobId; }
38 inline bool TransformerJobIdHasBeenSet() const { return m_transformerJobIdHasBeenSet; }
39 template <typename TransformerJobIdT = Aws::String>
40 void SetTransformerJobId(TransformerJobIdT&& value) {
41 m_transformerJobIdHasBeenSet = true;
42 m_transformerJobId = std::forward<TransformerJobIdT>(value);
43 }
44 template <typename TransformerJobIdT = Aws::String>
45 GetTransformerJobRequest& WithTransformerJobId(TransformerJobIdT&& value) {
46 SetTransformerJobId(std::forward<TransformerJobIdT>(value));
47 return *this;
48 }
50
52
55 inline const Aws::String& GetTransformerId() const { return m_transformerId; }
56 inline bool TransformerIdHasBeenSet() const { return m_transformerIdHasBeenSet; }
57 template <typename TransformerIdT = Aws::String>
58 void SetTransformerId(TransformerIdT&& value) {
59 m_transformerIdHasBeenSet = true;
60 m_transformerId = std::forward<TransformerIdT>(value);
61 }
62 template <typename TransformerIdT = Aws::String>
64 SetTransformerId(std::forward<TransformerIdT>(value));
65 return *this;
66 }
68 private:
69 Aws::String m_transformerJobId;
70
71 Aws::String m_transformerId;
72 bool m_transformerJobIdHasBeenSet = false;
73 bool m_transformerIdHasBeenSet = false;
74};
75
76} // namespace Model
77} // namespace B2BI
78} // namespace Aws
virtual const char * GetServiceRequestName() const override
AWS_B2BI_API Aws::String SerializePayload() const override
AWS_B2BI_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_B2BI_API GetTransformerJobRequest()=default
GetTransformerJobRequest & WithTransformerId(TransformerIdT &&value)
void SetTransformerJobId(TransformerJobIdT &&value)
GetTransformerJobRequest & WithTransformerJobId(TransformerJobIdT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String