Interface CfnWorker.HostPropertiesRequestProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnWorker.HostPropertiesRequestProperty.Jsii$Proxy
Enclosing class:
CfnWorker

@Stability(Stable) public static interface CfnWorker.HostPropertiesRequestProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.deadline.*;
 HostPropertiesRequestProperty hostPropertiesRequestProperty = HostPropertiesRequestProperty.builder()
         .hostName("hostName")
         .ipAddresses(IpAddressesProperty.builder()
                 .ipV4Addresses(List.of("ipV4Addresses"))
                 .ipV6Addresses(List.of("ipV6Addresses"))
                 .build())
         .build();
 

See Also: