#[non_exhaustive]pub struct MatchingWorkflowSummary {
pub workflow_name: String,
pub workflow_arn: String,
pub created_at: DateTime,
pub updated_at: DateTime,
pub resolution_type: ResolutionType,
}
Expand description
A list of MatchingWorkflowSummary
objects, each of which contain the fields WorkflowName
, WorkflowArn
, CreatedAt
, UpdatedAt
.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.workflow_name: String
The name of the workflow.
workflow_arn: String
The ARN (Amazon Resource Name) that Entity Resolution generated for the MatchingWorkflow
.
created_at: DateTime
The timestamp of when the workflow was created.
updated_at: DateTime
The timestamp of when the workflow was last updated.
resolution_type: ResolutionType
The method that has been specified for data matching, either using matching provided by Entity Resolution or through a provider service.
Implementations§
source§impl MatchingWorkflowSummary
impl MatchingWorkflowSummary
sourcepub fn workflow_name(&self) -> &str
pub fn workflow_name(&self) -> &str
The name of the workflow.
sourcepub fn workflow_arn(&self) -> &str
pub fn workflow_arn(&self) -> &str
The ARN (Amazon Resource Name) that Entity Resolution generated for the MatchingWorkflow
.
sourcepub fn created_at(&self) -> &DateTime
pub fn created_at(&self) -> &DateTime
The timestamp of when the workflow was created.
sourcepub fn updated_at(&self) -> &DateTime
pub fn updated_at(&self) -> &DateTime
The timestamp of when the workflow was last updated.
sourcepub fn resolution_type(&self) -> &ResolutionType
pub fn resolution_type(&self) -> &ResolutionType
The method that has been specified for data matching, either using matching provided by Entity Resolution or through a provider service.
source§impl MatchingWorkflowSummary
impl MatchingWorkflowSummary
sourcepub fn builder() -> MatchingWorkflowSummaryBuilder
pub fn builder() -> MatchingWorkflowSummaryBuilder
Creates a new builder-style object to manufacture MatchingWorkflowSummary
.
Trait Implementations§
source§impl Clone for MatchingWorkflowSummary
impl Clone for MatchingWorkflowSummary
source§fn clone(&self) -> MatchingWorkflowSummary
fn clone(&self) -> MatchingWorkflowSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for MatchingWorkflowSummary
impl Debug for MatchingWorkflowSummary
source§impl PartialEq for MatchingWorkflowSummary
impl PartialEq for MatchingWorkflowSummary
source§fn eq(&self, other: &MatchingWorkflowSummary) -> bool
fn eq(&self, other: &MatchingWorkflowSummary) -> bool
self
and other
values to be equal, and is used
by ==
.