DeviceProfileReference

class aws_cdk.interfaces.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.interfaces import aws_iotwireless as interfaces_aws_iotwireless

device_profile_reference = interfaces_aws_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.