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