Interface CfnWorkerPropsMixin.HostPropertiesRequestProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkerPropsMixin.HostPropertiesRequestProperty.Jsii$Proxy
- Enclosing class:
CfnWorkerPropsMixin
@Stability(Stable)
public static interface CfnWorkerPropsMixin.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.cfnpropertymixins.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 forCfnWorkerPropsMixin.HostPropertiesRequestPropertystatic final classAn implementation forCfnWorkerPropsMixin.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
IResolvableorCfnWorkerPropsMixin.IpAddressesProperty- See Also:
-
builder
-