AccessPoint

class AccessPoint : KotlinCustomResource

Provides an Elastic File System (EFS) access point.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.efs.AccessPoint;
import com.pulumi.aws.efs.AccessPointArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var test = new AccessPoint("test", AccessPointArgs.builder()
.fileSystemId(aws_efs_file_system.foo().id())
.build());
}
}

Import

The EFS access points can be imported using the id, e.g.,

$ pulumi import aws:efs/accessPoint:AccessPoint test fsap-52a643fb

Properties

Link copied to clipboard
val arn: Output<String>

ARN of the access point.

Link copied to clipboard
val fileSystemArn: Output<String>

ARN of the file system.

Link copied to clipboard
val fileSystemId: Output<String>

ID of the file system for which the access point is intended.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val ownerId: Output<String>
Link copied to clipboard

Operating system user and group applied to all file system requests made using the access point. Detailed below.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Directory on the Amazon EFS file system that the access point provides access to. Detailed below.

Link copied to clipboard
val tags: Output<Map<String, String>>?

Key-value mapping of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level

Link copied to clipboard
val tagsAll: Output<Map<String, String>>

Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Link copied to clipboard
val urn: Output<String>