Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions awscrt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

from weakref import WeakSet


__all__ = [
'aio',
'auth',
Expand All @@ -16,7 +15,6 @@
'mqtt_request_response',
's3',
'websocket',
'aws_iot_metrics',
]

__version__ = '1.0.0.dev0'
Expand Down
16 changes: 16 additions & 0 deletions awscrt/_aws_iot_metrics.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0.

from dataclasses import dataclass


@dataclass
class AWSIoTMetrics:
"""
Configuration for IoT SDK metrics that are embedded in MQTT Connect Packet username field.

Args:
library_name (str): The SDK library name (e.g., "IoTDeviceSDK/Python")

"""
library_name: str = "IoTDeviceSDK/Python"
Loading
Loading