interface CustomPosixUserConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnDomainPropsMixin.CustomPosixUserConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnDomainPropsMixin_CustomPosixUserConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnDomainPropsMixin.CustomPosixUserConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnDomainPropsMixin.CustomPosixUserConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnDomainPropsMixin » CustomPosixUserConfigProperty |
Details about the POSIX identity that is used for file system operations.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const customPosixUserConfigProperty: sagemaker.CfnDomainPropsMixin.CustomPosixUserConfigProperty = {
gid: 123,
uid: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| gid? | number | The POSIX group ID. |
| uid? | number | The POSIX user ID. |
gid?
Type:
number
(optional)
The POSIX group ID.
uid?
Type:
number
(optional)
The POSIX user ID.

.NET
Go
Java
Python
TypeScript