Class: Aws::GameLiftStreams::Types::AssociateApplicationsInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-gameliftstreams/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#application_identifiersArray<String>

A set of applications to associate with the stream group.

This value is a set of either [Amazon Resource Names (ARN)] or IDs that uniquely identify application resources. Example ARN: ‘arn:aws:gameliftstreams:us-west-2:111122223333:application/a-9ZY8X7Wv6`. Example ID: `a-9ZY8X7Wv6`.

[1]: docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html

Returns:

  • (Array<String>)


222
223
224
225
226
227
# File 'lib/aws-sdk-gameliftstreams/types.rb', line 222

class AssociateApplicationsInput < Struct.new(
  :identifier,
  :application_identifiers)
  SENSITIVE = []
  include Aws::Structure
end

#identifierString

A stream group to associate to the applications.

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

Returns:

  • (String)


222
223
224
225
226
227
# File 'lib/aws-sdk-gameliftstreams/types.rb', line 222

class AssociateApplicationsInput < Struct.new(
  :identifier,
  :application_identifiers)
  SENSITIVE = []
  include Aws::Structure
end