AWS SDK for C++

AWS SDK for C++ Version 1.11.608

Loading...
Searching...
No Matches
MLOutputConfiguration.h
1
6#pragma once
7#include <aws/cleanroomsml/CleanRoomsML_EXPORTS.h>
8#include <aws/cleanroomsml/model/Destination.h>
9#include <aws/core/utils/memory/stl/AWSString.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 CleanRoomsML
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_CLEANROOMSML_API MLOutputConfiguration() = default;
37 AWS_CLEANROOMSML_API MLOutputConfiguration(Aws::Utils::Json::JsonView jsonValue);
39 AWS_CLEANROOMSML_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Destination& GetDestination() const { return m_destination; }
47 inline bool DestinationHasBeenSet() const { return m_destinationHasBeenSet; }
48 template<typename DestinationT = Destination>
49 void SetDestination(DestinationT&& value) { m_destinationHasBeenSet = true; m_destination = std::forward<DestinationT>(value); }
50 template<typename DestinationT = Destination>
51 MLOutputConfiguration& WithDestination(DestinationT&& value) { SetDestination(std::forward<DestinationT>(value)); return *this;}
53
55
59 inline const Aws::String& GetRoleArn() const { return m_roleArn; }
60 inline bool RoleArnHasBeenSet() const { return m_roleArnHasBeenSet; }
61 template<typename RoleArnT = Aws::String>
62 void SetRoleArn(RoleArnT&& value) { m_roleArnHasBeenSet = true; m_roleArn = std::forward<RoleArnT>(value); }
63 template<typename RoleArnT = Aws::String>
64 MLOutputConfiguration& WithRoleArn(RoleArnT&& value) { SetRoleArn(std::forward<RoleArnT>(value)); return *this;}
66 private:
67
68 Destination m_destination;
69 bool m_destinationHasBeenSet = false;
70
71 Aws::String m_roleArn;
72 bool m_roleArnHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace CleanRoomsML
77} // namespace Aws
MLOutputConfiguration & WithDestination(DestinationT &&value)
AWS_CLEANROOMSML_API MLOutputConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
MLOutputConfiguration & WithRoleArn(RoleArnT &&value)
AWS_CLEANROOMSML_API MLOutputConfiguration(Aws::Utils::Json::JsonView jsonValue)
AWS_CLEANROOMSML_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_CLEANROOMSML_API MLOutputConfiguration()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue