AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
DescribePackageImportJobRequest.h
Go to the documentation of this file.
1
6#pragma once
10#include <utility>
11
12namespace Aws
13{
14namespace Panorama
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 "DescribePackageImportJob"; }
31
33
34
38 inline const Aws::String& GetJobId() const{ return m_jobId; }
39
43 inline bool JobIdHasBeenSet() const { return m_jobIdHasBeenSet; }
44
48 inline void SetJobId(const Aws::String& value) { m_jobIdHasBeenSet = true; m_jobId = value; }
49
53 inline void SetJobId(Aws::String&& value) { m_jobIdHasBeenSet = true; m_jobId = std::move(value); }
54
58 inline void SetJobId(const char* value) { m_jobIdHasBeenSet = true; m_jobId.assign(value); }
59
63 inline DescribePackageImportJobRequest& WithJobId(const Aws::String& value) { SetJobId(value); return *this;}
64
68 inline DescribePackageImportJobRequest& WithJobId(Aws::String&& value) { SetJobId(std::move(value)); return *this;}
69
73 inline DescribePackageImportJobRequest& WithJobId(const char* value) { SetJobId(value); return *this;}
74
75 private:
76
77 Aws::String m_jobId;
78 bool m_jobIdHasBeenSet = false;
79 };
80
81} // namespace Model
82} // namespace Panorama
83} // namespace Aws
#define AWS_PANORAMA_API
AWS_PANORAMA_API Aws::String SerializePayload() const override
DescribePackageImportJobRequest & WithJobId(const Aws::String &value)
DescribePackageImportJobRequest & WithJobId(const char *value)
DescribePackageImportJobRequest & WithJobId(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String