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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forMediaLiveChannelConfigurationWithoutConnectionPropsstatic final classAn implementation forMediaLiveChannelConfigurationWithoutConnectionProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) Availability Zone the router input will be placed in.default TransitEncryption(experimental) Optional transit encryption configuration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAvailabilityZone
(experimental) Availability Zone the router input will be placed in. -
getSourceTransitDecryption
(experimental) Optional transit encryption configuration.Default: - Automatic encryption will be used
-
builder
@Stability(Experimental) static MediaLiveChannelConfigurationWithoutConnectionProps.Builder builder()
-