interface GatewayCapabilitySummaryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTSiteWise.Mixins.CfnGatewayPropsMixin.GatewayCapabilitySummaryProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotsitewise/mixins#CfnGatewayPropsMixin_GatewayCapabilitySummaryProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotsitewise.mixins.CfnGatewayPropsMixin.GatewayCapabilitySummaryProperty |
Python | aws_cdk.mixins_preview.aws_iotsitewise.mixins.CfnGatewayPropsMixin.GatewayCapabilitySummaryProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotsitewise » mixins » CfnGatewayPropsMixin » 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 { mixins as iotsitewise_mixins } from '@aws-cdk/mixins-preview/aws-iotsitewise';
const gatewayCapabilitySummaryProperty: iotsitewise_mixins.CfnGatewayPropsMixin.GatewayCapabilitySummaryProperty = {
capabilityConfiguration: 'capabilityConfiguration',
capabilityNamespace: 'capabilityNamespace',
};
Properties
| Name | Type | Description |
|---|---|---|
| capability | string | The JSON document that defines the configuration for the gateway capability. |
| capability | string | The namespace of the capability configuration. |
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 .
capabilityNamespace?
Type:
string
(optional)
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 .

.NET
Go
Java
Python
TypeScript