AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
DescribeModelPackageResult.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/SourceAlgorithmSpecification.h>
12#include <aws/sagemaker/model/ModelPackageValidationSpecification.h>
13#include <aws/sagemaker/model/ModelPackageStatus.h>
14#include <aws/sagemaker/model/ModelPackageStatusDetails.h>
15#include <aws/sagemaker/model/ModelApprovalStatus.h>
16#include <aws/sagemaker/model/UserContext.h>
17#include <aws/sagemaker/model/MetadataProperties.h>
18#include <aws/sagemaker/model/ModelMetrics.h>
19#include <aws/core/utils/memory/stl/AWSMap.h>
20#include <aws/sagemaker/model/DriftCheckBaselines.h>
21#include <aws/core/utils/memory/stl/AWSVector.h>
22#include <aws/sagemaker/model/SkipModelValidation.h>
23#include <aws/sagemaker/model/ModelPackageSecurityConfig.h>
24#include <aws/sagemaker/model/ModelPackageModelCard.h>
25#include <aws/sagemaker/model/ModelLifeCycle.h>
26#include <aws/sagemaker/model/AdditionalInferenceSpecificationDefinition.h>
27#include <utility>
28
29namespace Aws
30{
31template<typename RESULT_TYPE>
32class AmazonWebServiceResult;
33
34namespace Utils
35{
36namespace Json
37{
38 class JsonValue;
39} // namespace Json
40} // namespace Utils
41namespace SageMaker
42{
43namespace Model
44{
46 {
47 public:
48 AWS_SAGEMAKER_API DescribeModelPackageResult() = default;
51
52
54
57 inline const Aws::String& GetModelPackageName() const { return m_modelPackageName; }
58 template<typename ModelPackageNameT = Aws::String>
59 void SetModelPackageName(ModelPackageNameT&& value) { m_modelPackageNameHasBeenSet = true; m_modelPackageName = std::forward<ModelPackageNameT>(value); }
60 template<typename ModelPackageNameT = Aws::String>
61 DescribeModelPackageResult& WithModelPackageName(ModelPackageNameT&& value) { SetModelPackageName(std::forward<ModelPackageNameT>(value)); return *this;}
63
65
69 inline const Aws::String& GetModelPackageGroupName() const { return m_modelPackageGroupName; }
70 template<typename ModelPackageGroupNameT = Aws::String>
71 void SetModelPackageGroupName(ModelPackageGroupNameT&& value) { m_modelPackageGroupNameHasBeenSet = true; m_modelPackageGroupName = std::forward<ModelPackageGroupNameT>(value); }
72 template<typename ModelPackageGroupNameT = Aws::String>
73 DescribeModelPackageResult& WithModelPackageGroupName(ModelPackageGroupNameT&& value) { SetModelPackageGroupName(std::forward<ModelPackageGroupNameT>(value)); return *this;}
75
77
80 inline int GetModelPackageVersion() const { return m_modelPackageVersion; }
81 inline void SetModelPackageVersion(int value) { m_modelPackageVersionHasBeenSet = true; m_modelPackageVersion = value; }
84
86
89 inline const Aws::String& GetModelPackageArn() const { return m_modelPackageArn; }
90 template<typename ModelPackageArnT = Aws::String>
91 void SetModelPackageArn(ModelPackageArnT&& value) { m_modelPackageArnHasBeenSet = true; m_modelPackageArn = std::forward<ModelPackageArnT>(value); }
92 template<typename ModelPackageArnT = Aws::String>
93 DescribeModelPackageResult& WithModelPackageArn(ModelPackageArnT&& value) { SetModelPackageArn(std::forward<ModelPackageArnT>(value)); return *this;}
95
97
100 inline const Aws::String& GetModelPackageDescription() const { return m_modelPackageDescription; }
101 template<typename ModelPackageDescriptionT = Aws::String>
102 void SetModelPackageDescription(ModelPackageDescriptionT&& value) { m_modelPackageDescriptionHasBeenSet = true; m_modelPackageDescription = std::forward<ModelPackageDescriptionT>(value); }
103 template<typename ModelPackageDescriptionT = Aws::String>
104 DescribeModelPackageResult& WithModelPackageDescription(ModelPackageDescriptionT&& value) { SetModelPackageDescription(std::forward<ModelPackageDescriptionT>(value)); return *this;}
106
108
111 inline const Aws::Utils::DateTime& GetCreationTime() const { return m_creationTime; }
112 template<typename CreationTimeT = Aws::Utils::DateTime>
113 void SetCreationTime(CreationTimeT&& value) { m_creationTimeHasBeenSet = true; m_creationTime = std::forward<CreationTimeT>(value); }
114 template<typename CreationTimeT = Aws::Utils::DateTime>
115 DescribeModelPackageResult& WithCreationTime(CreationTimeT&& value) { SetCreationTime(std::forward<CreationTimeT>(value)); return *this;}
117
119
123 inline const InferenceSpecification& GetInferenceSpecification() const { return m_inferenceSpecification; }
124 template<typename InferenceSpecificationT = InferenceSpecification>
125 void SetInferenceSpecification(InferenceSpecificationT&& value) { m_inferenceSpecificationHasBeenSet = true; m_inferenceSpecification = std::forward<InferenceSpecificationT>(value); }
126 template<typename InferenceSpecificationT = InferenceSpecification>
127 DescribeModelPackageResult& WithInferenceSpecification(InferenceSpecificationT&& value) { SetInferenceSpecification(std::forward<InferenceSpecificationT>(value)); return *this;}
129
131
134 inline const SourceAlgorithmSpecification& GetSourceAlgorithmSpecification() const { return m_sourceAlgorithmSpecification; }
135 template<typename SourceAlgorithmSpecificationT = SourceAlgorithmSpecification>
136 void SetSourceAlgorithmSpecification(SourceAlgorithmSpecificationT&& value) { m_sourceAlgorithmSpecificationHasBeenSet = true; m_sourceAlgorithmSpecification = std::forward<SourceAlgorithmSpecificationT>(value); }
137 template<typename SourceAlgorithmSpecificationT = SourceAlgorithmSpecification>
138 DescribeModelPackageResult& WithSourceAlgorithmSpecification(SourceAlgorithmSpecificationT&& value) { SetSourceAlgorithmSpecification(std::forward<SourceAlgorithmSpecificationT>(value)); return *this;}
140
142
146 inline const ModelPackageValidationSpecification& GetValidationSpecification() const { return m_validationSpecification; }
147 template<typename ValidationSpecificationT = ModelPackageValidationSpecification>
148 void SetValidationSpecification(ValidationSpecificationT&& value) { m_validationSpecificationHasBeenSet = true; m_validationSpecification = std::forward<ValidationSpecificationT>(value); }
149 template<typename ValidationSpecificationT = ModelPackageValidationSpecification>
150 DescribeModelPackageResult& WithValidationSpecification(ValidationSpecificationT&& value) { SetValidationSpecification(std::forward<ValidationSpecificationT>(value)); return *this;}
152
154
157 inline ModelPackageStatus GetModelPackageStatus() const { return m_modelPackageStatus; }
158 inline void SetModelPackageStatus(ModelPackageStatus value) { m_modelPackageStatusHasBeenSet = true; m_modelPackageStatus = value; }
161
163
166 inline const ModelPackageStatusDetails& GetModelPackageStatusDetails() const { return m_modelPackageStatusDetails; }
167 template<typename ModelPackageStatusDetailsT = ModelPackageStatusDetails>
168 void SetModelPackageStatusDetails(ModelPackageStatusDetailsT&& value) { m_modelPackageStatusDetailsHasBeenSet = true; m_modelPackageStatusDetails = std::forward<ModelPackageStatusDetailsT>(value); }
169 template<typename ModelPackageStatusDetailsT = ModelPackageStatusDetails>
170 DescribeModelPackageResult& WithModelPackageStatusDetails(ModelPackageStatusDetailsT&& value) { SetModelPackageStatusDetails(std::forward<ModelPackageStatusDetailsT>(value)); return *this;}
172
174
178 inline bool GetCertifyForMarketplace() const { return m_certifyForMarketplace; }
179 inline void SetCertifyForMarketplace(bool value) { m_certifyForMarketplaceHasBeenSet = true; m_certifyForMarketplace = value; }
182
184
187 inline ModelApprovalStatus GetModelApprovalStatus() const { return m_modelApprovalStatus; }
188 inline void SetModelApprovalStatus(ModelApprovalStatus value) { m_modelApprovalStatusHasBeenSet = true; m_modelApprovalStatus = value; }
191
193
194 inline const UserContext& GetCreatedBy() const { return m_createdBy; }
195 template<typename CreatedByT = UserContext>
196 void SetCreatedBy(CreatedByT&& value) { m_createdByHasBeenSet = true; m_createdBy = std::forward<CreatedByT>(value); }
197 template<typename CreatedByT = UserContext>
198 DescribeModelPackageResult& WithCreatedBy(CreatedByT&& value) { SetCreatedBy(std::forward<CreatedByT>(value)); return *this;}
200
202
203 inline const MetadataProperties& GetMetadataProperties() const { return m_metadataProperties; }
204 template<typename MetadataPropertiesT = MetadataProperties>
205 void SetMetadataProperties(MetadataPropertiesT&& value) { m_metadataPropertiesHasBeenSet = true; m_metadataProperties = std::forward<MetadataPropertiesT>(value); }
206 template<typename MetadataPropertiesT = MetadataProperties>
207 DescribeModelPackageResult& WithMetadataProperties(MetadataPropertiesT&& value) { SetMetadataProperties(std::forward<MetadataPropertiesT>(value)); return *this;}
209
211
214 inline const ModelMetrics& GetModelMetrics() const { return m_modelMetrics; }
215 template<typename ModelMetricsT = ModelMetrics>
216 void SetModelMetrics(ModelMetricsT&& value) { m_modelMetricsHasBeenSet = true; m_modelMetrics = std::forward<ModelMetricsT>(value); }
217 template<typename ModelMetricsT = ModelMetrics>
218 DescribeModelPackageResult& WithModelMetrics(ModelMetricsT&& value) { SetModelMetrics(std::forward<ModelMetricsT>(value)); return *this;}
220
222
225 inline const Aws::Utils::DateTime& GetLastModifiedTime() const { return m_lastModifiedTime; }
226 template<typename LastModifiedTimeT = Aws::Utils::DateTime>
227 void SetLastModifiedTime(LastModifiedTimeT&& value) { m_lastModifiedTimeHasBeenSet = true; m_lastModifiedTime = std::forward<LastModifiedTimeT>(value); }
228 template<typename LastModifiedTimeT = Aws::Utils::DateTime>
229 DescribeModelPackageResult& WithLastModifiedTime(LastModifiedTimeT&& value) { SetLastModifiedTime(std::forward<LastModifiedTimeT>(value)); return *this;}
231
233
234 inline const UserContext& GetLastModifiedBy() const { return m_lastModifiedBy; }
235 template<typename LastModifiedByT = UserContext>
236 void SetLastModifiedBy(LastModifiedByT&& value) { m_lastModifiedByHasBeenSet = true; m_lastModifiedBy = std::forward<LastModifiedByT>(value); }
237 template<typename LastModifiedByT = UserContext>
238 DescribeModelPackageResult& WithLastModifiedBy(LastModifiedByT&& value) { SetLastModifiedBy(std::forward<LastModifiedByT>(value)); return *this;}
240
242
245 inline const Aws::String& GetApprovalDescription() const { return m_approvalDescription; }
246 template<typename ApprovalDescriptionT = Aws::String>
247 void SetApprovalDescription(ApprovalDescriptionT&& value) { m_approvalDescriptionHasBeenSet = true; m_approvalDescription = std::forward<ApprovalDescriptionT>(value); }
248 template<typename ApprovalDescriptionT = Aws::String>
249 DescribeModelPackageResult& WithApprovalDescription(ApprovalDescriptionT&& value) { SetApprovalDescription(std::forward<ApprovalDescriptionT>(value)); return *this;}
251
253
258 inline const Aws::String& GetDomain() const { return m_domain; }
259 template<typename DomainT = Aws::String>
260 void SetDomain(DomainT&& value) { m_domainHasBeenSet = true; m_domain = std::forward<DomainT>(value); }
261 template<typename DomainT = Aws::String>
262 DescribeModelPackageResult& WithDomain(DomainT&& value) { SetDomain(std::forward<DomainT>(value)); return *this;}
264
266
271 inline const Aws::String& GetTask() const { return m_task; }
272 template<typename TaskT = Aws::String>
273 void SetTask(TaskT&& value) { m_taskHasBeenSet = true; m_task = std::forward<TaskT>(value); }
274 template<typename TaskT = Aws::String>
275 DescribeModelPackageResult& WithTask(TaskT&& value) { SetTask(std::forward<TaskT>(value)); return *this;}
277
279
284 inline const Aws::String& GetSamplePayloadUrl() const { return m_samplePayloadUrl; }
285 template<typename SamplePayloadUrlT = Aws::String>
286 void SetSamplePayloadUrl(SamplePayloadUrlT&& value) { m_samplePayloadUrlHasBeenSet = true; m_samplePayloadUrl = std::forward<SamplePayloadUrlT>(value); }
287 template<typename SamplePayloadUrlT = Aws::String>
288 DescribeModelPackageResult& WithSamplePayloadUrl(SamplePayloadUrlT&& value) { SetSamplePayloadUrl(std::forward<SamplePayloadUrlT>(value)); return *this;}
290
292
295 inline const Aws::Map<Aws::String, Aws::String>& GetCustomerMetadataProperties() const { return m_customerMetadataProperties; }
296 template<typename CustomerMetadataPropertiesT = Aws::Map<Aws::String, Aws::String>>
297 void SetCustomerMetadataProperties(CustomerMetadataPropertiesT&& value) { m_customerMetadataPropertiesHasBeenSet = true; m_customerMetadataProperties = std::forward<CustomerMetadataPropertiesT>(value); }
298 template<typename CustomerMetadataPropertiesT = Aws::Map<Aws::String, Aws::String>>
299 DescribeModelPackageResult& WithCustomerMetadataProperties(CustomerMetadataPropertiesT&& value) { SetCustomerMetadataProperties(std::forward<CustomerMetadataPropertiesT>(value)); return *this;}
300 template<typename CustomerMetadataPropertiesKeyT = Aws::String, typename CustomerMetadataPropertiesValueT = Aws::String>
301 DescribeModelPackageResult& AddCustomerMetadataProperties(CustomerMetadataPropertiesKeyT&& key, CustomerMetadataPropertiesValueT&& value) {
302 m_customerMetadataPropertiesHasBeenSet = true; m_customerMetadataProperties.emplace(std::forward<CustomerMetadataPropertiesKeyT>(key), std::forward<CustomerMetadataPropertiesValueT>(value)); return *this;
303 }
305
307
314 inline const DriftCheckBaselines& GetDriftCheckBaselines() const { return m_driftCheckBaselines; }
315 template<typename DriftCheckBaselinesT = DriftCheckBaselines>
316 void SetDriftCheckBaselines(DriftCheckBaselinesT&& value) { m_driftCheckBaselinesHasBeenSet = true; m_driftCheckBaselines = std::forward<DriftCheckBaselinesT>(value); }
317 template<typename DriftCheckBaselinesT = DriftCheckBaselines>
318 DescribeModelPackageResult& WithDriftCheckBaselines(DriftCheckBaselinesT&& value) { SetDriftCheckBaselines(std::forward<DriftCheckBaselinesT>(value)); return *this;}
320
322
328 inline const Aws::Vector<AdditionalInferenceSpecificationDefinition>& GetAdditionalInferenceSpecifications() const { return m_additionalInferenceSpecifications; }
329 template<typename AdditionalInferenceSpecificationsT = Aws::Vector<AdditionalInferenceSpecificationDefinition>>
330 void SetAdditionalInferenceSpecifications(AdditionalInferenceSpecificationsT&& value) { m_additionalInferenceSpecificationsHasBeenSet = true; m_additionalInferenceSpecifications = std::forward<AdditionalInferenceSpecificationsT>(value); }
331 template<typename AdditionalInferenceSpecificationsT = Aws::Vector<AdditionalInferenceSpecificationDefinition>>
332 DescribeModelPackageResult& WithAdditionalInferenceSpecifications(AdditionalInferenceSpecificationsT&& value) { SetAdditionalInferenceSpecifications(std::forward<AdditionalInferenceSpecificationsT>(value)); return *this;}
333 template<typename AdditionalInferenceSpecificationsT = AdditionalInferenceSpecificationDefinition>
334 DescribeModelPackageResult& AddAdditionalInferenceSpecifications(AdditionalInferenceSpecificationsT&& value) { m_additionalInferenceSpecificationsHasBeenSet = true; m_additionalInferenceSpecifications.emplace_back(std::forward<AdditionalInferenceSpecificationsT>(value)); return *this; }
336
338
341 inline SkipModelValidation GetSkipModelValidation() const { return m_skipModelValidation; }
342 inline void SetSkipModelValidation(SkipModelValidation value) { m_skipModelValidationHasBeenSet = true; m_skipModelValidation = value; }
345
347
350 inline const Aws::String& GetSourceUri() const { return m_sourceUri; }
351 template<typename SourceUriT = Aws::String>
352 void SetSourceUri(SourceUriT&& value) { m_sourceUriHasBeenSet = true; m_sourceUri = std::forward<SourceUriT>(value); }
353 template<typename SourceUriT = Aws::String>
354 DescribeModelPackageResult& WithSourceUri(SourceUriT&& value) { SetSourceUri(std::forward<SourceUriT>(value)); return *this;}
356
358
362 inline const ModelPackageSecurityConfig& GetSecurityConfig() const { return m_securityConfig; }
363 template<typename SecurityConfigT = ModelPackageSecurityConfig>
364 void SetSecurityConfig(SecurityConfigT&& value) { m_securityConfigHasBeenSet = true; m_securityConfig = std::forward<SecurityConfigT>(value); }
365 template<typename SecurityConfigT = ModelPackageSecurityConfig>
366 DescribeModelPackageResult& WithSecurityConfig(SecurityConfigT&& value) { SetSecurityConfig(std::forward<SecurityConfigT>(value)); return *this;}
368
370
385 inline const ModelPackageModelCard& GetModelCard() const { return m_modelCard; }
386 template<typename ModelCardT = ModelPackageModelCard>
387 void SetModelCard(ModelCardT&& value) { m_modelCardHasBeenSet = true; m_modelCard = std::forward<ModelCardT>(value); }
388 template<typename ModelCardT = ModelPackageModelCard>
389 DescribeModelPackageResult& WithModelCard(ModelCardT&& value) { SetModelCard(std::forward<ModelCardT>(value)); return *this;}
391
393
397 inline const ModelLifeCycle& GetModelLifeCycle() const { return m_modelLifeCycle; }
398 template<typename ModelLifeCycleT = ModelLifeCycle>
399 void SetModelLifeCycle(ModelLifeCycleT&& value) { m_modelLifeCycleHasBeenSet = true; m_modelLifeCycle = std::forward<ModelLifeCycleT>(value); }
400 template<typename ModelLifeCycleT = ModelLifeCycle>
401 DescribeModelPackageResult& WithModelLifeCycle(ModelLifeCycleT&& value) { SetModelLifeCycle(std::forward<ModelLifeCycleT>(value)); return *this;}
403
405
406 inline const Aws::String& GetRequestId() const { return m_requestId; }
407 template<typename RequestIdT = Aws::String>
408 void SetRequestId(RequestIdT&& value) { m_requestIdHasBeenSet = true; m_requestId = std::forward<RequestIdT>(value); }
409 template<typename RequestIdT = Aws::String>
410 DescribeModelPackageResult& WithRequestId(RequestIdT&& value) { SetRequestId(std::forward<RequestIdT>(value)); return *this;}
412 private:
413
414 Aws::String m_modelPackageName;
415 bool m_modelPackageNameHasBeenSet = false;
416
417 Aws::String m_modelPackageGroupName;
418 bool m_modelPackageGroupNameHasBeenSet = false;
419
420 int m_modelPackageVersion{0};
421 bool m_modelPackageVersionHasBeenSet = false;
422
423 Aws::String m_modelPackageArn;
424 bool m_modelPackageArnHasBeenSet = false;
425
426 Aws::String m_modelPackageDescription;
427 bool m_modelPackageDescriptionHasBeenSet = false;
428
429 Aws::Utils::DateTime m_creationTime{};
430 bool m_creationTimeHasBeenSet = false;
431
432 InferenceSpecification m_inferenceSpecification;
433 bool m_inferenceSpecificationHasBeenSet = false;
434
435 SourceAlgorithmSpecification m_sourceAlgorithmSpecification;
436 bool m_sourceAlgorithmSpecificationHasBeenSet = false;
437
438 ModelPackageValidationSpecification m_validationSpecification;
439 bool m_validationSpecificationHasBeenSet = false;
440
442 bool m_modelPackageStatusHasBeenSet = false;
443
444 ModelPackageStatusDetails m_modelPackageStatusDetails;
445 bool m_modelPackageStatusDetailsHasBeenSet = false;
446
447 bool m_certifyForMarketplace{false};
448 bool m_certifyForMarketplaceHasBeenSet = false;
449
451 bool m_modelApprovalStatusHasBeenSet = false;
452
453 UserContext m_createdBy;
454 bool m_createdByHasBeenSet = false;
455
456 MetadataProperties m_metadataProperties;
457 bool m_metadataPropertiesHasBeenSet = false;
458
459 ModelMetrics m_modelMetrics;
460 bool m_modelMetricsHasBeenSet = false;
461
462 Aws::Utils::DateTime m_lastModifiedTime{};
463 bool m_lastModifiedTimeHasBeenSet = false;
464
465 UserContext m_lastModifiedBy;
466 bool m_lastModifiedByHasBeenSet = false;
467
468 Aws::String m_approvalDescription;
469 bool m_approvalDescriptionHasBeenSet = false;
470
471 Aws::String m_domain;
472 bool m_domainHasBeenSet = false;
473
474 Aws::String m_task;
475 bool m_taskHasBeenSet = false;
476
477 Aws::String m_samplePayloadUrl;
478 bool m_samplePayloadUrlHasBeenSet = false;
479
480 Aws::Map<Aws::String, Aws::String> m_customerMetadataProperties;
481 bool m_customerMetadataPropertiesHasBeenSet = false;
482
483 DriftCheckBaselines m_driftCheckBaselines;
484 bool m_driftCheckBaselinesHasBeenSet = false;
485
486 Aws::Vector<AdditionalInferenceSpecificationDefinition> m_additionalInferenceSpecifications;
487 bool m_additionalInferenceSpecificationsHasBeenSet = false;
488
490 bool m_skipModelValidationHasBeenSet = false;
491
492 Aws::String m_sourceUri;
493 bool m_sourceUriHasBeenSet = false;
494
495 ModelPackageSecurityConfig m_securityConfig;
496 bool m_securityConfigHasBeenSet = false;
497
498 ModelPackageModelCard m_modelCard;
499 bool m_modelCardHasBeenSet = false;
500
501 ModelLifeCycle m_modelLifeCycle;
502 bool m_modelLifeCycleHasBeenSet = false;
503
504 Aws::String m_requestId;
505 bool m_requestIdHasBeenSet = false;
506 };
507
508} // namespace Model
509} // namespace SageMaker
510} // namespace Aws
const ModelPackageValidationSpecification & GetValidationSpecification() const
AWS_SAGEMAKER_API DescribeModelPackageResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
DescribeModelPackageResult & WithModelPackageArn(ModelPackageArnT &&value)
DescribeModelPackageResult & WithModelMetrics(ModelMetricsT &&value)
DescribeModelPackageResult & WithCustomerMetadataProperties(CustomerMetadataPropertiesT &&value)
DescribeModelPackageResult & AddAdditionalInferenceSpecifications(AdditionalInferenceSpecificationsT &&value)
DescribeModelPackageResult & WithDriftCheckBaselines(DriftCheckBaselinesT &&value)
DescribeModelPackageResult & WithApprovalDescription(ApprovalDescriptionT &&value)
DescribeModelPackageResult & WithSamplePayloadUrl(SamplePayloadUrlT &&value)
DescribeModelPackageResult & WithCreatedBy(CreatedByT &&value)
DescribeModelPackageResult & WithSecurityConfig(SecurityConfigT &&value)
DescribeModelPackageResult & WithTask(TaskT &&value)
DescribeModelPackageResult & WithCreationTime(CreationTimeT &&value)
void SetModelPackageStatusDetails(ModelPackageStatusDetailsT &&value)
DescribeModelPackageResult & WithModelPackageName(ModelPackageNameT &&value)
DescribeModelPackageResult & WithModelPackageStatusDetails(ModelPackageStatusDetailsT &&value)
const Aws::Vector< AdditionalInferenceSpecificationDefinition > & GetAdditionalInferenceSpecifications() const
DescribeModelPackageResult & WithMetadataProperties(MetadataPropertiesT &&value)
void SetInferenceSpecification(InferenceSpecificationT &&value)
DescribeModelPackageResult & WithModelPackageStatus(ModelPackageStatus value)
DescribeModelPackageResult & WithInferenceSpecification(InferenceSpecificationT &&value)
const Aws::Map< Aws::String, Aws::String > & GetCustomerMetadataProperties() const
const ModelPackageStatusDetails & GetModelPackageStatusDetails() const
DescribeModelPackageResult & AddCustomerMetadataProperties(CustomerMetadataPropertiesKeyT &&key, CustomerMetadataPropertiesValueT &&value)
AWS_SAGEMAKER_API DescribeModelPackageResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
void SetSourceAlgorithmSpecification(SourceAlgorithmSpecificationT &&value)
void SetModelPackageDescription(ModelPackageDescriptionT &&value)
DescribeModelPackageResult & WithRequestId(RequestIdT &&value)
DescribeModelPackageResult & WithModelPackageDescription(ModelPackageDescriptionT &&value)
void SetValidationSpecification(ValidationSpecificationT &&value)
DescribeModelPackageResult & WithDomain(DomainT &&value)
DescribeModelPackageResult & WithModelCard(ModelCardT &&value)
DescribeModelPackageResult & WithSourceAlgorithmSpecification(SourceAlgorithmSpecificationT &&value)
DescribeModelPackageResult & WithValidationSpecification(ValidationSpecificationT &&value)
DescribeModelPackageResult & WithModelPackageGroupName(ModelPackageGroupNameT &&value)
void SetModelPackageGroupName(ModelPackageGroupNameT &&value)
DescribeModelPackageResult & WithAdditionalInferenceSpecifications(AdditionalInferenceSpecificationsT &&value)
void SetAdditionalInferenceSpecifications(AdditionalInferenceSpecificationsT &&value)
DescribeModelPackageResult & WithModelPackageVersion(int value)
const InferenceSpecification & GetInferenceSpecification() const
DescribeModelPackageResult & WithSourceUri(SourceUriT &&value)
DescribeModelPackageResult & WithLastModifiedBy(LastModifiedByT &&value)
DescribeModelPackageResult & WithModelApprovalStatus(ModelApprovalStatus value)
DescribeModelPackageResult & WithSkipModelValidation(SkipModelValidation value)
const ModelPackageSecurityConfig & GetSecurityConfig() const
void SetCustomerMetadataProperties(CustomerMetadataPropertiesT &&value)
DescribeModelPackageResult & WithLastModifiedTime(LastModifiedTimeT &&value)
const SourceAlgorithmSpecification & GetSourceAlgorithmSpecification() const
DescribeModelPackageResult & WithCertifyForMarketplace(bool value)
AWS_SAGEMAKER_API DescribeModelPackageResult()=default
DescribeModelPackageResult & WithModelLifeCycle(ModelLifeCycleT &&value)
std::map< K, V, std::less< K >, Aws::Allocator< std::pair< const K, V > > > Map
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue