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
Note:
When making an API call, you may pass Location data as a hash:
{
address: "String",
latitude: "String",
longitude: "String",
}
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.
1874 1875 1876 1877 1878 1879 1880 |
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/types.rb', line 1874 class Location < Struct.new( :address, :latitude, :longitude) SENSITIVE = [] include Aws::Structure end |