interface GatewayCapabilitySummaryProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.IoTSiteWise.CfnGateway.GatewayCapabilitySummaryProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotsitewise#CfnGateway_GatewayCapabilitySummaryProperty | 
  Java | software.amazon.awscdk.services.iotsitewise.CfnGateway.GatewayCapabilitySummaryProperty | 
  Python | aws_cdk.aws_iotsitewise.CfnGateway.GatewayCapabilitySummaryProperty | 
  TypeScript  | aws-cdk-lib » aws_iotsitewise » CfnGateway » GatewayCapabilitySummaryProperty | 
Contains a summary of a gateway capability configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iotsitewise as iotsitewise } from 'aws-cdk-lib';
const gatewayCapabilitySummaryProperty: iotsitewise.CfnGateway.GatewayCapabilitySummaryProperty = {
  capabilityNamespace: 'capabilityNamespace',
  // the properties below are optional
  capabilityConfiguration: 'capabilityConfiguration',
};
Properties
| Name | Type | Description | 
|---|---|---|
| capability | string | The namespace of the capability configuration. | 
| capability | string | The JSON document that defines the configuration for the gateway capability. | 
capabilityNamespace
Type:
string
The namespace of the capability configuration.
For example, if you configure OPC UA sources for an MQTT-enabled gateway, your OPC-UA capability configuration has the namespace iotsitewise:opcuacollector:3 .
capabilityConfiguration?
Type:
string
(optional)
The JSON document that defines the configuration for the gateway capability.
For more information, see Configuring data sources (CLI) in the AWS IoT SiteWise User Guide .

 .NET
 Go
 Java
 Python
 TypeScript