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

com.pulumi.vault.database.kotlin.outputs.SecretBackendConnectionRedisElasticache.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.4.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.vault.database.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property password The AWS secret key id to use to talk to ElastiCache. If omitted the credentials chain provider is used instead.
 * @property region The AWS region where the ElastiCache cluster is hosted. If omitted the plugin tries to infer the region from the environment.
 * @property url The configuration endpoint for the ElastiCache cluster to connect to.
 * @property username The AWS access key id to use to talk to ElastiCache. If omitted the credentials chain provider is used instead.
 */
public data class SecretBackendConnectionRedisElasticache(
    public val password: String? = null,
    public val region: String? = null,
    public val url: String,
    public val username: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.vault.database.outputs.SecretBackendConnectionRedisElasticache): SecretBackendConnectionRedisElasticache = SecretBackendConnectionRedisElasticache(
            password = javaType.password().map({ args0 -> args0 }).orElse(null),
            region = javaType.region().map({ args0 -> args0 }).orElse(null),
            url = javaType.url(),
            username = javaType.username().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy