All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.mediatailor.kotlin.outputs.SourceLocationSegmentDeliveryConfiguration.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.mediatailor.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * 

The segment delivery configuration settings.

* @property baseUrl

The base URL of the host or path of the segment delivery server that you're using to serve segments. This is typically a content delivery network (CDN). The URL can be absolute or relative. To use an absolute URL include the protocol, such as https://example.com/some/path. To use a relative URL specify the relative path, such as /some/path*.

* @property name

A unique identifier used to distinguish between multiple segment delivery configurations in a source location.

*/ public data class SourceLocationSegmentDeliveryConfiguration( public val baseUrl: String? = null, public val name: String? = null, ) { public companion object { public fun toKotlin(javaType: com.pulumi.awsnative.mediatailor.outputs.SourceLocationSegmentDeliveryConfiguration): SourceLocationSegmentDeliveryConfiguration = SourceLocationSegmentDeliveryConfiguration( baseUrl = javaType.baseUrl().map({ args0 -> args0 }).orElse(null), name = javaType.name().map({ args0 -> args0 }).orElse(null), ) } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy