interface CfnHarvestJobProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaPackage.CfnHarvestJobProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediapackage#CfnHarvestJobProps |
Java | software.amazon.awscdk.services.mediapackage.CfnHarvestJobProps |
Python | aws_cdk.aws_mediapackage.CfnHarvestJobProps |
TypeScript | aws-cdk-lib » aws_mediapackage » CfnHarvestJobProps |
Properties for defining a CfnHarvestJob.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediapackage as mediapackage } from 'aws-cdk-lib';
const cfnHarvestJobProps: mediapackage.CfnHarvestJobProps = {
endTime: 'endTime',
id: 'id',
originEndpointId: 'originEndpointId',
s3Destination: {
bucketName: 'bucketName',
manifestKey: 'manifestKey',
roleArn: 'roleArn',
},
startTime: 'startTime',
};
Properties
| Name | Type | Description |
|---|---|---|
| end | string | The end of the time-window which will be harvested. |
| id | string | The ID of the HarvestJob. |
| origin | string | The ID of the OriginEndpoint that the HarvestJob will harvest from. |
| s3 | IResolvable | S3 | Configuration parameters for where in an S3 bucket to place the harvested content. |
| start | string | The start of the time-window which will be harvested. |
endTime
Type:
string
The end of the time-window which will be harvested.
id
Type:
string
The ID of the HarvestJob.
The ID must be unique within the region and it cannot be changed after the HarvestJob is submitted.
originEndpointId
Type:
string
The ID of the OriginEndpoint that the HarvestJob will harvest from.
s3Destination
Type:
IResolvable | S3
Configuration parameters for where in an S3 bucket to place the harvested content.
startTime
Type:
string
The start of the time-window which will be harvested.

.NET
Go
Java
Python
TypeScript