Struct aws_sdk_imagebuilder::operation::list_workflow_executions::ListWorkflowExecutionsOutput
source · #[non_exhaustive]pub struct ListWorkflowExecutionsOutput {
pub request_id: Option<String>,
pub workflow_executions: Option<Vec<WorkflowExecutionMetadata>>,
pub image_build_version_arn: Option<String>,
pub message: Option<String>,
pub next_token: Option<String>,
/* private fields */
}
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.request_id: Option<String>
The request ID that uniquely identifies this request.
workflow_executions: Option<Vec<WorkflowExecutionMetadata>>
Contains an array of runtime details that represents each time a workflow ran for the requested image build version.
image_build_version_arn: Option<String>
The resource ARN of the image build version for which you requested a list of workflow runtime details.
message: Option<String>
The output message from the list action, if applicable.
next_token: Option<String>
The next token used for paginated responses. When this field isn't empty, there are additional elements that the service hasn't included in this request. Use this token with the next request to retrieve additional objects.
Implementations§
source§impl ListWorkflowExecutionsOutput
impl ListWorkflowExecutionsOutput
sourcepub fn request_id(&self) -> Option<&str>
pub fn request_id(&self) -> Option<&str>
The request ID that uniquely identifies this request.
sourcepub fn workflow_executions(&self) -> &[WorkflowExecutionMetadata]
pub fn workflow_executions(&self) -> &[WorkflowExecutionMetadata]
Contains an array of runtime details that represents each time a workflow ran for the requested image build version.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .workflow_executions.is_none()
.
sourcepub fn image_build_version_arn(&self) -> Option<&str>
pub fn image_build_version_arn(&self) -> Option<&str>
The resource ARN of the image build version for which you requested a list of workflow runtime details.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The next token used for paginated responses. When this field isn't empty, there are additional elements that the service hasn't included in this request. Use this token with the next request to retrieve additional objects.
source§impl ListWorkflowExecutionsOutput
impl ListWorkflowExecutionsOutput
sourcepub fn builder() -> ListWorkflowExecutionsOutputBuilder
pub fn builder() -> ListWorkflowExecutionsOutputBuilder
Creates a new builder-style object to manufacture ListWorkflowExecutionsOutput
.
Trait Implementations§
source§impl Clone for ListWorkflowExecutionsOutput
impl Clone for ListWorkflowExecutionsOutput
source§fn clone(&self) -> ListWorkflowExecutionsOutput
fn clone(&self) -> ListWorkflowExecutionsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListWorkflowExecutionsOutput
impl Debug for ListWorkflowExecutionsOutput
source§impl PartialEq for ListWorkflowExecutionsOutput
impl PartialEq for ListWorkflowExecutionsOutput
source§fn eq(&self, other: &ListWorkflowExecutionsOutput) -> bool
fn eq(&self, other: &ListWorkflowExecutionsOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ListWorkflowExecutionsOutput
impl RequestId for ListWorkflowExecutionsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for ListWorkflowExecutionsOutput
Auto Trait Implementations§
impl Freeze for ListWorkflowExecutionsOutput
impl RefUnwindSafe for ListWorkflowExecutionsOutput
impl Send for ListWorkflowExecutionsOutput
impl Sync for ListWorkflowExecutionsOutput
impl Unpin for ListWorkflowExecutionsOutput
impl UnwindSafe for ListWorkflowExecutionsOutput
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