Class: Aws::GameLiftStreams::Types::ReplicationStatus
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLiftStreams::Types::ReplicationStatus
- Defined in:
- gems/aws-sdk-gameliftstreams/lib/aws-sdk-gameliftstreams/types.rb
Overview
Represents the status of the replication of an application to a location. An application cannot be streamed from a location until it has finished replicating there.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#location ⇒ String
A location's name.
-
#status ⇒ String
The current status of the replication process.
Instance Attribute Details
#location ⇒ String
A location's name. For example, us-east-1
. For a complete list of
locations that Amazon GameLift Streams supports, refer to Regions,
quotas, and limitations in the Amazon GameLift Streams
Developer Guide.
2247 2248 2249 2250 2251 2252 |
# File 'gems/aws-sdk-gameliftstreams/lib/aws-sdk-gameliftstreams/types.rb', line 2247 class ReplicationStatus < Struct.new( :location, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The current status of the replication process.
2247 2248 2249 2250 2251 2252 |
# File 'gems/aws-sdk-gameliftstreams/lib/aws-sdk-gameliftstreams/types.rb', line 2247 class ReplicationStatus < Struct.new( :location, :status) SENSITIVE = [] include Aws::Structure end |