interface PosixUserProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Deadline.CfnQueuePropsMixin.PosixUserProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdeadline#CfnQueuePropsMixin_PosixUserProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.deadline.CfnQueuePropsMixin.PosixUserProperty |
Python | aws_cdk.cfn_property_mixins.aws_deadline.CfnQueuePropsMixin.PosixUserProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_deadline » 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 { aws_deadline as deadline } from '@aws-cdk/cfn-property-mixins';
const posixUserProperty: deadline.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