interface MetricsExportConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnSecurityProfilePropsMixin.MetricsExportConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnSecurityProfilePropsMixin_MetricsExportConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnSecurityProfilePropsMixin.MetricsExportConfigProperty |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnSecurityProfilePropsMixin.MetricsExportConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnSecurityProfilePropsMixin » MetricsExportConfigProperty |
Specifies the MQTT topic and role ARN required for metric export.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
const metricsExportConfigProperty: iot_mixins.CfnSecurityProfilePropsMixin.MetricsExportConfigProperty = {
mqttTopic: 'mqttTopic',
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| mqtt | string | The MQTT topic that Device Defender Detect should publish messages to for metrics export. |
| role | string | This role ARN has permission to publish MQTT messages, after which Device Defender Detect can assume the role and publish messages on your behalf. |
mqttTopic?
Type:
string
(optional)
The MQTT topic that Device Defender Detect should publish messages to for metrics export.
roleArn?
Type:
string
(optional)
This role ARN has permission to publish MQTT messages, after which Device Defender Detect can assume the role and publish messages on your behalf.

.NET
Go
Java
Python
TypeScript