![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.mediapackage.kotlin.outputs.ChannelIngestEndpoint.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.mediapackage.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* An endpoint for ingesting source content for a Channel.
* @property id The system generated unique identifier for the IngestEndpoint
* @property password The system generated password for ingest authentication.
* @property url The ingest URL to which the source stream should be sent.
* @property username The system generated username for ingest authentication.
*/
public data class ChannelIngestEndpoint(
public val id: String,
public val password: String,
public val url: String,
public val username: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.mediapackage.outputs.ChannelIngestEndpoint): ChannelIngestEndpoint = ChannelIngestEndpoint(
id = javaType.id(),
password = javaType.password(),
url = javaType.url(),
username = javaType.username(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy