pub struct ReadPipelineResponse {
pub pipeline: Option<Pipeline>,
pub warnings: Option<Vec<Warning>>,
}
Expand description
The ReadPipelineResponse
structure.
Fields§
§pipeline: Option<Pipeline>
A section of the response body that provides information about the pipeline.
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 ReadPipelineResponse
impl Clone for ReadPipelineResponse
Source§fn clone(&self) -> ReadPipelineResponse
fn clone(&self) -> ReadPipelineResponse
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 ReadPipelineResponse
impl Debug for ReadPipelineResponse
Source§impl Default for ReadPipelineResponse
impl Default for ReadPipelineResponse
Source§fn default() -> ReadPipelineResponse
fn default() -> ReadPipelineResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReadPipelineResponse
impl<'de> Deserialize<'de> for ReadPipelineResponse
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 ReadPipelineResponse
impl PartialEq for ReadPipelineResponse
impl StructuralPartialEq for ReadPipelineResponse
Auto Trait Implementations§
impl Freeze for ReadPipelineResponse
impl RefUnwindSafe for ReadPipelineResponse
impl Send for ReadPipelineResponse
impl Sync for ReadPipelineResponse
impl Unpin for ReadPipelineResponse
impl UnwindSafe for ReadPipelineResponse
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