interface PosixUserProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Deadline.Mixins.CfnQueuePropsMixin.PosixUserProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdeadline/mixins#CfnQueuePropsMixin_PosixUserProperty |
Java | software.amazon.awscdk.mixins.preview.services.deadline.mixins.CfnQueuePropsMixin.PosixUserProperty |
Python | aws_cdk.mixins_preview.aws_deadline.mixins.CfnQueuePropsMixin.PosixUserProperty |
TypeScript | @aws-cdk/mixins-preview » aws_deadline » mixins » CfnQueuePropsMixin » PosixUserProperty |
The POSIX user.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as deadline_mixins } from '@aws-cdk/mixins-preview/aws-deadline';
const posixUserProperty: deadline_mixins.CfnQueuePropsMixin.PosixUserProperty = {
group: 'group',
user: 'user',
};
Properties
| Name | Type | Description |
|---|---|---|
| group? | string | The name of the POSIX user's group. |
| user? | string | The name of the POSIX user. |
group?
Type:
string
(optional)
The name of the POSIX user's group.
user?
Type:
string
(optional)
The name of the POSIX user.

.NET
Go
Java
Python
TypeScript