/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace SageMaker { namespace Model { class DescribeModelBiasJobDefinitionResult { public: AWS_SAGEMAKER_API DescribeModelBiasJobDefinitionResult(); AWS_SAGEMAKER_API DescribeModelBiasJobDefinitionResult(const Aws::AmazonWebServiceResult& result); AWS_SAGEMAKER_API DescribeModelBiasJobDefinitionResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The Amazon Resource Name (ARN) of the model bias job.

*/ inline const Aws::String& GetJobDefinitionArn() const{ return m_jobDefinitionArn; } /** *

The Amazon Resource Name (ARN) of the model bias job.

*/ inline void SetJobDefinitionArn(const Aws::String& value) { m_jobDefinitionArn = value; } /** *

The Amazon Resource Name (ARN) of the model bias job.

*/ inline void SetJobDefinitionArn(Aws::String&& value) { m_jobDefinitionArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the model bias job.

*/ inline void SetJobDefinitionArn(const char* value) { m_jobDefinitionArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the model bias job.

*/ inline DescribeModelBiasJobDefinitionResult& WithJobDefinitionArn(const Aws::String& value) { SetJobDefinitionArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the model bias job.

*/ inline DescribeModelBiasJobDefinitionResult& WithJobDefinitionArn(Aws::String&& value) { SetJobDefinitionArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the model bias job.

*/ inline DescribeModelBiasJobDefinitionResult& WithJobDefinitionArn(const char* value) { SetJobDefinitionArn(value); return *this;} /** *

The name of the bias job definition. The name must be unique within an Amazon * Web Services Region in the Amazon Web Services account.

*/ inline const Aws::String& GetJobDefinitionName() const{ return m_jobDefinitionName; } /** *

The name of the bias job definition. The name must be unique within an Amazon * Web Services Region in the Amazon Web Services account.

*/ inline void SetJobDefinitionName(const Aws::String& value) { m_jobDefinitionName = value; } /** *

The name of the bias job definition. The name must be unique within an Amazon * Web Services Region in the Amazon Web Services account.

*/ inline void SetJobDefinitionName(Aws::String&& value) { m_jobDefinitionName = std::move(value); } /** *

The name of the bias job definition. The name must be unique within an Amazon * Web Services Region in the Amazon Web Services account.

*/ inline void SetJobDefinitionName(const char* value) { m_jobDefinitionName.assign(value); } /** *

The name of the bias job definition. The name must be unique within an Amazon * Web Services Region in the Amazon Web Services account.

*/ inline DescribeModelBiasJobDefinitionResult& WithJobDefinitionName(const Aws::String& value) { SetJobDefinitionName(value); return *this;} /** *

The name of the bias job definition. The name must be unique within an Amazon * Web Services Region in the Amazon Web Services account.

*/ inline DescribeModelBiasJobDefinitionResult& WithJobDefinitionName(Aws::String&& value) { SetJobDefinitionName(std::move(value)); return *this;} /** *

The name of the bias job definition. The name must be unique within an Amazon * Web Services Region in the Amazon Web Services account.

*/ inline DescribeModelBiasJobDefinitionResult& WithJobDefinitionName(const char* value) { SetJobDefinitionName(value); return *this;} /** *

The time at which the model bias job was created.

*/ inline const Aws::Utils::DateTime& GetCreationTime() const{ return m_creationTime; } /** *

The time at which the model bias job was created.

*/ inline void SetCreationTime(const Aws::Utils::DateTime& value) { m_creationTime = value; } /** *

The time at which the model bias job was created.

*/ inline void SetCreationTime(Aws::Utils::DateTime&& value) { m_creationTime = std::move(value); } /** *

The time at which the model bias job was created.

*/ inline DescribeModelBiasJobDefinitionResult& WithCreationTime(const Aws::Utils::DateTime& value) { SetCreationTime(value); return *this;} /** *

The time at which the model bias job was created.

*/ inline DescribeModelBiasJobDefinitionResult& WithCreationTime(Aws::Utils::DateTime&& value) { SetCreationTime(std::move(value)); return *this;} /** *

The baseline configuration for a model bias job.

*/ inline const ModelBiasBaselineConfig& GetModelBiasBaselineConfig() const{ return m_modelBiasBaselineConfig; } /** *

The baseline configuration for a model bias job.

*/ inline void SetModelBiasBaselineConfig(const ModelBiasBaselineConfig& value) { m_modelBiasBaselineConfig = value; } /** *

The baseline configuration for a model bias job.

*/ inline void SetModelBiasBaselineConfig(ModelBiasBaselineConfig&& value) { m_modelBiasBaselineConfig = std::move(value); } /** *

The baseline configuration for a model bias job.

*/ inline DescribeModelBiasJobDefinitionResult& WithModelBiasBaselineConfig(const ModelBiasBaselineConfig& value) { SetModelBiasBaselineConfig(value); return *this;} /** *

The baseline configuration for a model bias job.

*/ inline DescribeModelBiasJobDefinitionResult& WithModelBiasBaselineConfig(ModelBiasBaselineConfig&& value) { SetModelBiasBaselineConfig(std::move(value)); return *this;} /** *

Configures the model bias job to run a specified Docker container image.

*/ inline const ModelBiasAppSpecification& GetModelBiasAppSpecification() const{ return m_modelBiasAppSpecification; } /** *

Configures the model bias job to run a specified Docker container image.

*/ inline void SetModelBiasAppSpecification(const ModelBiasAppSpecification& value) { m_modelBiasAppSpecification = value; } /** *

Configures the model bias job to run a specified Docker container image.

*/ inline void SetModelBiasAppSpecification(ModelBiasAppSpecification&& value) { m_modelBiasAppSpecification = std::move(value); } /** *

Configures the model bias job to run a specified Docker container image.

*/ inline DescribeModelBiasJobDefinitionResult& WithModelBiasAppSpecification(const ModelBiasAppSpecification& value) { SetModelBiasAppSpecification(value); return *this;} /** *

Configures the model bias job to run a specified Docker container image.

*/ inline DescribeModelBiasJobDefinitionResult& WithModelBiasAppSpecification(ModelBiasAppSpecification&& value) { SetModelBiasAppSpecification(std::move(value)); return *this;} /** *

Inputs for the model bias job.

*/ inline const ModelBiasJobInput& GetModelBiasJobInput() const{ return m_modelBiasJobInput; } /** *

Inputs for the model bias job.

*/ inline void SetModelBiasJobInput(const ModelBiasJobInput& value) { m_modelBiasJobInput = value; } /** *

Inputs for the model bias job.

*/ inline void SetModelBiasJobInput(ModelBiasJobInput&& value) { m_modelBiasJobInput = std::move(value); } /** *

Inputs for the model bias job.

*/ inline DescribeModelBiasJobDefinitionResult& WithModelBiasJobInput(const ModelBiasJobInput& value) { SetModelBiasJobInput(value); return *this;} /** *

Inputs for the model bias job.

*/ inline DescribeModelBiasJobDefinitionResult& WithModelBiasJobInput(ModelBiasJobInput&& value) { SetModelBiasJobInput(std::move(value)); return *this;} inline const MonitoringOutputConfig& GetModelBiasJobOutputConfig() const{ return m_modelBiasJobOutputConfig; } inline void SetModelBiasJobOutputConfig(const MonitoringOutputConfig& value) { m_modelBiasJobOutputConfig = value; } inline void SetModelBiasJobOutputConfig(MonitoringOutputConfig&& value) { m_modelBiasJobOutputConfig = std::move(value); } inline DescribeModelBiasJobDefinitionResult& WithModelBiasJobOutputConfig(const MonitoringOutputConfig& value) { SetModelBiasJobOutputConfig(value); return *this;} inline DescribeModelBiasJobDefinitionResult& WithModelBiasJobOutputConfig(MonitoringOutputConfig&& value) { SetModelBiasJobOutputConfig(std::move(value)); return *this;} inline const MonitoringResources& GetJobResources() const{ return m_jobResources; } inline void SetJobResources(const MonitoringResources& value) { m_jobResources = value; } inline void SetJobResources(MonitoringResources&& value) { m_jobResources = std::move(value); } inline DescribeModelBiasJobDefinitionResult& WithJobResources(const MonitoringResources& value) { SetJobResources(value); return *this;} inline DescribeModelBiasJobDefinitionResult& WithJobResources(MonitoringResources&& value) { SetJobResources(std::move(value)); return *this;} /** *

Networking options for a model bias job.

*/ inline const MonitoringNetworkConfig& GetNetworkConfig() const{ return m_networkConfig; } /** *

Networking options for a model bias job.

*/ inline void SetNetworkConfig(const MonitoringNetworkConfig& value) { m_networkConfig = value; } /** *

Networking options for a model bias job.

*/ inline void SetNetworkConfig(MonitoringNetworkConfig&& value) { m_networkConfig = std::move(value); } /** *

Networking options for a model bias job.

*/ inline DescribeModelBiasJobDefinitionResult& WithNetworkConfig(const MonitoringNetworkConfig& value) { SetNetworkConfig(value); return *this;} /** *

Networking options for a model bias job.

*/ inline DescribeModelBiasJobDefinitionResult& WithNetworkConfig(MonitoringNetworkConfig&& value) { SetNetworkConfig(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the Amazon Web Services Identity and Access * Management (IAM) role that has read permission to the input data location and * write permission to the output data location in Amazon S3.

*/ inline const Aws::String& GetRoleArn() const{ return m_roleArn; } /** *

The Amazon Resource Name (ARN) of the Amazon Web Services Identity and Access * Management (IAM) role that has read permission to the input data location and * write permission to the output data location in Amazon S3.

*/ inline void SetRoleArn(const Aws::String& value) { m_roleArn = value; } /** *

The Amazon Resource Name (ARN) of the Amazon Web Services Identity and Access * Management (IAM) role that has read permission to the input data location and * write permission to the output data location in Amazon S3.

*/ inline void SetRoleArn(Aws::String&& value) { m_roleArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the Amazon Web Services Identity and Access * Management (IAM) role that has read permission to the input data location and * write permission to the output data location in Amazon S3.

*/ inline void SetRoleArn(const char* value) { m_roleArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the Amazon Web Services Identity and Access * Management (IAM) role that has read permission to the input data location and * write permission to the output data location in Amazon S3.

*/ inline DescribeModelBiasJobDefinitionResult& WithRoleArn(const Aws::String& value) { SetRoleArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the Amazon Web Services Identity and Access * Management (IAM) role that has read permission to the input data location and * write permission to the output data location in Amazon S3.

*/ inline DescribeModelBiasJobDefinitionResult& WithRoleArn(Aws::String&& value) { SetRoleArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the Amazon Web Services Identity and Access * Management (IAM) role that has read permission to the input data location and * write permission to the output data location in Amazon S3.

*/ inline DescribeModelBiasJobDefinitionResult& WithRoleArn(const char* value) { SetRoleArn(value); return *this;} inline const MonitoringStoppingCondition& GetStoppingCondition() const{ return m_stoppingCondition; } inline void SetStoppingCondition(const MonitoringStoppingCondition& value) { m_stoppingCondition = value; } inline void SetStoppingCondition(MonitoringStoppingCondition&& value) { m_stoppingCondition = std::move(value); } inline DescribeModelBiasJobDefinitionResult& WithStoppingCondition(const MonitoringStoppingCondition& value) { SetStoppingCondition(value); return *this;} inline DescribeModelBiasJobDefinitionResult& WithStoppingCondition(MonitoringStoppingCondition&& value) { SetStoppingCondition(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DescribeModelBiasJobDefinitionResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeModelBiasJobDefinitionResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeModelBiasJobDefinitionResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_jobDefinitionArn; Aws::String m_jobDefinitionName; Aws::Utils::DateTime m_creationTime; ModelBiasBaselineConfig m_modelBiasBaselineConfig; ModelBiasAppSpecification m_modelBiasAppSpecification; ModelBiasJobInput m_modelBiasJobInput; MonitoringOutputConfig m_modelBiasJobOutputConfig; MonitoringResources m_jobResources; MonitoringNetworkConfig m_networkConfig; Aws::String m_roleArn; MonitoringStoppingCondition m_stoppingCondition; Aws::String m_requestId; }; } // namespace Model } // namespace SageMaker } // namespace Aws