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.
4779 4780 4781 4782 4783 4784 4785 |
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/types.rb', line 4779 class Location < Struct.new( :address, :latitude, :longitude) SENSITIVE = [] include Aws::Structure end |