AWS SDK for C++

AWS SDK for C++ Version 1.11.719

Loading...
Searching...
No Matches
CreateBlueprintVersionRequest.h
1
6#pragma once
7#include <aws/bedrock-data-automation/BedrockDataAutomationRequest.h>
8#include <aws/bedrock-data-automation/BedrockDataAutomation_EXPORTS.h>
9#include <aws/core/utils/UUID.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11
12#include <utility>
13
14namespace Aws {
15namespace BedrockDataAutomation {
16namespace Model {
17
24 public:
25 AWS_BEDROCKDATAAUTOMATION_API CreateBlueprintVersionRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "CreateBlueprintVersion"; }
32
33 AWS_BEDROCKDATAAUTOMATION_API Aws::String SerializePayload() const override;
34
36
39 inline const Aws::String& GetBlueprintArn() const { return m_blueprintArn; }
40 inline bool BlueprintArnHasBeenSet() const { return m_blueprintArnHasBeenSet; }
41 template <typename BlueprintArnT = Aws::String>
42 void SetBlueprintArn(BlueprintArnT&& value) {
43 m_blueprintArnHasBeenSet = true;
44 m_blueprintArn = std::forward<BlueprintArnT>(value);
45 }
46 template <typename BlueprintArnT = Aws::String>
48 SetBlueprintArn(std::forward<BlueprintArnT>(value));
49 return *this;
50 }
52
54
55 inline const Aws::String& GetClientToken() const { return m_clientToken; }
56 inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; }
57 template <typename ClientTokenT = Aws::String>
58 void SetClientToken(ClientTokenT&& value) {
59 m_clientTokenHasBeenSet = true;
60 m_clientToken = std::forward<ClientTokenT>(value);
61 }
62 template <typename ClientTokenT = Aws::String>
64 SetClientToken(std::forward<ClientTokenT>(value));
65 return *this;
66 }
68 private:
69 Aws::String m_blueprintArn;
70
72 bool m_blueprintArnHasBeenSet = false;
73 bool m_clientTokenHasBeenSet = true;
74};
75
76} // namespace Model
77} // namespace BedrockDataAutomation
78} // namespace Aws
CreateBlueprintVersionRequest & WithBlueprintArn(BlueprintArnT &&value)
AWS_BEDROCKDATAAUTOMATION_API CreateBlueprintVersionRequest()=default
AWS_BEDROCKDATAAUTOMATION_API Aws::String SerializePayload() const override
CreateBlueprintVersionRequest & WithClientToken(ClientTokenT &&value)
static Aws::Utils::UUID PseudoRandomUUID()
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String