public static interface CfnChannel.NetworkInputSettingsProperty
The parent of this entity is InputSettings.
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.medialive.*; NetworkInputSettingsProperty networkInputSettingsProperty = NetworkInputSettingsProperty.builder() .hlsInputSettings(HlsInputSettingsProperty.builder() .bandwidth(123) .bufferSegments(123) .retries(123) .retryInterval(123) .scte35Source("scte35Source") .build()) .serverValidation("serverValidation") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnChannel.NetworkInputSettingsProperty.Builder
A builder for
CfnChannel.NetworkInputSettingsProperty |
static class |
CfnChannel.NetworkInputSettingsProperty.Jsii$Proxy
An implementation for
CfnChannel.NetworkInputSettingsProperty |
Modifier and Type | Method and Description |
---|---|
static CfnChannel.NetworkInputSettingsProperty.Builder |
builder() |
default java.lang.Object |
getHlsInputSettings()
Information about how to connect to the upstream system.
|
default java.lang.String |
getServerValidation()
Checks HTTPS server certificates.
|
default java.lang.Object getHlsInputSettings()
default java.lang.String getServerValidation()
When set to checkCryptographyOnly, cryptography in the certificate is checked, but not the server's name. Certain subdomains (notably S3 buckets that use dots in the bucket name) don't strictly match the corresponding certificate's wildcard pattern and would otherwise cause the channel to error. This setting is ignored for protocols that do not use HTTPS.
static CfnChannel.NetworkInputSettingsProperty.Builder builder()