Interface CfnGateway.IGatewayPlatformProperty
Contains a gateway's platform information.
Namespace: Amazon.CDK.AWS.IoTSiteWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IGatewayPlatformProperty
Syntax (vb)
Public Interface IGatewayPlatformProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTSiteWise;
var gatewayPlatformProperty = new GatewayPlatformProperty {
Greengrass = new GreengrassProperty {
GroupArn = "groupArn"
},
GreengrassV2 = new GreengrassV2Property {
CoreDeviceThingName = "coreDeviceThingName"
},
SiemensIe = new SiemensIEProperty {
IotCoreThingName = "iotCoreThingName"
}
};
Synopsis
Properties
Greengrass | A gateway that runs on AWS IoT Greengrass . |
GreengrassV2 | A gateway that runs on AWS IoT Greengrass V2 . |
SiemensIe | A AWS IoT SiteWise Edge gateway that runs on a Siemens Industrial Edge Device. |
Properties
Greengrass
A gateway that runs on AWS IoT Greengrass .
virtual object Greengrass { get; }
Property Value
System.Object
Remarks
GreengrassV2
A gateway that runs on AWS IoT Greengrass V2 .
virtual object GreengrassV2 { get; }
Property Value
System.Object
Remarks
SiemensIe
A AWS IoT SiteWise Edge gateway that runs on a Siemens Industrial Edge Device.
virtual object SiemensIe { get; }
Property Value
System.Object