Class: Aws::NetworkManager::Types::Location
- Inherits:
-
Struct
- Object
- Struct
- Aws::NetworkManager::Types::Location
- Defined in:
- gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/types.rb
Overview
Describes a location.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#address ⇒ String
The physical address.
-
#latitude ⇒ String
The latitude.
-
#longitude ⇒ String
The longitude.
Instance Attribute Details
#address ⇒ String
The physical address.
4254 4255 4256 4257 4258 4259 4260 |
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/types.rb', line 4254 class Location < Struct.new( :address, :latitude, :longitude) SENSITIVE = [] include Aws::Structure end |