Interface CfnChannel.IngestEndpointProperty

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

@Stability(Stable) public static interface CfnChannel.IngestEndpointProperty extends software.amazon.jsii.JsiiSerializable
An endpoint for ingesting source content for a channel.

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.mediapackage.*;
 IngestEndpointProperty ingestEndpointProperty = IngestEndpointProperty.builder()
         .id("id")
         .password("password")
         .url("url")
         .username("username")
         .build();