Interface CfnInput.SrtSettingsRequestProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnInput.SrtSettingsRequestProperty.Jsii$Proxy
Enclosing class:
CfnInput

@Stability(Stable) public static interface CfnInput.SrtSettingsRequestProperty extends software.amazon.jsii.JsiiSerializable
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.*;
 SrtSettingsRequestProperty srtSettingsRequestProperty = SrtSettingsRequestProperty.builder()
         .srtCallerSources(List.of(SrtCallerSourceRequestProperty.builder()
                 .decryption(SrtCallerDecryptionRequestProperty.builder()
                         .algorithm("algorithm")
                         .passphraseSecretArn("passphraseSecretArn")
                         .build())
                 .minimumLatency(123)
                 .srtListenerAddress("srtListenerAddress")
                 .srtListenerPort("srtListenerPort")
                 .streamId("streamId")
                 .build()))
         .build();
 

See Also: