#[non_exhaustive]pub struct MatchingWorkflowSummary {
pub workflow_name: Option<String>,
pub workflow_arn: Option<String>,
pub created_at: Option<DateTime>,
pub updated_at: Option<DateTime>,
}
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
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.workflow_name: Option<String>
The name of the workflow.
workflow_arn: Option<String>
The ARN (Amazon Resource Name) that Entity Resolution generated for the MatchingWorkflow
.
created_at: Option<DateTime>
The timestamp of when the workflow was created.
updated_at: Option<DateTime>
The timestamp of when the workflow was last updated.
Implementations§
source§impl MatchingWorkflowSummary
impl MatchingWorkflowSummary
sourcepub fn workflow_name(&self) -> Option<&str>
pub fn workflow_name(&self) -> Option<&str>
The name of the workflow.
sourcepub fn workflow_arn(&self) -> Option<&str>
pub fn workflow_arn(&self) -> Option<&str>
The ARN (Amazon Resource Name) that Entity Resolution generated for the MatchingWorkflow
.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The timestamp of when the workflow was created.
sourcepub fn updated_at(&self) -> Option<&DateTime>
pub fn updated_at(&self) -> Option<&DateTime>
The timestamp of when the workflow was last updated.
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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
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
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for MatchingWorkflowSummary
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more