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 ==
.