#[non_exhaustive]pub struct CreateWorkflowOutput {
pub arn: Option<String>,
pub id: Option<String>,
pub status: Option<WorkflowStatus>,
pub tags: Option<HashMap<String, String>>,
/* private fields */
}
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.arn: Option<String>
The workflow's ARN.
id: Option<String>
The workflow's ID.
status: Option<WorkflowStatus>
The workflow's status.
The workflow's tags.
Implementations§
source§impl CreateWorkflowOutput
impl CreateWorkflowOutput
sourcepub fn builder() -> CreateWorkflowOutputBuilder
pub fn builder() -> CreateWorkflowOutputBuilder
Creates a new builder-style object to manufacture CreateWorkflowOutput
.
Trait Implementations§
source§impl Clone for CreateWorkflowOutput
impl Clone for CreateWorkflowOutput
source§fn clone(&self) -> CreateWorkflowOutput
fn clone(&self) -> CreateWorkflowOutput
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 CreateWorkflowOutput
impl Debug for CreateWorkflowOutput
source§impl PartialEq<CreateWorkflowOutput> for CreateWorkflowOutput
impl PartialEq<CreateWorkflowOutput> for CreateWorkflowOutput
source§fn eq(&self, other: &CreateWorkflowOutput) -> bool
fn eq(&self, other: &CreateWorkflowOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateWorkflowOutput
impl RequestId for CreateWorkflowOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for CreateWorkflowOutput
Auto Trait Implementations§
impl RefUnwindSafe for CreateWorkflowOutput
impl Send for CreateWorkflowOutput
impl Sync for CreateWorkflowOutput
impl Unpin for CreateWorkflowOutput
impl UnwindSafe for CreateWorkflowOutput
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