
com.pulumi.awsnative.sso.kotlin.outputs.PermissionSetCustomerManagedPolicyReference.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.sso.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property name The name of the IAM policy that you have configured in each account where you want to deploy your permission set.
* @property path The path to the IAM policy that you have configured in each account where you want to deploy your permission set. The default is `/` . For more information, see [Friendly names and paths](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html#identifiers-friendly-names) in the *IAM User Guide* .
*/
public data class PermissionSetCustomerManagedPolicyReference(
public val name: String,
public val path: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.sso.outputs.PermissionSetCustomerManagedPolicyReference): PermissionSetCustomerManagedPolicyReference = PermissionSetCustomerManagedPolicyReference(
name = javaType.name(),
path = javaType.path().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy