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