interface CfnWorkerMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Deadline.CfnWorkerMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdeadline#CfnWorkerMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.deadline.CfnWorkerMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_deadline.CfnWorkerMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_deadline » CfnWorkerMixinProps |
Properties for CfnWorkerPropsMixin.
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/cfn-property-mixins';
const cfnWorkerMixinProps: deadline.CfnWorkerMixinProps = {
farmId: 'farmId',
fleetId: 'fleetId',
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
(optional)
The farm ID.
fleetId?
Type:
string
(optional)
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