interface PosixUserProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.S3Files.CfnAccessPointPropsMixin.PosixUserProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awss3files#CfnAccessPointPropsMixin_PosixUserProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.s3files.CfnAccessPointPropsMixin.PosixUserProperty |
Python | aws_cdk.cfn_property_mixins.aws_s3files.CfnAccessPointPropsMixin.PosixUserProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_s3files » CfnAccessPointPropsMixin » 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/cfn-property-mixins';
const posixUserProperty: s3files.CfnAccessPointPropsMixin.PosixUserProperty = {
gid: 'gid',
secondaryGids: ['secondaryGids'],
uid: 'uid',
};
Properties
| Name | Type | Description |
|---|---|---|
| gid? | string | The POSIX group 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. |
| uid? | string | The POSIX user ID used for all file system operations using this access point. |
gid?
Type:
string
(optional)
The POSIX group 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.
uid?
Type:
string
(optional)
The POSIX user ID used for all file system operations using this access point.

.NET
Go
Java
Python
TypeScript