Struct rusoto_datapipeline::SetStatusInput
[−]
[src]
pub struct SetStatusInput { pub object_ids: Vec<String>, pub pipeline_id: String, pub status: String, }
Contains the parameters for SetStatus.
Fields
object_ids: Vec<String>
The IDs of the objects. The corresponding objects can be either physical or components, but not a mix of both types.
pipeline_id: String
The ID of the pipeline that contains the objects.
status: String
The status to be set on all the objects specified in objectIds
. For components, use PAUSE
or RESUME
. For instances, use TRY_CANCEL
, RERUN
, or MARK_FINISHED
.
Trait Implementations
impl Default for SetStatusInput
[src]
fn default() -> SetStatusInput
[src]
Returns the "default value" for a type. Read more
impl Debug for SetStatusInput
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl Clone for SetStatusInput
[src]
fn clone(&self) -> SetStatusInput
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more