interface HarvestJob
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaPackage.Events.OriginEndpointEvents.MediaPackageHarvestJobNotification.HarvestJob |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediapackage/events#OriginEndpointEvents_MediaPackageHarvestJobNotification_HarvestJob |
Java | software.amazon.awscdk.mixins.preview.services.mediapackage.events.OriginEndpointEvents.MediaPackageHarvestJobNotification.HarvestJob |
Python | aws_cdk.mixins_preview.aws_mediapackage.events.OriginEndpointEvents.MediaPackageHarvestJobNotification.HarvestJob |
TypeScript | @aws-cdk/mixins-preview ยป aws_mediapackage ยป events ยป OriginEndpointEvents ยป MediaPackageHarvestJobNotification ยป HarvestJob |
Type definition for Harvest_job.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as mediapackage_events } from '@aws-cdk/mixins-preview/aws-mediapackage';
const harvestJob: mediapackage_events.OriginEndpointEvents.MediaPackageHarvestJobNotification.HarvestJob = {
arn: ['arn'],
createdAt: ['createdAt'],
endTime: ['endTime'],
id: ['id'],
originEndpointId: ['originEndpointId'],
s3Destination: {
bucketName: ['bucketName'],
manifestKey: ['manifestKey'],
roleArn: ['roleArn'],
},
startTime: ['startTime'],
status: ['status'],
};
Properties
| Name | Type | Description |
|---|---|---|
| arn? | string[] | arn property. |
| created | string[] | created_at property. |
| end | string[] | end_time property. |
| id? | string[] | id property. |
| origin | string[] | origin_endpoint_id property. |
| s3 | S3 | s3_destination property. |
| start | string[] | start_time property. |
| status? | string[] | status property. |
arn?
Type:
string[]
(optional, default: Do not filter on this field)
arn property.
Specify an array of string values to match this event if the actual value of arn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
createdAt?
Type:
string[]
(optional, default: Do not filter on this field)
created_at property.
Specify an array of string values to match this event if the actual value of created_at is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
endTime?
Type:
string[]
(optional, default: Do not filter on this field)
end_time property.
Specify an array of string values to match this event if the actual value of end_time is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
id?
Type:
string[]
(optional, default: Do not filter on this field)
id property.
Specify an array of string values to match this event if the actual value of id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
originEndpointId?
Type:
string[]
(optional, default: Filter with the OriginEndpoint reference)
origin_endpoint_id property.
Specify an array of string values to match this event if the actual value of origin_endpoint_id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
s3Destination?
Type:
S3
(optional, default: Do not filter on this field)
s3_destination property.
Specify an array of string values to match this event if the actual value of s3_destination is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
startTime?
Type:
string[]
(optional, default: Do not filter on this field)
start_time property.
Specify an array of string values to match this event if the actual value of start_time is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
status?
Type:
string[]
(optional, default: Do not filter on this field)
status property.
Specify an array of string values to match this event if the actual value of status is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript