AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
StartBlueprintRunRequest.h
1
6#pragma once
7#include <aws/glue/Glue_EXPORTS.h>
8#include <aws/glue/GlueRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Glue
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_GLUE_API StartBlueprintRunRequest() = default;
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 "StartBlueprintRun"; }
31
32 AWS_GLUE_API Aws::String SerializePayload() const override;
33
35
36
38
41 inline const Aws::String& GetBlueprintName() const { return m_blueprintName; }
42 inline bool BlueprintNameHasBeenSet() const { return m_blueprintNameHasBeenSet; }
43 template<typename BlueprintNameT = Aws::String>
44 void SetBlueprintName(BlueprintNameT&& value) { m_blueprintNameHasBeenSet = true; m_blueprintName = std::forward<BlueprintNameT>(value); }
45 template<typename BlueprintNameT = Aws::String>
46 StartBlueprintRunRequest& WithBlueprintName(BlueprintNameT&& value) { SetBlueprintName(std::forward<BlueprintNameT>(value)); return *this;}
48
50
53 inline const Aws::String& GetParameters() const { return m_parameters; }
54 inline bool ParametersHasBeenSet() const { return m_parametersHasBeenSet; }
55 template<typename ParametersT = Aws::String>
56 void SetParameters(ParametersT&& value) { m_parametersHasBeenSet = true; m_parameters = std::forward<ParametersT>(value); }
57 template<typename ParametersT = Aws::String>
58 StartBlueprintRunRequest& WithParameters(ParametersT&& value) { SetParameters(std::forward<ParametersT>(value)); return *this;}
60
62
65 inline const Aws::String& GetRoleArn() const { return m_roleArn; }
66 inline bool RoleArnHasBeenSet() const { return m_roleArnHasBeenSet; }
67 template<typename RoleArnT = Aws::String>
68 void SetRoleArn(RoleArnT&& value) { m_roleArnHasBeenSet = true; m_roleArn = std::forward<RoleArnT>(value); }
69 template<typename RoleArnT = Aws::String>
70 StartBlueprintRunRequest& WithRoleArn(RoleArnT&& value) { SetRoleArn(std::forward<RoleArnT>(value)); return *this;}
72 private:
73
74 Aws::String m_blueprintName;
75 bool m_blueprintNameHasBeenSet = false;
76
77 Aws::String m_parameters;
78 bool m_parametersHasBeenSet = false;
79
80 Aws::String m_roleArn;
81 bool m_roleArnHasBeenSet = false;
82 };
83
84} // namespace Model
85} // namespace Glue
86} // namespace Aws
AWS_GLUE_API StartBlueprintRunRequest()=default
AWS_GLUE_API Aws::String SerializePayload() const override
AWS_GLUE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
StartBlueprintRunRequest & WithRoleArn(RoleArnT &&value)
StartBlueprintRunRequest & WithParameters(ParametersT &&value)
virtual const char * GetServiceRequestName() const override
StartBlueprintRunRequest & WithBlueprintName(BlueprintNameT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String