133 lines
4.7 KiB
C++
133 lines
4.7 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/sagemaker/SageMaker_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <aws/sagemaker/model/TransformJobDefinition.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
class JsonView;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace SageMaker
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>Contains data, such as the inputs and targeted instance types that are used
|
|
* in the process of validating the model package.</p> <p>The data provided in the
|
|
* validation profile is made available to your buyers on AWS
|
|
* Marketplace.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelPackageValidationProfile">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_SAGEMAKER_API ModelPackageValidationProfile
|
|
{
|
|
public:
|
|
ModelPackageValidationProfile();
|
|
ModelPackageValidationProfile(Aws::Utils::Json::JsonView jsonValue);
|
|
ModelPackageValidationProfile& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|
|
|
|
|
/**
|
|
* <p>The name of the profile for the model package.</p>
|
|
*/
|
|
inline const Aws::String& GetProfileName() const{ return m_profileName; }
|
|
|
|
/**
|
|
* <p>The name of the profile for the model package.</p>
|
|
*/
|
|
inline bool ProfileNameHasBeenSet() const { return m_profileNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the profile for the model package.</p>
|
|
*/
|
|
inline void SetProfileName(const Aws::String& value) { m_profileNameHasBeenSet = true; m_profileName = value; }
|
|
|
|
/**
|
|
* <p>The name of the profile for the model package.</p>
|
|
*/
|
|
inline void SetProfileName(Aws::String&& value) { m_profileNameHasBeenSet = true; m_profileName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the profile for the model package.</p>
|
|
*/
|
|
inline void SetProfileName(const char* value) { m_profileNameHasBeenSet = true; m_profileName.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the profile for the model package.</p>
|
|
*/
|
|
inline ModelPackageValidationProfile& WithProfileName(const Aws::String& value) { SetProfileName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the profile for the model package.</p>
|
|
*/
|
|
inline ModelPackageValidationProfile& WithProfileName(Aws::String&& value) { SetProfileName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the profile for the model package.</p>
|
|
*/
|
|
inline ModelPackageValidationProfile& WithProfileName(const char* value) { SetProfileName(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The <code>TransformJobDefinition</code> object that describes the transform
|
|
* job used for the validation of the model package.</p>
|
|
*/
|
|
inline const TransformJobDefinition& GetTransformJobDefinition() const{ return m_transformJobDefinition; }
|
|
|
|
/**
|
|
* <p>The <code>TransformJobDefinition</code> object that describes the transform
|
|
* job used for the validation of the model package.</p>
|
|
*/
|
|
inline bool TransformJobDefinitionHasBeenSet() const { return m_transformJobDefinitionHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The <code>TransformJobDefinition</code> object that describes the transform
|
|
* job used for the validation of the model package.</p>
|
|
*/
|
|
inline void SetTransformJobDefinition(const TransformJobDefinition& value) { m_transformJobDefinitionHasBeenSet = true; m_transformJobDefinition = value; }
|
|
|
|
/**
|
|
* <p>The <code>TransformJobDefinition</code> object that describes the transform
|
|
* job used for the validation of the model package.</p>
|
|
*/
|
|
inline void SetTransformJobDefinition(TransformJobDefinition&& value) { m_transformJobDefinitionHasBeenSet = true; m_transformJobDefinition = std::move(value); }
|
|
|
|
/**
|
|
* <p>The <code>TransformJobDefinition</code> object that describes the transform
|
|
* job used for the validation of the model package.</p>
|
|
*/
|
|
inline ModelPackageValidationProfile& WithTransformJobDefinition(const TransformJobDefinition& value) { SetTransformJobDefinition(value); return *this;}
|
|
|
|
/**
|
|
* <p>The <code>TransformJobDefinition</code> object that describes the transform
|
|
* job used for the validation of the model package.</p>
|
|
*/
|
|
inline ModelPackageValidationProfile& WithTransformJobDefinition(TransformJobDefinition&& value) { SetTransformJobDefinition(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_profileName;
|
|
bool m_profileNameHasBeenSet;
|
|
|
|
TransformJobDefinition m_transformJobDefinition;
|
|
bool m_transformJobDefinitionHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace SageMaker
|
|
} // namespace Aws
|