Interface DiscoveryData.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DiscoveryData.Builder,DiscoveryData>,SdkBuilder<DiscoveryData.Builder,DiscoveryData>,SdkPojo
- Enclosing class:
- DiscoveryData
public static interface DiscoveryData.Builder extends SdkPojo, CopyableBuilder<DiscoveryData.Builder,DiscoveryData>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DiscoveryData.BuildercapabilityArns(String... capabilityArns)List of capabilities to associate with agent.DiscoveryData.BuildercapabilityArns(Collection<String> capabilityArns)List of capabilities to associate with agent.DiscoveryData.BuilderprivateIpAddresses(String... privateIpAddresses)List of private IP addresses to associate with agent.DiscoveryData.BuilderprivateIpAddresses(Collection<String> privateIpAddresses)List of private IP addresses to associate with agent.DiscoveryData.BuilderpublicIpAddresses(String... publicIpAddresses)List of public IP addresses to associate with agent.DiscoveryData.BuilderpublicIpAddresses(Collection<String> publicIpAddresses)List of public IP addresses to associate with agent.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
capabilityArns
DiscoveryData.Builder capabilityArns(Collection<String> capabilityArns)
List of capabilities to associate with agent.
- Parameters:
capabilityArns- List of capabilities to associate with agent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
capabilityArns
DiscoveryData.Builder capabilityArns(String... capabilityArns)
List of capabilities to associate with agent.
- Parameters:
capabilityArns- List of capabilities to associate with agent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
privateIpAddresses
DiscoveryData.Builder privateIpAddresses(Collection<String> privateIpAddresses)
List of private IP addresses to associate with agent.
- Parameters:
privateIpAddresses- List of private IP addresses to associate with agent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
privateIpAddresses
DiscoveryData.Builder privateIpAddresses(String... privateIpAddresses)
List of private IP addresses to associate with agent.
- Parameters:
privateIpAddresses- List of private IP addresses to associate with agent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
publicIpAddresses
DiscoveryData.Builder publicIpAddresses(Collection<String> publicIpAddresses)
List of public IP addresses to associate with agent.
- Parameters:
publicIpAddresses- List of public IP addresses to associate with agent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
publicIpAddresses
DiscoveryData.Builder publicIpAddresses(String... publicIpAddresses)
List of public IP addresses to associate with agent.
- Parameters:
publicIpAddresses- List of public IP addresses to associate with agent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-