248 lines
8.6 KiB
C++
248 lines
8.6 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/RuleEvaluationStatus.h>
|
|
#include <aws/core/utils/DateTime.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
class JsonView;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace SageMaker
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>Information about the status of the rule evaluation.</p><p><h3>See Also:</h3>
|
|
* <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DebugRuleEvaluationStatus">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_SAGEMAKER_API DebugRuleEvaluationStatus
|
|
{
|
|
public:
|
|
DebugRuleEvaluationStatus();
|
|
DebugRuleEvaluationStatus(Aws::Utils::Json::JsonView jsonValue);
|
|
DebugRuleEvaluationStatus& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|
|
|
|
|
/**
|
|
* <p>The name of the rule configuration</p>
|
|
*/
|
|
inline const Aws::String& GetRuleConfigurationName() const{ return m_ruleConfigurationName; }
|
|
|
|
/**
|
|
* <p>The name of the rule configuration</p>
|
|
*/
|
|
inline bool RuleConfigurationNameHasBeenSet() const { return m_ruleConfigurationNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the rule configuration</p>
|
|
*/
|
|
inline void SetRuleConfigurationName(const Aws::String& value) { m_ruleConfigurationNameHasBeenSet = true; m_ruleConfigurationName = value; }
|
|
|
|
/**
|
|
* <p>The name of the rule configuration</p>
|
|
*/
|
|
inline void SetRuleConfigurationName(Aws::String&& value) { m_ruleConfigurationNameHasBeenSet = true; m_ruleConfigurationName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the rule configuration</p>
|
|
*/
|
|
inline void SetRuleConfigurationName(const char* value) { m_ruleConfigurationNameHasBeenSet = true; m_ruleConfigurationName.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the rule configuration</p>
|
|
*/
|
|
inline DebugRuleEvaluationStatus& WithRuleConfigurationName(const Aws::String& value) { SetRuleConfigurationName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the rule configuration</p>
|
|
*/
|
|
inline DebugRuleEvaluationStatus& WithRuleConfigurationName(Aws::String&& value) { SetRuleConfigurationName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the rule configuration</p>
|
|
*/
|
|
inline DebugRuleEvaluationStatus& WithRuleConfigurationName(const char* value) { SetRuleConfigurationName(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the rule evaluation job.</p>
|
|
*/
|
|
inline const Aws::String& GetRuleEvaluationJobArn() const{ return m_ruleEvaluationJobArn; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the rule evaluation job.</p>
|
|
*/
|
|
inline bool RuleEvaluationJobArnHasBeenSet() const { return m_ruleEvaluationJobArnHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the rule evaluation job.</p>
|
|
*/
|
|
inline void SetRuleEvaluationJobArn(const Aws::String& value) { m_ruleEvaluationJobArnHasBeenSet = true; m_ruleEvaluationJobArn = value; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the rule evaluation job.</p>
|
|
*/
|
|
inline void SetRuleEvaluationJobArn(Aws::String&& value) { m_ruleEvaluationJobArnHasBeenSet = true; m_ruleEvaluationJobArn = std::move(value); }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the rule evaluation job.</p>
|
|
*/
|
|
inline void SetRuleEvaluationJobArn(const char* value) { m_ruleEvaluationJobArnHasBeenSet = true; m_ruleEvaluationJobArn.assign(value); }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the rule evaluation job.</p>
|
|
*/
|
|
inline DebugRuleEvaluationStatus& WithRuleEvaluationJobArn(const Aws::String& value) { SetRuleEvaluationJobArn(value); return *this;}
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the rule evaluation job.</p>
|
|
*/
|
|
inline DebugRuleEvaluationStatus& WithRuleEvaluationJobArn(Aws::String&& value) { SetRuleEvaluationJobArn(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the rule evaluation job.</p>
|
|
*/
|
|
inline DebugRuleEvaluationStatus& WithRuleEvaluationJobArn(const char* value) { SetRuleEvaluationJobArn(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>Status of the rule evaluation.</p>
|
|
*/
|
|
inline const RuleEvaluationStatus& GetRuleEvaluationStatus() const{ return m_ruleEvaluationStatus; }
|
|
|
|
/**
|
|
* <p>Status of the rule evaluation.</p>
|
|
*/
|
|
inline bool RuleEvaluationStatusHasBeenSet() const { return m_ruleEvaluationStatusHasBeenSet; }
|
|
|
|
/**
|
|
* <p>Status of the rule evaluation.</p>
|
|
*/
|
|
inline void SetRuleEvaluationStatus(const RuleEvaluationStatus& value) { m_ruleEvaluationStatusHasBeenSet = true; m_ruleEvaluationStatus = value; }
|
|
|
|
/**
|
|
* <p>Status of the rule evaluation.</p>
|
|
*/
|
|
inline void SetRuleEvaluationStatus(RuleEvaluationStatus&& value) { m_ruleEvaluationStatusHasBeenSet = true; m_ruleEvaluationStatus = std::move(value); }
|
|
|
|
/**
|
|
* <p>Status of the rule evaluation.</p>
|
|
*/
|
|
inline DebugRuleEvaluationStatus& WithRuleEvaluationStatus(const RuleEvaluationStatus& value) { SetRuleEvaluationStatus(value); return *this;}
|
|
|
|
/**
|
|
* <p>Status of the rule evaluation.</p>
|
|
*/
|
|
inline DebugRuleEvaluationStatus& WithRuleEvaluationStatus(RuleEvaluationStatus&& value) { SetRuleEvaluationStatus(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>Details from the rule evaluation.</p>
|
|
*/
|
|
inline const Aws::String& GetStatusDetails() const{ return m_statusDetails; }
|
|
|
|
/**
|
|
* <p>Details from the rule evaluation.</p>
|
|
*/
|
|
inline bool StatusDetailsHasBeenSet() const { return m_statusDetailsHasBeenSet; }
|
|
|
|
/**
|
|
* <p>Details from the rule evaluation.</p>
|
|
*/
|
|
inline void SetStatusDetails(const Aws::String& value) { m_statusDetailsHasBeenSet = true; m_statusDetails = value; }
|
|
|
|
/**
|
|
* <p>Details from the rule evaluation.</p>
|
|
*/
|
|
inline void SetStatusDetails(Aws::String&& value) { m_statusDetailsHasBeenSet = true; m_statusDetails = std::move(value); }
|
|
|
|
/**
|
|
* <p>Details from the rule evaluation.</p>
|
|
*/
|
|
inline void SetStatusDetails(const char* value) { m_statusDetailsHasBeenSet = true; m_statusDetails.assign(value); }
|
|
|
|
/**
|
|
* <p>Details from the rule evaluation.</p>
|
|
*/
|
|
inline DebugRuleEvaluationStatus& WithStatusDetails(const Aws::String& value) { SetStatusDetails(value); return *this;}
|
|
|
|
/**
|
|
* <p>Details from the rule evaluation.</p>
|
|
*/
|
|
inline DebugRuleEvaluationStatus& WithStatusDetails(Aws::String&& value) { SetStatusDetails(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>Details from the rule evaluation.</p>
|
|
*/
|
|
inline DebugRuleEvaluationStatus& WithStatusDetails(const char* value) { SetStatusDetails(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>Timestamp when the rule evaluation status was last modified.</p>
|
|
*/
|
|
inline const Aws::Utils::DateTime& GetLastModifiedTime() const{ return m_lastModifiedTime; }
|
|
|
|
/**
|
|
* <p>Timestamp when the rule evaluation status was last modified.</p>
|
|
*/
|
|
inline bool LastModifiedTimeHasBeenSet() const { return m_lastModifiedTimeHasBeenSet; }
|
|
|
|
/**
|
|
* <p>Timestamp when the rule evaluation status was last modified.</p>
|
|
*/
|
|
inline void SetLastModifiedTime(const Aws::Utils::DateTime& value) { m_lastModifiedTimeHasBeenSet = true; m_lastModifiedTime = value; }
|
|
|
|
/**
|
|
* <p>Timestamp when the rule evaluation status was last modified.</p>
|
|
*/
|
|
inline void SetLastModifiedTime(Aws::Utils::DateTime&& value) { m_lastModifiedTimeHasBeenSet = true; m_lastModifiedTime = std::move(value); }
|
|
|
|
/**
|
|
* <p>Timestamp when the rule evaluation status was last modified.</p>
|
|
*/
|
|
inline DebugRuleEvaluationStatus& WithLastModifiedTime(const Aws::Utils::DateTime& value) { SetLastModifiedTime(value); return *this;}
|
|
|
|
/**
|
|
* <p>Timestamp when the rule evaluation status was last modified.</p>
|
|
*/
|
|
inline DebugRuleEvaluationStatus& WithLastModifiedTime(Aws::Utils::DateTime&& value) { SetLastModifiedTime(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_ruleConfigurationName;
|
|
bool m_ruleConfigurationNameHasBeenSet;
|
|
|
|
Aws::String m_ruleEvaluationJobArn;
|
|
bool m_ruleEvaluationJobArnHasBeenSet;
|
|
|
|
RuleEvaluationStatus m_ruleEvaluationStatus;
|
|
bool m_ruleEvaluationStatusHasBeenSet;
|
|
|
|
Aws::String m_statusDetails;
|
|
bool m_statusDetailsHasBeenSet;
|
|
|
|
Aws::Utils::DateTime m_lastModifiedTime;
|
|
bool m_lastModifiedTimeHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace SageMaker
|
|
} // namespace Aws
|