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

com.pulumi.awsnative.lambda.kotlin.outputs.FunctionFileSystemConfig.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.lambda.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * Details about the connection between a Lambda function and an [Amazon EFS file system](https://docs.aws.amazon.com/lambda/latest/dg/configuration-filesystem.html).
 * @property arn The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.
 * @property localMountPath The path where the function can access the file system, starting with ``/mnt/``.
 */
public data class FunctionFileSystemConfig(
    public val arn: String,
    public val localMountPath: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.lambda.outputs.FunctionFileSystemConfig): FunctionFileSystemConfig = FunctionFileSystemConfig(
            arn = javaType.arn(),
            localMountPath = javaType.localMountPath(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy