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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final class -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default AWSEventMetadataProps(experimental) EventBridge event metadata.(experimental) harvest_job property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEventMetadata
(experimental) EventBridge event metadata.Default: - -
-
getHarvestJob
@Stability(Experimental) @Nullable default OriginEndpointEvents.MediaPackageHarvestJobNotification.HarvestJob getHarvestJob()(experimental) harvest_job property.Specify an array of string values to match this event if the actual value of harvest_job is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
@Stability(Experimental) static OriginEndpointEvents.MediaPackageHarvestJobNotification.MediaPackageHarvestJobNotificationProps.Builder builder()
-