Class: Aws::GameLiftStreams::Types::GetStreamUrlInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLiftStreams::Types::GetStreamUrlInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gameliftstreams/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#identifier ⇒ String
An [Amazon Resource Name (ARN)][1] or ID that uniquely identifies the stream group resource.
-
#stream_url_identifier ⇒ String
The unique identifier of the stream URL.
Instance Attribute Details
#identifier ⇒ String
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.
This is the stream group that owns the stream URL.
2793 2794 2795 2796 2797 2798 |
# File 'lib/aws-sdk-gameliftstreams/types.rb', line 2793 class GetStreamUrlInput < Struct.new( :identifier, :stream_url_identifier) SENSITIVE = [] include Aws::Structure end |
#stream_url_identifier ⇒ String
The unique identifier of the stream URL. Specify a stream URL ID or
Amazon Resource Name (ARN). Example ARN:
arn:aws:gameliftstreams:us-west-2:111122223333:streamurl/sg-1AB2C3De4/su-1AB2C3De4.
Example ID: su-1AB2C3De4.
2793 2794 2795 2796 2797 2798 |
# File 'lib/aws-sdk-gameliftstreams/types.rb', line 2793 class GetStreamUrlInput < Struct.new( :identifier, :stream_url_identifier) SENSITIVE = [] include Aws::Structure end |