public static interface CfnGateway.GatewayCapabilitySummaryProperty
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.*; GatewayCapabilitySummaryProperty gatewayCapabilitySummaryProperty = GatewayCapabilitySummaryProperty.builder() .capabilityNamespace("capabilityNamespace") // the properties below are optional .capabilityConfiguration("capabilityConfiguration") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnGateway.GatewayCapabilitySummaryProperty.Builder
A builder for
CfnGateway.GatewayCapabilitySummaryProperty |
static class |
CfnGateway.GatewayCapabilitySummaryProperty.Jsii$Proxy
An implementation for
CfnGateway.GatewayCapabilitySummaryProperty |
Modifier and Type | Method and Description |
---|---|
static CfnGateway.GatewayCapabilitySummaryProperty.Builder |
builder() |
default java.lang.String |
getCapabilityConfiguration()
The JSON document that defines the configuration for the gateway capability.
|
java.lang.String |
getCapabilityNamespace()
The namespace of the capability configuration.
|
java.lang.String getCapabilityNamespace()
For example, if you configure OPC-UA sources from the AWS IoT SiteWise console, your OPC-UA capability configuration has the namespace iotsitewise:opcuacollector:version
, where version
is a number such as 1
.
The maximum length is 512 characters with the pattern ^[a-zA-Z]+:[a-zA-Z]+:[0-9]+$
.
default java.lang.String getCapabilityConfiguration()
For more information, see Configuring data sources (CLI) in the AWS IoT SiteWise User Guide .
static CfnGateway.GatewayCapabilitySummaryProperty.Builder builder()