Interface CfnHarvestJobProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnHarvestJobProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-08-10T14:51:07.044Z")
@Stability(Stable)
public interface CfnHarvestJobProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.mediapackage.*;
CfnHarvestJobProps cfnHarvestJobProps = CfnHarvestJobProps.builder()
.endTime("endTime")
.id("id")
.originEndpointId("originEndpointId")
.s3Destination(S3DestinationProperty.builder()
.bucketName("bucketName")
.manifestKey("manifestKey")
.roleArn("roleArn")
.build())
.startTime("startTime")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnHarvestJobPropsstatic final classAn implementation forCfnHarvestJobProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnHarvestJobProps.Builderbuilder()The end of the time-window which will be harvested.getId()The ID of the HarvestJob.The ID of the OriginEndpoint that the HarvestJob will harvest from.Configuration parameters for where in an S3 bucket to place the harvested content.The start of the time-window which will be harvested.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEndTime
The end of the time-window which will be harvested.- See Also:
-
getId
The ID of the HarvestJob.The ID must be unique within the region and it cannot be changed after the HarvestJob is submitted.
- See Also:
-
getOriginEndpointId
The ID of the OriginEndpoint that the HarvestJob will harvest from.- See Also:
-
getS3Destination
Configuration parameters for where in an S3 bucket to place the harvested content.Returns union: either
IResolvableorCfnHarvestJob.S3DestinationProperty- See Also:
-
getStartTime
The start of the time-window which will be harvested.- See Also:
-
builder
- Returns:
- a
CfnHarvestJobProps.BuilderofCfnHarvestJobProps
-