
com.pulumi.awsnative.s3objectlambda.kotlin.outputs.GetAccessPointPolicyResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.s3objectlambda.kotlin.outputs
import kotlin.Any
import kotlin.Suppress
/**
*
* @property policyDocument A policy document containing permissions to add to the specified ObjectLambdaAccessPoint. For more information, see Access Policy Language Overview (https://docs.aws.amazon.com/AmazonS3/latest/dev/access-policy-language-overview.html) in the Amazon Simple Storage Service Developer Guide.
* Search the [CloudFormation User Guide](https://docs.aws.amazon.com/cloudformation/) for `AWS::S3ObjectLambda::AccessPointPolicy` for more information about the expected schema for this property.
*/
public data class GetAccessPointPolicyResult(
public val policyDocument: Any? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.s3objectlambda.outputs.GetAccessPointPolicyResult): GetAccessPointPolicyResult = GetAccessPointPolicyResult(
policyDocument = javaType.policyDocument().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy