com.pulumi.vault.aws.kotlin.outputs.GetStaticAccessCredentialsResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-vault-kotlin Show documentation
Show all versions of pulumi-vault-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.vault.aws.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* A collection of values returned by getStaticAccessCredentials.
* @property accessKey
* @property backend
* @property id The provider-assigned unique ID for this managed resource.
* @property name
* @property namespace
* @property secretKey
*/
public data class GetStaticAccessCredentialsResult(
public val accessKey: String,
public val backend: String,
public val id: String,
public val name: String,
public val namespace: String? = null,
public val secretKey: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.vault.aws.outputs.GetStaticAccessCredentialsResult): GetStaticAccessCredentialsResult = GetStaticAccessCredentialsResult(
accessKey = javaType.accessKey(),
backend = javaType.backend(),
id = javaType.id(),
name = javaType.name(),
namespace = javaType.namespace().map({ args0 -> args0 }).orElse(null),
secretKey = javaType.secretKey(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy