Interface OriginEndpointEvents.MediaPackageHarvestJobNotification.MediaPackageHarvestJobNotificationProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
OriginEndpointEvents.MediaPackageHarvestJobNotification.MediaPackageHarvestJobNotificationProps.Jsii$Proxy
Enclosing class:
OriginEndpointEvents.MediaPackageHarvestJobNotification

@Stability(Experimental) public static interface OriginEndpointEvents.MediaPackageHarvestJobNotification.MediaPackageHarvestJobNotificationProps extends software.amazon.jsii.JsiiSerializable
(experimental) Props type for OriginEndpoint aws.mediapackage@MediaPackageHarvestJobNotification event.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.mediapackage.events.*;
 MediaPackageHarvestJobNotificationProps mediaPackageHarvestJobNotificationProps = MediaPackageHarvestJobNotificationProps.builder()
         .eventMetadata(AWSEventMetadataProps.builder()
                 .region(List.of("region"))
                 .resources(List.of("resources"))
                 .version(List.of("version"))
                 .build())
         .harvestJob(HarvestJob.builder()
                 .arn(List.of("arn"))
                 .createdAt(List.of("createdAt"))
                 .endTime(List.of("endTime"))
                 .id(List.of("id"))
                 .originEndpointId(List.of("originEndpointId"))
                 .s3Destination(S3Destination.builder()
                         .bucketName(List.of("bucketName"))
                         .manifestKey(List.of("manifestKey"))
                         .roleArn(List.of("roleArn"))
                         .build())
                 .startTime(List.of("startTime"))
                 .status(List.of("status"))
                 .build())
         .build();