Interface ICfnHarvestJobMixinProps
Properties for CfnHarvestJobPropsMixin.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.MediaPackage
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface ICfnHarvestJobMixinProps
Syntax (vb)
Public Interface ICfnHarvestJobMixinProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.MediaPackage;
var cfnHarvestJobMixinProps = new CfnHarvestJobMixinProps {
EndTime = "endTime",
Id = "id",
OriginEndpointId = "originEndpointId",
S3Destination = new S3DestinationProperty {
BucketName = "bucketName",
ManifestKey = "manifestKey",
RoleArn = "roleArn"
},
StartTime = "startTime"
};
Synopsis
Properties
| EndTime | The end of the time-window which will be harvested. |
| Id | The ID of the HarvestJob. |
| OriginEndpointId | The ID of the OriginEndpoint that the HarvestJob will harvest from. |
| S3Destination | Configuration parameters for where in an S3 bucket to place the harvested content. |
| StartTime | The start of the time-window which will be harvested. |
Properties
EndTime
The end of the time-window which will be harvested.
string? EndTime { get; }
Property Value
Remarks
Id
The ID of the HarvestJob.
string? Id { get; }
Property Value
Remarks
The ID must be unique within the region and it cannot be changed after the HarvestJob is submitted.
OriginEndpointId
The ID of the OriginEndpoint that the HarvestJob will harvest from.
string? OriginEndpointId { get; }
Property Value
Remarks
S3Destination
Configuration parameters for where in an S3 bucket to place the harvested content.
object? S3Destination { get; }
Property Value
Remarks
StartTime
The start of the time-window which will be harvested.
string? StartTime { get; }