pub struct AddJobFlowStepsInput {
pub job_flow_id: String,
pub steps: Vec<StepConfig>,
}
Expand description
The input argument to the AddJobFlowSteps operation.
Fields§
§job_flow_id: String
A string that uniquely identifies the job flow. This identifier is returned by RunJobFlow and can also be obtained from ListClusters.
steps: Vec<StepConfig>
A list of StepConfig to be executed by the job flow.
Trait Implementations§
Source§impl Clone for AddJobFlowStepsInput
impl Clone for AddJobFlowStepsInput
Source§fn clone(&self) -> AddJobFlowStepsInput
fn clone(&self) -> AddJobFlowStepsInput
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 AddJobFlowStepsInput
impl Debug for AddJobFlowStepsInput
Source§impl Default for AddJobFlowStepsInput
impl Default for AddJobFlowStepsInput
Source§fn default() -> AddJobFlowStepsInput
fn default() -> AddJobFlowStepsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for AddJobFlowStepsInput
impl PartialEq for AddJobFlowStepsInput
Source§impl Serialize for AddJobFlowStepsInput
impl Serialize for AddJobFlowStepsInput
impl StructuralPartialEq for AddJobFlowStepsInput
Auto Trait Implementations§
impl Freeze for AddJobFlowStepsInput
impl RefUnwindSafe for AddJobFlowStepsInput
impl Send for AddJobFlowStepsInput
impl Sync for AddJobFlowStepsInput
impl Unpin for AddJobFlowStepsInput
impl UnwindSafe for AddJobFlowStepsInput
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