/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A list of MatchingWorkflowSummary
objects, each of which contain
* the fields WorkflowName
, WorkflowArn
,
* CreatedAt
, UpdatedAt
.See Also:
AWS
* API Reference
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
.
The ARN (Amazon Resource Name) that Entity Resolution generated for the
* MatchingWorkflow
.
The ARN (Amazon Resource Name) that Entity Resolution generated for the
* MatchingWorkflow
.
The ARN (Amazon Resource Name) that Entity Resolution generated for the
* MatchingWorkflow
.
The ARN (Amazon Resource Name) that Entity Resolution generated for the
* MatchingWorkflow
.
The ARN (Amazon Resource Name) that Entity Resolution generated for the
* MatchingWorkflow
.
The ARN (Amazon Resource Name) that Entity Resolution generated for the
* MatchingWorkflow
.
The ARN (Amazon Resource Name) that Entity Resolution generated for the
* MatchingWorkflow
.
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