pub struct CreateWorkflowRequest {
pub default_run_properties: Option<HashMap<String, String>>,
pub description: Option<String>,
pub name: String,
pub tags: Option<HashMap<String, String>>,
}
Fields§
§default_run_properties: Option<HashMap<String, String>>
A collection of properties to be used as part of each execution of the workflow.
description: Option<String>
A description of the workflow.
name: String
The name to be assigned to the workflow. It should be unique within your account.
The tags to be used with this workflow.
Trait Implementations§
Source§impl Clone for CreateWorkflowRequest
impl Clone for CreateWorkflowRequest
Source§fn clone(&self) -> CreateWorkflowRequest
fn clone(&self) -> CreateWorkflowRequest
Returns a duplicate 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 CreateWorkflowRequest
impl Debug for CreateWorkflowRequest
Source§impl Default for CreateWorkflowRequest
impl Default for CreateWorkflowRequest
Source§fn default() -> CreateWorkflowRequest
fn default() -> CreateWorkflowRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateWorkflowRequest
impl PartialEq for CreateWorkflowRequest
Source§impl Serialize for CreateWorkflowRequest
impl Serialize for CreateWorkflowRequest
impl StructuralPartialEq for CreateWorkflowRequest
Auto Trait Implementations§
impl Freeze for CreateWorkflowRequest
impl RefUnwindSafe for CreateWorkflowRequest
impl Send for CreateWorkflowRequest
impl Sync for CreateWorkflowRequest
impl Unpin for CreateWorkflowRequest
impl UnwindSafe for CreateWorkflowRequest
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