Struct aws_sdk_imagebuilder::types::WorkflowStepExecution
source · #[non_exhaustive]pub struct WorkflowStepExecution {
pub step_execution_id: Option<String>,
pub image_build_version_arn: Option<String>,
pub workflow_execution_id: Option<String>,
pub workflow_build_version_arn: Option<String>,
pub name: Option<String>,
pub action: Option<String>,
pub start_time: Option<String>,
}
Expand description
Contains runtime details for an instance of a workflow that ran for the associated image build version.
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.step_execution_id: Option<String>
Uniquely identifies the workflow step that ran for the associated image build version.
image_build_version_arn: Option<String>
The Amazon Resource Name (ARN) of the image build version that ran the workflow.
workflow_execution_id: Option<String>
Uniquely identifies the runtime instance of the workflow that contains the workflow step that ran for the associated image build version.
workflow_build_version_arn: Option<String>
The ARN of the workflow resource that ran.
name: Option<String>
The name of the workflow step.
action: Option<String>
The name of the step action.
start_time: Option<String>
The timestamp when the workflow step started.
Implementations§
source§impl WorkflowStepExecution
impl WorkflowStepExecution
sourcepub fn step_execution_id(&self) -> Option<&str>
pub fn step_execution_id(&self) -> Option<&str>
Uniquely identifies the workflow step that ran for the associated image build version.
sourcepub fn image_build_version_arn(&self) -> Option<&str>
pub fn image_build_version_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the image build version that ran the workflow.
sourcepub fn workflow_execution_id(&self) -> Option<&str>
pub fn workflow_execution_id(&self) -> Option<&str>
Uniquely identifies the runtime instance of the workflow that contains the workflow step that ran for the associated image build version.
sourcepub fn workflow_build_version_arn(&self) -> Option<&str>
pub fn workflow_build_version_arn(&self) -> Option<&str>
The ARN of the workflow resource that ran.
sourcepub fn start_time(&self) -> Option<&str>
pub fn start_time(&self) -> Option<&str>
The timestamp when the workflow step started.
source§impl WorkflowStepExecution
impl WorkflowStepExecution
sourcepub fn builder() -> WorkflowStepExecutionBuilder
pub fn builder() -> WorkflowStepExecutionBuilder
Creates a new builder-style object to manufacture WorkflowStepExecution
.
Trait Implementations§
source§impl Clone for WorkflowStepExecution
impl Clone for WorkflowStepExecution
source§fn clone(&self) -> WorkflowStepExecution
fn clone(&self) -> WorkflowStepExecution
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for WorkflowStepExecution
impl Debug for WorkflowStepExecution
source§impl PartialEq for WorkflowStepExecution
impl PartialEq for WorkflowStepExecution
source§fn eq(&self, other: &WorkflowStepExecution) -> bool
fn eq(&self, other: &WorkflowStepExecution) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for WorkflowStepExecution
Auto Trait Implementations§
impl Freeze for WorkflowStepExecution
impl RefUnwindSafe for WorkflowStepExecution
impl Send for WorkflowStepExecution
impl Sync for WorkflowStepExecution
impl Unpin for WorkflowStepExecution
impl UnwindSafe for WorkflowStepExecution
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