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