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();
 - 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnGateway.GatewayPlatformPropertystatic final classAn implementation forCfnGateway.GatewayPlatformProperty - 
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getGreengrass
A gateway that runs on AWS IoT Greengrass . - 
getGreengrassV2
A gateway that runs on AWS IoT Greengrass V2. - 
builder
 
 -