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 boolean
equals(Object o)
List<String>
getCAs()
List<GGCore>
getCores()
String
getGGGroupId()
int
hashCode()
void
setCAs(List<String> CAs)
Sets the list of certificate authorities (in PEM format) associated with the Greengrass groupvoid
setCores(List<GGCore> cores)
Sets the list of Greengrass cores belonging to this groupvoid
setGGGroupId(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
-
-