Interface MediaLiveChannelConfigurationWithoutConnectionProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
MediaLiveChannelConfigurationWithoutConnectionProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-07-31T10:49:55.183Z") @Stability(Experimental) public interface MediaLiveChannelConfigurationWithoutConnectionProps extends software.amazon.jsii.JsiiSerializable
(experimental) Properties for MediaLive Channel Router Input configuration without a specific channel connection.

Use this when you want to set up the router input before the target MediaLive channel exists.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.mediaconnect.alpha.*;
 import software.amazon.awscdk.services.iam.*;
 import software.amazon.awscdk.services.secretsmanager.*;
 Role role;
 Secret secret;
 MediaLiveChannelConfigurationWithoutConnectionProps mediaLiveChannelConfigurationWithoutConnectionProps = MediaLiveChannelConfigurationWithoutConnectionProps.builder()
         .availabilityZone("availabilityZone")
         // the properties below are optional
         .sourceTransitDecryption(TransitEncryption.builder()
                 .secret(secret)
                 // the properties below are optional
                 .role(role)
                 .build())
         .build();