![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.directoryservice.kotlin.outputs.GetSimpleAdResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.directoryservice.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property alias The alias for a directory.
* @property directoryId The unique identifier for a directory.
* @property dnsIpAddresses The IP addresses of the DNS servers for the directory, such as [ "172.31.3.154", "172.31.63.203" ].
* @property enableSso Whether to enable single sign-on for a Simple Active Directory in AWS.
*/
public data class GetSimpleAdResult(
public val alias: String? = null,
public val directoryId: String? = null,
public val dnsIpAddresses: List? = null,
public val enableSso: Boolean? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.directoryservice.outputs.GetSimpleAdResult): GetSimpleAdResult = GetSimpleAdResult(
alias = javaType.alias().map({ args0 -> args0 }).orElse(null),
directoryId = javaType.directoryId().map({ args0 -> args0 }).orElse(null),
dnsIpAddresses = javaType.dnsIpAddresses().map({ args0 -> args0 }),
enableSso = javaType.enableSso().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy