interface GatewayPlatformProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.IoTSiteWise.CfnGateway.GatewayPlatformProperty | 
|  Java | software.amazon.awscdk.services.iotsitewise.CfnGateway.GatewayPlatformProperty | 
|  Python | aws_cdk.aws_iotsitewise.CfnGateway.GatewayPlatformProperty | 
|  TypeScript | @aws-cdk/aws-iotsitewise»CfnGateway»GatewayPlatformProperty | 
Contains a gateway's platform information.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iotsitewise from '@aws-cdk/aws-iotsitewise';
const gatewayPlatformProperty: iotsitewise.CfnGateway.GatewayPlatformProperty = {
  greengrass: {
    groupArn: 'groupArn',
  },
  greengrassV2: {
    coreDeviceThingName: 'coreDeviceThingName',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| greengrass? | IResolvable | Greengrass | A gateway that runs on AWS IoT Greengrass . | 
| greengrass | IResolvable | Greengrass | A gateway that runs on AWS IoT Greengrass V2. | 
greengrass?
Type:
IResolvable | Greengrass
(optional)
A gateway that runs on AWS IoT Greengrass .
greengrassV2?
Type:
IResolvable | Greengrass
(optional)
A gateway that runs on AWS IoT Greengrass V2.
