Interface ConnectivityInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ConnectivityInfo.Builder,ConnectivityInfo>,SdkBuilder<ConnectivityInfo.Builder,ConnectivityInfo>,SdkPojo
- Enclosing class:
- ConnectivityInfo
public static interface ConnectivityInfo.Builder extends SdkPojo, CopyableBuilder<ConnectivityInfo.Builder,ConnectivityInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConnectivityInfo.BuilderhostAddress(String hostAddress)The endpoint for the Greengrass core.ConnectivityInfo.Builderid(String id)The ID of the connectivity information.ConnectivityInfo.Buildermetadata(String metadata)Metadata for this endpoint.ConnectivityInfo.BuilderportNumber(Integer portNumber)The port of the Greengrass core.-
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
-
hostAddress
ConnectivityInfo.Builder hostAddress(String hostAddress)
The endpoint for the Greengrass core. Can be an IP address or DNS.- Parameters:
hostAddress- The endpoint for the Greengrass core. Can be an IP address or DNS.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
id
ConnectivityInfo.Builder id(String id)
The ID of the connectivity information.- Parameters:
id- The ID of the connectivity information.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
metadata
ConnectivityInfo.Builder metadata(String metadata)
Metadata for this endpoint.- Parameters:
metadata- Metadata for this endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
portNumber
ConnectivityInfo.Builder portNumber(Integer portNumber)
The port of the Greengrass core. Usually 8883.- Parameters:
portNumber- The port of the Greengrass core. Usually 8883.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-