Struct aws_sdk_datapipeline::input::SetStatusInput [−][src]
#[non_exhaustive]pub struct SetStatusInput {
pub pipeline_id: Option<String>,
pub object_ids: Option<Vec<String>>,
pub status: Option<String>,
}
Expand description
Contains the parameters for SetStatus.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.pipeline_id: Option<String>
The ID of the pipeline that contains the objects.
object_ids: Option<Vec<String>>
The IDs of the objects. The corresponding objects can be either physical or components, but not a mix of both types.
status: Option<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
.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SetStatus, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SetStatus, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<SetStatus
>
Creates a new builder-style object to manufacture SetStatusInput
The ID of the pipeline that contains the objects.
The IDs of the objects. The corresponding objects can be either physical or components, but not a mix of both types.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for SetStatusInput
impl Send for SetStatusInput
impl Sync for SetStatusInput
impl Unpin for SetStatusInput
impl UnwindSafe for SetStatusInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more