Interface CfnGatewayMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnGatewayMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-04-02T21:55:28.706Z") @Stability(Stable) public interface CfnGatewayMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnGatewayPropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.iotsitewise.*;
 CfnGatewayMixinProps cfnGatewayMixinProps = CfnGatewayMixinProps.builder()
         .gatewayCapabilitySummaries(List.of(GatewayCapabilitySummaryProperty.builder()
                 .capabilityConfiguration("capabilityConfiguration")
                 .capabilityNamespace("capabilityNamespace")
                 .build()))
         .gatewayName("gatewayName")
         .gatewayPlatform(GatewayPlatformProperty.builder()
                 .greengrass(GreengrassProperty.builder()
                         .groupArn("groupArn")
                         .build())
                 .greengrassV2(GreengrassV2Property.builder()
                         .coreDeviceOperatingSystem("coreDeviceOperatingSystem")
                         .coreDeviceThingName("coreDeviceThingName")
                         .build())
                 .siemensIe(SiemensIEProperty.builder()
                         .iotCoreThingName("iotCoreThingName")
                         .build())
                 .build())
         .gatewayVersion("gatewayVersion")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: