pub struct UpdatePipelineResponse {
pub pipeline: Option<Pipeline>,
pub warnings: Option<Vec<Warning>>,
}
Expand description
When you update a pipeline, Elastic Transcoder returns the values that you specified in the request.
Fields§
§pipeline: Option<Pipeline>
The pipeline updated by this UpdatePipelineResponse
call.
warnings: Option<Vec<Warning>>
Elastic Transcoder returns a warning if the resources used by your pipeline are not in the same region as the pipeline.
Using resources in the same region, such as your Amazon S3 buckets, Amazon SNS notification topics, and AWS KMS key, reduces processing time and prevents cross-regional charges.
Trait Implementations§
Source§impl Clone for UpdatePipelineResponse
impl Clone for UpdatePipelineResponse
Source§fn clone(&self) -> UpdatePipelineResponse
fn clone(&self) -> UpdatePipelineResponse
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 UpdatePipelineResponse
impl Debug for UpdatePipelineResponse
Source§impl Default for UpdatePipelineResponse
impl Default for UpdatePipelineResponse
Source§fn default() -> UpdatePipelineResponse
fn default() -> UpdatePipelineResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdatePipelineResponse
impl<'de> Deserialize<'de> for UpdatePipelineResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for UpdatePipelineResponse
impl PartialEq for UpdatePipelineResponse
impl StructuralPartialEq for UpdatePipelineResponse
Auto Trait Implementations§
impl Freeze for UpdatePipelineResponse
impl RefUnwindSafe for UpdatePipelineResponse
impl Send for UpdatePipelineResponse
impl Sync for UpdatePipelineResponse
impl Unpin for UpdatePipelineResponse
impl UnwindSafe for UpdatePipelineResponse
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