interface AWSLocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.NetworkManager.CfnDevicePropsMixin.AWSLocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsnetworkmanager#CfnDevicePropsMixin_AWSLocationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.networkmanager.CfnDevicePropsMixin.AWSLocationProperty |
Python | aws_cdk.cfn_property_mixins.aws_networkmanager.CfnDevicePropsMixin.AWSLocationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_networkmanager » 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 { aws_networkmanager as networkmanager } from '@aws-cdk/cfn-property-mixins';
const aWSLocationProperty: networkmanager.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