com.pulumi.aws.opensearch.kotlin.outputs.GetServerlessAccessPolicyResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-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.aws.opensearch.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* A collection of values returned by getServerlessAccessPolicy.
* @property description Description of the policy. Typically used to store information about the permissions defined in the policy.
* @property id
* @property name
* @property policy JSON policy document to use as the content for the new policy.
* @property policyVersion Version of the policy.
* @property type
*/
public data class GetServerlessAccessPolicyResult(
public val description: String,
public val id: String,
public val name: String,
public val policy: String,
public val policyVersion: String,
public val type: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.opensearch.outputs.GetServerlessAccessPolicyResult): GetServerlessAccessPolicyResult = GetServerlessAccessPolicyResult(
description = javaType.description(),
id = javaType.id(),
name = javaType.name(),
policy = javaType.policy(),
policyVersion = javaType.policyVersion(),
type = javaType.type(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy