Class GGGroup
- java.lang.Object
-
- software.amazon.awssdk.iot.discovery.model.GGGroup
-
public class GGGroup extends Object
Information about a Greengrass group: a structured collection of one or more Grengrass cores API Documentation: https://docs.aws.amazon.com/greengrass/latest/developerguide/gg-discover-api.html
-
-
Constructor Summary
Constructors Constructor Description GGGroup()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)List<String>getCAs()List<GGCore>getCores()StringgetGGGroupId()inthashCode()voidsetCAs(List<String> CAs)Sets the list of certificate authorities (in PEM format) associated with the Greengrass groupvoidsetCores(List<GGCore> cores)Sets the list of Greengrass cores belonging to this groupvoidsetGGGroupId(String GGGroupId)Sets the identifier for the Greengrass group
-
-
-
Method Detail
-
setCores
public void setCores(List<GGCore> cores)
Sets the list of Greengrass cores belonging to this group- Parameters:
cores- list of Greengrass cores belonging to this group
-
getCAs
public List<String> getCAs()
- Returns:
- list of certificate authorities (in PEM format) associated with the Greengrass group
-
setCAs
public void setCAs(List<String> CAs)
Sets the list of certificate authorities (in PEM format) associated with the Greengrass group- Parameters:
CAs- list of certificate authorities (in PEM format) associated with the Greengrass group
-
getGGGroupId
public String getGGGroupId()
- Returns:
- identifier for the Greengrass group
-
setGGGroupId
public void setGGGroupId(String GGGroupId)
Sets the identifier for the Greengrass group- Parameters:
GGGroupId- identifier for the Greengrass group
-
-