interface CfnHarvestJobMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaPackage.CfnHarvestJobMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediapackage#CfnHarvestJobMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediapackage.CfnHarvestJobMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_mediapackage.CfnHarvestJobMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediapackage » CfnHarvestJobMixinProps |
Properties for CfnHarvestJobPropsMixin.
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/cfn-property-mixins';
const cfnHarvestJobMixinProps: mediapackage.CfnHarvestJobMixinProps = {
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
(optional)
The end of the time-window which will be harvested.
id?
Type:
string
(optional)
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
(optional)
The ID of the OriginEndpoint that the HarvestJob will harvest from.
s3Destination?
Type:
IResolvable | S3
(optional)
Configuration parameters for where in an S3 bucket to place the harvested content.
startTime?
Type:
string
(optional)
The start of the time-window which will be harvested.

.NET
Go
Java
Python
TypeScript