Class: Aws::GameLift::Types::LocationModel
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::LocationModel
- Defined in:
- gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb
Overview
Properties of a location, which can include its name, ARN (for custom locations), and ping beacon information.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#location_arn ⇒ String
The Amazon Resource Name ([ARN][1]) that is assigned to a custom location resource and uniquely identifies it.
-
#location_name ⇒ String
The location's name.
-
#ping_beacon ⇒ Types::PingBeacon
Information about the UDP ping beacon for this location.
Instance Attribute Details
#location_arn ⇒ String
The Amazon Resource Name (ARN) that is assigned to a custom
location resource and uniquely identifies it. ARNs are unique across
all Regions. Format is
arn:aws:gamelift:<region>::location/location-a1234567-b8c9-0d1e-2fa3-b45c6d7e8912
.
8530 8531 8532 8533 8534 8535 8536 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 8530 class LocationModel < Struct.new( :location_name, :location_arn, :ping_beacon) SENSITIVE = [] include Aws::Structure end |
#location_name ⇒ String
The location's name.
8530 8531 8532 8533 8534 8535 8536 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 8530 class LocationModel < Struct.new( :location_name, :location_arn, :ping_beacon) SENSITIVE = [] include Aws::Structure end |
#ping_beacon ⇒ Types::PingBeacon
Information about the UDP ping beacon for this location.
8530 8531 8532 8533 8534 8535 8536 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 8530 class LocationModel < Struct.new( :location_name, :location_arn, :ping_beacon) SENSITIVE = [] include Aws::Structure end |