Interface MediaPackageInputNotification.MediaPackageInputNotificationProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
MediaPackageInputNotification.MediaPackageInputNotificationProps.Jsii$Proxy
Enclosing class:
MediaPackageInputNotification

@Stability(Experimental) public static interface MediaPackageInputNotification.MediaPackageInputNotificationProps extends software.amazon.jsii.JsiiSerializable
(experimental) Props type for aws.mediapackage@MediaPackageInputNotification 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.*;
 MediaPackageInputNotificationProps mediaPackageInputNotificationProps = MediaPackageInputNotificationProps.builder()
         .event(List.of("event"))
         .eventMetadata(AWSEventMetadataProps.builder()
                 .region(List.of("region"))
                 .resources(List.of("resources"))
                 .version(List.of("version"))
                 .build())
         .manifestUrls(List.of("manifestUrls"))
         .message(List.of("message"))
         .packagingConfigurationId(List.of("packagingConfigurationId"))
         .build();
 
  • Method Details

    • getEvent

      @Stability(Experimental) @Nullable default List<String> getEvent()
      (experimental) event property.

      Specify an array of string values to match this event if the actual value of event is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getEventMetadata

      @Stability(Experimental) @Nullable default AWSEventMetadataProps getEventMetadata()
      (experimental) EventBridge event metadata.

      Default: - -

    • getManifestUrls

      @Stability(Experimental) @Nullable default List<String> getManifestUrls()
      (experimental) manifest_urls property.

      Specify an array of string values to match this event if the actual value of manifest_urls is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getMessage

      @Stability(Experimental) @Nullable default List<String> getMessage()
      (experimental) message property.

      Specify an array of string values to match this event if the actual value of message is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getPackagingConfigurationId

      @Stability(Experimental) @Nullable default List<String> getPackagingConfigurationId()
      (experimental) packaging_configuration_id property.

      Specify an array of string values to match this event if the actual value of packaging_configuration_id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Do not filter on this field

    • builder

      Returns:
      a MediaPackageInputNotification.MediaPackageInputNotificationProps.Builder of MediaPackageInputNotification.MediaPackageInputNotificationProps