interface HostPropertiesRequestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Deadline.CfnWorker.HostPropertiesRequestProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdeadline#CfnWorker_HostPropertiesRequestProperty |
Java | software.amazon.awscdk.services.deadline.CfnWorker.HostPropertiesRequestProperty |
Python | aws_cdk.aws_deadline.CfnWorker.HostPropertiesRequestProperty |
TypeScript | aws-cdk-lib » aws_deadline » CfnWorker » HostPropertiesRequestProperty |
The host property details.
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 hostPropertiesRequestProperty: deadline.CfnWorker.HostPropertiesRequestProperty = {
hostName: 'hostName',
ipAddresses: {
ipV4Addresses: ['ipV4Addresses'],
ipV6Addresses: ['ipV6Addresses'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| host | string | The host name. |
| ip | IResolvable | Ip | The IP addresses for a host. |
hostName?
Type:
string
(optional)
The host name.
ipAddresses?
Type:
IResolvable | Ip
(optional)
The IP addresses for a host.

.NET
Go
Java
Python
TypeScript