Class: Aws::IoTSiteWise::Types::Greengrass
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::Greengrass
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotsitewise/types.rb
Overview
Contains details for a gateway that runs on IoT Greengrass. To create a gateway that runs on IoT Greengrass, you must add the IoT SiteWise connector to a Greengrass group and deploy it. Your Greengrass group must also have permissions to upload data to IoT SiteWise. For more information, see [Ingesting data using a gateway] in the *IoT SiteWise User Guide*.
[1]: docs.aws.amazon.com/iot-sitewise/latest/userguide/gateway-connector.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#group_arn ⇒ String
The [ARN] of the Greengrass group.
Instance Attribute Details
#group_arn ⇒ String
The [ARN] of the Greengrass group. For more information about how to find a group’s ARN, see [ListGroups] and [GetGroup] in the *IoT Greengrass V1 API Reference*.
[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html [2]: docs.aws.amazon.com/greengrass/v1/apireference/listgroups-get.html [3]: docs.aws.amazon.com/greengrass/v1/apireference/getgroup-get.html
6291 6292 6293 6294 6295 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 6291 class Greengrass < Struct.new( :group_arn) SENSITIVE = [] include Aws::Structure end |