Interface CfnGatewayProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGatewayProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:07.759Z")
@Stability(Stable)
public interface CfnGatewayProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnGateway.
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.*;
CfnGatewayProps cfnGatewayProps = CfnGatewayProps.builder()
.gatewayName("gatewayName")
.gatewayPlatform(GatewayPlatformProperty.builder()
.greengrass(GreengrassProperty.builder()
.groupArn("groupArn")
.build())
.greengrassV2(GreengrassV2Property.builder()
.coreDeviceThingName("coreDeviceThingName")
// the properties below are optional
.coreDeviceOperatingSystem("coreDeviceOperatingSystem")
.build())
.siemensIe(SiemensIEProperty.builder()
.iotCoreThingName("iotCoreThingName")
.build())
.build())
// the properties below are optional
.gatewayCapabilitySummaries(List.of(GatewayCapabilitySummaryProperty.builder()
.capabilityNamespace("capabilityNamespace")
// the properties below are optional
.capabilityConfiguration("capabilityConfiguration")
.build()))
.gatewayVersion("gatewayVersion")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnGatewayPropsstatic final classAn implementation forCfnGatewayProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnGatewayProps.Builderbuilder()default ObjectA list of gateway capability summaries that each contain a namespace and status.A unique name for the gateway.The gateway's platform.default StringThe version of the gateway.getTags()A list of key-value pairs that contain metadata for the gateway.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGatewayName
A unique name for the gateway.- See Also:
-
getGatewayPlatform
The gateway's platform.You can only specify one platform in a gateway.
Returns union: either
IResolvableorCfnGateway.GatewayPlatformProperty- See Also:
-
getGatewayCapabilitySummaries
A list of gateway capability summaries that each contain a namespace and status.Each gateway capability defines data sources for the gateway. To retrieve a capability configuration's definition, use DescribeGatewayCapabilityConfiguration .
Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnGateway.GatewayCapabilitySummaryProperty>- See Also:
-
getGatewayVersion
The version of the gateway.A value of
3indicates an MQTT-enabled, V3 gateway, while2indicates a Classic streams, V2 gateway.- See Also:
-
getTags
A list of key-value pairs that contain metadata for the gateway.For more information, see Tagging your AWS IoT SiteWise resources in the AWS IoT SiteWise User Guide .
- See Also:
-
builder
- Returns:
- a
CfnGatewayProps.BuilderofCfnGatewayProps
-