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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWorker.HostPropertiesRequestPropertystatic final classAn implementation forCfnWorker.HostPropertiesRequestProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHostName
The host name.- See Also:
-
getIpAddresses
The IP addresses for a host.Returns union: either
IResolvableorCfnWorker.IpAddressesProperty- See Also:
-
builder
-