/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace EntityResolution { namespace Model { /** *

A list of MatchingWorkflowSummary objects, each of which contain * the fields WorkflowName, WorkflowArn, * CreatedAt, UpdatedAt.

See Also:

AWS * API Reference

*/ class MatchingWorkflowSummary { public: AWS_ENTITYRESOLUTION_API MatchingWorkflowSummary(); AWS_ENTITYRESOLUTION_API MatchingWorkflowSummary(Aws::Utils::Json::JsonView jsonValue); AWS_ENTITYRESOLUTION_API MatchingWorkflowSummary& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_ENTITYRESOLUTION_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The timestamp of when the workflow was created.

*/ inline const Aws::Utils::DateTime& GetCreatedAt() const{ return m_createdAt; } /** *

The timestamp of when the workflow was created.

*/ inline bool CreatedAtHasBeenSet() const { return m_createdAtHasBeenSet; } /** *

The timestamp of when the workflow was created.

*/ inline void SetCreatedAt(const Aws::Utils::DateTime& value) { m_createdAtHasBeenSet = true; m_createdAt = value; } /** *

The timestamp of when the workflow was created.

*/ inline void SetCreatedAt(Aws::Utils::DateTime&& value) { m_createdAtHasBeenSet = true; m_createdAt = std::move(value); } /** *

The timestamp of when the workflow was created.

*/ inline MatchingWorkflowSummary& WithCreatedAt(const Aws::Utils::DateTime& value) { SetCreatedAt(value); return *this;} /** *

The timestamp of when the workflow was created.

*/ inline MatchingWorkflowSummary& WithCreatedAt(Aws::Utils::DateTime&& value) { SetCreatedAt(std::move(value)); return *this;} /** *

The timestamp of when the workflow was last updated.

*/ inline const Aws::Utils::DateTime& GetUpdatedAt() const{ return m_updatedAt; } /** *

The timestamp of when the workflow was last updated.

*/ inline bool UpdatedAtHasBeenSet() const { return m_updatedAtHasBeenSet; } /** *

The timestamp of when the workflow was last updated.

*/ inline void SetUpdatedAt(const Aws::Utils::DateTime& value) { m_updatedAtHasBeenSet = true; m_updatedAt = value; } /** *

The timestamp of when the workflow was last updated.

*/ inline void SetUpdatedAt(Aws::Utils::DateTime&& value) { m_updatedAtHasBeenSet = true; m_updatedAt = std::move(value); } /** *

The timestamp of when the workflow was last updated.

*/ inline MatchingWorkflowSummary& WithUpdatedAt(const Aws::Utils::DateTime& value) { SetUpdatedAt(value); return *this;} /** *

The timestamp of when the workflow was last updated.

*/ inline MatchingWorkflowSummary& WithUpdatedAt(Aws::Utils::DateTime&& value) { SetUpdatedAt(std::move(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 bool WorkflowArnHasBeenSet() const { return m_workflowArnHasBeenSet; } /** *

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

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

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

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

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

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

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

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

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

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

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

*/ inline MatchingWorkflowSummary& 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 bool WorkflowNameHasBeenSet() const { return m_workflowNameHasBeenSet; } /** *

The name of the workflow.

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

The name of the workflow.

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

The name of the workflow.

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

The name of the workflow.

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

The name of the workflow.

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

The name of the workflow.

*/ inline MatchingWorkflowSummary& WithWorkflowName(const char* value) { SetWorkflowName(value); return *this;} private: Aws::Utils::DateTime m_createdAt; bool m_createdAtHasBeenSet = false; Aws::Utils::DateTime m_updatedAt; bool m_updatedAtHasBeenSet = false; Aws::String m_workflowArn; bool m_workflowArnHasBeenSet = false; Aws::String m_workflowName; bool m_workflowNameHasBeenSet = false; }; } // namespace Model } // namespace EntityResolution } // namespace Aws