interface GreengrassV2Property
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTSiteWise.Mixins.CfnGatewayPropsMixin.GreengrassV2Property |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotsitewise/mixins#CfnGatewayPropsMixin_GreengrassV2Property |
Java | software.amazon.awscdk.mixins.preview.services.iotsitewise.mixins.CfnGatewayPropsMixin.GreengrassV2Property |
Python | aws_cdk.mixins_preview.aws_iotsitewise.mixins.CfnGatewayPropsMixin.GreengrassV2Property |
TypeScript | @aws-cdk/mixins-preview » aws_iotsitewise » mixins » CfnGatewayPropsMixin » GreengrassV2Property |
Contains details for a gateway that runs on AWS IoT Greengrass V2 .
To create a gateway that runs on AWS IoT Greengrass V2 , you must deploy the IoT SiteWise Edge component to your gateway device. Your Greengrass device role must use the AWSIoTSiteWiseEdgeAccess policy. For more information, see Using AWS IoT SiteWise at the edge in the AWS IoT SiteWise User Guide .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iotsitewise_mixins } from '@aws-cdk/mixins-preview/aws-iotsitewise';
const greengrassV2Property: iotsitewise_mixins.CfnGatewayPropsMixin.GreengrassV2Property = {
coreDeviceOperatingSystem: 'coreDeviceOperatingSystem',
coreDeviceThingName: 'coreDeviceThingName',
};
Properties
| Name | Type | Description |
|---|---|---|
| core | string | The operating system of the core device in AWS IoT Greengrass V2. |
| core | string | The name of the AWS IoT thing for your AWS IoT Greengrass V2 core device. |
coreDeviceOperatingSystem?
Type:
string
(optional)
The operating system of the core device in AWS IoT Greengrass V2.
coreDeviceThingName?
Type:
string
(optional)
The name of the AWS IoT thing for your AWS IoT Greengrass V2 core device.

.NET
Go
Java
Python
TypeScript