interface CfnDeviceProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.NetworkManager.CfnDeviceProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsnetworkmanager#CfnDeviceProps |
![]() | software.amazon.awscdk.services.networkmanager.CfnDeviceProps |
![]() | aws_cdk.aws_networkmanager.CfnDeviceProps |
![]() | 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
Name | Type | Description |
---|---|---|
global | string | The ID of the global network. |
aws | IResolvable | AWSLocation | The AWS location of the device. |
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.
awsLocation?
Type:
IResolvable
|
AWSLocation
(optional)
The AWS location of the device.
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.