aws-cdk-lib.aws_networkmanager.CfnDeviceProps

interface CfnDeviceProps

LanguageType name
.NETAmazon.CDK.AWS.NetworkManager.CfnDeviceProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsnetworkmanager#CfnDeviceProps
Javasoftware.amazon.awscdk.services.networkmanager.CfnDeviceProps
Pythonaws_cdk.aws_networkmanager.CfnDeviceProps
TypeScript aws-cdk-lib » aws_networkmanager » CfnDeviceProps

Properties for defining a CfnDevice.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_networkmanager as networkmanager } from 'aws-cdk-lib';
const cfnDeviceProps: networkmanager.CfnDeviceProps = {
  globalNetworkId: 'globalNetworkId',

  // the properties below are optional
  awsLocation: {
    subnetArn: 'subnetArn',
    zone: 'zone',
  },
  description: 'description',
  location: {
    address: 'address',
    latitude: 'latitude',
    longitude: 'longitude',
  },
  model: 'model',
  serialNumber: 'serialNumber',
  siteId: 'siteId',
  tags: [{
    key: 'key',
    value: 'value',
  }],
  type: 'type',
  vendor: 'vendor',
};

Properties

NameTypeDescription
globalNetworkIdstringThe ID of the global network.
awsLocation?IResolvable | AWSLocationPropertyAWS::NetworkManager::Device.AWSLocation.
description?stringA description of the device.
location?IResolvable | LocationPropertyThe site location.
model?stringThe model of the device.
serialNumber?stringThe serial number of the device.
siteId?stringThe site ID.
tags?CfnTag[]The tags for the device.
type?stringThe device type.
vendor?stringThe vendor of the device.

globalNetworkId

Type: string

The ID of the global network.


awsLocation?

Type: IResolvable | AWSLocationProperty (optional)

AWS::NetworkManager::Device.AWSLocation.


description?

Type: string (optional)

A description of the device.

Constraints: Maximum length of 256 characters.


location?

Type: IResolvable | LocationProperty (optional)

The site location.


model?

Type: string (optional)

The model of the device.

Constraints: Maximum length of 128 characters.


serialNumber?

Type: string (optional)

The serial number of the device.

Constraints: Maximum length of 128 characters.


siteId?

Type: string (optional)

The site ID.


tags?

Type: CfnTag[] (optional)

The tags for the device.


type?

Type: string (optional)

The device type.


vendor?

Type: string (optional)

The vendor of the device.

Constraints: Maximum length of 128 characters.