Interface CfnChannelPropsMixin.NetworkInputSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannelPropsMixin.NetworkInputSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnChannelPropsMixin
@Stability(Stable)
public static interface CfnChannelPropsMixin.NetworkInputSettingsProperty
extends software.amazon.jsii.JsiiSerializable
Information about how to connect to the upstream system.
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.cfnpropertymixins.services.medialive.*;
NetworkInputSettingsProperty networkInputSettingsProperty = NetworkInputSettingsProperty.builder()
.hlsInputSettings(HlsInputSettingsProperty.builder()
.bandwidth(123)
.bufferSegments(123)
.retries(123)
.retryInterval(123)
.scte35Source("scte35Source")
.build())
.multicastInputSettings(MulticastInputSettingsProperty.builder()
.sourceIpAddress("sourceIpAddress")
.build())
.serverValidation("serverValidation")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnChannelPropsMixin.NetworkInputSettingsPropertystatic final classAn implementation forCfnChannelPropsMixin.NetworkInputSettingsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectInformation about how to connect to the upstream system.default ObjectReturns union: eitherIResolvableorCfnChannelPropsMixin.MulticastInputSettingsPropertydefault StringChecks HTTPS server certificates.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHlsInputSettings
Information about how to connect to the upstream system.Returns union: either
IResolvableorCfnChannelPropsMixin.HlsInputSettingsProperty- See Also:
-
getMulticastInputSettings
Returns union: eitherIResolvableorCfnChannelPropsMixin.MulticastInputSettingsProperty- See Also:
-
getServerValidation
Checks HTTPS server certificates.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.
- See Also:
-
builder
-