interface AWSLocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NetworkManager.Mixins.CfnDevicePropsMixin.AWSLocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnetworkmanager/mixins#CfnDevicePropsMixin_AWSLocationProperty |
Java | software.amazon.awscdk.mixins.preview.services.networkmanager.mixins.CfnDevicePropsMixin.AWSLocationProperty |
Python | aws_cdk.mixins_preview.aws_networkmanager.mixins.CfnDevicePropsMixin.AWSLocationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_networkmanager » mixins » CfnDevicePropsMixin » AWSLocationProperty |
Specifies a location in AWS .
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 aWSLocationProperty: networkmanager_mixins.CfnDevicePropsMixin.AWSLocationProperty = {
subnetArn: 'subnetArn',
zone: 'zone',
};
Properties
| Name | Type | Description |
|---|---|---|
| subnet | string | The Amazon Resource Name (ARN) of the subnet that the device is located in. |
| zone? | string | The Zone that the device is located in. |
subnetArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the subnet that the device is located in.
zone?
Type:
string
(optional)
The Zone that the device is located in.
Specify the ID of an Availability Zone, Local Zone, Wavelength Zone, or an Outpost.

.NET
Go
Java
Python
TypeScript