Class GGCore
- java.lang.Object
-
- software.amazon.awssdk.iot.discovery.model.GGCore
-
public class GGCore extends Object
Information about a particular Greengrass core within a Greengrass group API Documentation: https://docs.aws.amazon.com/greengrass/latest/developerguide/gg-discover-api.html
-
-
Constructor Summary
Constructors Constructor Description GGCore()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)List<ConnectivityInfo>getConnectivity()StringgetThingArn()inthashCode()voidsetConnectivity(List<ConnectivityInfo> connectivity)Sets the list of distinct ways to connect to the associated Greengrass corevoidsetThingArn(String thingArn)Sets the resource name of the IoT thing associated with a Greengrass core
-
-
-
Method Detail
-
getThingArn
public String getThingArn()
- Returns:
- resource name of the IoT thing associated with a Greengrass core
-
setThingArn
public void setThingArn(String thingArn)
Sets the resource name of the IoT thing associated with a Greengrass core- Parameters:
thingArn- resource name of the IoT thing associated with a Greengrass core
-
getConnectivity
public List<ConnectivityInfo> getConnectivity()
- Returns:
- list of distinct ways to connect to the associated Greengrass core
-
setConnectivity
public void setConnectivity(List<ConnectivityInfo> connectivity)
Sets the list of distinct ways to connect to the associated Greengrass core- Parameters:
connectivity- list of distinct ways to connect to the associated Greengrass core
-
-