interface LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NetworkManager.Mixins.CfnDevicePropsMixin.LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnetworkmanager/mixins#CfnDevicePropsMixin_LocationProperty |
Java | software.amazon.awscdk.mixins.preview.services.networkmanager.mixins.CfnDevicePropsMixin.LocationProperty |
Python | aws_cdk.mixins_preview.aws_networkmanager.mixins.CfnDevicePropsMixin.LocationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_networkmanager » mixins » CfnDevicePropsMixin » LocationProperty |
Describes a location.
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 locationProperty: networkmanager_mixins.CfnDevicePropsMixin.LocationProperty = {
address: 'address',
latitude: 'latitude',
longitude: 'longitude',
};
Properties
| Name | Type | Description |
|---|---|---|
| address? | string | The physical address. |
| latitude? | string | The latitude. |
| longitude? | string | The longitude. |
address?
Type:
string
(optional)
The physical address.
latitude?
Type:
string
(optional)
The latitude.
longitude?
Type:
string
(optional)
The longitude.

.NET
Go
Java
Python
TypeScript