AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
BatchDescribeModelPackageSummary.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/InferenceSpecification.h>
11#include <aws/sagemaker/model/ModelPackageStatus.h>
12#include <aws/sagemaker/model/ModelApprovalStatus.h>
13#include <utility>
14
15namespace Aws
16{
17namespace Utils
18{
19namespace Json
20{
21 class JsonValue;
22 class JsonView;
23} // namespace Json
24} // namespace Utils
25namespace SageMaker
26{
27namespace Model
28{
29
37 {
38 public:
42 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
43
44
46
49 inline const Aws::String& GetModelPackageGroupName() const{ return m_modelPackageGroupName; }
50 inline bool ModelPackageGroupNameHasBeenSet() const { return m_modelPackageGroupNameHasBeenSet; }
51 inline void SetModelPackageGroupName(const Aws::String& value) { m_modelPackageGroupNameHasBeenSet = true; m_modelPackageGroupName = value; }
52 inline void SetModelPackageGroupName(Aws::String&& value) { m_modelPackageGroupNameHasBeenSet = true; m_modelPackageGroupName = std::move(value); }
53 inline void SetModelPackageGroupName(const char* value) { m_modelPackageGroupNameHasBeenSet = true; m_modelPackageGroupName.assign(value); }
58
60
63 inline int GetModelPackageVersion() const{ return m_modelPackageVersion; }
64 inline bool ModelPackageVersionHasBeenSet() const { return m_modelPackageVersionHasBeenSet; }
65 inline void SetModelPackageVersion(int value) { m_modelPackageVersionHasBeenSet = true; m_modelPackageVersion = value; }
68
70
73 inline const Aws::String& GetModelPackageArn() const{ return m_modelPackageArn; }
74 inline bool ModelPackageArnHasBeenSet() const { return m_modelPackageArnHasBeenSet; }
75 inline void SetModelPackageArn(const Aws::String& value) { m_modelPackageArnHasBeenSet = true; m_modelPackageArn = value; }
76 inline void SetModelPackageArn(Aws::String&& value) { m_modelPackageArnHasBeenSet = true; m_modelPackageArn = std::move(value); }
77 inline void SetModelPackageArn(const char* value) { m_modelPackageArnHasBeenSet = true; m_modelPackageArn.assign(value); }
79 inline BatchDescribeModelPackageSummary& WithModelPackageArn(Aws::String&& value) { SetModelPackageArn(std::move(value)); return *this;}
80 inline BatchDescribeModelPackageSummary& WithModelPackageArn(const char* value) { SetModelPackageArn(value); return *this;}
82
84
87 inline const Aws::String& GetModelPackageDescription() const{ return m_modelPackageDescription; }
88 inline bool ModelPackageDescriptionHasBeenSet() const { return m_modelPackageDescriptionHasBeenSet; }
89 inline void SetModelPackageDescription(const Aws::String& value) { m_modelPackageDescriptionHasBeenSet = true; m_modelPackageDescription = value; }
90 inline void SetModelPackageDescription(Aws::String&& value) { m_modelPackageDescriptionHasBeenSet = true; m_modelPackageDescription = std::move(value); }
91 inline void SetModelPackageDescription(const char* value) { m_modelPackageDescriptionHasBeenSet = true; m_modelPackageDescription.assign(value); }
96
98
101 inline const Aws::Utils::DateTime& GetCreationTime() const{ return m_creationTime; }
102 inline bool CreationTimeHasBeenSet() const { return m_creationTimeHasBeenSet; }
103 inline void SetCreationTime(const Aws::Utils::DateTime& value) { m_creationTimeHasBeenSet = true; m_creationTime = value; }
104 inline void SetCreationTime(Aws::Utils::DateTime&& value) { m_creationTimeHasBeenSet = true; m_creationTime = std::move(value); }
108
110
111 inline const InferenceSpecification& GetInferenceSpecification() const{ return m_inferenceSpecification; }
112 inline bool InferenceSpecificationHasBeenSet() const { return m_inferenceSpecificationHasBeenSet; }
113 inline void SetInferenceSpecification(const InferenceSpecification& value) { m_inferenceSpecificationHasBeenSet = true; m_inferenceSpecification = value; }
114 inline void SetInferenceSpecification(InferenceSpecification&& value) { m_inferenceSpecificationHasBeenSet = true; m_inferenceSpecification = std::move(value); }
118
120
123 inline const ModelPackageStatus& GetModelPackageStatus() const{ return m_modelPackageStatus; }
124 inline bool ModelPackageStatusHasBeenSet() const { return m_modelPackageStatusHasBeenSet; }
125 inline void SetModelPackageStatus(const ModelPackageStatus& value) { m_modelPackageStatusHasBeenSet = true; m_modelPackageStatus = value; }
126 inline void SetModelPackageStatus(ModelPackageStatus&& value) { m_modelPackageStatusHasBeenSet = true; m_modelPackageStatus = std::move(value); }
130
132
135 inline const ModelApprovalStatus& GetModelApprovalStatus() const{ return m_modelApprovalStatus; }
136 inline bool ModelApprovalStatusHasBeenSet() const { return m_modelApprovalStatusHasBeenSet; }
137 inline void SetModelApprovalStatus(const ModelApprovalStatus& value) { m_modelApprovalStatusHasBeenSet = true; m_modelApprovalStatus = value; }
138 inline void SetModelApprovalStatus(ModelApprovalStatus&& value) { m_modelApprovalStatusHasBeenSet = true; m_modelApprovalStatus = std::move(value); }
142 private:
143
144 Aws::String m_modelPackageGroupName;
145 bool m_modelPackageGroupNameHasBeenSet = false;
146
147 int m_modelPackageVersion;
148 bool m_modelPackageVersionHasBeenSet = false;
149
150 Aws::String m_modelPackageArn;
151 bool m_modelPackageArnHasBeenSet = false;
152
153 Aws::String m_modelPackageDescription;
154 bool m_modelPackageDescriptionHasBeenSet = false;
155
156 Aws::Utils::DateTime m_creationTime;
157 bool m_creationTimeHasBeenSet = false;
158
159 InferenceSpecification m_inferenceSpecification;
160 bool m_inferenceSpecificationHasBeenSet = false;
161
162 ModelPackageStatus m_modelPackageStatus;
163 bool m_modelPackageStatusHasBeenSet = false;
164
165 ModelApprovalStatus m_modelApprovalStatus;
166 bool m_modelApprovalStatusHasBeenSet = false;
167 };
168
169} // namespace Model
170} // namespace SageMaker
171} // namespace Aws
AWS_SAGEMAKER_API BatchDescribeModelPackageSummary(Aws::Utils::Json::JsonView jsonValue)
BatchDescribeModelPackageSummary & WithModelPackageDescription(Aws::String &&value)
BatchDescribeModelPackageSummary & WithInferenceSpecification(const InferenceSpecification &value)
BatchDescribeModelPackageSummary & WithModelPackageGroupName(Aws::String &&value)
BatchDescribeModelPackageSummary & WithModelPackageGroupName(const char *value)
BatchDescribeModelPackageSummary & WithModelApprovalStatus(const ModelApprovalStatus &value)
AWS_SAGEMAKER_API BatchDescribeModelPackageSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
BatchDescribeModelPackageSummary & WithModelPackageVersion(int value)
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
BatchDescribeModelPackageSummary & WithModelPackageGroupName(const Aws::String &value)
BatchDescribeModelPackageSummary & WithModelPackageArn(const Aws::String &value)
BatchDescribeModelPackageSummary & WithInferenceSpecification(InferenceSpecification &&value)
BatchDescribeModelPackageSummary & WithCreationTime(const Aws::Utils::DateTime &value)
BatchDescribeModelPackageSummary & WithModelPackageDescription(const Aws::String &value)
BatchDescribeModelPackageSummary & WithModelPackageArn(const char *value)
BatchDescribeModelPackageSummary & WithModelPackageStatus(const ModelPackageStatus &value)
BatchDescribeModelPackageSummary & WithCreationTime(Aws::Utils::DateTime &&value)
BatchDescribeModelPackageSummary & WithModelPackageDescription(const char *value)
BatchDescribeModelPackageSummary & WithModelApprovalStatus(ModelApprovalStatus &&value)
BatchDescribeModelPackageSummary & WithModelPackageArn(Aws::String &&value)
BatchDescribeModelPackageSummary & WithModelPackageStatus(ModelPackageStatus &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue