AWS SDK for C++

AWS SDK for C++ Version 1.11.817

Loading...
Searching...
No Matches
CustomOutputConfiguration.h
1
6#pragma once
7#include <aws/bedrock-data-automation/BedrockDataAutomation_EXPORTS.h>
8#include <aws/bedrock-data-automation/model/BlueprintItem.h>
9#include <aws/bedrock-data-automation/model/DocumentCustomOutputConfiguration.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11
12#include <utility>
13
14namespace Aws {
15namespace Utils {
16namespace Json {
17class JsonValue;
18class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace BedrockDataAutomation {
22namespace Model {
23
30 public:
31 AWS_BEDROCKDATAAUTOMATION_API CustomOutputConfiguration() = default;
34 AWS_BEDROCKDATAAUTOMATION_API Aws::Utils::Json::JsonValue Jsonize() const;
35
37
38 inline const Aws::Vector<BlueprintItem>& GetBlueprints() const { return m_blueprints; }
39 inline bool BlueprintsHasBeenSet() const { return m_blueprintsHasBeenSet; }
40 template <typename BlueprintsT = Aws::Vector<BlueprintItem>>
41 void SetBlueprints(BlueprintsT&& value) {
42 m_blueprintsHasBeenSet = true;
43 m_blueprints = std::forward<BlueprintsT>(value);
44 }
45 template <typename BlueprintsT = Aws::Vector<BlueprintItem>>
47 SetBlueprints(std::forward<BlueprintsT>(value));
48 return *this;
49 }
50 template <typename BlueprintsT = BlueprintItem>
52 m_blueprintsHasBeenSet = true;
53 m_blueprints.emplace_back(std::forward<BlueprintsT>(value));
54 return *this;
55 }
57
59
60 inline const DocumentCustomOutputConfiguration& GetDocument() const { return m_document; }
61 inline bool DocumentHasBeenSet() const { return m_documentHasBeenSet; }
62 template <typename DocumentT = DocumentCustomOutputConfiguration>
63 void SetDocument(DocumentT&& value) {
64 m_documentHasBeenSet = true;
65 m_document = std::forward<DocumentT>(value);
66 }
67 template <typename DocumentT = DocumentCustomOutputConfiguration>
69 SetDocument(std::forward<DocumentT>(value));
70 return *this;
71 }
73 private:
74 Aws::Vector<BlueprintItem> m_blueprints;
75
77 bool m_blueprintsHasBeenSet = false;
78 bool m_documentHasBeenSet = false;
79};
80
81} // namespace Model
82} // namespace BedrockDataAutomation
83} // namespace Aws
CustomOutputConfiguration & WithBlueprints(BlueprintsT &&value)
CustomOutputConfiguration & WithDocument(DocumentT &&value)
AWS_BEDROCKDATAAUTOMATION_API CustomOutputConfiguration()=default
CustomOutputConfiguration & AddBlueprints(BlueprintsT &&value)
AWS_BEDROCKDATAAUTOMATION_API CustomOutputConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_BEDROCKDATAAUTOMATION_API CustomOutputConfiguration(Aws::Utils::Json::JsonView jsonValue)
AWS_BEDROCKDATAAUTOMATION_API Aws::Utils::Json::JsonValue Jsonize() const
const DocumentCustomOutputConfiguration & GetDocument() const
std::shared_ptr< T > MakeShared(const char *allocationTag, ArgTypes &&... args)
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue