/** * 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 namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace EntityResolution { namespace Model { class CreateMatchingWorkflowResult { public: AWS_ENTITYRESOLUTION_API CreateMatchingWorkflowResult(); AWS_ENTITYRESOLUTION_API CreateMatchingWorkflowResult(const Aws::AmazonWebServiceResult& result); AWS_ENTITYRESOLUTION_API CreateMatchingWorkflowResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A description of the workflow.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

A description of the workflow.

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

A description of the workflow.

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

A description of the workflow.

*/ inline void SetDescription(const char* value) { m_description.assign(value); } /** *

A description of the workflow.

*/ inline CreateMatchingWorkflowResult& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

A description of the workflow.

*/ inline CreateMatchingWorkflowResult& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

A description of the workflow.

*/ inline CreateMatchingWorkflowResult& WithDescription(const char* value) { SetDescription(value); return *this;} /** *

An object which defines an incremental run type and has only * incrementalRunType as a field.

*/ inline const IncrementalRunConfig& GetIncrementalRunConfig() const{ return m_incrementalRunConfig; } /** *

An object which defines an incremental run type and has only * incrementalRunType as a field.

*/ inline void SetIncrementalRunConfig(const IncrementalRunConfig& value) { m_incrementalRunConfig = value; } /** *

An object which defines an incremental run type and has only * incrementalRunType as a field.

*/ inline void SetIncrementalRunConfig(IncrementalRunConfig&& value) { m_incrementalRunConfig = std::move(value); } /** *

An object which defines an incremental run type and has only * incrementalRunType as a field.

*/ inline CreateMatchingWorkflowResult& WithIncrementalRunConfig(const IncrementalRunConfig& value) { SetIncrementalRunConfig(value); return *this;} /** *

An object which defines an incremental run type and has only * incrementalRunType as a field.

*/ inline CreateMatchingWorkflowResult& WithIncrementalRunConfig(IncrementalRunConfig&& value) { SetIncrementalRunConfig(std::move(value)); return *this;} /** *

A list of InputSource objects, which have the fields * InputSourceARN and SchemaName.

*/ inline const Aws::Vector& GetInputSourceConfig() const{ return m_inputSourceConfig; } /** *

A list of InputSource objects, which have the fields * InputSourceARN and SchemaName.

*/ inline void SetInputSourceConfig(const Aws::Vector& value) { m_inputSourceConfig = value; } /** *

A list of InputSource objects, which have the fields * InputSourceARN and SchemaName.

*/ inline void SetInputSourceConfig(Aws::Vector&& value) { m_inputSourceConfig = std::move(value); } /** *

A list of InputSource objects, which have the fields * InputSourceARN and SchemaName.

*/ inline CreateMatchingWorkflowResult& WithInputSourceConfig(const Aws::Vector& value) { SetInputSourceConfig(value); return *this;} /** *

A list of InputSource objects, which have the fields * InputSourceARN and SchemaName.

*/ inline CreateMatchingWorkflowResult& WithInputSourceConfig(Aws::Vector&& value) { SetInputSourceConfig(std::move(value)); return *this;} /** *

A list of InputSource objects, which have the fields * InputSourceARN and SchemaName.

*/ inline CreateMatchingWorkflowResult& AddInputSourceConfig(const InputSource& value) { m_inputSourceConfig.push_back(value); return *this; } /** *

A list of InputSource objects, which have the fields * InputSourceARN and SchemaName.

*/ inline CreateMatchingWorkflowResult& AddInputSourceConfig(InputSource&& value) { m_inputSourceConfig.push_back(std::move(value)); return *this; } /** *

A list of OutputSource objects, each of which contains fields * OutputS3Path, ApplyNormalization, and * Output.

*/ inline const Aws::Vector& GetOutputSourceConfig() const{ return m_outputSourceConfig; } /** *

A list of OutputSource objects, each of which contains fields * OutputS3Path, ApplyNormalization, and * Output.

*/ inline void SetOutputSourceConfig(const Aws::Vector& value) { m_outputSourceConfig = value; } /** *

A list of OutputSource objects, each of which contains fields * OutputS3Path, ApplyNormalization, and * Output.

*/ inline void SetOutputSourceConfig(Aws::Vector&& value) { m_outputSourceConfig = std::move(value); } /** *

A list of OutputSource objects, each of which contains fields * OutputS3Path, ApplyNormalization, and * Output.

*/ inline CreateMatchingWorkflowResult& WithOutputSourceConfig(const Aws::Vector& value) { SetOutputSourceConfig(value); return *this;} /** *

A list of OutputSource objects, each of which contains fields * OutputS3Path, ApplyNormalization, and * Output.

*/ inline CreateMatchingWorkflowResult& WithOutputSourceConfig(Aws::Vector&& value) { SetOutputSourceConfig(std::move(value)); return *this;} /** *

A list of OutputSource objects, each of which contains fields * OutputS3Path, ApplyNormalization, and * Output.

*/ inline CreateMatchingWorkflowResult& AddOutputSourceConfig(const OutputSource& value) { m_outputSourceConfig.push_back(value); return *this; } /** *

A list of OutputSource objects, each of which contains fields * OutputS3Path, ApplyNormalization, and * Output.

*/ inline CreateMatchingWorkflowResult& AddOutputSourceConfig(OutputSource&& value) { m_outputSourceConfig.push_back(std::move(value)); return *this; } /** *

An object which defines the resolutionType and the * ruleBasedProperties

*/ inline const ResolutionTechniques& GetResolutionTechniques() const{ return m_resolutionTechniques; } /** *

An object which defines the resolutionType and the * ruleBasedProperties

*/ inline void SetResolutionTechniques(const ResolutionTechniques& value) { m_resolutionTechniques = value; } /** *

An object which defines the resolutionType and the * ruleBasedProperties

*/ inline void SetResolutionTechniques(ResolutionTechniques&& value) { m_resolutionTechniques = std::move(value); } /** *

An object which defines the resolutionType and the * ruleBasedProperties

*/ inline CreateMatchingWorkflowResult& WithResolutionTechniques(const ResolutionTechniques& value) { SetResolutionTechniques(value); return *this;} /** *

An object which defines the resolutionType and the * ruleBasedProperties

*/ inline CreateMatchingWorkflowResult& WithResolutionTechniques(ResolutionTechniques&& value) { SetResolutionTechniques(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the IAM role. AWS Entity Resolution assumes * this role to create resources on your behalf as part of workflow execution.

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

The Amazon Resource Name (ARN) of the IAM role. AWS Entity Resolution assumes * this role to create resources on your behalf as part of workflow execution.

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

The Amazon Resource Name (ARN) of the IAM role. AWS Entity Resolution assumes * this role to create resources on your behalf as part of workflow execution.

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

The Amazon Resource Name (ARN) of the IAM role. AWS Entity Resolution assumes * this role to create resources on your behalf as part of workflow execution.

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

The Amazon Resource Name (ARN) of the IAM role. AWS Entity Resolution assumes * this role to create resources on your behalf as part of workflow execution.

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

The Amazon Resource Name (ARN) of the IAM role. AWS Entity Resolution assumes * this role to create resources on your behalf as part of workflow execution.

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

The Amazon Resource Name (ARN) of the IAM role. AWS Entity Resolution assumes * this role to create resources on your behalf as part of workflow execution.

*/ inline CreateMatchingWorkflowResult& WithRoleArn(const char* value) { SetRoleArn(value); return *this;} /** *

The ARN (Amazon Resource Name) that Entity Resolution generated for the * MatchingWorkflow.

*/ inline const Aws::String& GetWorkflowArn() const{ return m_workflowArn; } /** *

The ARN (Amazon Resource Name) that Entity Resolution generated for the * MatchingWorkflow.

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

The ARN (Amazon Resource Name) that Entity Resolution generated for the * MatchingWorkflow.

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

The ARN (Amazon Resource Name) that Entity Resolution generated for the * MatchingWorkflow.

*/ inline void SetWorkflowArn(const char* value) { m_workflowArn.assign(value); } /** *

The ARN (Amazon Resource Name) that Entity Resolution generated for the * MatchingWorkflow.

*/ inline CreateMatchingWorkflowResult& WithWorkflowArn(const Aws::String& value) { SetWorkflowArn(value); return *this;} /** *

The ARN (Amazon Resource Name) that Entity Resolution generated for the * MatchingWorkflow.

*/ inline CreateMatchingWorkflowResult& WithWorkflowArn(Aws::String&& value) { SetWorkflowArn(std::move(value)); return *this;} /** *

The ARN (Amazon Resource Name) that Entity Resolution generated for the * MatchingWorkflow.

*/ inline CreateMatchingWorkflowResult& WithWorkflowArn(const char* value) { SetWorkflowArn(value); return *this;} /** *

The name of the workflow.

*/ inline const Aws::String& GetWorkflowName() const{ return m_workflowName; } /** *

The name of the workflow.

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

The name of the workflow.

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

The name of the workflow.

*/ inline void SetWorkflowName(const char* value) { m_workflowName.assign(value); } /** *

The name of the workflow.

*/ inline CreateMatchingWorkflowResult& WithWorkflowName(const Aws::String& value) { SetWorkflowName(value); return *this;} /** *

The name of the workflow.

*/ inline CreateMatchingWorkflowResult& WithWorkflowName(Aws::String&& value) { SetWorkflowName(std::move(value)); return *this;} /** *

The name of the workflow.

*/ inline CreateMatchingWorkflowResult& WithWorkflowName(const char* value) { SetWorkflowName(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 CreateMatchingWorkflowResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateMatchingWorkflowResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateMatchingWorkflowResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_description; IncrementalRunConfig m_incrementalRunConfig; Aws::Vector m_inputSourceConfig; Aws::Vector m_outputSourceConfig; ResolutionTechniques m_resolutionTechniques; Aws::String m_roleArn; Aws::String m_workflowArn; Aws::String m_workflowName; Aws::String m_requestId; }; } // namespace Model } // namespace EntityResolution } // namespace Aws