published on Thursday, Apr 16, 2026 by Pulumi
published on Thursday, Apr 16, 2026 by Pulumi
Manages an S3 Files Access Point.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.s3.FilesAccessPoint("example", {
fileSystemId: exampleAwsS3filesFileSystem.id,
posixUsers: [{
gid: 1001,
uid: 1001,
}],
});
import pulumi
import pulumi_aws as aws
example = aws.s3.FilesAccessPoint("example",
file_system_id=example_aws_s3files_file_system["id"],
posix_users=[{
"gid": 1001,
"uid": 1001,
}])
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/s3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := s3.NewFilesAccessPoint(ctx, "example", &s3.FilesAccessPointArgs{
FileSystemId: pulumi.Any(exampleAwsS3filesFileSystem.Id),
PosixUsers: s3.FilesAccessPointPosixUserArray{
&s3.FilesAccessPointPosixUserArgs{
Gid: pulumi.Int(1001),
Uid: pulumi.Int(1001),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.S3.FilesAccessPoint("example", new()
{
FileSystemId = exampleAwsS3filesFileSystem.Id,
PosixUsers = new[]
{
new Aws.S3.Inputs.FilesAccessPointPosixUserArgs
{
Gid = 1001,
Uid = 1001,
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.s3.FilesAccessPoint;
import com.pulumi.aws.s3.FilesAccessPointArgs;
import com.pulumi.aws.s3.inputs.FilesAccessPointPosixUserArgs;
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 example = new FilesAccessPoint("example", FilesAccessPointArgs.builder()
.fileSystemId(exampleAwsS3filesFileSystem.id())
.posixUsers(FilesAccessPointPosixUserArgs.builder()
.gid(1001)
.uid(1001)
.build())
.build());
}
}
resources:
example:
type: aws:s3:FilesAccessPoint
properties:
fileSystemId: ${exampleAwsS3filesFileSystem.id}
posixUsers:
- gid: 1001
uid: 1001
Create FilesAccessPoint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new FilesAccessPoint(name: string, args: FilesAccessPointArgs, opts?: CustomResourceOptions);@overload
def FilesAccessPoint(resource_name: str,
args: FilesAccessPointArgs,
opts: Optional[ResourceOptions] = None)
@overload
def FilesAccessPoint(resource_name: str,
opts: Optional[ResourceOptions] = None,
file_system_id: Optional[str] = None,
posix_users: Optional[Sequence[FilesAccessPointPosixUserArgs]] = None,
region: Optional[str] = None,
root_directories: Optional[Sequence[FilesAccessPointRootDirectoryArgs]] = None,
tags: Optional[Mapping[str, str]] = None,
timeouts: Optional[FilesAccessPointTimeoutsArgs] = None)func NewFilesAccessPoint(ctx *Context, name string, args FilesAccessPointArgs, opts ...ResourceOption) (*FilesAccessPoint, error)public FilesAccessPoint(string name, FilesAccessPointArgs args, CustomResourceOptions? opts = null)
public FilesAccessPoint(String name, FilesAccessPointArgs args)
public FilesAccessPoint(String name, FilesAccessPointArgs args, CustomResourceOptions options)
type: aws:s3:FilesAccessPoint
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args FilesAccessPointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args FilesAccessPointArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args FilesAccessPointArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FilesAccessPointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FilesAccessPointArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var filesAccessPointResource = new Aws.S3.FilesAccessPoint("filesAccessPointResource", new()
{
FileSystemId = "string",
PosixUsers = new[]
{
new Aws.S3.Inputs.FilesAccessPointPosixUserArgs
{
Gid = 0,
Uid = 0,
SecondaryGids = new[]
{
0,
},
},
},
Region = "string",
RootDirectories = new[]
{
new Aws.S3.Inputs.FilesAccessPointRootDirectoryArgs
{
CreationPermissions = new[]
{
new Aws.S3.Inputs.FilesAccessPointRootDirectoryCreationPermissionArgs
{
OwnerGid = 0,
OwnerUid = 0,
Permissions = "string",
},
},
Path = "string",
},
},
Tags =
{
{ "string", "string" },
},
Timeouts = new Aws.S3.Inputs.FilesAccessPointTimeoutsArgs
{
Create = "string",
Delete = "string",
},
});
example, err := s3.NewFilesAccessPoint(ctx, "filesAccessPointResource", &s3.FilesAccessPointArgs{
FileSystemId: pulumi.String("string"),
PosixUsers: s3.FilesAccessPointPosixUserArray{
&s3.FilesAccessPointPosixUserArgs{
Gid: pulumi.Int(0),
Uid: pulumi.Int(0),
SecondaryGids: pulumi.IntArray{
pulumi.Int(0),
},
},
},
Region: pulumi.String("string"),
RootDirectories: s3.FilesAccessPointRootDirectoryArray{
&s3.FilesAccessPointRootDirectoryArgs{
CreationPermissions: s3.FilesAccessPointRootDirectoryCreationPermissionArray{
&s3.FilesAccessPointRootDirectoryCreationPermissionArgs{
OwnerGid: pulumi.Int(0),
OwnerUid: pulumi.Int(0),
Permissions: pulumi.String("string"),
},
},
Path: pulumi.String("string"),
},
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Timeouts: &s3.FilesAccessPointTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
},
})
var filesAccessPointResource = new FilesAccessPoint("filesAccessPointResource", FilesAccessPointArgs.builder()
.fileSystemId("string")
.posixUsers(FilesAccessPointPosixUserArgs.builder()
.gid(0)
.uid(0)
.secondaryGids(0)
.build())
.region("string")
.rootDirectories(FilesAccessPointRootDirectoryArgs.builder()
.creationPermissions(FilesAccessPointRootDirectoryCreationPermissionArgs.builder()
.ownerGid(0)
.ownerUid(0)
.permissions("string")
.build())
.path("string")
.build())
.tags(Map.of("string", "string"))
.timeouts(FilesAccessPointTimeoutsArgs.builder()
.create("string")
.delete("string")
.build())
.build());
files_access_point_resource = aws.s3.FilesAccessPoint("filesAccessPointResource",
file_system_id="string",
posix_users=[{
"gid": 0,
"uid": 0,
"secondary_gids": [0],
}],
region="string",
root_directories=[{
"creation_permissions": [{
"owner_gid": 0,
"owner_uid": 0,
"permissions": "string",
}],
"path": "string",
}],
tags={
"string": "string",
},
timeouts={
"create": "string",
"delete": "string",
})
const filesAccessPointResource = new aws.s3.FilesAccessPoint("filesAccessPointResource", {
fileSystemId: "string",
posixUsers: [{
gid: 0,
uid: 0,
secondaryGids: [0],
}],
region: "string",
rootDirectories: [{
creationPermissions: [{
ownerGid: 0,
ownerUid: 0,
permissions: "string",
}],
path: "string",
}],
tags: {
string: "string",
},
timeouts: {
create: "string",
"delete": "string",
},
});
type: aws:s3:FilesAccessPoint
properties:
fileSystemId: string
posixUsers:
- gid: 0
secondaryGids:
- 0
uid: 0
region: string
rootDirectories:
- creationPermissions:
- ownerGid: 0
ownerUid: 0
permissions: string
path: string
tags:
string: string
timeouts:
create: string
delete: string
FilesAccessPoint Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The FilesAccessPoint resource accepts the following input properties:
- File
System stringId - File system ID. Changing this value forces replacement.
- Posix
Users List<FilesAccess Point Posix User> POSIX user configuration. See
posixUserbelow. Changing this value forces replacement.The following arguments are optional:
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Root
Directories List<FilesAccess Point Root Directory> - Root directory configuration. See
rootDirectorybelow. Changing this value forces replacement. - Dictionary<string, string>
- Map of tags assigned to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Timeouts
Files
Access Point Timeouts
- File
System stringId - File system ID. Changing this value forces replacement.
- Posix
Users []FilesAccess Point Posix User Args POSIX user configuration. See
posixUserbelow. Changing this value forces replacement.The following arguments are optional:
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Root
Directories []FilesAccess Point Root Directory Args - Root directory configuration. See
rootDirectorybelow. Changing this value forces replacement. - map[string]string
- Map of tags assigned to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Timeouts
Files
Access Point Timeouts Args
- file
System StringId - File system ID. Changing this value forces replacement.
- posix
Users List<FilesAccess Point Posix User> POSIX user configuration. See
posixUserbelow. Changing this value forces replacement.The following arguments are optional:
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- root
Directories List<FilesAccess Point Root Directory> - Root directory configuration. See
rootDirectorybelow. Changing this value forces replacement. - Map<String,String>
- Map of tags assigned to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Files
Access Point Timeouts
- file
System stringId - File system ID. Changing this value forces replacement.
- posix
Users FilesAccess Point Posix User[] POSIX user configuration. See
posixUserbelow. Changing this value forces replacement.The following arguments are optional:
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- root
Directories FilesAccess Point Root Directory[] - Root directory configuration. See
rootDirectorybelow. Changing this value forces replacement. - {[key: string]: string}
- Map of tags assigned to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Files
Access Point Timeouts
- file_
system_ strid - File system ID. Changing this value forces replacement.
- posix_
users Sequence[FilesAccess Point Posix User Args] POSIX user configuration. See
posixUserbelow. Changing this value forces replacement.The following arguments are optional:
- region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- root_
directories Sequence[FilesAccess Point Root Directory Args] - Root directory configuration. See
rootDirectorybelow. Changing this value forces replacement. - Mapping[str, str]
- Map of tags assigned to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Files
Access Point Timeouts Args
- file
System StringId - File system ID. Changing this value forces replacement.
- posix
Users List<Property Map> POSIX user configuration. See
posixUserbelow. Changing this value forces replacement.The following arguments are optional:
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- root
Directories List<Property Map> - Root directory configuration. See
rootDirectorybelow. Changing this value forces replacement. - Map<String>
- Map of tags assigned to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the FilesAccessPoint resource produces the following output properties:
- Arn string
- ARN of the access point.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Access point name.
- Owner
Id string - AWS account ID of the owner.
- Status string
- Access point status.
- Dictionary<string, string>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- Arn string
- ARN of the access point.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Access point name.
- Owner
Id string - AWS account ID of the owner.
- Status string
- Access point status.
- map[string]string
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- arn String
- ARN of the access point.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Access point name.
- owner
Id String - AWS account ID of the owner.
- status String
- Access point status.
- Map<String,String>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- arn string
- ARN of the access point.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Access point name.
- owner
Id string - AWS account ID of the owner.
- status string
- Access point status.
- {[key: string]: string}
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- arn str
- ARN of the access point.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Access point name.
- owner_
id str - AWS account ID of the owner.
- status str
- Access point status.
- Mapping[str, str]
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- arn String
- ARN of the access point.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Access point name.
- owner
Id String - AWS account ID of the owner.
- status String
- Access point status.
- Map<String>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
Look up Existing FilesAccessPoint Resource
Get an existing FilesAccessPoint resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: FilesAccessPointState, opts?: CustomResourceOptions): FilesAccessPoint@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
file_system_id: Optional[str] = None,
name: Optional[str] = None,
owner_id: Optional[str] = None,
posix_users: Optional[Sequence[FilesAccessPointPosixUserArgs]] = None,
region: Optional[str] = None,
root_directories: Optional[Sequence[FilesAccessPointRootDirectoryArgs]] = None,
status: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
timeouts: Optional[FilesAccessPointTimeoutsArgs] = None) -> FilesAccessPointfunc GetFilesAccessPoint(ctx *Context, name string, id IDInput, state *FilesAccessPointState, opts ...ResourceOption) (*FilesAccessPoint, error)public static FilesAccessPoint Get(string name, Input<string> id, FilesAccessPointState? state, CustomResourceOptions? opts = null)public static FilesAccessPoint get(String name, Output<String> id, FilesAccessPointState state, CustomResourceOptions options)resources: _: type: aws:s3:FilesAccessPoint get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Arn string
- ARN of the access point.
- File
System stringId - File system ID. Changing this value forces replacement.
- Name string
- Access point name.
- Owner
Id string - AWS account ID of the owner.
- Posix
Users List<FilesAccess Point Posix User> POSIX user configuration. See
posixUserbelow. Changing this value forces replacement.The following arguments are optional:
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Root
Directories List<FilesAccess Point Root Directory> - Root directory configuration. See
rootDirectorybelow. Changing this value forces replacement. - Status string
- Access point status.
- Dictionary<string, string>
- Map of tags assigned to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Dictionary<string, string>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - Timeouts
Files
Access Point Timeouts
- Arn string
- ARN of the access point.
- File
System stringId - File system ID. Changing this value forces replacement.
- Name string
- Access point name.
- Owner
Id string - AWS account ID of the owner.
- Posix
Users []FilesAccess Point Posix User Args POSIX user configuration. See
posixUserbelow. Changing this value forces replacement.The following arguments are optional:
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Root
Directories []FilesAccess Point Root Directory Args - Root directory configuration. See
rootDirectorybelow. Changing this value forces replacement. - Status string
- Access point status.
- map[string]string
- Map of tags assigned to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - map[string]string
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - Timeouts
Files
Access Point Timeouts Args
- arn String
- ARN of the access point.
- file
System StringId - File system ID. Changing this value forces replacement.
- name String
- Access point name.
- owner
Id String - AWS account ID of the owner.
- posix
Users List<FilesAccess Point Posix User> POSIX user configuration. See
posixUserbelow. Changing this value forces replacement.The following arguments are optional:
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- root
Directories List<FilesAccess Point Root Directory> - Root directory configuration. See
rootDirectorybelow. Changing this value forces replacement. - status String
- Access point status.
- Map<String,String>
- Map of tags assigned to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String,String>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - timeouts
Files
Access Point Timeouts
- arn string
- ARN of the access point.
- file
System stringId - File system ID. Changing this value forces replacement.
- name string
- Access point name.
- owner
Id string - AWS account ID of the owner.
- posix
Users FilesAccess Point Posix User[] POSIX user configuration. See
posixUserbelow. Changing this value forces replacement.The following arguments are optional:
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- root
Directories FilesAccess Point Root Directory[] - Root directory configuration. See
rootDirectorybelow. Changing this value forces replacement. - status string
- Access point status.
- {[key: string]: string}
- Map of tags assigned to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - {[key: string]: string}
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - timeouts
Files
Access Point Timeouts
- arn str
- ARN of the access point.
- file_
system_ strid - File system ID. Changing this value forces replacement.
- name str
- Access point name.
- owner_
id str - AWS account ID of the owner.
- posix_
users Sequence[FilesAccess Point Posix User Args] POSIX user configuration. See
posixUserbelow. Changing this value forces replacement.The following arguments are optional:
- region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- root_
directories Sequence[FilesAccess Point Root Directory Args] - Root directory configuration. See
rootDirectorybelow. Changing this value forces replacement. - status str
- Access point status.
- Mapping[str, str]
- Map of tags assigned to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Mapping[str, str]
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - timeouts
Files
Access Point Timeouts Args
- arn String
- ARN of the access point.
- file
System StringId - File system ID. Changing this value forces replacement.
- name String
- Access point name.
- owner
Id String - AWS account ID of the owner.
- posix
Users List<Property Map> POSIX user configuration. See
posixUserbelow. Changing this value forces replacement.The following arguments are optional:
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- root
Directories List<Property Map> - Root directory configuration. See
rootDirectorybelow. Changing this value forces replacement. - status String
- Access point status.
- Map<String>
- Map of tags assigned to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - timeouts Property Map
Supporting Types
FilesAccessPointPosixUser, FilesAccessPointPosixUserArgs
- Gid int
- POSIX group ID. Changing this value forces replacement.
- Uid int
- POSIX user ID. Changing this value forces replacement.
- Secondary
Gids List<int> - Set of secondary POSIX group IDs. Changing this value forces replacement.
- Gid int
- POSIX group ID. Changing this value forces replacement.
- Uid int
- POSIX user ID. Changing this value forces replacement.
- Secondary
Gids []int - Set of secondary POSIX group IDs. Changing this value forces replacement.
- gid Integer
- POSIX group ID. Changing this value forces replacement.
- uid Integer
- POSIX user ID. Changing this value forces replacement.
- secondary
Gids List<Integer> - Set of secondary POSIX group IDs. Changing this value forces replacement.
- gid number
- POSIX group ID. Changing this value forces replacement.
- uid number
- POSIX user ID. Changing this value forces replacement.
- secondary
Gids number[] - Set of secondary POSIX group IDs. Changing this value forces replacement.
- gid int
- POSIX group ID. Changing this value forces replacement.
- uid int
- POSIX user ID. Changing this value forces replacement.
- secondary_
gids Sequence[int] - Set of secondary POSIX group IDs. Changing this value forces replacement.
- gid Number
- POSIX group ID. Changing this value forces replacement.
- uid Number
- POSIX user ID. Changing this value forces replacement.
- secondary
Gids List<Number> - Set of secondary POSIX group IDs. Changing this value forces replacement.
FilesAccessPointRootDirectory, FilesAccessPointRootDirectoryArgs
- Creation
Permissions List<FilesAccess Point Root Directory Creation Permission> - Permissions to set when creating the root directory. See
creationPermissionsbelow. Changing this value forces replacement. - Path string
- Root directory path. Changing this value forces replacement.
- Creation
Permissions []FilesAccess Point Root Directory Creation Permission - Permissions to set when creating the root directory. See
creationPermissionsbelow. Changing this value forces replacement. - Path string
- Root directory path. Changing this value forces replacement.
- creation
Permissions List<FilesAccess Point Root Directory Creation Permission> - Permissions to set when creating the root directory. See
creationPermissionsbelow. Changing this value forces replacement. - path String
- Root directory path. Changing this value forces replacement.
- creation
Permissions FilesAccess Point Root Directory Creation Permission[] - Permissions to set when creating the root directory. See
creationPermissionsbelow. Changing this value forces replacement. - path string
- Root directory path. Changing this value forces replacement.
- creation_
permissions Sequence[FilesAccess Point Root Directory Creation Permission] - Permissions to set when creating the root directory. See
creationPermissionsbelow. Changing this value forces replacement. - path str
- Root directory path. Changing this value forces replacement.
- creation
Permissions List<Property Map> - Permissions to set when creating the root directory. See
creationPermissionsbelow. Changing this value forces replacement. - path String
- Root directory path. Changing this value forces replacement.
FilesAccessPointRootDirectoryCreationPermission, FilesAccessPointRootDirectoryCreationPermissionArgs
- Owner
Gid int - Owner group ID. Changing this value forces replacement.
- Owner
Uid int - Owner user ID. Changing this value forces replacement.
- Permissions string
- POSIX permissions in octal notation. Changing this value forces replacement.
- Owner
Gid int - Owner group ID. Changing this value forces replacement.
- Owner
Uid int - Owner user ID. Changing this value forces replacement.
- Permissions string
- POSIX permissions in octal notation. Changing this value forces replacement.
- owner
Gid Integer - Owner group ID. Changing this value forces replacement.
- owner
Uid Integer - Owner user ID. Changing this value forces replacement.
- permissions String
- POSIX permissions in octal notation. Changing this value forces replacement.
- owner
Gid number - Owner group ID. Changing this value forces replacement.
- owner
Uid number - Owner user ID. Changing this value forces replacement.
- permissions string
- POSIX permissions in octal notation. Changing this value forces replacement.
- owner_
gid int - Owner group ID. Changing this value forces replacement.
- owner_
uid int - Owner user ID. Changing this value forces replacement.
- permissions str
- POSIX permissions in octal notation. Changing this value forces replacement.
- owner
Gid Number - Owner group ID. Changing this value forces replacement.
- owner
Uid Number - Owner user ID. Changing this value forces replacement.
- permissions String
- POSIX permissions in octal notation. Changing this value forces replacement.
FilesAccessPointTimeouts, FilesAccessPointTimeoutsArgs
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- create str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
Import
Identity Schema
Required
id- Identifier of the access point.
Optional
accountId(String) AWS Account where this resource is managed.region(String) Region where this resource is managed.
Using pulumi import, import S3 Files Access Point using id. For example:
$ pulumi import aws:s3/filesAccessPoint:FilesAccessPoint example fsap-1234567890abcdef0
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
awsTerraform Provider.
published on Thursday, Apr 16, 2026 by Pulumi
