#[non_exhaustive]pub struct CreateWorkflowInput { /* private fields */ }
Implementations§
source§impl CreateWorkflowInput
impl CreateWorkflowInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description for the workflow.
sourcepub fn engine(&self) -> Option<&WorkflowEngine>
pub fn engine(&self) -> Option<&WorkflowEngine>
An engine for the workflow.
sourcepub fn definition_zip(&self) -> Option<&Blob>
pub fn definition_zip(&self) -> Option<&Blob>
A ZIP archive for the workflow.
sourcepub fn definition_uri(&self) -> Option<&str>
pub fn definition_uri(&self) -> Option<&str>
The URI of a definition for the workflow.
sourcepub fn parameter_template(&self) -> Option<&HashMap<String, WorkflowParameter>>
pub fn parameter_template(&self) -> Option<&HashMap<String, WorkflowParameter>>
A parameter template for the workflow.
sourcepub fn storage_capacity(&self) -> Option<i32>
pub fn storage_capacity(&self) -> Option<i32>
A storage capacity for the workflow in gigabytes.
Tags for the workflow.
sourcepub fn request_id(&self) -> Option<&str>
pub fn request_id(&self) -> Option<&str>
To ensure that requests don't run multiple times, specify a unique ID for each request.
source§impl CreateWorkflowInput
impl CreateWorkflowInput
sourcepub fn builder() -> CreateWorkflowInputBuilder
pub fn builder() -> CreateWorkflowInputBuilder
Creates a new builder-style object to manufacture CreateWorkflowInput
.
source§impl CreateWorkflowInput
impl CreateWorkflowInput
sourcepub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<CreateWorkflow, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( self, _config: &Config ) -> Result<Operation<CreateWorkflow, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateWorkflow
>
Trait Implementations§
source§impl Clone for CreateWorkflowInput
impl Clone for CreateWorkflowInput
source§fn clone(&self) -> CreateWorkflowInput
fn clone(&self) -> CreateWorkflowInput
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 CreateWorkflowInput
impl Debug for CreateWorkflowInput
source§impl PartialEq<CreateWorkflowInput> for CreateWorkflowInput
impl PartialEq<CreateWorkflowInput> for CreateWorkflowInput
source§fn eq(&self, other: &CreateWorkflowInput) -> bool
fn eq(&self, other: &CreateWorkflowInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.