interface CustomPosixUserConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnDomainPropsMixin.CustomPosixUserConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnDomainPropsMixin_CustomPosixUserConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnDomainPropsMixin.CustomPosixUserConfigProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnDomainPropsMixin.CustomPosixUserConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const customPosixUserConfigProperty: sagemaker_mixins.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