[][src]Struct rusoto_mediapackage::CreateHarvestJobRequest

pub struct CreateHarvestJobRequest {
    pub end_time: String,
    pub id: String,
    pub origin_endpoint_id: String,
    pub s3_destination: S3Destination,
    pub start_time: String,
}

Configuration parameters used to create a new HarvestJob.

Fields

end_time: String

The end of the time-window which will be harvested

id: String

The ID of the HarvestJob. The ID must be unique within the region and it cannot be changed after the HarvestJob is submitted

origin_endpoint_id: String

The ID of the OriginEndpoint that the HarvestJob will harvest from. This cannot be changed after the HarvestJob is submitted.

s3_destination: S3Destinationstart_time: String

The start of the time-window which will be harvested

Trait Implementations

impl Clone for CreateHarvestJobRequest[src]

impl Debug for CreateHarvestJobRequest[src]

impl Default for CreateHarvestJobRequest[src]

impl PartialEq<CreateHarvestJobRequest> for CreateHarvestJobRequest[src]

impl Serialize for CreateHarvestJobRequest[src]

impl StructuralPartialEq for CreateHarvestJobRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.