pub struct CreateHarvestJobRequest {
pub end_time: String,
pub id: String,
pub origin_endpoint_id: String,
pub s3_destination: S3Destination,
pub start_time: String,
}Expand description
Configuration parameters used to create a new HarvestJob.
Fields§
§end_time: StringThe end of the time-window which will be harvested
id: StringThe 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: StringThe ID of the OriginEndpoint that the HarvestJob will harvest from. This cannot be changed after the HarvestJob is submitted.
s3_destination: S3Destination§start_time: StringThe start of the time-window which will be harvested
Trait Implementations§
Source§impl Clone for CreateHarvestJobRequest
impl Clone for CreateHarvestJobRequest
Source§fn clone(&self) -> CreateHarvestJobRequest
fn clone(&self) -> CreateHarvestJobRequest
Returns a duplicate 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 CreateHarvestJobRequest
impl Debug for CreateHarvestJobRequest
Source§impl Default for CreateHarvestJobRequest
impl Default for CreateHarvestJobRequest
Source§fn default() -> CreateHarvestJobRequest
fn default() -> CreateHarvestJobRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateHarvestJobRequest
impl PartialEq for CreateHarvestJobRequest
Source§impl Serialize for CreateHarvestJobRequest
impl Serialize for CreateHarvestJobRequest
impl StructuralPartialEq for CreateHarvestJobRequest
Auto Trait Implementations§
impl Freeze for CreateHarvestJobRequest
impl RefUnwindSafe for CreateHarvestJobRequest
impl Send for CreateHarvestJobRequest
impl Sync for CreateHarvestJobRequest
impl Unpin for CreateHarvestJobRequest
impl UnwindSafe for CreateHarvestJobRequest
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