#[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 ==
.impl StructuralPartialEq for MatchingWorkflowSummary
Auto Trait Implementations§
impl Freeze for MatchingWorkflowSummary
impl RefUnwindSafe for MatchingWorkflowSummary
impl Send for MatchingWorkflowSummary
impl Sync for MatchingWorkflowSummary
impl Unpin for MatchingWorkflowSummary
impl UnwindSafe for MatchingWorkflowSummary
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more