interface CfnDeviceProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.NetworkManager.CfnDeviceProps |
Java | software.amazon.awscdk.services.networkmanager.CfnDeviceProps |
Python | aws_cdk.aws_networkmanager.CfnDeviceProps |
TypeScript | @aws-cdk/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 * as networkmanager from '@aws-cdk/aws-networkmanager';
const cfnDeviceProps: networkmanager.CfnDeviceProps = {
globalNetworkId: 'globalNetworkId',
// the properties below are optional
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
Name | Type | Description |
---|---|---|
global | string | The ID of the global network. |
description? | string | A description of the device. |
location? | IResolvable | Location | The site location. |
model? | string | The model of the device. |
serial | string | The serial number of the device. |
site | string | The site ID. |
tags? | Cfn [] | The tags for the device. |
type? | string | The device type. |
vendor? | string | The vendor of the device. |
globalNetworkId
Type:
string
The ID of the global network.
description?
Type:
string
(optional)
A description of the device.
Constraints: Maximum length of 256 characters.
location?
Type:
IResolvable
|
Location
(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:
Cfn
[]
(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.