Interface MediaPackageV2OriginProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable, OriginOptions, OriginProps
All Known Implementing Classes:
MediaPackageV2OriginProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.133.0 (build 0f43e37)", date="2026-06-16T16:14:49.509Z") @Stability(Experimental) public interface MediaPackageV2OriginProps extends software.amazon.jsii.JsiiSerializable, OriginProps
(experimental) Properties for a MediaPackage V2 Origin with OAC.

Example:

 OriginEndpoint endpoint;
 ChannelGroup group;
 Distribution.Builder.create(this, "Distribution")
         .defaultBehavior(BehaviorOptions.builder()
                 .origin(MediaPackageV2Origin.Builder.create(endpoint)
                         .channelGroup(group)
                         .build())
                 .build())
         .build();