AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeLineageGroupResult.h
1
6#pragma once
7#include <aws/sagemaker/SageMaker_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/DateTime.h>
10#include <aws/sagemaker/model/UserContext.h>
11#include <utility>
12
13namespace Aws
14{
15template<typename RESULT_TYPE>
16class AmazonWebServiceResult;
17
18namespace Utils
19{
20namespace Json
21{
22 class JsonValue;
23} // namespace Json
24} // namespace Utils
25namespace SageMaker
26{
27namespace Model
28{
30 {
31 public:
32 AWS_SAGEMAKER_API DescribeLineageGroupResult();
35
36
38
41 inline const Aws::String& GetLineageGroupName() const{ return m_lineageGroupName; }
42 inline void SetLineageGroupName(const Aws::String& value) { m_lineageGroupName = value; }
43 inline void SetLineageGroupName(Aws::String&& value) { m_lineageGroupName = std::move(value); }
44 inline void SetLineageGroupName(const char* value) { m_lineageGroupName.assign(value); }
46 inline DescribeLineageGroupResult& WithLineageGroupName(Aws::String&& value) { SetLineageGroupName(std::move(value)); return *this;}
47 inline DescribeLineageGroupResult& WithLineageGroupName(const char* value) { SetLineageGroupName(value); return *this;}
49
51
54 inline const Aws::String& GetLineageGroupArn() const{ return m_lineageGroupArn; }
55 inline void SetLineageGroupArn(const Aws::String& value) { m_lineageGroupArn = value; }
56 inline void SetLineageGroupArn(Aws::String&& value) { m_lineageGroupArn = std::move(value); }
57 inline void SetLineageGroupArn(const char* value) { m_lineageGroupArn.assign(value); }
59 inline DescribeLineageGroupResult& WithLineageGroupArn(Aws::String&& value) { SetLineageGroupArn(std::move(value)); return *this;}
60 inline DescribeLineageGroupResult& WithLineageGroupArn(const char* value) { SetLineageGroupArn(value); return *this;}
62
64
67 inline const Aws::String& GetDisplayName() const{ return m_displayName; }
68 inline void SetDisplayName(const Aws::String& value) { m_displayName = value; }
69 inline void SetDisplayName(Aws::String&& value) { m_displayName = std::move(value); }
70 inline void SetDisplayName(const char* value) { m_displayName.assign(value); }
71 inline DescribeLineageGroupResult& WithDisplayName(const Aws::String& value) { SetDisplayName(value); return *this;}
72 inline DescribeLineageGroupResult& WithDisplayName(Aws::String&& value) { SetDisplayName(std::move(value)); return *this;}
73 inline DescribeLineageGroupResult& WithDisplayName(const char* value) { SetDisplayName(value); return *this;}
75
77
80 inline const Aws::String& GetDescription() const{ return m_description; }
81 inline void SetDescription(const Aws::String& value) { m_description = value; }
82 inline void SetDescription(Aws::String&& value) { m_description = std::move(value); }
83 inline void SetDescription(const char* value) { m_description.assign(value); }
84 inline DescribeLineageGroupResult& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
85 inline DescribeLineageGroupResult& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
86 inline DescribeLineageGroupResult& WithDescription(const char* value) { SetDescription(value); return *this;}
88
90
93 inline const Aws::Utils::DateTime& GetCreationTime() const{ return m_creationTime; }
94 inline void SetCreationTime(const Aws::Utils::DateTime& value) { m_creationTime = value; }
95 inline void SetCreationTime(Aws::Utils::DateTime&& value) { m_creationTime = std::move(value); }
97 inline DescribeLineageGroupResult& WithCreationTime(Aws::Utils::DateTime&& value) { SetCreationTime(std::move(value)); return *this;}
99
101
102 inline const UserContext& GetCreatedBy() const{ return m_createdBy; }
103 inline void SetCreatedBy(const UserContext& value) { m_createdBy = value; }
104 inline void SetCreatedBy(UserContext&& value) { m_createdBy = std::move(value); }
105 inline DescribeLineageGroupResult& WithCreatedBy(const UserContext& value) { SetCreatedBy(value); return *this;}
106 inline DescribeLineageGroupResult& WithCreatedBy(UserContext&& value) { SetCreatedBy(std::move(value)); return *this;}
108
110
113 inline const Aws::Utils::DateTime& GetLastModifiedTime() const{ return m_lastModifiedTime; }
114 inline void SetLastModifiedTime(const Aws::Utils::DateTime& value) { m_lastModifiedTime = value; }
115 inline void SetLastModifiedTime(Aws::Utils::DateTime&& value) { m_lastModifiedTime = std::move(value); }
119
121
122 inline const UserContext& GetLastModifiedBy() const{ return m_lastModifiedBy; }
123 inline void SetLastModifiedBy(const UserContext& value) { m_lastModifiedBy = value; }
124 inline void SetLastModifiedBy(UserContext&& value) { m_lastModifiedBy = std::move(value); }
125 inline DescribeLineageGroupResult& WithLastModifiedBy(const UserContext& value) { SetLastModifiedBy(value); return *this;}
126 inline DescribeLineageGroupResult& WithLastModifiedBy(UserContext&& value) { SetLastModifiedBy(std::move(value)); return *this;}
128
130
131 inline const Aws::String& GetRequestId() const{ return m_requestId; }
132 inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
133 inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
134 inline void SetRequestId(const char* value) { m_requestId.assign(value); }
135 inline DescribeLineageGroupResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
136 inline DescribeLineageGroupResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
137 inline DescribeLineageGroupResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
139 private:
140
141 Aws::String m_lineageGroupName;
142
143 Aws::String m_lineageGroupArn;
144
145 Aws::String m_displayName;
146
147 Aws::String m_description;
148
149 Aws::Utils::DateTime m_creationTime;
150
151 UserContext m_createdBy;
152
153 Aws::Utils::DateTime m_lastModifiedTime;
154
155 UserContext m_lastModifiedBy;
156
157 Aws::String m_requestId;
158 };
159
160} // namespace Model
161} // namespace SageMaker
162} // namespace Aws
DescribeLineageGroupResult & WithDisplayName(const Aws::String &value)
DescribeLineageGroupResult & WithDescription(const Aws::String &value)
DescribeLineageGroupResult & WithDisplayName(const char *value)
DescribeLineageGroupResult & WithLastModifiedBy(UserContext &&value)
AWS_SAGEMAKER_API DescribeLineageGroupResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
DescribeLineageGroupResult & WithLastModifiedBy(const UserContext &value)
void SetCreationTime(const Aws::Utils::DateTime &value)
DescribeLineageGroupResult & WithCreatedBy(const UserContext &value)
DescribeLineageGroupResult & WithLineageGroupName(const Aws::String &value)
DescribeLineageGroupResult & WithCreationTime(const Aws::Utils::DateTime &value)
DescribeLineageGroupResult & WithDescription(Aws::String &&value)
DescribeLineageGroupResult & WithCreatedBy(UserContext &&value)
DescribeLineageGroupResult & WithLineageGroupName(Aws::String &&value)
void SetLastModifiedTime(const Aws::Utils::DateTime &value)
DescribeLineageGroupResult & WithDisplayName(Aws::String &&value)
DescribeLineageGroupResult & WithLineageGroupArn(Aws::String &&value)
DescribeLineageGroupResult & WithRequestId(const char *value)
DescribeLineageGroupResult & WithCreationTime(Aws::Utils::DateTime &&value)
DescribeLineageGroupResult & WithLineageGroupName(const char *value)
DescribeLineageGroupResult & WithLineageGroupArn(const Aws::String &value)
DescribeLineageGroupResult & WithLastModifiedTime(Aws::Utils::DateTime &&value)
DescribeLineageGroupResult & WithLineageGroupArn(const char *value)
DescribeLineageGroupResult & WithRequestId(const Aws::String &value)
DescribeLineageGroupResult & WithLastModifiedTime(const Aws::Utils::DateTime &value)
AWS_SAGEMAKER_API DescribeLineageGroupResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
DescribeLineageGroupResult & WithDescription(const char *value)
DescribeLineageGroupResult & WithRequestId(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue