![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.kinesisfirehose.kotlin.outputs.DeliveryStreamHttpEndpointConfiguration.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.kinesisfirehose.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property accessKey The access key required for Kinesis Firehose to authenticate with the HTTP endpoint selected as the destination.
* @property name The name of the HTTP endpoint selected as the destination.
* @property url The URL of the HTTP endpoint selected as the destination.
*/
public data class DeliveryStreamHttpEndpointConfiguration(
public val accessKey: String? = null,
public val name: String? = null,
public val url: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.kinesisfirehose.outputs.DeliveryStreamHttpEndpointConfiguration): DeliveryStreamHttpEndpointConfiguration = DeliveryStreamHttpEndpointConfiguration(
accessKey = javaType.accessKey().map({ args0 -> args0 }).orElse(null),
name = javaType.name().map({ args0 -> args0 }).orElse(null),
url = javaType.url(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy