interface CfnWorkerProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Deadline.CfnWorkerProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdeadline#CfnWorkerProps |
Java | software.amazon.awscdk.services.deadline.CfnWorkerProps |
Python | aws_cdk.aws_deadline.CfnWorkerProps |
TypeScript | aws-cdk-lib » aws_deadline » CfnWorkerProps |
Properties for defining a CfnWorker.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-worker.html
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 cfnWorkerProps: deadline.CfnWorkerProps = {
farmId: 'farmId',
fleetId: 'fleetId',
// the properties below are optional
hostProperties: {
hostName: 'hostName',
ipAddresses: {
ipV4Addresses: ['ipV4Addresses'],
ipV6Addresses: ['ipV6Addresses'],
},
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| farm | string | The farm ID. |
| fleet | string | The fleet ID. |
| host | IResolvable | Host | The host property details. |
| tags? | Tags[] | An array of key-value pairs to apply to this resource. |
farmId
Type:
string
The farm ID.
fleetId
Type:
string
The fleet ID.
hostProperties?
Type:
IResolvable | Host
(optional)
The host property details.
tags?
Type:
Tags[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript