AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
UpdateBlueprintRequest.h
1
6#pragma once
7#include <aws/bedrock-data-automation/BedrockDataAutomation_EXPORTS.h>
8#include <aws/bedrock-data-automation/BedrockDataAutomationRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/bedrock-data-automation/model/BlueprintStage.h>
11#include <aws/bedrock-data-automation/model/EncryptionConfiguration.h>
12#include <utility>
13
14namespace Aws
15{
16namespace BedrockDataAutomation
17{
18namespace Model
19{
20
27 {
28 public:
29 AWS_BEDROCKDATAAUTOMATION_API UpdateBlueprintRequest() = default;
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "UpdateBlueprint"; }
36
37 AWS_BEDROCKDATAAUTOMATION_API Aws::String SerializePayload() const override;
38
39
41
44 inline const Aws::String& GetBlueprintArn() const { return m_blueprintArn; }
45 inline bool BlueprintArnHasBeenSet() const { return m_blueprintArnHasBeenSet; }
46 template<typename BlueprintArnT = Aws::String>
47 void SetBlueprintArn(BlueprintArnT&& value) { m_blueprintArnHasBeenSet = true; m_blueprintArn = std::forward<BlueprintArnT>(value); }
48 template<typename BlueprintArnT = Aws::String>
49 UpdateBlueprintRequest& WithBlueprintArn(BlueprintArnT&& value) { SetBlueprintArn(std::forward<BlueprintArnT>(value)); return *this;}
51
53
54 inline const Aws::String& GetSchema() const { return m_schema; }
55 inline bool SchemaHasBeenSet() const { return m_schemaHasBeenSet; }
56 template<typename SchemaT = Aws::String>
57 void SetSchema(SchemaT&& value) { m_schemaHasBeenSet = true; m_schema = std::forward<SchemaT>(value); }
58 template<typename SchemaT = Aws::String>
59 UpdateBlueprintRequest& WithSchema(SchemaT&& value) { SetSchema(std::forward<SchemaT>(value)); return *this;}
61
63
64 inline BlueprintStage GetBlueprintStage() const { return m_blueprintStage; }
65 inline bool BlueprintStageHasBeenSet() const { return m_blueprintStageHasBeenSet; }
66 inline void SetBlueprintStage(BlueprintStage value) { m_blueprintStageHasBeenSet = true; m_blueprintStage = value; }
69
71
72 inline const EncryptionConfiguration& GetEncryptionConfiguration() const { return m_encryptionConfiguration; }
73 inline bool EncryptionConfigurationHasBeenSet() const { return m_encryptionConfigurationHasBeenSet; }
74 template<typename EncryptionConfigurationT = EncryptionConfiguration>
75 void SetEncryptionConfiguration(EncryptionConfigurationT&& value) { m_encryptionConfigurationHasBeenSet = true; m_encryptionConfiguration = std::forward<EncryptionConfigurationT>(value); }
76 template<typename EncryptionConfigurationT = EncryptionConfiguration>
77 UpdateBlueprintRequest& WithEncryptionConfiguration(EncryptionConfigurationT&& value) { SetEncryptionConfiguration(std::forward<EncryptionConfigurationT>(value)); return *this;}
79 private:
80
81 Aws::String m_blueprintArn;
82 bool m_blueprintArnHasBeenSet = false;
83
84 Aws::String m_schema;
85 bool m_schemaHasBeenSet = false;
86
88 bool m_blueprintStageHasBeenSet = false;
89
90 EncryptionConfiguration m_encryptionConfiguration;
91 bool m_encryptionConfigurationHasBeenSet = false;
92 };
93
94} // namespace Model
95} // namespace BedrockDataAutomation
96} // namespace Aws
const EncryptionConfiguration & GetEncryptionConfiguration() const
AWS_BEDROCKDATAAUTOMATION_API UpdateBlueprintRequest()=default
UpdateBlueprintRequest & WithBlueprintStage(BlueprintStage value)
AWS_BEDROCKDATAAUTOMATION_API Aws::String SerializePayload() const override
UpdateBlueprintRequest & WithBlueprintArn(BlueprintArnT &&value)
UpdateBlueprintRequest & WithEncryptionConfiguration(EncryptionConfigurationT &&value)
void SetEncryptionConfiguration(EncryptionConfigurationT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String