interface JobRunAsUserProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Deadline.Mixins.CfnQueuePropsMixin.JobRunAsUserProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdeadline/mixins#CfnQueuePropsMixin_JobRunAsUserProperty |
Java | software.amazon.awscdk.mixins.preview.services.deadline.mixins.CfnQueuePropsMixin.JobRunAsUserProperty |
Python | aws_cdk.mixins_preview.aws_deadline.mixins.CfnQueuePropsMixin.JobRunAsUserProperty |
TypeScript | @aws-cdk/mixins-preview » aws_deadline » mixins » CfnQueuePropsMixin » JobRunAsUserProperty |
Identifies the user for a job.
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 jobRunAsUserProperty: deadline_mixins.CfnQueuePropsMixin.JobRunAsUserProperty = {
posix: {
group: 'group',
user: 'user',
},
runAs: 'runAs',
windows: {
passwordArn: 'passwordArn',
user: 'user',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| posix? | IResolvable | Posix | The user and group that the jobs in the queue run as. |
| run | string | Specifies whether the job should run using the queue's system user or if the job should run using the worker agent system user. |
| windows? | IResolvable | Windows | Identifies a Microsoft Windows user. |
posix?
Type:
IResolvable | Posix
(optional)
The user and group that the jobs in the queue run as.
runAs?
Type:
string
(optional)
Specifies whether the job should run using the queue's system user or if the job should run using the worker agent system user.
windows?
Type:
IResolvable | Windows
(optional)
Identifies a Microsoft Windows user.

.NET
Go
Java
Python
TypeScript