AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeJobLogItemsRequest.h
1
6#pragma once
7#include <aws/mgn/Mgn_EXPORTS.h>
8#include <aws/mgn/MgnRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace mgn
15{
16namespace Model
17{
18
22 {
23 public:
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "DescribeJobLogItems"; }
31
32 AWS_MGN_API Aws::String SerializePayload() const override;
33
34
36
39 inline const Aws::String& GetAccountID() const{ return m_accountID; }
40 inline bool AccountIDHasBeenSet() const { return m_accountIDHasBeenSet; }
41 inline void SetAccountID(const Aws::String& value) { m_accountIDHasBeenSet = true; m_accountID = value; }
42 inline void SetAccountID(Aws::String&& value) { m_accountIDHasBeenSet = true; m_accountID = std::move(value); }
43 inline void SetAccountID(const char* value) { m_accountIDHasBeenSet = true; m_accountID.assign(value); }
44 inline DescribeJobLogItemsRequest& WithAccountID(const Aws::String& value) { SetAccountID(value); return *this;}
45 inline DescribeJobLogItemsRequest& WithAccountID(Aws::String&& value) { SetAccountID(std::move(value)); return *this;}
46 inline DescribeJobLogItemsRequest& WithAccountID(const char* value) { SetAccountID(value); return *this;}
48
50
53 inline const Aws::String& GetJobID() const{ return m_jobID; }
54 inline bool JobIDHasBeenSet() const { return m_jobIDHasBeenSet; }
55 inline void SetJobID(const Aws::String& value) { m_jobIDHasBeenSet = true; m_jobID = value; }
56 inline void SetJobID(Aws::String&& value) { m_jobIDHasBeenSet = true; m_jobID = std::move(value); }
57 inline void SetJobID(const char* value) { m_jobIDHasBeenSet = true; m_jobID.assign(value); }
58 inline DescribeJobLogItemsRequest& WithJobID(const Aws::String& value) { SetJobID(value); return *this;}
59 inline DescribeJobLogItemsRequest& WithJobID(Aws::String&& value) { SetJobID(std::move(value)); return *this;}
60 inline DescribeJobLogItemsRequest& WithJobID(const char* value) { SetJobID(value); return *this;}
62
64
67 inline int GetMaxResults() const{ return m_maxResults; }
68 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
69 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
70 inline DescribeJobLogItemsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
72
74
77 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
78 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
79 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
80 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
81 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
82 inline DescribeJobLogItemsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
83 inline DescribeJobLogItemsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
84 inline DescribeJobLogItemsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
86 private:
87
88 Aws::String m_accountID;
89 bool m_accountIDHasBeenSet = false;
90
91 Aws::String m_jobID;
92 bool m_jobIDHasBeenSet = false;
93
94 int m_maxResults;
95 bool m_maxResultsHasBeenSet = false;
96
97 Aws::String m_nextToken;
98 bool m_nextTokenHasBeenSet = false;
99 };
100
101} // namespace Model
102} // namespace mgn
103} // namespace Aws
DescribeJobLogItemsRequest & WithJobID(const char *value)
DescribeJobLogItemsRequest & WithJobID(Aws::String &&value)
DescribeJobLogItemsRequest & WithNextToken(const Aws::String &value)
virtual const char * GetServiceRequestName() const override
DescribeJobLogItemsRequest & WithAccountID(const Aws::String &value)
DescribeJobLogItemsRequest & WithAccountID(const char *value)
AWS_MGN_API Aws::String SerializePayload() const override
DescribeJobLogItemsRequest & WithNextToken(const char *value)
DescribeJobLogItemsRequest & WithAccountID(Aws::String &&value)
DescribeJobLogItemsRequest & WithNextToken(Aws::String &&value)
DescribeJobLogItemsRequest & WithJobID(const Aws::String &value)
DescribeJobLogItemsRequest & WithMaxResults(int value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String