#[non_exhaustive]pub struct IdMappingWorkflowSummary {
pub workflow_name: String,
pub workflow_arn: String,
pub created_at: DateTime,
pub updated_at: DateTime,
}
Expand description
A list of IdMappingWorkflowSummary
objects, each of which contain the fields WorkflowName
, WorkflowArn
, CreatedAt
, and 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: String
The name of the workflow.
workflow_arn: String
The ARN (Amazon Resource Name) that Entity Resolution generated for the IdMappingWorkflow
.
created_at: DateTime
The timestamp of when the workflow was created.
updated_at: DateTime
The timestamp of when the workflow was last updated.
Implementations§
source§impl IdMappingWorkflowSummary
impl IdMappingWorkflowSummary
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 IdMappingWorkflow
.
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.
source§impl IdMappingWorkflowSummary
impl IdMappingWorkflowSummary
sourcepub fn builder() -> IdMappingWorkflowSummaryBuilder
pub fn builder() -> IdMappingWorkflowSummaryBuilder
Creates a new builder-style object to manufacture IdMappingWorkflowSummary
.
Trait Implementations§
source§impl Clone for IdMappingWorkflowSummary
impl Clone for IdMappingWorkflowSummary
source§fn clone(&self) -> IdMappingWorkflowSummary
fn clone(&self) -> IdMappingWorkflowSummary
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 IdMappingWorkflowSummary
impl Debug for IdMappingWorkflowSummary
source§impl PartialEq for IdMappingWorkflowSummary
impl PartialEq for IdMappingWorkflowSummary
source§fn eq(&self, other: &IdMappingWorkflowSummary) -> bool
fn eq(&self, other: &IdMappingWorkflowSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for IdMappingWorkflowSummary
Auto Trait Implementations§
impl RefUnwindSafe for IdMappingWorkflowSummary
impl Send for IdMappingWorkflowSummary
impl Sync for IdMappingWorkflowSummary
impl Unpin for IdMappingWorkflowSummary
impl UnwindSafe for IdMappingWorkflowSummary
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
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>
Creates a shared type from an unshared type.