AWS SDK for C++

AWS SDK for C++ Version 1.11.719

Loading...
Searching...
No Matches
EndpointConfigSummary.h
1
6#pragma once
7#include <aws/core/utils/DateTime.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/sagemaker/SageMaker_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Json {
16class JsonValue;
17class JsonView;
18} // namespace Json
19} // namespace Utils
20namespace SageMaker {
21namespace Model {
22
30 public:
31 AWS_SAGEMAKER_API EndpointConfigSummary() = default;
34 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
35
37
40 inline const Aws::String& GetEndpointConfigName() const { return m_endpointConfigName; }
41 inline bool EndpointConfigNameHasBeenSet() const { return m_endpointConfigNameHasBeenSet; }
42 template <typename EndpointConfigNameT = Aws::String>
43 void SetEndpointConfigName(EndpointConfigNameT&& value) {
44 m_endpointConfigNameHasBeenSet = true;
45 m_endpointConfigName = std::forward<EndpointConfigNameT>(value);
46 }
47 template <typename EndpointConfigNameT = Aws::String>
48 EndpointConfigSummary& WithEndpointConfigName(EndpointConfigNameT&& value) {
49 SetEndpointConfigName(std::forward<EndpointConfigNameT>(value));
50 return *this;
51 }
53
55
58 inline const Aws::String& GetEndpointConfigArn() const { return m_endpointConfigArn; }
59 inline bool EndpointConfigArnHasBeenSet() const { return m_endpointConfigArnHasBeenSet; }
60 template <typename EndpointConfigArnT = Aws::String>
61 void SetEndpointConfigArn(EndpointConfigArnT&& value) {
62 m_endpointConfigArnHasBeenSet = true;
63 m_endpointConfigArn = std::forward<EndpointConfigArnT>(value);
64 }
65 template <typename EndpointConfigArnT = Aws::String>
66 EndpointConfigSummary& WithEndpointConfigArn(EndpointConfigArnT&& value) {
67 SetEndpointConfigArn(std::forward<EndpointConfigArnT>(value));
68 return *this;
69 }
71
73
76 inline const Aws::Utils::DateTime& GetCreationTime() const { return m_creationTime; }
77 inline bool CreationTimeHasBeenSet() const { return m_creationTimeHasBeenSet; }
78 template <typename CreationTimeT = Aws::Utils::DateTime>
79 void SetCreationTime(CreationTimeT&& value) {
80 m_creationTimeHasBeenSet = true;
81 m_creationTime = std::forward<CreationTimeT>(value);
82 }
83 template <typename CreationTimeT = Aws::Utils::DateTime>
84 EndpointConfigSummary& WithCreationTime(CreationTimeT&& value) {
85 SetCreationTime(std::forward<CreationTimeT>(value));
86 return *this;
87 }
89 private:
90 Aws::String m_endpointConfigName;
91
92 Aws::String m_endpointConfigArn;
93
94 Aws::Utils::DateTime m_creationTime{};
95 bool m_endpointConfigNameHasBeenSet = false;
96 bool m_endpointConfigArnHasBeenSet = false;
97 bool m_creationTimeHasBeenSet = false;
98};
99
100} // namespace Model
101} // namespace SageMaker
102} // namespace Aws
EndpointConfigSummary & WithEndpointConfigArn(EndpointConfigArnT &&value)
void SetEndpointConfigArn(EndpointConfigArnT &&value)
AWS_SAGEMAKER_API EndpointConfigSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_SAGEMAKER_API EndpointConfigSummary()=default
EndpointConfigSummary & WithEndpointConfigName(EndpointConfigNameT &&value)
AWS_SAGEMAKER_API EndpointConfigSummary(Aws::Utils::Json::JsonView jsonValue)
EndpointConfigSummary & WithCreationTime(CreationTimeT &&value)
const Aws::Utils::DateTime & GetCreationTime() const
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
void SetEndpointConfigName(EndpointConfigNameT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue