interface CfnDeviceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NetworkManager.Mixins.CfnDeviceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnetworkmanager/mixins#CfnDeviceMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.networkmanager.mixins.CfnDeviceMixinProps |
Python | aws_cdk.mixins_preview.aws_networkmanager.mixins.CfnDeviceMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_networkmanager » mixins » CfnDeviceMixinProps |
Properties for CfnDevicePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as networkmanager_mixins } from '@aws-cdk/mixins-preview/aws-networkmanager';
const cfnDeviceMixinProps: networkmanager_mixins.CfnDeviceMixinProps = {
awsLocation: {
subnetArn: 'subnetArn',
zone: 'zone',
},
description: 'description',
globalNetworkId: 'globalNetworkId',
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 |
|---|---|---|
| aws | IResolvable | AWSLocation | The AWS location of the device. |
| description? | string | A description of the device. |
| global | string | The ID of the global network. |
| 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. |
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.
globalNetworkId?
Type:
string
(optional)
The ID of the global network.
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.

.NET
Go
Java
Python
TypeScript