Struct aws_sdk_mediapackage::input::CreateHarvestJobInput [−][src]
#[non_exhaustive]pub struct CreateHarvestJobInput {
pub end_time: Option<String>,
pub id: Option<String>,
pub origin_endpoint_id: Option<String>,
pub s3_destination: Option<S3Destination>,
pub start_time: Option<String>,
}
Expand description
Configuration parameters used to create a new HarvestJob.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.end_time: Option<String>
The end of the time-window which will be harvested
id: Option<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: Option<String>
The ID of the OriginEndpoint that the HarvestJob will harvest from. This cannot be changed after the HarvestJob is submitted.
s3_destination: Option<S3Destination>
Configuration parameters for where in an S3 bucket to place the harvested content
start_time: Option<String>
The start of the time-window which will be harvested
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateHarvestJob, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateHarvestJob, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateHarvestJob
>
Creates a new builder-style object to manufacture CreateHarvestJobInput
The ID of the HarvestJob. The ID must be unique within the region and it cannot be changed after the HarvestJob is submitted
The ID of the OriginEndpoint that the HarvestJob will harvest from. This cannot be changed after the HarvestJob is submitted.
Configuration parameters for where in an S3 bucket to place the harvested content
The start of the time-window which will be harvested
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CreateHarvestJobInput
impl Send for CreateHarvestJobInput
impl Sync for CreateHarvestJobInput
impl Unpin for CreateHarvestJobInput
impl UnwindSafe for CreateHarvestJobInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more