Class: Aws::IoTSiteWise::Types::GatewayPlatform
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::GatewayPlatform
- Defined in:
- gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb
Overview
The gateway's platform configuration. You can only specify one platform type in a gateway.
(Legacy only) For Greengrass V1 gateways, specify the greengrass
parameter with a valid Greengrass group ARN.
For Greengrass V2 gateways, specify the greengrassV2
parameter with
a valid core device thing name. If creating a V3 gateway
(gatewayVersion=3
), you must also specify the
coreDeviceOperatingSystem
.
For Siemens Industrial Edge gateways, specify the siemensIE
parameter with a valid IoT Core thing name.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#greengrass ⇒ Types::Greengrass
A gateway that runs on IoT Greengrass.
-
#greengrass_v2 ⇒ Types::GreengrassV2
A gateway that runs on IoT Greengrass V2.
-
#siemens_ie ⇒ Types::SiemensIE
A SiteWise Edge gateway that runs on a Siemens Industrial Edge Device.
Instance Attribute Details
#greengrass ⇒ Types::Greengrass
A gateway that runs on IoT Greengrass.
6751 6752 6753 6754 6755 6756 6757 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 6751 class GatewayPlatform < Struct.new( :greengrass, :greengrass_v2, :siemens_ie) SENSITIVE = [] include Aws::Structure end |
#greengrass_v2 ⇒ Types::GreengrassV2
A gateway that runs on IoT Greengrass V2.
6751 6752 6753 6754 6755 6756 6757 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 6751 class GatewayPlatform < Struct.new( :greengrass, :greengrass_v2, :siemens_ie) SENSITIVE = [] include Aws::Structure end |
#siemens_ie ⇒ Types::SiemensIE
A SiteWise Edge gateway that runs on a Siemens Industrial Edge Device.
6751 6752 6753 6754 6755 6756 6757 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 6751 class GatewayPlatform < Struct.new( :greengrass, :greengrass_v2, :siemens_ie) SENSITIVE = [] include Aws::Structure end |