AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ExportEarthObservationJobRequest.h
1
6#pragma once
7#include <aws/sagemaker-geospatial/SageMakerGeospatial_EXPORTS.h>
8#include <aws/sagemaker-geospatial/SageMakerGeospatialRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/sagemaker-geospatial/model/OutputConfigInput.h>
11#include <utility>
12#include <aws/core/utils/UUID.h>
13
14namespace Aws
15{
16namespace SageMakerGeospatial
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_SAGEMAKERGEOSPATIAL_API ExportEarthObservationJobRequest();
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "ExportEarthObservationJob"; }
33
34 AWS_SAGEMAKERGEOSPATIAL_API Aws::String SerializePayload() const override;
35
36
38
42 inline const Aws::String& GetArn() const{ return m_arn; }
43 inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
44 inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; }
45 inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); }
46 inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); }
47 inline ExportEarthObservationJobRequest& WithArn(const Aws::String& value) { SetArn(value); return *this;}
48 inline ExportEarthObservationJobRequest& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
49 inline ExportEarthObservationJobRequest& WithArn(const char* value) { SetArn(value); return *this;}
51
53
56 inline const Aws::String& GetClientToken() const{ return m_clientToken; }
57 inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; }
58 inline void SetClientToken(const Aws::String& value) { m_clientTokenHasBeenSet = true; m_clientToken = value; }
59 inline void SetClientToken(Aws::String&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::move(value); }
60 inline void SetClientToken(const char* value) { m_clientTokenHasBeenSet = true; m_clientToken.assign(value); }
61 inline ExportEarthObservationJobRequest& WithClientToken(const Aws::String& value) { SetClientToken(value); return *this;}
62 inline ExportEarthObservationJobRequest& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;}
63 inline ExportEarthObservationJobRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;}
65
67
71 inline const Aws::String& GetExecutionRoleArn() const{ return m_executionRoleArn; }
72 inline bool ExecutionRoleArnHasBeenSet() const { return m_executionRoleArnHasBeenSet; }
73 inline void SetExecutionRoleArn(const Aws::String& value) { m_executionRoleArnHasBeenSet = true; m_executionRoleArn = value; }
74 inline void SetExecutionRoleArn(Aws::String&& value) { m_executionRoleArnHasBeenSet = true; m_executionRoleArn = std::move(value); }
75 inline void SetExecutionRoleArn(const char* value) { m_executionRoleArnHasBeenSet = true; m_executionRoleArn.assign(value); }
77 inline ExportEarthObservationJobRequest& WithExecutionRoleArn(Aws::String&& value) { SetExecutionRoleArn(std::move(value)); return *this;}
78 inline ExportEarthObservationJobRequest& WithExecutionRoleArn(const char* value) { SetExecutionRoleArn(value); return *this;}
80
82
85 inline bool GetExportSourceImages() const{ return m_exportSourceImages; }
86 inline bool ExportSourceImagesHasBeenSet() const { return m_exportSourceImagesHasBeenSet; }
87 inline void SetExportSourceImages(bool value) { m_exportSourceImagesHasBeenSet = true; m_exportSourceImages = value; }
90
92
95 inline const OutputConfigInput& GetOutputConfig() const{ return m_outputConfig; }
96 inline bool OutputConfigHasBeenSet() const { return m_outputConfigHasBeenSet; }
97 inline void SetOutputConfig(const OutputConfigInput& value) { m_outputConfigHasBeenSet = true; m_outputConfig = value; }
98 inline void SetOutputConfig(OutputConfigInput&& value) { m_outputConfigHasBeenSet = true; m_outputConfig = std::move(value); }
100 inline ExportEarthObservationJobRequest& WithOutputConfig(OutputConfigInput&& value) { SetOutputConfig(std::move(value)); return *this;}
102 private:
103
104 Aws::String m_arn;
105 bool m_arnHasBeenSet = false;
106
107 Aws::String m_clientToken;
108 bool m_clientTokenHasBeenSet = false;
109
110 Aws::String m_executionRoleArn;
111 bool m_executionRoleArnHasBeenSet = false;
112
113 bool m_exportSourceImages;
114 bool m_exportSourceImagesHasBeenSet = false;
115
116 OutputConfigInput m_outputConfig;
117 bool m_outputConfigHasBeenSet = false;
118 };
119
120} // namespace Model
121} // namespace SageMakerGeospatial
122} // namespace Aws
ExportEarthObservationJobRequest & WithOutputConfig(const OutputConfigInput &value)
ExportEarthObservationJobRequest & WithArn(const Aws::String &value)
ExportEarthObservationJobRequest & WithExecutionRoleArn(Aws::String &&value)
ExportEarthObservationJobRequest & WithExecutionRoleArn(const Aws::String &value)
AWS_SAGEMAKERGEOSPATIAL_API Aws::String SerializePayload() const override
ExportEarthObservationJobRequest & WithClientToken(const char *value)
ExportEarthObservationJobRequest & WithClientToken(Aws::String &&value)
ExportEarthObservationJobRequest & WithExecutionRoleArn(const char *value)
ExportEarthObservationJobRequest & WithOutputConfig(OutputConfigInput &&value)
ExportEarthObservationJobRequest & WithClientToken(const Aws::String &value)
ExportEarthObservationJobRequest & WithArn(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String