interface IpAddressesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Deadline.CfnWorker.IpAddressesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdeadline#CfnWorker_IpAddressesProperty |
Java | software.amazon.awscdk.services.deadline.CfnWorker.IpAddressesProperty |
Python | aws_cdk.aws_deadline.CfnWorker.IpAddressesProperty |
TypeScript | aws-cdk-lib » aws_deadline » CfnWorker » IpAddressesProperty |
The IP addresses for a host.
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 ipAddressesProperty: deadline.CfnWorker.IpAddressesProperty = {
ipV4Addresses: ['ipV4Addresses'],
ipV6Addresses: ['ipV6Addresses'],
};
Properties
| Name | Type | Description |
|---|---|---|
| ip | string[] | The IpV4 address of the network. |
| ip | string[] | The IpV6 address for the network and node component. |
ipV4Addresses?
Type:
string[]
(optional)
The IpV4 address of the network.
ipV6Addresses?
Type:
string[]
(optional)
The IpV6 address for the network and node component.

.NET
Go
Java
Python
TypeScript