Interface CfnHarvestJobMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnHarvestJobMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-08-10T14:51:22.206Z")
@Stability(Stable)
public interface CfnHarvestJobMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnHarvestJobPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.mediapackage.*;
CfnHarvestJobMixinProps cfnHarvestJobMixinProps = CfnHarvestJobMixinProps.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 forCfnHarvestJobMixinPropsstatic final classAn implementation forCfnHarvestJobMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe end of the time-window which will be harvested.default StringgetId()The ID of the HarvestJob.default StringThe ID of the OriginEndpoint that the HarvestJob will harvest from.default ObjectConfiguration parameters for where in an S3 bucket to place the harvested content.default StringThe 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
IResolvableorCfnHarvestJobPropsMixin.S3DestinationProperty- See Also:
-
getStartTime
The start of the time-window which will be harvested.- See Also:
-
builder
- Returns:
- a
CfnHarvestJobMixinProps.BuilderofCfnHarvestJobMixinProps
-