DeviceProfileReference
- class aws_cdk.aws_iotwireless.DeviceProfileReference(*, device_profile_arn, device_profile_id)
Bases:
object
A reference to a DeviceProfile resource.
- Parameters:
device_profile_arn (
str
) – The ARN of the DeviceProfile resource.device_profile_id (
str
) – The Id of the DeviceProfile resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_iotwireless as iotwireless device_profile_reference = iotwireless.DeviceProfileReference( device_profile_arn="deviceProfileArn", device_profile_id="deviceProfileId" )
Attributes
- device_profile_arn
The ARN of the DeviceProfile resource.
- device_profile_id
The Id of the DeviceProfile resource.