interface PosixUserProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.S3Files.CfnAccessPoint.PosixUserProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awss3files#CfnAccessPoint_PosixUserProperty |
Java | software.amazon.awscdk.services.s3files.CfnAccessPoint.PosixUserProperty |
Python | aws_cdk.aws_s3files.CfnAccessPoint.PosixUserProperty |
TypeScript | aws-cdk-lib » aws_s3files » CfnAccessPoint » PosixUserProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_s3files as s3files } from 'aws-cdk-lib';
const posixUserProperty: s3files.CfnAccessPoint.PosixUserProperty = {
gid: 'gid',
uid: 'uid',
// the properties below are optional
secondaryGids: ['secondaryGids'],
};
Properties
| Name | Type | Description |
|---|---|---|
| gid | string | The POSIX group ID used for all file system operations using this access point. |
| uid | string | The POSIX user ID used for all file system operations using this access point. |
| secondary | string[] | Secondary POSIX group IDs used for all file system operations using this access point. |
gid
Type:
string
The POSIX group ID used for all file system operations using this access point.
uid
Type:
string
The POSIX user ID used for all file system operations using this access point.
secondaryGids?
Type:
string[]
(optional)
Secondary POSIX group IDs used for all file system operations using this access point.

.NET
Go
Java
Python
TypeScript