Struct rusoto_elastictranscoder::UpdatePipelineStatusRequest[][src]

pub struct UpdatePipelineStatusRequest {
    pub id: String,
    pub status: String,
}

The UpdatePipelineStatusRequest structure.

Fields

The identifier of the pipeline to update.

The desired status of the pipeline:

  • Active: The pipeline is processing jobs.

  • Paused: The pipeline is not currently processing jobs.

Trait Implementations

impl Default for UpdatePipelineStatusRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for UpdatePipelineStatusRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdatePipelineStatusRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdatePipelineStatusRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations