/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies configuration properties for a Find Matches task run.See
* Also:
AWS
* API Reference
The job ID for the Find Matches task run.
*/ inline const Aws::String& GetJobId() const{ return m_jobId; } /** *The job ID for the Find Matches task run.
*/ inline bool JobIdHasBeenSet() const { return m_jobIdHasBeenSet; } /** *The job ID for the Find Matches task run.
*/ inline void SetJobId(const Aws::String& value) { m_jobIdHasBeenSet = true; m_jobId = value; } /** *The job ID for the Find Matches task run.
*/ inline void SetJobId(Aws::String&& value) { m_jobIdHasBeenSet = true; m_jobId = std::move(value); } /** *The job ID for the Find Matches task run.
*/ inline void SetJobId(const char* value) { m_jobIdHasBeenSet = true; m_jobId.assign(value); } /** *The job ID for the Find Matches task run.
*/ inline FindMatchesTaskRunProperties& WithJobId(const Aws::String& value) { SetJobId(value); return *this;} /** *The job ID for the Find Matches task run.
*/ inline FindMatchesTaskRunProperties& WithJobId(Aws::String&& value) { SetJobId(std::move(value)); return *this;} /** *The job ID for the Find Matches task run.
*/ inline FindMatchesTaskRunProperties& WithJobId(const char* value) { SetJobId(value); return *this;} /** *The name assigned to the job for the Find Matches task run.
*/ inline const Aws::String& GetJobName() const{ return m_jobName; } /** *The name assigned to the job for the Find Matches task run.
*/ inline bool JobNameHasBeenSet() const { return m_jobNameHasBeenSet; } /** *The name assigned to the job for the Find Matches task run.
*/ inline void SetJobName(const Aws::String& value) { m_jobNameHasBeenSet = true; m_jobName = value; } /** *The name assigned to the job for the Find Matches task run.
*/ inline void SetJobName(Aws::String&& value) { m_jobNameHasBeenSet = true; m_jobName = std::move(value); } /** *The name assigned to the job for the Find Matches task run.
*/ inline void SetJobName(const char* value) { m_jobNameHasBeenSet = true; m_jobName.assign(value); } /** *The name assigned to the job for the Find Matches task run.
*/ inline FindMatchesTaskRunProperties& WithJobName(const Aws::String& value) { SetJobName(value); return *this;} /** *The name assigned to the job for the Find Matches task run.
*/ inline FindMatchesTaskRunProperties& WithJobName(Aws::String&& value) { SetJobName(std::move(value)); return *this;} /** *The name assigned to the job for the Find Matches task run.
*/ inline FindMatchesTaskRunProperties& WithJobName(const char* value) { SetJobName(value); return *this;} /** *The job run ID for the Find Matches task run.
*/ inline const Aws::String& GetJobRunId() const{ return m_jobRunId; } /** *The job run ID for the Find Matches task run.
*/ inline bool JobRunIdHasBeenSet() const { return m_jobRunIdHasBeenSet; } /** *The job run ID for the Find Matches task run.
*/ inline void SetJobRunId(const Aws::String& value) { m_jobRunIdHasBeenSet = true; m_jobRunId = value; } /** *The job run ID for the Find Matches task run.
*/ inline void SetJobRunId(Aws::String&& value) { m_jobRunIdHasBeenSet = true; m_jobRunId = std::move(value); } /** *The job run ID for the Find Matches task run.
*/ inline void SetJobRunId(const char* value) { m_jobRunIdHasBeenSet = true; m_jobRunId.assign(value); } /** *The job run ID for the Find Matches task run.
*/ inline FindMatchesTaskRunProperties& WithJobRunId(const Aws::String& value) { SetJobRunId(value); return *this;} /** *The job run ID for the Find Matches task run.
*/ inline FindMatchesTaskRunProperties& WithJobRunId(Aws::String&& value) { SetJobRunId(std::move(value)); return *this;} /** *The job run ID for the Find Matches task run.
*/ inline FindMatchesTaskRunProperties& WithJobRunId(const char* value) { SetJobRunId(value); return *this;} private: Aws::String m_jobId; bool m_jobIdHasBeenSet = false; Aws::String m_jobName; bool m_jobNameHasBeenSet = false; Aws::String m_jobRunId; bool m_jobRunIdHasBeenSet = false; }; } // namespace Model } // namespace Glue } // namespace Aws