/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace SageMaker { namespace Model { /** *

Contains data, such as the inputs and targeted instance types that are used * in the process of validating the model package.

The data provided in the * validation profile is made available to your buyers on Amazon Web Services * Marketplace.

See Also:

AWS * API Reference

*/ class ModelPackageValidationProfile { public: AWS_SAGEMAKER_API ModelPackageValidationProfile(); AWS_SAGEMAKER_API ModelPackageValidationProfile(Aws::Utils::Json::JsonView jsonValue); AWS_SAGEMAKER_API ModelPackageValidationProfile& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The name of the profile for the model package.

*/ inline const Aws::String& GetProfileName() const{ return m_profileName; } /** *

The name of the profile for the model package.

*/ inline bool ProfileNameHasBeenSet() const { return m_profileNameHasBeenSet; } /** *

The name of the profile for the model package.

*/ inline void SetProfileName(const Aws::String& value) { m_profileNameHasBeenSet = true; m_profileName = value; } /** *

The name of the profile for the model package.

*/ inline void SetProfileName(Aws::String&& value) { m_profileNameHasBeenSet = true; m_profileName = std::move(value); } /** *

The name of the profile for the model package.

*/ inline void SetProfileName(const char* value) { m_profileNameHasBeenSet = true; m_profileName.assign(value); } /** *

The name of the profile for the model package.

*/ inline ModelPackageValidationProfile& WithProfileName(const Aws::String& value) { SetProfileName(value); return *this;} /** *

The name of the profile for the model package.

*/ inline ModelPackageValidationProfile& WithProfileName(Aws::String&& value) { SetProfileName(std::move(value)); return *this;} /** *

The name of the profile for the model package.

*/ inline ModelPackageValidationProfile& WithProfileName(const char* value) { SetProfileName(value); return *this;} /** *

The TransformJobDefinition object that describes the transform * job used for the validation of the model package.

*/ inline const TransformJobDefinition& GetTransformJobDefinition() const{ return m_transformJobDefinition; } /** *

The TransformJobDefinition object that describes the transform * job used for the validation of the model package.

*/ inline bool TransformJobDefinitionHasBeenSet() const { return m_transformJobDefinitionHasBeenSet; } /** *

The TransformJobDefinition object that describes the transform * job used for the validation of the model package.

*/ inline void SetTransformJobDefinition(const TransformJobDefinition& value) { m_transformJobDefinitionHasBeenSet = true; m_transformJobDefinition = value; } /** *

The TransformJobDefinition object that describes the transform * job used for the validation of the model package.

*/ inline void SetTransformJobDefinition(TransformJobDefinition&& value) { m_transformJobDefinitionHasBeenSet = true; m_transformJobDefinition = std::move(value); } /** *

The TransformJobDefinition object that describes the transform * job used for the validation of the model package.

*/ inline ModelPackageValidationProfile& WithTransformJobDefinition(const TransformJobDefinition& value) { SetTransformJobDefinition(value); return *this;} /** *

The TransformJobDefinition object that describes the transform * job used for the validation of the model package.

*/ inline ModelPackageValidationProfile& WithTransformJobDefinition(TransformJobDefinition&& value) { SetTransformJobDefinition(std::move(value)); return *this;} private: Aws::String m_profileName; bool m_profileNameHasBeenSet = false; TransformJobDefinition m_transformJobDefinition; bool m_transformJobDefinitionHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws