interface JobRunAsUserProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.aws_deadline.CfnQueue.JobRunAsUserProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdeadline#CfnQueue_JobRunAsUserProperty | 
  Java | software.amazon.awscdk.services.deadline.CfnQueue.JobRunAsUserProperty | 
  Python | aws_cdk.aws_deadline.CfnQueue.JobRunAsUserProperty | 
  TypeScript  | aws-cdk-lib » aws_deadline » CfnQueue » 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 { aws_deadline as deadline } from 'aws-cdk-lib';
const jobRunAsUserProperty: deadline.CfnQueue.JobRunAsUserProperty = {
  runAs: 'runAs',
  // the properties below are optional
  posix: {
    group: 'group',
    user: 'user',
  },
  windows: {
    passwordArn: 'passwordArn',
    user: 'user',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| 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. | 
| posix? | IResolvable | Posix | The user and group that the jobs in the queue run as. | 
| windows? | IResolvable | Windows | Identifies a Microsoft Windows user. | 
runAs
Type:
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.
posix?
Type:
IResolvable | Posix
(optional)
The user and group that the jobs in the queue run as.
windows?
Type:
IResolvable | Windows
(optional)
Identifies a Microsoft Windows user.

 .NET
 Go
 Java
 Python
 TypeScript