Interface CfnGateway.GatewayPlatformProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnGateway.GatewayPlatformProperty.Jsii$Proxy
Enclosing class:
CfnGateway

@Stability(Stable) public static interface CfnGateway.GatewayPlatformProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.iotsitewise.*;
 GatewayPlatformProperty gatewayPlatformProperty = GatewayPlatformProperty.builder()
         .greengrass(GreengrassProperty.builder()
                 .groupArn("groupArn")
                 .build())
         .greengrassV2(GreengrassV2Property.builder()
                 .coreDeviceThingName("coreDeviceThingName")
                 .build())
         .build();