/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the sagemaker-2017-07-24.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.SageMaker.Model
{
///
/// Defines a training job and a batch transform job that SageMaker runs to validate your
/// algorithm.
///
///
///
/// The data provided in the validation profile is made available to your buyers on Amazon
/// Web Services Marketplace.
///
///
public partial class AlgorithmValidationProfile
{
private string _profileName;
private TrainingJobDefinition _trainingJobDefinition;
private TransformJobDefinition _transformJobDefinition;
///
/// Gets and sets the property ProfileName.
///
/// The name of the profile for the algorithm. The name must have 1 to 63 characters.
/// Valid characters are a-z, A-Z, 0-9, and - (hyphen).
///
///
[AWSProperty(Required=true, Min=1, Max=63)]
public string ProfileName
{
get { return this._profileName; }
set { this._profileName = value; }
}
// Check to see if ProfileName property is set
internal bool IsSetProfileName()
{
return this._profileName != null;
}
///
/// Gets and sets the property TrainingJobDefinition.
///
/// The TrainingJobDefinition
object that describes the training job that
/// SageMaker runs to validate your algorithm.
///
///
[AWSProperty(Required=true)]
public TrainingJobDefinition TrainingJobDefinition
{
get { return this._trainingJobDefinition; }
set { this._trainingJobDefinition = value; }
}
// Check to see if TrainingJobDefinition property is set
internal bool IsSetTrainingJobDefinition()
{
return this._trainingJobDefinition != null;
}
///
/// Gets and sets the property TransformJobDefinition.
///
/// The TransformJobDefinition
object that describes the transform job that
/// SageMaker runs to validate your algorithm.
///
///
public TransformJobDefinition TransformJobDefinition
{
get { return this._transformJobDefinition; }
set { this._transformJobDefinition = value; }
}
// Check to see if TransformJobDefinition property is set
internal bool IsSetTransformJobDefinition()
{
return this._transformJobDefinition != null;
}
}
}