AWS SDK for C++

AWS SDK for C++ Version 1.11.719

Loading...
Searching...
No Matches
DeleteBlueprintRequest.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/memory/stl/AWSString.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Http {
15class URI;
16} // namespace Http
17namespace BedrockDataAutomation {
18namespace Model {
19
26 public:
27 AWS_BEDROCKDATAAUTOMATION_API DeleteBlueprintRequest() = default;
28
29 // Service request name is the Operation name which will send this request out,
30 // each operation should has unique request name, so that we can get operation's name from this request.
31 // Note: this is not true for response, multiple operations may have the same response name,
32 // so we can not get operation's name from response.
33 inline virtual const char* GetServiceRequestName() const override { return "DeleteBlueprint"; }
34
35 AWS_BEDROCKDATAAUTOMATION_API Aws::String SerializePayload() const override;
36
37 AWS_BEDROCKDATAAUTOMATION_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
38
40
43 inline const Aws::String& GetBlueprintArn() const { return m_blueprintArn; }
44 inline bool BlueprintArnHasBeenSet() const { return m_blueprintArnHasBeenSet; }
45 template <typename BlueprintArnT = Aws::String>
46 void SetBlueprintArn(BlueprintArnT&& value) {
47 m_blueprintArnHasBeenSet = true;
48 m_blueprintArn = std::forward<BlueprintArnT>(value);
49 }
50 template <typename BlueprintArnT = Aws::String>
51 DeleteBlueprintRequest& WithBlueprintArn(BlueprintArnT&& value) {
52 SetBlueprintArn(std::forward<BlueprintArnT>(value));
53 return *this;
54 }
56
58
61 inline const Aws::String& GetBlueprintVersion() const { return m_blueprintVersion; }
62 inline bool BlueprintVersionHasBeenSet() const { return m_blueprintVersionHasBeenSet; }
63 template <typename BlueprintVersionT = Aws::String>
64 void SetBlueprintVersion(BlueprintVersionT&& value) {
65 m_blueprintVersionHasBeenSet = true;
66 m_blueprintVersion = std::forward<BlueprintVersionT>(value);
67 }
68 template <typename BlueprintVersionT = Aws::String>
69 DeleteBlueprintRequest& WithBlueprintVersion(BlueprintVersionT&& value) {
70 SetBlueprintVersion(std::forward<BlueprintVersionT>(value));
71 return *this;
72 }
74 private:
75 Aws::String m_blueprintArn;
76
77 Aws::String m_blueprintVersion;
78 bool m_blueprintArnHasBeenSet = false;
79 bool m_blueprintVersionHasBeenSet = false;
80};
81
82} // namespace Model
83} // namespace BedrockDataAutomation
84} // namespace Aws
AWS_BEDROCKDATAAUTOMATION_API Aws::String SerializePayload() const override
DeleteBlueprintRequest & WithBlueprintArn(BlueprintArnT &&value)
AWS_BEDROCKDATAAUTOMATION_API DeleteBlueprintRequest()=default
DeleteBlueprintRequest & WithBlueprintVersion(BlueprintVersionT &&value)
AWS_BEDROCKDATAAUTOMATION_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String