interface GatewayCapabilitySummaryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTSiteWise.CfnGatewayPropsMixin.GatewayCapabilitySummaryProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotsitewise#CfnGatewayPropsMixin_GatewayCapabilitySummaryProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotsitewise.CfnGatewayPropsMixin.GatewayCapabilitySummaryProperty |
Python | aws_cdk.cfn_property_mixins.aws_iotsitewise.CfnGatewayPropsMixin.GatewayCapabilitySummaryProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotsitewise » 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 { aws_iotsitewise as iotsitewise } from '@aws-cdk/cfn-property-mixins';
const gatewayCapabilitySummaryProperty: iotsitewise.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