Class: Aws::GameLiftStreams::Types::RemoveStreamGroupLocationsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLiftStreams::Types::RemoveStreamGroupLocationsInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gameliftstreams/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#identifier ⇒ String
A stream group to remove the specified locations from.
-
#locations ⇒ Array<String>
A set of locations to remove this stream group.
Instance Attribute Details
#identifier ⇒ String
A stream group to remove the specified locations from.
This value is an [Amazon Resource Name (ARN)] or ID that uniquely identifies the stream group resource. Example ARN: ‘arn:aws:gameliftstreams:us-west-2:111122223333:streamgroup/sg-1AB2C3De4`. Example ID: `sg-1AB2C3De4`.
[1]: docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html
2362 2363 2364 2365 2366 2367 |
# File 'lib/aws-sdk-gameliftstreams/types.rb', line 2362 class RemoveStreamGroupLocationsInput < Struct.new( :identifier, :locations) SENSITIVE = [] include Aws::Structure end |
#locations ⇒ Array<String>
A set of locations to remove this stream group. 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*.
[1]: docs.aws.amazon.com/gameliftstreams/latest/developerguide/regions-quotas.html
2362 2363 2364 2365 2366 2367 |
# File 'lib/aws-sdk-gameliftstreams/types.rb', line 2362 class RemoveStreamGroupLocationsInput < Struct.new( :identifier, :locations) SENSITIVE = [] include Aws::Structure end |