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

com.pulumi.aws.opensearch.kotlin.outputs.GetServerlessAccessPolicyResult.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.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