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

com.pulumi.aws.elasticache.kotlin.outputs.GetClusterCacheNode.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.57.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.elasticache.kotlin.outputs

import kotlin.Int
import kotlin.String
import kotlin.Suppress

/**
 *
 * @property address
 * @property availabilityZone Availability Zone for the cache cluster.
 * @property id
 * @property outpostArn
 * @property port The port number on which each of the cache nodes will
 * accept connections.
 */
public data class GetClusterCacheNode(
    public val address: String,
    public val availabilityZone: String,
    public val id: String,
    public val outpostArn: String,
    public val port: Int,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.aws.elasticache.outputs.GetClusterCacheNode): GetClusterCacheNode = GetClusterCacheNode(
            address = javaType.address(),
            availabilityZone = javaType.availabilityZone(),
            id = javaType.id(),
            outpostArn = javaType.outpostArn(),
            port = javaType.port(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy