DeviceReference

class aws_cdk.aws_networkmanager.DeviceReference(*, device_arn, device_id, global_network_id)

Bases: object

A reference to a Device resource.

Parameters:
  • device_arn (str) – The ARN of the Device resource.

  • device_id (str) – The DeviceId of the Device resource.

  • global_network_id (str) – The GlobalNetworkId of the Device 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_networkmanager as networkmanager

device_reference = networkmanager.DeviceReference(
    device_arn="deviceArn",
    device_id="deviceId",
    global_network_id="globalNetworkId"
)

Attributes

device_arn

The ARN of the Device resource.

device_id

The DeviceId of the Device resource.

global_network_id

The GlobalNetworkId of the Device resource.