pub struct UpdateFlowTemplateRequest {
pub compatible_namespace_version: Option<i64>,
pub definition: DefinitionDocument,
pub id: String,
}
Fields§
§compatible_namespace_version: Option<i64>
The version of the user's namespace.
If no value is specified, the latest version is used by default. Use the GetFlowTemplateRevisions
if you want to find earlier revisions of the flow to update.
definition: DefinitionDocument
The DefinitionDocument
that contains the updated workflow definition.
id: String
The ID of the workflow to be updated.
The ID should be in the following format.
urn:tdm:REGION/ACCOUNT ID/default:workflow:WORKFLOWNAME
Trait Implementations§
Source§impl Clone for UpdateFlowTemplateRequest
impl Clone for UpdateFlowTemplateRequest
Source§fn clone(&self) -> UpdateFlowTemplateRequest
fn clone(&self) -> UpdateFlowTemplateRequest
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 UpdateFlowTemplateRequest
impl Debug for UpdateFlowTemplateRequest
Source§impl Default for UpdateFlowTemplateRequest
impl Default for UpdateFlowTemplateRequest
Source§fn default() -> UpdateFlowTemplateRequest
fn default() -> UpdateFlowTemplateRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for UpdateFlowTemplateRequest
Auto Trait Implementations§
impl Freeze for UpdateFlowTemplateRequest
impl RefUnwindSafe for UpdateFlowTemplateRequest
impl Send for UpdateFlowTemplateRequest
impl Sync for UpdateFlowTemplateRequest
impl Unpin for UpdateFlowTemplateRequest
impl UnwindSafe for UpdateFlowTemplateRequest
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