AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
PropertyParameters.h
1
6#pragma once
7#include <aws/bedrock-agent-runtime/BedrockAgentRuntime_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/bedrock-agent-runtime/model/Parameter.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace BedrockAgentRuntime
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_BEDROCKAGENTRUNTIME_API PropertyParameters();
36 AWS_BEDROCKAGENTRUNTIME_API PropertyParameters(Aws::Utils::Json::JsonView jsonValue);
37 AWS_BEDROCKAGENTRUNTIME_API PropertyParameters& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_BEDROCKAGENTRUNTIME_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::Vector<Parameter>& GetProperties() const{ return m_properties; }
46 inline bool PropertiesHasBeenSet() const { return m_propertiesHasBeenSet; }
47 inline void SetProperties(const Aws::Vector<Parameter>& value) { m_propertiesHasBeenSet = true; m_properties = value; }
48 inline void SetProperties(Aws::Vector<Parameter>&& value) { m_propertiesHasBeenSet = true; m_properties = std::move(value); }
49 inline PropertyParameters& WithProperties(const Aws::Vector<Parameter>& value) { SetProperties(value); return *this;}
50 inline PropertyParameters& WithProperties(Aws::Vector<Parameter>&& value) { SetProperties(std::move(value)); return *this;}
51 inline PropertyParameters& AddProperties(const Parameter& value) { m_propertiesHasBeenSet = true; m_properties.push_back(value); return *this; }
52 inline PropertyParameters& AddProperties(Parameter&& value) { m_propertiesHasBeenSet = true; m_properties.push_back(std::move(value)); return *this; }
54 private:
55
56 Aws::Vector<Parameter> m_properties;
57 bool m_propertiesHasBeenSet = false;
58 };
59
60} // namespace Model
61} // namespace BedrockAgentRuntime
62} // namespace Aws
PropertyParameters & WithProperties(Aws::Vector< Parameter > &&value)
PropertyParameters & AddProperties(Parameter &&value)
AWS_BEDROCKAGENTRUNTIME_API PropertyParameters()
void SetProperties(Aws::Vector< Parameter > &&value)
void SetProperties(const Aws::Vector< Parameter > &value)
AWS_BEDROCKAGENTRUNTIME_API PropertyParameters & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::Vector< Parameter > & GetProperties() const
PropertyParameters & WithProperties(const Aws::Vector< Parameter > &value)
PropertyParameters & AddProperties(const Parameter &value)
AWS_BEDROCKAGENTRUNTIME_API PropertyParameters(Aws::Utils::Json::JsonView jsonValue)
AWS_BEDROCKAGENTRUNTIME_API Aws::Utils::Json::JsonValue Jsonize() const
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue