Interface CfnInputProps

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

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-10-11T15:56:01.808Z") @Stability(Stable) public interface CfnInputProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnInput.

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.*;
 Object tags;
 CfnInputProps cfnInputProps = CfnInputProps.builder()
         .destinations(List.of(InputDestinationRequestProperty.builder()
                 .streamName("streamName")
                 .build()))
         .inputDevices(List.of(InputDeviceSettingsProperty.builder()
                 .id("id")
                 .build()))
         .inputSecurityGroups(List.of("inputSecurityGroups"))
         .mediaConnectFlows(List.of(MediaConnectFlowRequestProperty.builder()
                 .flowArn("flowArn")
                 .build()))
         .name("name")
         .roleArn("roleArn")
         .sources(List.of(InputSourceRequestProperty.builder()
                 .passwordParam("passwordParam")
                 .url("url")
                 .username("username")
                 .build()))
         .srtSettings(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())
         .tags(tags)
         .type("type")
         .vpc(InputVpcRequestProperty.builder()
                 .securityGroupIds(List.of("securityGroupIds"))
                 .subnetIds(List.of("subnetIds"))
                 .build())
         .build();
 

See Also: