CfnHarvestJobMixinProps
- class aws_cdk.cfn_property_mixins.aws_mediapackage.CfnHarvestJobMixinProps(*, end_time=None, id=None, origin_endpoint_id=None, s3_destination=None, start_time=None)
Bases:
objectProperties for CfnHarvestJobPropsMixin.
- Parameters:
end_time (
Optional[str]) – The end of the time-window which will be harvested.id (
Optional[str]) – 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 (
Optional[str]) – The ID of the OriginEndpoint that the HarvestJob will harvest from.s3_destination (
Union[IResolvable,S3DestinationProperty,Dict[str,Any],None]) – Configuration parameters for where in an S3 bucket to place the harvested content.start_time (
Optional[str]) – The start of the time-window which will be harvested.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.cfn_property_mixins import aws_mediapackage as mediapackage cfn_harvest_job_mixin_props = mediapackage.CfnHarvestJobMixinProps( end_time="endTime", id="id", origin_endpoint_id="originEndpointId", s3_destination=mediapackage.CfnHarvestJobPropsMixin.S3DestinationProperty( bucket_name="bucketName", manifest_key="manifestKey", role_arn="roleArn" ), start_time="startTime" )
Attributes
- end_time
The end of the time-window which will be harvested.
- id
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
The ID of the OriginEndpoint that the HarvestJob will harvest from.
- s3_destination
Configuration parameters for where in an S3 bucket to place the harvested content.
- start_time
The start of the time-window which will be harvested.