aws-sdk-gameliftstreams 1.7.0 → 1.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -95,8 +95,8 @@ module Aws::GameLiftStreams
95
95
  # class name or an instance of a plugin class.
96
96
  #
97
97
  # @option options [required, Aws::CredentialProvider] :credentials
98
- # Your AWS credentials used for authentication. This can be an instance of any one of the
99
- # following classes:
98
+ # Your AWS credentials used for authentication. This can be any class that includes and implements
99
+ # `Aws::CredentialProvider`, or instance of any one of the following classes:
100
100
  #
101
101
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
102
102
  # credentials.
@@ -124,8 +124,7 @@ module Aws::GameLiftStreams
124
124
  # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
125
125
  # from the Cognito Identity service.
126
126
  #
127
- # When `:credentials` are not configured directly, the following
128
- # locations will be searched for credentials:
127
+ # When `:credentials` are not configured directly, the following locations will be searched for credentials:
129
128
  #
130
129
  # * `Aws.config[:credentials]`
131
130
  #
@@ -139,12 +138,10 @@ module Aws::GameLiftStreams
139
138
  #
140
139
  # * `~/.aws/config`
141
140
  #
142
- # * EC2/ECS IMDS instance profile - When used by default, the timeouts
143
- # are very aggressive. Construct and pass an instance of
144
- # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
145
- # enable retries and extended timeouts. Instance profile credential
146
- # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
147
- # to `true`.
141
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
142
+ # Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
143
+ # enable retries and extended timeouts. Instance profile credential fetching can be disabled by
144
+ # setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
148
145
  #
149
146
  # @option options [required, String] :region
150
147
  # The AWS region to connect to. The configured `:region` is
@@ -377,8 +374,8 @@ module Aws::GameLiftStreams
377
374
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
378
375
  #
379
376
  # @option options [Aws::TokenProvider] :token_provider
380
- # Your Bearer token used for authentication. This can be an instance of any one of the
381
- # following classes:
377
+ # Your Bearer token used for authentication. This can be any class that includes and implements
378
+ # `Aws::TokenProvider`, or instance of any one of the following classes:
382
379
  #
383
380
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
384
381
  # tokens.
@@ -519,8 +516,8 @@ module Aws::GameLiftStreams
519
516
  # identifier: "Identifier", # required
520
517
  # location_configurations: [ # required
521
518
  # {
522
- # always_on_capacity: 1,
523
519
  # location_name: "LocationName", # required
520
+ # always_on_capacity: 1,
524
521
  # on_demand_capacity: 1,
525
522
  # },
526
523
  # ],
@@ -530,13 +527,13 @@ module Aws::GameLiftStreams
530
527
  #
531
528
  # resp.identifier #=> String
532
529
  # resp.locations #=> Array
533
- # resp.locations[0].allocated_capacity #=> Integer
534
- # resp.locations[0].always_on_capacity #=> Integer
535
- # resp.locations[0].idle_capacity #=> Integer
536
530
  # resp.locations[0].location_name #=> String
531
+ # resp.locations[0].status #=> String, one of "ACTIVATING", "ACTIVE", "ERROR", "REMOVING"
532
+ # resp.locations[0].always_on_capacity #=> Integer
537
533
  # resp.locations[0].on_demand_capacity #=> Integer
538
534
  # resp.locations[0].requested_capacity #=> Integer
539
- # resp.locations[0].status #=> String, one of "ACTIVATING", "ACTIVE", "ERROR", "REMOVING"
535
+ # resp.locations[0].allocated_capacity #=> Integer
536
+ # resp.locations[0].idle_capacity #=> Integer
540
537
  #
541
538
  # @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/AddStreamGroupLocations AWS API Documentation
542
539
  #
@@ -557,18 +554,6 @@ module Aws::GameLiftStreams
557
554
  #
558
555
  # [1]: https://docs.aws.amazon.com/gameliftstreams/latest/apireference/API_DisassociateApplications.html
559
556
  #
560
- # @option params [required, Array<String>] :application_identifiers
561
- # A set of applications to associate with the stream group.
562
- #
563
- # This value is a set of either [Amazon Resource Names (ARN)][1] or IDs
564
- # that uniquely identify application resources. Example ARN:
565
- # `arn:aws:gameliftstreams:us-west-2:111122223333:application/a-9ZY8X7Wv6`.
566
- # Example ID: `a-9ZY8X7Wv6`.
567
- #
568
- #
569
- #
570
- # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html
571
- #
572
557
  # @option params [required, String] :identifier
573
558
  # A stream group to associate to the applications.
574
559
  #
@@ -581,23 +566,35 @@ module Aws::GameLiftStreams
581
566
  #
582
567
  # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html
583
568
  #
569
+ # @option params [required, Array<String>] :application_identifiers
570
+ # A set of applications to associate with the stream group.
571
+ #
572
+ # This value is a set of either [Amazon Resource Names (ARN)][1] or IDs
573
+ # that uniquely identify application resources. Example ARN:
574
+ # `arn:aws:gameliftstreams:us-west-2:111122223333:application/a-9ZY8X7Wv6`.
575
+ # Example ID: `a-9ZY8X7Wv6`.
576
+ #
577
+ #
578
+ #
579
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html
580
+ #
584
581
  # @return [Types::AssociateApplicationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
585
582
  #
586
- # * {Types::AssociateApplicationsOutput#application_arns #application_arns} => Array&lt;String&gt;
587
583
  # * {Types::AssociateApplicationsOutput#arn #arn} => String
584
+ # * {Types::AssociateApplicationsOutput#application_arns #application_arns} => Array&lt;String&gt;
588
585
  #
589
586
  # @example Request syntax with placeholder values
590
587
  #
591
588
  # resp = client.associate_applications({
592
- # application_identifiers: ["Identifier"], # required
593
589
  # identifier: "Identifier", # required
590
+ # application_identifiers: ["Identifier"], # required
594
591
  # })
595
592
  #
596
593
  # @example Response structure
597
594
  #
595
+ # resp.arn #=> String
598
596
  # resp.application_arns #=> Array
599
597
  # resp.application_arns[0] #=> String
600
- # resp.arn #=> String
601
598
  #
602
599
  # @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/AssociateApplications AWS API Documentation
603
600
  #
@@ -631,34 +628,36 @@ module Aws::GameLiftStreams
631
628
  #
632
629
  # [1]: https://docs.aws.amazon.com/gameliftstreams/latest/apireference/API_GetApplication.html
633
630
  #
634
- # @option params [String] :application_log_output_uri
635
- # An Amazon S3 URI to a bucket where you would like Amazon GameLift
636
- # Streams to save application logs. Required if you specify one or more
637
- # `ApplicationLogPaths`.
631
+ # @option params [required, String] :description
632
+ # A human-readable label for the application. You can update this value
633
+ # later.
638
634
  #
639
- # <note markdown="1"> The log bucket must have permissions that give Amazon GameLift Streams
640
- # access to write the log files. For more information, see [Application
641
- # log bucket permission policy][1] in the *Amazon GameLift Streams
642
- # Developer Guide*.
635
+ # @option params [required, Types::RuntimeEnvironment] :runtime_environment
636
+ # Configuration settings that identify the operating system for an
637
+ # application resource. This can also include a compatibility layer and
638
+ # other drivers.
643
639
  #
644
- # </note>
640
+ # A runtime environment can be one of the following:
645
641
  #
642
+ # * For Linux applications
646
643
  #
644
+ # * Ubuntu 22.04 LTS (`Type=UBUNTU, Version=22_04_LTS`)
647
645
  #
648
- # [1]: https://docs.aws.amazon.com/gameliftstreams/latest/developerguide/applications.html#application-bucket-permission-template
646
+ # ^
647
+ # * For Windows applications
649
648
  #
650
- # @option params [Array<String>] :application_log_paths
651
- # Locations of log files that your content generates during a stream
652
- # session. Enter path values that are relative to the
653
- # `ApplicationSourceUri` location. You can specify up to 10 log paths.
654
- # Amazon GameLift Streams uploads designated log files to the Amazon S3
655
- # bucket that you specify in `ApplicationLogOutputUri` at the end of a
656
- # stream session. To retrieve stored log files, call
657
- # [GetStreamSession][1] and get the `LogFileLocationUri`.
649
+ # * Microsoft Windows Server 2022 Base (`Type=WINDOWS, Version=2022`)
658
650
  #
651
+ # * Proton 9.0-2 (`Type=PROTON, Version=20250516`)
659
652
  #
653
+ # * Proton 8.0-5 (`Type=PROTON, Version=20241007`)
660
654
  #
661
- # [1]: https://docs.aws.amazon.com/gameliftstreams/latest/apireference/API_GetStreamSession.html
655
+ # * Proton 8.0-2c (`Type=PROTON, Version=20230704`)
656
+ #
657
+ # @option params [required, String] :executable_path
658
+ # The path and file name of the executable file that launches the
659
+ # content for streaming. Enter a path value that is relative to the
660
+ # location set in `ApplicationSourceUri`.
662
661
  #
663
662
  # @option params [required, String] :application_source_uri
664
663
  # The location of the content that you want to stream. Enter an Amazon
@@ -675,43 +674,34 @@ module Aws::GameLiftStreams
675
674
  #
676
675
  # </note>
677
676
  #
678
- # @option params [String] :client_token
679
- # A unique identifier that represents a client request. The request is
680
- # idempotent, which ensures that an API request completes only once.
681
- # When users send a request, Amazon GameLift Streams automatically
682
- # populates this field.
683
- #
684
- # **A suitable default value is auto-generated.** You should normally
685
- # not need to pass this option.**
686
- #
687
- # @option params [required, String] :description
688
- # A human-readable label for the application. You can update this value
689
- # later.
677
+ # @option params [Array<String>] :application_log_paths
678
+ # Locations of log files that your content generates during a stream
679
+ # session. Enter path values that are relative to the
680
+ # `ApplicationSourceUri` location. You can specify up to 10 log paths.
681
+ # Amazon GameLift Streams uploads designated log files to the Amazon S3
682
+ # bucket that you specify in `ApplicationLogOutputUri` at the end of a
683
+ # stream session. To retrieve stored log files, call
684
+ # [GetStreamSession][1] and get the `LogFileLocationUri`.
690
685
  #
691
- # @option params [required, String] :executable_path
692
- # The path and file name of the executable file that launches the
693
- # content for streaming. Enter a path value that is relative to the
694
- # location set in `ApplicationSourceUri`.
695
686
  #
696
- # @option params [required, Types::RuntimeEnvironment] :runtime_environment
697
- # Configuration settings that identify the operating system for an
698
- # application resource. This can also include a compatibility layer and
699
- # other drivers.
700
687
  #
701
- # A runtime environment can be one of the following:
688
+ # [1]: https://docs.aws.amazon.com/gameliftstreams/latest/apireference/API_GetStreamSession.html
702
689
  #
703
- # * For Linux applications
690
+ # @option params [String] :application_log_output_uri
691
+ # An Amazon S3 URI to a bucket where you would like Amazon GameLift
692
+ # Streams to save application logs. Required if you specify one or more
693
+ # `ApplicationLogPaths`.
704
694
  #
705
- # * Ubuntu 22.04 LTS (`Type=UBUNTU, Version=22_04_LTS`)
695
+ # <note markdown="1"> The log bucket must have permissions that give Amazon GameLift Streams
696
+ # access to write the log files. For more information, see [Application
697
+ # log bucket permission policy][1] in the *Amazon GameLift Streams
698
+ # Developer Guide*.
706
699
  #
707
- # ^
708
- # * For Windows applications
700
+ # </note>
709
701
  #
710
- # * Microsoft Windows Server 2022 Base (`Type=WINDOWS, Version=2022`)
711
702
  #
712
- # * Proton 8.0-5 (`Type=PROTON, Version=20241007`)
713
703
  #
714
- # * Proton 8.0-2c (`Type=PROTON, Version=20230704`)
704
+ # [1]: https://docs.aws.amazon.com/gameliftstreams/latest/developerguide/applications.html#application-bucket-permission-template
715
705
  #
716
706
  # @option params [Hash<String,String>] :tags
717
707
  # A list of labels to assign to the new application resource. Tags are
@@ -729,62 +719,71 @@ module Aws::GameLiftStreams
729
719
  # [3]: https://docs.aws.amazon.com/gameliftstreams/latest/apireference/API_UntagResource.html
730
720
  # [4]: https://docs.aws.amazon.com/gameliftstreams/latest/apireference/API_ListTagsForResource.html
731
721
  #
722
+ # @option params [String] :client_token
723
+ # A unique identifier that represents a client request. The request is
724
+ # idempotent, which ensures that an API request completes only once.
725
+ # When users send a request, Amazon GameLift Streams automatically
726
+ # populates this field.
727
+ #
728
+ # **A suitable default value is auto-generated.** You should normally
729
+ # not need to pass this option.**
730
+ #
732
731
  # @return [Types::CreateApplicationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
733
732
  #
734
- # * {Types::CreateApplicationOutput#application_log_output_uri #application_log_output_uri} => String
735
- # * {Types::CreateApplicationOutput#application_log_paths #application_log_paths} => Array&lt;String&gt;
736
- # * {Types::CreateApplicationOutput#application_source_uri #application_source_uri} => String
737
733
  # * {Types::CreateApplicationOutput#arn #arn} => String
738
- # * {Types::CreateApplicationOutput#associated_stream_groups #associated_stream_groups} => Array&lt;String&gt;
739
- # * {Types::CreateApplicationOutput#created_at #created_at} => Time
740
734
  # * {Types::CreateApplicationOutput#description #description} => String
735
+ # * {Types::CreateApplicationOutput#runtime_environment #runtime_environment} => Types::RuntimeEnvironment
741
736
  # * {Types::CreateApplicationOutput#executable_path #executable_path} => String
737
+ # * {Types::CreateApplicationOutput#application_log_paths #application_log_paths} => Array&lt;String&gt;
738
+ # * {Types::CreateApplicationOutput#application_log_output_uri #application_log_output_uri} => String
739
+ # * {Types::CreateApplicationOutput#application_source_uri #application_source_uri} => String
742
740
  # * {Types::CreateApplicationOutput#id #id} => String
743
- # * {Types::CreateApplicationOutput#last_updated_at #last_updated_at} => Time
744
- # * {Types::CreateApplicationOutput#replication_statuses #replication_statuses} => Array&lt;Types::ReplicationStatus&gt;
745
- # * {Types::CreateApplicationOutput#runtime_environment #runtime_environment} => Types::RuntimeEnvironment
746
741
  # * {Types::CreateApplicationOutput#status #status} => String
747
742
  # * {Types::CreateApplicationOutput#status_reason #status_reason} => String
743
+ # * {Types::CreateApplicationOutput#replication_statuses #replication_statuses} => Array&lt;Types::ReplicationStatus&gt;
744
+ # * {Types::CreateApplicationOutput#created_at #created_at} => Time
745
+ # * {Types::CreateApplicationOutput#last_updated_at #last_updated_at} => Time
746
+ # * {Types::CreateApplicationOutput#associated_stream_groups #associated_stream_groups} => Array&lt;String&gt;
748
747
  #
749
748
  # @example Request syntax with placeholder values
750
749
  #
751
750
  # resp = client.create_application({
752
- # application_log_output_uri: "ApplicationLogOutputUri",
753
- # application_log_paths: ["FilePath"],
754
- # application_source_uri: "ApplicationSourceUri", # required
755
- # client_token: "ClientToken",
756
751
  # description: "Description", # required
757
- # executable_path: "ExecutablePath", # required
758
752
  # runtime_environment: { # required
759
753
  # type: "PROTON", # required, accepts PROTON, WINDOWS, UBUNTU
760
754
  # version: "RuntimeEnvironmentVersion", # required
761
755
  # },
756
+ # executable_path: "ExecutablePath", # required
757
+ # application_source_uri: "ApplicationSourceUri", # required
758
+ # application_log_paths: ["FilePath"],
759
+ # application_log_output_uri: "ApplicationLogOutputUri",
762
760
  # tags: {
763
761
  # "TagKey" => "TagValue",
764
762
  # },
763
+ # client_token: "ClientToken",
765
764
  # })
766
765
  #
767
766
  # @example Response structure
768
767
  #
769
- # resp.application_log_output_uri #=> String
770
- # resp.application_log_paths #=> Array
771
- # resp.application_log_paths[0] #=> String
772
- # resp.application_source_uri #=> String
773
768
  # resp.arn #=> String
774
- # resp.associated_stream_groups #=> Array
775
- # resp.associated_stream_groups[0] #=> String
776
- # resp.created_at #=> Time
777
769
  # resp.description #=> String
770
+ # resp.runtime_environment.type #=> String, one of "PROTON", "WINDOWS", "UBUNTU"
771
+ # resp.runtime_environment.version #=> String
778
772
  # resp.executable_path #=> String
773
+ # resp.application_log_paths #=> Array
774
+ # resp.application_log_paths[0] #=> String
775
+ # resp.application_log_output_uri #=> String
776
+ # resp.application_source_uri #=> String
779
777
  # resp.id #=> String
780
- # resp.last_updated_at #=> Time
778
+ # resp.status #=> String, one of "INITIALIZED", "PROCESSING", "READY", "DELETING", "ERROR"
779
+ # resp.status_reason #=> String, one of "internalError", "accessDenied"
781
780
  # resp.replication_statuses #=> Array
782
781
  # resp.replication_statuses[0].location #=> String
783
782
  # resp.replication_statuses[0].status #=> String, one of "REPLICATING", "COMPLETED"
784
- # resp.runtime_environment.type #=> String, one of "PROTON", "WINDOWS", "UBUNTU"
785
- # resp.runtime_environment.version #=> String
786
- # resp.status #=> String, one of "INITIALIZED", "PROCESSING", "READY", "DELETING", "ERROR"
787
- # resp.status_reason #=> String, one of "internalError", "accessDenied"
783
+ # resp.created_at #=> Time
784
+ # resp.last_updated_at #=> Time
785
+ # resp.associated_stream_groups #=> Array
786
+ # resp.associated_stream_groups[0] #=> String
788
787
  #
789
788
  # @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/CreateApplication AWS API Documentation
790
789
  #
@@ -837,42 +836,9 @@ module Aws::GameLiftStreams
837
836
  # [2]: https://docs.aws.amazon.com/gameliftstreams/latest/apireference/API_StartStreamSession.html
838
837
  # [3]: https://docs.aws.amazon.com/gameliftstreams/latest/apireference/API_GetStreamGroup.html
839
838
  #
840
- # @option params [String] :client_token
841
- # A unique identifier that represents a client request. The request is
842
- # idempotent, which ensures that an API request completes only once.
843
- # When users send a request, Amazon GameLift Streams automatically
844
- # populates this field.
845
- #
846
- # **A suitable default value is auto-generated.** You should normally
847
- # not need to pass this option.**
848
- #
849
- # @option params [String] :default_application_identifier
850
- # The unique identifier of the Amazon GameLift Streams application that
851
- # you want to associate to a stream group as the default application.
852
- # The application must be in `READY` status. By setting the default
853
- # application identifier, you will optimize startup performance of this
854
- # application in your stream group. Once set, this application cannot be
855
- # disassociated from the stream group, unlike applications that are
856
- # associated using AssociateApplications. If not set when creating a
857
- # stream group, you will need to call AssociateApplications later,
858
- # before you can start streaming.
859
- #
860
- # This value is an [Amazon Resource Name (ARN)][1] or ID that uniquely
861
- # identifies the application resource. Example ARN:
862
- # `arn:aws:gameliftstreams:us-west-2:111122223333:application/a-9ZY8X7Wv6`.
863
- # Example ID: `a-9ZY8X7Wv6`.
864
- #
865
- #
866
- #
867
- # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html
868
- #
869
839
  # @option params [required, String] :description
870
840
  # A descriptive label for the stream group.
871
841
  #
872
- # @option params [Array<Types::LocationConfiguration>] :location_configurations
873
- # A set of one or more locations and the streaming capacity for each
874
- # location.
875
- #
876
842
  # @option params [required, String] :stream_class
877
843
  # The target stream quality for sessions that are hosted in this stream
878
844
  # group. Set a stream class that is appropriate to the type of content
@@ -955,6 +921,30 @@ module Aws::GameLiftStreams
955
921
  #
956
922
  # * Tenancy: Supports 1 concurrent stream session
957
923
  #
924
+ # @option params [String] :default_application_identifier
925
+ # The unique identifier of the Amazon GameLift Streams application that
926
+ # you want to associate to a stream group as the default application.
927
+ # The application must be in `READY` status. By setting the default
928
+ # application identifier, you will optimize startup performance of this
929
+ # application in your stream group. Once set, this application cannot be
930
+ # disassociated from the stream group, unlike applications that are
931
+ # associated using AssociateApplications. If not set when creating a
932
+ # stream group, you will need to call AssociateApplications later,
933
+ # before you can start streaming.
934
+ #
935
+ # This value is an [Amazon Resource Name (ARN)][1] or ID that uniquely
936
+ # identifies the application resource. Example ARN:
937
+ # `arn:aws:gameliftstreams:us-west-2:111122223333:application/a-9ZY8X7Wv6`.
938
+ # Example ID: `a-9ZY8X7Wv6`.
939
+ #
940
+ #
941
+ #
942
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html
943
+ #
944
+ # @option params [Array<Types::LocationConfiguration>] :location_configurations
945
+ # A set of one or more locations and the streaming capacity for each
946
+ # location.
947
+ #
958
948
  # @option params [Hash<String,String>] :tags
959
949
  # A list of labels to assign to the new stream group resource. Tags are
960
950
  # developer-defined key-value pairs. Tagging Amazon Web Services
@@ -971,61 +961,70 @@ module Aws::GameLiftStreams
971
961
  # [3]: https://docs.aws.amazon.com/gameliftstreams/latest/apireference/API_UntagResource.html
972
962
  # [4]: https://docs.aws.amazon.com/gameliftstreams/latest/apireference/API_ListTagsForResource.html
973
963
  #
964
+ # @option params [String] :client_token
965
+ # A unique identifier that represents a client request. The request is
966
+ # idempotent, which ensures that an API request completes only once.
967
+ # When users send a request, Amazon GameLift Streams automatically
968
+ # populates this field.
969
+ #
970
+ # **A suitable default value is auto-generated.** You should normally
971
+ # not need to pass this option.**
972
+ #
974
973
  # @return [Types::CreateStreamGroupOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
975
974
  #
976
975
  # * {Types::CreateStreamGroupOutput#arn #arn} => String
977
- # * {Types::CreateStreamGroupOutput#associated_applications #associated_applications} => Array&lt;String&gt;
978
- # * {Types::CreateStreamGroupOutput#created_at #created_at} => Time
979
- # * {Types::CreateStreamGroupOutput#default_application #default_application} => Types::DefaultApplication
980
976
  # * {Types::CreateStreamGroupOutput#description #description} => String
981
- # * {Types::CreateStreamGroupOutput#id #id} => String
982
- # * {Types::CreateStreamGroupOutput#last_updated_at #last_updated_at} => Time
977
+ # * {Types::CreateStreamGroupOutput#default_application #default_application} => Types::DefaultApplication
983
978
  # * {Types::CreateStreamGroupOutput#location_states #location_states} => Array&lt;Types::LocationState&gt;
979
+ # * {Types::CreateStreamGroupOutput#stream_class #stream_class} => String
980
+ # * {Types::CreateStreamGroupOutput#id #id} => String
984
981
  # * {Types::CreateStreamGroupOutput#status #status} => String
985
982
  # * {Types::CreateStreamGroupOutput#status_reason #status_reason} => String
986
- # * {Types::CreateStreamGroupOutput#stream_class #stream_class} => String
983
+ # * {Types::CreateStreamGroupOutput#last_updated_at #last_updated_at} => Time
984
+ # * {Types::CreateStreamGroupOutput#created_at #created_at} => Time
985
+ # * {Types::CreateStreamGroupOutput#associated_applications #associated_applications} => Array&lt;String&gt;
987
986
  #
988
987
  # @example Request syntax with placeholder values
989
988
  #
990
989
  # resp = client.create_stream_group({
991
- # client_token: "ClientToken",
992
- # default_application_identifier: "Identifier",
993
990
  # description: "Description", # required
991
+ # stream_class: "gen4n_high", # required, accepts gen4n_high, gen4n_ultra, gen4n_win2022, gen5n_high, gen5n_ultra, gen5n_win2022
992
+ # default_application_identifier: "Identifier",
994
993
  # location_configurations: [
995
994
  # {
996
- # always_on_capacity: 1,
997
995
  # location_name: "LocationName", # required
996
+ # always_on_capacity: 1,
998
997
  # on_demand_capacity: 1,
999
998
  # },
1000
999
  # ],
1001
- # stream_class: "gen4n_high", # required, accepts gen4n_high, gen4n_ultra, gen4n_win2022, gen5n_high, gen5n_ultra, gen5n_win2022
1002
1000
  # tags: {
1003
1001
  # "TagKey" => "TagValue",
1004
1002
  # },
1003
+ # client_token: "ClientToken",
1005
1004
  # })
1006
1005
  #
1007
1006
  # @example Response structure
1008
1007
  #
1009
1008
  # resp.arn #=> String
1010
- # resp.associated_applications #=> Array
1011
- # resp.associated_applications[0] #=> String
1012
- # resp.created_at #=> Time
1013
- # resp.default_application.arn #=> String
1014
- # resp.default_application.id #=> String
1015
1009
  # resp.description #=> String
1016
- # resp.id #=> String
1017
- # resp.last_updated_at #=> Time
1010
+ # resp.default_application.id #=> String
1011
+ # resp.default_application.arn #=> String
1018
1012
  # resp.location_states #=> Array
1019
- # resp.location_states[0].allocated_capacity #=> Integer
1020
- # resp.location_states[0].always_on_capacity #=> Integer
1021
- # resp.location_states[0].idle_capacity #=> Integer
1022
1013
  # resp.location_states[0].location_name #=> String
1014
+ # resp.location_states[0].status #=> String, one of "ACTIVATING", "ACTIVE", "ERROR", "REMOVING"
1015
+ # resp.location_states[0].always_on_capacity #=> Integer
1023
1016
  # resp.location_states[0].on_demand_capacity #=> Integer
1024
1017
  # resp.location_states[0].requested_capacity #=> Integer
1025
- # resp.location_states[0].status #=> String, one of "ACTIVATING", "ACTIVE", "ERROR", "REMOVING"
1018
+ # resp.location_states[0].allocated_capacity #=> Integer
1019
+ # resp.location_states[0].idle_capacity #=> Integer
1020
+ # resp.stream_class #=> String, one of "gen4n_high", "gen4n_ultra", "gen4n_win2022", "gen5n_high", "gen5n_ultra", "gen5n_win2022"
1021
+ # resp.id #=> String
1026
1022
  # resp.status #=> String, one of "ACTIVATING", "UPDATING_LOCATIONS", "ACTIVE", "ACTIVE_WITH_ERRORS", "ERROR", "DELETING"
1027
1023
  # resp.status_reason #=> String, one of "internalError", "noAvailableInstances"
1028
- # resp.stream_class #=> String, one of "gen4n_high", "gen4n_ultra", "gen4n_win2022", "gen5n_high", "gen5n_ultra", "gen5n_win2022"
1024
+ # resp.last_updated_at #=> Time
1025
+ # resp.created_at #=> Time
1026
+ # resp.associated_applications #=> Array
1027
+ # resp.associated_applications[0] #=> String
1029
1028
  #
1030
1029
  # @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/CreateStreamGroup AWS API Documentation
1031
1030
  #
@@ -1082,12 +1081,6 @@ module Aws::GameLiftStreams
1082
1081
  #
1083
1082
  # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html
1084
1083
  #
1085
- # @option params [required, String] :signal_request
1086
- # A WebRTC ICE offer string to use when initializing a WebRTC
1087
- # connection. The offer is a very long JSON string. Provide the string
1088
- # as a text value in quotes. The offer must be newly generated, not the
1089
- # same offer provided to `StartStreamSession`.
1090
- #
1091
1084
  # @option params [required, String] :stream_session_identifier
1092
1085
  # [Amazon Resource Name (ARN)][1] or ID that uniquely identifies the
1093
1086
  # stream session resource. Example ARN:
@@ -1101,6 +1094,12 @@ module Aws::GameLiftStreams
1101
1094
  #
1102
1095
  # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html
1103
1096
  #
1097
+ # @option params [required, String] :signal_request
1098
+ # A WebRTC ICE offer string to use when initializing a WebRTC
1099
+ # connection. The offer is a very long JSON string. Provide the string
1100
+ # as a text value in quotes. The offer must be newly generated, not the
1101
+ # same offer provided to `StartStreamSession`.
1102
+ #
1104
1103
  # @return [Types::CreateStreamSessionConnectionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1105
1104
  #
1106
1105
  # * {Types::CreateStreamSessionConnectionOutput#signal_response #signal_response} => String
@@ -1110,8 +1109,8 @@ module Aws::GameLiftStreams
1110
1109
  # resp = client.create_stream_session_connection({
1111
1110
  # client_token: "ClientToken",
1112
1111
  # identifier: "Identifier", # required
1113
- # signal_request: "SignalRequest", # required
1114
1112
  # stream_session_identifier: "Identifier", # required
1113
+ # signal_request: "SignalRequest", # required
1115
1114
  # })
1116
1115
  #
1117
1116
  # @example Response structure
@@ -1244,6 +1243,18 @@ module Aws::GameLiftStreams
1244
1243
  #
1245
1244
  # [1]: https://docs.aws.amazon.com/gameliftstreams/latest/apireference/API_GetStreamGroup.html
1246
1245
  #
1246
+ # @option params [required, String] :identifier
1247
+ # A stream group to disassociate these applications from.
1248
+ #
1249
+ # This value is an [Amazon Resource Name (ARN)][1] or ID that uniquely
1250
+ # identifies the stream group resource. Example ARN:
1251
+ # `arn:aws:gameliftstreams:us-west-2:111122223333:streamgroup/sg-1AB2C3De4`.
1252
+ # Example ID: `sg-1AB2C3De4`.
1253
+ #
1254
+ #
1255
+ #
1256
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html
1257
+ #
1247
1258
  # @option params [required, Array<String>] :application_identifiers
1248
1259
  # A set of applications that you want to disassociate from the stream
1249
1260
  # group.
@@ -1257,35 +1268,23 @@ module Aws::GameLiftStreams
1257
1268
  #
1258
1269
  # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html
1259
1270
  #
1260
- # @option params [required, String] :identifier
1261
- # A stream group to disassociate these applications from.
1262
- #
1263
- # This value is an [Amazon Resource Name (ARN)][1] or ID that uniquely
1264
- # identifies the stream group resource. Example ARN:
1265
- # `arn:aws:gameliftstreams:us-west-2:111122223333:streamgroup/sg-1AB2C3De4`.
1266
- # Example ID: `sg-1AB2C3De4`.
1267
- #
1268
- #
1269
- #
1270
- # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html
1271
- #
1272
1271
  # @return [Types::DisassociateApplicationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1273
1272
  #
1274
- # * {Types::DisassociateApplicationsOutput#application_arns #application_arns} => Array&lt;String&gt;
1275
1273
  # * {Types::DisassociateApplicationsOutput#arn #arn} => String
1274
+ # * {Types::DisassociateApplicationsOutput#application_arns #application_arns} => Array&lt;String&gt;
1276
1275
  #
1277
1276
  # @example Request syntax with placeholder values
1278
1277
  #
1279
1278
  # resp = client.disassociate_applications({
1280
- # application_identifiers: ["Identifier"], # required
1281
1279
  # identifier: "Identifier", # required
1280
+ # application_identifiers: ["Identifier"], # required
1282
1281
  # })
1283
1282
  #
1284
1283
  # @example Response structure
1285
1284
  #
1285
+ # resp.arn #=> String
1286
1286
  # resp.application_arns #=> Array
1287
1287
  # resp.application_arns[0] #=> String
1288
- # resp.arn #=> String
1289
1288
  #
1290
1289
  # @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/DisassociateApplications AWS API Documentation
1291
1290
  #
@@ -1342,6 +1341,16 @@ module Aws::GameLiftStreams
1342
1341
  #
1343
1342
  # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html
1344
1343
  #
1344
+ # @option params [required, String] :stream_session_identifier
1345
+ # An [Amazon Resource Name (ARN)][1] or ID that uniquely identifies the
1346
+ # stream session resource. Example ARN:
1347
+ # `arn:aws:gameliftstreams:us-west-2:111122223333:streamsession/sg-1AB2C3De4/ABC123def4567`.
1348
+ # Example ID: `ABC123def4567`.
1349
+ #
1350
+ #
1351
+ #
1352
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html
1353
+ #
1345
1354
  # @option params [required, String] :output_uri
1346
1355
  # The S3 bucket URI where Amazon GameLift Streams uploads the set of
1347
1356
  # compressed exported files for this stream session. Amazon GameLift
@@ -1359,24 +1368,14 @@ module Aws::GameLiftStreams
1359
1368
  # `s3://amzn-s3-demo-destination-bucket/MyGameSessions_ExportedFiles/YYYYMMDD-HHMMSS-appId-sg-Id-sessionId.zip`
1360
1369
  # or another similar name.
1361
1370
  #
1362
- # @option params [required, String] :stream_session_identifier
1363
- # An [Amazon Resource Name (ARN)][1] or ID that uniquely identifies the
1364
- # stream session resource. Example ARN:
1365
- # `arn:aws:gameliftstreams:us-west-2:111122223333:streamsession/sg-1AB2C3De4/ABC123def4567`.
1366
- # Example ID: `ABC123def4567`.
1367
- #
1368
- #
1369
- #
1370
- # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html
1371
- #
1372
1371
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1373
1372
  #
1374
1373
  # @example Request syntax with placeholder values
1375
1374
  #
1376
1375
  # resp = client.export_stream_session_files({
1377
1376
  # identifier: "Identifier", # required
1378
- # output_uri: "OutputUri", # required
1379
1377
  # stream_session_identifier: "Identifier", # required
1378
+ # output_uri: "OutputUri", # required
1380
1379
  # })
1381
1380
  #
1382
1381
  # @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/ExportStreamSessionFiles AWS API Documentation
@@ -1405,20 +1404,20 @@ module Aws::GameLiftStreams
1405
1404
  #
1406
1405
  # @return [Types::GetApplicationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1407
1406
  #
1408
- # * {Types::GetApplicationOutput#application_log_output_uri #application_log_output_uri} => String
1409
- # * {Types::GetApplicationOutput#application_log_paths #application_log_paths} => Array&lt;String&gt;
1410
- # * {Types::GetApplicationOutput#application_source_uri #application_source_uri} => String
1411
1407
  # * {Types::GetApplicationOutput#arn #arn} => String
1412
- # * {Types::GetApplicationOutput#associated_stream_groups #associated_stream_groups} => Array&lt;String&gt;
1413
- # * {Types::GetApplicationOutput#created_at #created_at} => Time
1414
1408
  # * {Types::GetApplicationOutput#description #description} => String
1409
+ # * {Types::GetApplicationOutput#runtime_environment #runtime_environment} => Types::RuntimeEnvironment
1415
1410
  # * {Types::GetApplicationOutput#executable_path #executable_path} => String
1411
+ # * {Types::GetApplicationOutput#application_log_paths #application_log_paths} => Array&lt;String&gt;
1412
+ # * {Types::GetApplicationOutput#application_log_output_uri #application_log_output_uri} => String
1413
+ # * {Types::GetApplicationOutput#application_source_uri #application_source_uri} => String
1416
1414
  # * {Types::GetApplicationOutput#id #id} => String
1417
- # * {Types::GetApplicationOutput#last_updated_at #last_updated_at} => Time
1418
- # * {Types::GetApplicationOutput#replication_statuses #replication_statuses} => Array&lt;Types::ReplicationStatus&gt;
1419
- # * {Types::GetApplicationOutput#runtime_environment #runtime_environment} => Types::RuntimeEnvironment
1420
1415
  # * {Types::GetApplicationOutput#status #status} => String
1421
1416
  # * {Types::GetApplicationOutput#status_reason #status_reason} => String
1417
+ # * {Types::GetApplicationOutput#replication_statuses #replication_statuses} => Array&lt;Types::ReplicationStatus&gt;
1418
+ # * {Types::GetApplicationOutput#created_at #created_at} => Time
1419
+ # * {Types::GetApplicationOutput#last_updated_at #last_updated_at} => Time
1420
+ # * {Types::GetApplicationOutput#associated_stream_groups #associated_stream_groups} => Array&lt;String&gt;
1422
1421
  #
1423
1422
  # @example Request syntax with placeholder values
1424
1423
  #
@@ -1428,25 +1427,25 @@ module Aws::GameLiftStreams
1428
1427
  #
1429
1428
  # @example Response structure
1430
1429
  #
1431
- # resp.application_log_output_uri #=> String
1432
- # resp.application_log_paths #=> Array
1433
- # resp.application_log_paths[0] #=> String
1434
- # resp.application_source_uri #=> String
1435
1430
  # resp.arn #=> String
1436
- # resp.associated_stream_groups #=> Array
1437
- # resp.associated_stream_groups[0] #=> String
1438
- # resp.created_at #=> Time
1439
1431
  # resp.description #=> String
1432
+ # resp.runtime_environment.type #=> String, one of "PROTON", "WINDOWS", "UBUNTU"
1433
+ # resp.runtime_environment.version #=> String
1440
1434
  # resp.executable_path #=> String
1435
+ # resp.application_log_paths #=> Array
1436
+ # resp.application_log_paths[0] #=> String
1437
+ # resp.application_log_output_uri #=> String
1438
+ # resp.application_source_uri #=> String
1441
1439
  # resp.id #=> String
1442
- # resp.last_updated_at #=> Time
1440
+ # resp.status #=> String, one of "INITIALIZED", "PROCESSING", "READY", "DELETING", "ERROR"
1441
+ # resp.status_reason #=> String, one of "internalError", "accessDenied"
1443
1442
  # resp.replication_statuses #=> Array
1444
1443
  # resp.replication_statuses[0].location #=> String
1445
1444
  # resp.replication_statuses[0].status #=> String, one of "REPLICATING", "COMPLETED"
1446
- # resp.runtime_environment.type #=> String, one of "PROTON", "WINDOWS", "UBUNTU"
1447
- # resp.runtime_environment.version #=> String
1448
- # resp.status #=> String, one of "INITIALIZED", "PROCESSING", "READY", "DELETING", "ERROR"
1449
- # resp.status_reason #=> String, one of "internalError", "accessDenied"
1445
+ # resp.created_at #=> Time
1446
+ # resp.last_updated_at #=> Time
1447
+ # resp.associated_stream_groups #=> Array
1448
+ # resp.associated_stream_groups[0] #=> String
1450
1449
  #
1451
1450
  #
1452
1451
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -1481,16 +1480,16 @@ module Aws::GameLiftStreams
1481
1480
  # @return [Types::GetStreamGroupOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1482
1481
  #
1483
1482
  # * {Types::GetStreamGroupOutput#arn #arn} => String
1484
- # * {Types::GetStreamGroupOutput#associated_applications #associated_applications} => Array&lt;String&gt;
1485
- # * {Types::GetStreamGroupOutput#created_at #created_at} => Time
1486
- # * {Types::GetStreamGroupOutput#default_application #default_application} => Types::DefaultApplication
1487
1483
  # * {Types::GetStreamGroupOutput#description #description} => String
1488
- # * {Types::GetStreamGroupOutput#id #id} => String
1489
- # * {Types::GetStreamGroupOutput#last_updated_at #last_updated_at} => Time
1484
+ # * {Types::GetStreamGroupOutput#default_application #default_application} => Types::DefaultApplication
1490
1485
  # * {Types::GetStreamGroupOutput#location_states #location_states} => Array&lt;Types::LocationState&gt;
1486
+ # * {Types::GetStreamGroupOutput#stream_class #stream_class} => String
1487
+ # * {Types::GetStreamGroupOutput#id #id} => String
1491
1488
  # * {Types::GetStreamGroupOutput#status #status} => String
1492
1489
  # * {Types::GetStreamGroupOutput#status_reason #status_reason} => String
1493
- # * {Types::GetStreamGroupOutput#stream_class #stream_class} => String
1490
+ # * {Types::GetStreamGroupOutput#last_updated_at #last_updated_at} => Time
1491
+ # * {Types::GetStreamGroupOutput#created_at #created_at} => Time
1492
+ # * {Types::GetStreamGroupOutput#associated_applications #associated_applications} => Array&lt;String&gt;
1494
1493
  #
1495
1494
  # @example Request syntax with placeholder values
1496
1495
  #
@@ -1501,25 +1500,25 @@ module Aws::GameLiftStreams
1501
1500
  # @example Response structure
1502
1501
  #
1503
1502
  # resp.arn #=> String
1504
- # resp.associated_applications #=> Array
1505
- # resp.associated_applications[0] #=> String
1506
- # resp.created_at #=> Time
1507
- # resp.default_application.arn #=> String
1508
- # resp.default_application.id #=> String
1509
1503
  # resp.description #=> String
1510
- # resp.id #=> String
1511
- # resp.last_updated_at #=> Time
1504
+ # resp.default_application.id #=> String
1505
+ # resp.default_application.arn #=> String
1512
1506
  # resp.location_states #=> Array
1513
- # resp.location_states[0].allocated_capacity #=> Integer
1514
- # resp.location_states[0].always_on_capacity #=> Integer
1515
- # resp.location_states[0].idle_capacity #=> Integer
1516
1507
  # resp.location_states[0].location_name #=> String
1508
+ # resp.location_states[0].status #=> String, one of "ACTIVATING", "ACTIVE", "ERROR", "REMOVING"
1509
+ # resp.location_states[0].always_on_capacity #=> Integer
1517
1510
  # resp.location_states[0].on_demand_capacity #=> Integer
1518
1511
  # resp.location_states[0].requested_capacity #=> Integer
1519
- # resp.location_states[0].status #=> String, one of "ACTIVATING", "ACTIVE", "ERROR", "REMOVING"
1512
+ # resp.location_states[0].allocated_capacity #=> Integer
1513
+ # resp.location_states[0].idle_capacity #=> Integer
1514
+ # resp.stream_class #=> String, one of "gen4n_high", "gen4n_ultra", "gen4n_win2022", "gen5n_high", "gen5n_ultra", "gen5n_win2022"
1515
+ # resp.id #=> String
1520
1516
  # resp.status #=> String, one of "ACTIVATING", "UPDATING_LOCATIONS", "ACTIVE", "ACTIVE_WITH_ERRORS", "ERROR", "DELETING"
1521
1517
  # resp.status_reason #=> String, one of "internalError", "noAvailableInstances"
1522
- # resp.stream_class #=> String, one of "gen4n_high", "gen4n_ultra", "gen4n_win2022", "gen5n_high", "gen5n_ultra", "gen5n_win2022"
1518
+ # resp.last_updated_at #=> Time
1519
+ # resp.created_at #=> Time
1520
+ # resp.associated_applications #=> Array
1521
+ # resp.associated_applications[0] #=> String
1523
1522
  #
1524
1523
  #
1525
1524
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -1565,26 +1564,26 @@ module Aws::GameLiftStreams
1565
1564
  #
1566
1565
  # @return [Types::GetStreamSessionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1567
1566
  #
1568
- # * {Types::GetStreamSessionOutput#additional_environment_variables #additional_environment_variables} => Hash&lt;String,String&gt;
1569
- # * {Types::GetStreamSessionOutput#additional_launch_args #additional_launch_args} => Array&lt;String&gt;
1570
- # * {Types::GetStreamSessionOutput#application_arn #application_arn} => String
1571
1567
  # * {Types::GetStreamSessionOutput#arn #arn} => String
1572
- # * {Types::GetStreamSessionOutput#connection_timeout_seconds #connection_timeout_seconds} => Integer
1573
- # * {Types::GetStreamSessionOutput#created_at #created_at} => Time
1574
1568
  # * {Types::GetStreamSessionOutput#description #description} => String
1575
- # * {Types::GetStreamSessionOutput#export_files_metadata #export_files_metadata} => Types::ExportFilesMetadata
1576
- # * {Types::GetStreamSessionOutput#last_updated_at #last_updated_at} => Time
1577
- # * {Types::GetStreamSessionOutput#location #location} => String
1578
- # * {Types::GetStreamSessionOutput#log_file_location_uri #log_file_location_uri} => String
1569
+ # * {Types::GetStreamSessionOutput#stream_group_id #stream_group_id} => String
1570
+ # * {Types::GetStreamSessionOutput#user_id #user_id} => String
1571
+ # * {Types::GetStreamSessionOutput#status #status} => String
1572
+ # * {Types::GetStreamSessionOutput#status_reason #status_reason} => String
1579
1573
  # * {Types::GetStreamSessionOutput#protocol #protocol} => String
1580
- # * {Types::GetStreamSessionOutput#session_length_seconds #session_length_seconds} => Integer
1574
+ # * {Types::GetStreamSessionOutput#location #location} => String
1581
1575
  # * {Types::GetStreamSessionOutput#signal_request #signal_request} => String
1582
1576
  # * {Types::GetStreamSessionOutput#signal_response #signal_response} => String
1583
- # * {Types::GetStreamSessionOutput#status #status} => String
1584
- # * {Types::GetStreamSessionOutput#status_reason #status_reason} => String
1585
- # * {Types::GetStreamSessionOutput#stream_group_id #stream_group_id} => String
1586
- # * {Types::GetStreamSessionOutput#user_id #user_id} => String
1577
+ # * {Types::GetStreamSessionOutput#connection_timeout_seconds #connection_timeout_seconds} => Integer
1578
+ # * {Types::GetStreamSessionOutput#session_length_seconds #session_length_seconds} => Integer
1579
+ # * {Types::GetStreamSessionOutput#additional_launch_args #additional_launch_args} => Array&lt;String&gt;
1580
+ # * {Types::GetStreamSessionOutput#additional_environment_variables #additional_environment_variables} => Hash&lt;String,String&gt;
1581
+ # * {Types::GetStreamSessionOutput#log_file_location_uri #log_file_location_uri} => String
1587
1582
  # * {Types::GetStreamSessionOutput#web_sdk_protocol_url #web_sdk_protocol_url} => String
1583
+ # * {Types::GetStreamSessionOutput#last_updated_at #last_updated_at} => Time
1584
+ # * {Types::GetStreamSessionOutput#created_at #created_at} => Time
1585
+ # * {Types::GetStreamSessionOutput#application_arn #application_arn} => String
1586
+ # * {Types::GetStreamSessionOutput#export_files_metadata #export_files_metadata} => Types::ExportFilesMetadata
1588
1587
  #
1589
1588
  # @example Request syntax with placeholder values
1590
1589
  #
@@ -1595,30 +1594,30 @@ module Aws::GameLiftStreams
1595
1594
  #
1596
1595
  # @example Response structure
1597
1596
  #
1598
- # resp.additional_environment_variables #=> Hash
1599
- # resp.additional_environment_variables["EnvironmentVariablesKeyString"] #=> String
1600
- # resp.additional_launch_args #=> Array
1601
- # resp.additional_launch_args[0] #=> String
1602
- # resp.application_arn #=> String
1603
1597
  # resp.arn #=> String
1604
- # resp.connection_timeout_seconds #=> Integer
1605
- # resp.created_at #=> Time
1606
1598
  # resp.description #=> String
1607
- # resp.export_files_metadata.output_uri #=> String
1608
- # resp.export_files_metadata.status #=> String, one of "SUCCEEDED", "FAILED", "PENDING"
1609
- # resp.export_files_metadata.status_reason #=> String
1610
- # resp.last_updated_at #=> Time
1611
- # resp.location #=> String
1612
- # resp.log_file_location_uri #=> String
1599
+ # resp.stream_group_id #=> String
1600
+ # resp.user_id #=> String
1601
+ # resp.status #=> String, one of "ACTIVATING", "ACTIVE", "CONNECTED", "PENDING_CLIENT_RECONNECTION", "RECONNECTING", "TERMINATING", "TERMINATED", "ERROR"
1602
+ # resp.status_reason #=> String, one of "internalError", "invalidSignalRequest", "placementTimeout", "applicationLogS3DestinationError"
1613
1603
  # resp.protocol #=> String, one of "WebRTC"
1614
- # resp.session_length_seconds #=> Integer
1604
+ # resp.location #=> String
1615
1605
  # resp.signal_request #=> String
1616
1606
  # resp.signal_response #=> String
1617
- # resp.status #=> String, one of "ACTIVATING", "ACTIVE", "CONNECTED", "PENDING_CLIENT_RECONNECTION", "RECONNECTING", "TERMINATING", "TERMINATED", "ERROR"
1618
- # resp.status_reason #=> String, one of "internalError", "invalidSignalRequest", "placementTimeout", "applicationLogS3DestinationError"
1619
- # resp.stream_group_id #=> String
1620
- # resp.user_id #=> String
1607
+ # resp.connection_timeout_seconds #=> Integer
1608
+ # resp.session_length_seconds #=> Integer
1609
+ # resp.additional_launch_args #=> Array
1610
+ # resp.additional_launch_args[0] #=> String
1611
+ # resp.additional_environment_variables #=> Hash
1612
+ # resp.additional_environment_variables["EnvironmentVariablesKeyString"] #=> String
1613
+ # resp.log_file_location_uri #=> String
1621
1614
  # resp.web_sdk_protocol_url #=> String
1615
+ # resp.last_updated_at #=> Time
1616
+ # resp.created_at #=> Time
1617
+ # resp.application_arn #=> String
1618
+ # resp.export_files_metadata.status #=> String, one of "SUCCEEDED", "FAILED", "PENDING"
1619
+ # resp.export_files_metadata.status_reason #=> String
1620
+ # resp.export_files_metadata.output_uri #=> String
1622
1621
  #
1623
1622
  #
1624
1623
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -1639,16 +1638,16 @@ module Aws::GameLiftStreams
1639
1638
  # returns applications in all statuses, in no particular order. You can
1640
1639
  # paginate the results as needed.
1641
1640
  #
1642
- # @option params [Integer] :max_results
1643
- # The number of results to return. Use this parameter with `NextToken`
1644
- # to return results in sequential pages. Default value is `25`.
1645
- #
1646
1641
  # @option params [String] :next_token
1647
1642
  # The token that marks the start of the next set of results. Use this
1648
1643
  # token when you retrieve results as sequential pages. To get the first
1649
1644
  # page of results, omit a token value. To get the remaining pages,
1650
1645
  # provide the token returned with the previous result set.
1651
1646
  #
1647
+ # @option params [Integer] :max_results
1648
+ # The number of results to return. Use this parameter with `NextToken`
1649
+ # to return results in sequential pages. Default value is `25`.
1650
+ #
1652
1651
  # @return [Types::ListApplicationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1653
1652
  #
1654
1653
  # * {Types::ListApplicationsOutput#items #items} => Array&lt;Types::ApplicationSummary&gt;
@@ -1659,21 +1658,21 @@ module Aws::GameLiftStreams
1659
1658
  # @example Request syntax with placeholder values
1660
1659
  #
1661
1660
  # resp = client.list_applications({
1662
- # max_results: 1,
1663
1661
  # next_token: "NextToken",
1662
+ # max_results: 1,
1664
1663
  # })
1665
1664
  #
1666
1665
  # @example Response structure
1667
1666
  #
1668
1667
  # resp.items #=> Array
1669
1668
  # resp.items[0].arn #=> String
1670
- # resp.items[0].created_at #=> Time
1671
- # resp.items[0].description #=> String
1672
1669
  # resp.items[0].id #=> String
1670
+ # resp.items[0].description #=> String
1671
+ # resp.items[0].status #=> String, one of "INITIALIZED", "PROCESSING", "READY", "DELETING", "ERROR"
1672
+ # resp.items[0].created_at #=> Time
1673
1673
  # resp.items[0].last_updated_at #=> Time
1674
1674
  # resp.items[0].runtime_environment.type #=> String, one of "PROTON", "WINDOWS", "UBUNTU"
1675
1675
  # resp.items[0].runtime_environment.version #=> String
1676
- # resp.items[0].status #=> String, one of "INITIALIZED", "PROCESSING", "READY", "DELETING", "ERROR"
1677
1676
  # resp.next_token #=> String
1678
1677
  #
1679
1678
  # @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/ListApplications AWS API Documentation
@@ -1690,16 +1689,16 @@ module Aws::GameLiftStreams
1690
1689
  # returns stream groups in all statuses, in no particular order. You can
1691
1690
  # paginate the results as needed.
1692
1691
  #
1693
- # @option params [Integer] :max_results
1694
- # The number of results to return. Use this parameter with `NextToken`
1695
- # to return results in sequential pages. Default value is `25`.
1696
- #
1697
1692
  # @option params [String] :next_token
1698
1693
  # A token that marks the start of the next set of results. Use this
1699
1694
  # token when you retrieve results as sequential pages. To get the first
1700
1695
  # page of results, omit a token value. To get the remaining pages,
1701
1696
  # provide the token returned with the previous result set.
1702
1697
  #
1698
+ # @option params [Integer] :max_results
1699
+ # The number of results to return. Use this parameter with `NextToken`
1700
+ # to return results in sequential pages. Default value is `25`.
1701
+ #
1703
1702
  # @return [Types::ListStreamGroupsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1704
1703
  #
1705
1704
  # * {Types::ListStreamGroupsOutput#items #items} => Array&lt;Types::StreamGroupSummary&gt;
@@ -1710,22 +1709,22 @@ module Aws::GameLiftStreams
1710
1709
  # @example Request syntax with placeholder values
1711
1710
  #
1712
1711
  # resp = client.list_stream_groups({
1713
- # max_results: 1,
1714
1712
  # next_token: "NextToken",
1713
+ # max_results: 1,
1715
1714
  # })
1716
1715
  #
1717
1716
  # @example Response structure
1718
1717
  #
1719
1718
  # resp.items #=> Array
1720
1719
  # resp.items[0].arn #=> String
1721
- # resp.items[0].created_at #=> Time
1722
- # resp.items[0].default_application.arn #=> String
1723
- # resp.items[0].default_application.id #=> String
1724
- # resp.items[0].description #=> String
1725
1720
  # resp.items[0].id #=> String
1726
- # resp.items[0].last_updated_at #=> Time
1727
- # resp.items[0].status #=> String, one of "ACTIVATING", "UPDATING_LOCATIONS", "ACTIVE", "ACTIVE_WITH_ERRORS", "ERROR", "DELETING"
1721
+ # resp.items[0].description #=> String
1722
+ # resp.items[0].default_application.id #=> String
1723
+ # resp.items[0].default_application.arn #=> String
1728
1724
  # resp.items[0].stream_class #=> String, one of "gen4n_high", "gen4n_ultra", "gen4n_win2022", "gen5n_high", "gen5n_ultra", "gen5n_win2022"
1725
+ # resp.items[0].status #=> String, one of "ACTIVATING", "UPDATING_LOCATIONS", "ACTIVE", "ACTIVE_WITH_ERRORS", "ERROR", "DELETING"
1726
+ # resp.items[0].created_at #=> Time
1727
+ # resp.items[0].last_updated_at #=> Time
1729
1728
  # resp.next_token #=> String
1730
1729
  #
1731
1730
  # @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/ListStreamGroups AWS API Documentation
@@ -1747,6 +1746,11 @@ module Aws::GameLiftStreams
1747
1746
  # This operation returns the requested stream sessions in no particular
1748
1747
  # order.
1749
1748
  #
1749
+ # @option params [String] :status
1750
+ # Filter by the stream session status. You can specify one status in
1751
+ # each request to retrieve only sessions that are currently in that
1752
+ # status.
1753
+ #
1750
1754
  # @option params [String] :export_files_status
1751
1755
  # Filter by the exported files status. You can specify one status in
1752
1756
  # each request to retrieve only sessions that currently have that
@@ -1763,6 +1767,16 @@ module Aws::GameLiftStreams
1763
1767
  # * **PENDING**: Either the stream session is still in progress, or
1764
1768
  # uploading the exported files to the S3 bucket is in progress.
1765
1769
  #
1770
+ # @option params [String] :next_token
1771
+ # The token that marks the start of the next set of results. Use this
1772
+ # token when you retrieve results as sequential pages. To get the first
1773
+ # page of results, omit a token value. To get the remaining pages,
1774
+ # provide the token returned with the previous result set.
1775
+ #
1776
+ # @option params [Integer] :max_results
1777
+ # The number of results to return. Use this parameter with `NextToken`
1778
+ # to return results in sequential pages. Default value is `25`.
1779
+ #
1766
1780
  # @option params [required, String] :identifier
1767
1781
  # The unique identifier of a Amazon GameLift Streams stream group to
1768
1782
  # retrieve the stream session for. You can use either the stream group
@@ -1772,21 +1786,6 @@ module Aws::GameLiftStreams
1772
1786
  #
1773
1787
  # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html
1774
1788
  #
1775
- # @option params [Integer] :max_results
1776
- # The number of results to return. Use this parameter with `NextToken`
1777
- # to return results in sequential pages. Default value is `25`.
1778
- #
1779
- # @option params [String] :next_token
1780
- # The token that marks the start of the next set of results. Use this
1781
- # token when you retrieve results as sequential pages. To get the first
1782
- # page of results, omit a token value. To get the remaining pages,
1783
- # provide the token returned with the previous result set.
1784
- #
1785
- # @option params [String] :status
1786
- # Filter by the stream session status. You can specify one status in
1787
- # each request to retrieve only sessions that are currently in that
1788
- # status.
1789
- #
1790
1789
  # @return [Types::ListStreamSessionsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1791
1790
  #
1792
1791
  # * {Types::ListStreamSessionsOutput#items #items} => Array&lt;Types::StreamSessionSummary&gt;
@@ -1797,27 +1796,27 @@ module Aws::GameLiftStreams
1797
1796
  # @example Request syntax with placeholder values
1798
1797
  #
1799
1798
  # resp = client.list_stream_sessions({
1799
+ # status: "ACTIVATING", # accepts ACTIVATING, ACTIVE, CONNECTED, PENDING_CLIENT_RECONNECTION, RECONNECTING, TERMINATING, TERMINATED, ERROR
1800
1800
  # export_files_status: "SUCCEEDED", # accepts SUCCEEDED, FAILED, PENDING
1801
- # identifier: "Identifier", # required
1802
- # max_results: 1,
1803
1801
  # next_token: "NextToken",
1804
- # status: "ACTIVATING", # accepts ACTIVATING, ACTIVE, CONNECTED, PENDING_CLIENT_RECONNECTION, RECONNECTING, TERMINATING, TERMINATED, ERROR
1802
+ # max_results: 1,
1803
+ # identifier: "Identifier", # required
1805
1804
  # })
1806
1805
  #
1807
1806
  # @example Response structure
1808
1807
  #
1809
1808
  # resp.items #=> Array
1810
- # resp.items[0].application_arn #=> String
1811
1809
  # resp.items[0].arn #=> String
1810
+ # resp.items[0].user_id #=> String
1811
+ # resp.items[0].status #=> String, one of "ACTIVATING", "ACTIVE", "CONNECTED", "PENDING_CLIENT_RECONNECTION", "RECONNECTING", "TERMINATING", "TERMINATED", "ERROR"
1812
+ # resp.items[0].protocol #=> String, one of "WebRTC"
1813
+ # resp.items[0].last_updated_at #=> Time
1812
1814
  # resp.items[0].created_at #=> Time
1813
- # resp.items[0].export_files_metadata.output_uri #=> String
1815
+ # resp.items[0].application_arn #=> String
1814
1816
  # resp.items[0].export_files_metadata.status #=> String, one of "SUCCEEDED", "FAILED", "PENDING"
1815
1817
  # resp.items[0].export_files_metadata.status_reason #=> String
1816
- # resp.items[0].last_updated_at #=> Time
1818
+ # resp.items[0].export_files_metadata.output_uri #=> String
1817
1819
  # resp.items[0].location #=> String
1818
- # resp.items[0].protocol #=> String, one of "WebRTC"
1819
- # resp.items[0].status #=> String, one of "ACTIVATING", "ACTIVE", "CONNECTED", "PENDING_CLIENT_RECONNECTION", "RECONNECTING", "TERMINATING", "TERMINATED", "ERROR"
1820
- # resp.items[0].user_id #=> String
1821
1820
  # resp.next_token #=> String
1822
1821
  #
1823
1822
  # @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/ListStreamSessions AWS API Documentation
@@ -1844,25 +1843,25 @@ module Aws::GameLiftStreams
1844
1843
  #
1845
1844
  # [1]: https://docs.aws.amazon.com/gameliftstreams/latest/apireference/API_GetStreamSession.html
1846
1845
  #
1846
+ # @option params [String] :status
1847
+ # Filter by the stream session status. You can specify one status in
1848
+ # each request to retrieve only sessions that are currently in that
1849
+ # status.
1850
+ #
1847
1851
  # @option params [String] :export_files_status
1848
1852
  # Filter by the exported files status. You can specify one status in
1849
1853
  # each request to retrieve only sessions that currently have that
1850
1854
  # exported files status.
1851
1855
  #
1852
- # @option params [Integer] :max_results
1853
- # The number of results to return. Use this parameter with `NextToken`
1854
- # to return results in sequential pages. Default value is `25`.
1855
- #
1856
1856
  # @option params [String] :next_token
1857
1857
  # The token that marks the start of the next set of results. Use this
1858
1858
  # token when you retrieve results as sequential pages. To get the first
1859
1859
  # page of results, omit a token value. To get the remaining pages,
1860
1860
  # provide the token returned with the previous result set.
1861
1861
  #
1862
- # @option params [String] :status
1863
- # Filter by the stream session status. You can specify one status in
1864
- # each request to retrieve only sessions that are currently in that
1865
- # status.
1862
+ # @option params [Integer] :max_results
1863
+ # The number of results to return. Use this parameter with `NextToken`
1864
+ # to return results in sequential pages. Default value is `25`.
1866
1865
  #
1867
1866
  # @return [Types::ListStreamSessionsByAccountOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1868
1867
  #
@@ -1874,26 +1873,26 @@ module Aws::GameLiftStreams
1874
1873
  # @example Request syntax with placeholder values
1875
1874
  #
1876
1875
  # resp = client.list_stream_sessions_by_account({
1876
+ # status: "ACTIVATING", # accepts ACTIVATING, ACTIVE, CONNECTED, PENDING_CLIENT_RECONNECTION, RECONNECTING, TERMINATING, TERMINATED, ERROR
1877
1877
  # export_files_status: "SUCCEEDED", # accepts SUCCEEDED, FAILED, PENDING
1878
- # max_results: 1,
1879
1878
  # next_token: "NextToken",
1880
- # status: "ACTIVATING", # accepts ACTIVATING, ACTIVE, CONNECTED, PENDING_CLIENT_RECONNECTION, RECONNECTING, TERMINATING, TERMINATED, ERROR
1879
+ # max_results: 1,
1881
1880
  # })
1882
1881
  #
1883
1882
  # @example Response structure
1884
1883
  #
1885
1884
  # resp.items #=> Array
1886
- # resp.items[0].application_arn #=> String
1887
1885
  # resp.items[0].arn #=> String
1886
+ # resp.items[0].user_id #=> String
1887
+ # resp.items[0].status #=> String, one of "ACTIVATING", "ACTIVE", "CONNECTED", "PENDING_CLIENT_RECONNECTION", "RECONNECTING", "TERMINATING", "TERMINATED", "ERROR"
1888
+ # resp.items[0].protocol #=> String, one of "WebRTC"
1889
+ # resp.items[0].last_updated_at #=> Time
1888
1890
  # resp.items[0].created_at #=> Time
1889
- # resp.items[0].export_files_metadata.output_uri #=> String
1891
+ # resp.items[0].application_arn #=> String
1890
1892
  # resp.items[0].export_files_metadata.status #=> String, one of "SUCCEEDED", "FAILED", "PENDING"
1891
1893
  # resp.items[0].export_files_metadata.status_reason #=> String
1892
- # resp.items[0].last_updated_at #=> Time
1894
+ # resp.items[0].export_files_metadata.output_uri #=> String
1893
1895
  # resp.items[0].location #=> String
1894
- # resp.items[0].protocol #=> String, one of "WebRTC"
1895
- # resp.items[0].status #=> String, one of "ACTIVATING", "ACTIVE", "CONNECTED", "PENDING_CLIENT_RECONNECTION", "RECONNECTING", "TERMINATING", "TERMINATED", "ERROR"
1896
- # resp.items[0].user_id #=> String
1897
1896
  # resp.next_token #=> String
1898
1897
  #
1899
1898
  # @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/ListStreamSessionsByAccount AWS API Documentation
@@ -2047,46 +2046,6 @@ module Aws::GameLiftStreams
2047
2046
  #
2048
2047
  # [1]: https://docs.aws.amazon.com/gameliftstreams/latest/apireference/API_AssociateApplications.html
2049
2048
  #
2050
- # @option params [Hash<String,String>] :additional_environment_variables
2051
- # A set of options that you can use to control the stream session
2052
- # runtime environment, expressed as a set of key-value pairs. You can
2053
- # use this to configure the application or stream session details. You
2054
- # can also provide custom environment variables that Amazon GameLift
2055
- # Streams passes to your game client.
2056
- #
2057
- # <note markdown="1"> If you want to debug your application with environment variables, we
2058
- # recommend that you do so in a local environment outside of Amazon
2059
- # GameLift Streams. For more information, refer to the Compatibility
2060
- # Guidance in the troubleshooting section of the Developer Guide.
2061
- #
2062
- # </note>
2063
- #
2064
- # `AdditionalEnvironmentVariables` and `AdditionalLaunchArgs` have
2065
- # similar purposes. `AdditionalEnvironmentVariables` passes data using
2066
- # environment variables; while `AdditionalLaunchArgs` passes data using
2067
- # command-line arguments.
2068
- #
2069
- # @option params [Array<String>] :additional_launch_args
2070
- # A list of CLI arguments that are sent to the streaming server when a
2071
- # stream session launches. You can use this to configure the application
2072
- # or stream session details. You can also provide custom arguments that
2073
- # Amazon GameLift Streams passes to your game client.
2074
- #
2075
- # `AdditionalEnvironmentVariables` and `AdditionalLaunchArgs` have
2076
- # similar purposes. `AdditionalEnvironmentVariables` passes data using
2077
- # environment variables; while `AdditionalLaunchArgs` passes data using
2078
- # command-line arguments.
2079
- #
2080
- # @option params [required, String] :application_identifier
2081
- # An [Amazon Resource Name (ARN)][1] or ID that uniquely identifies the
2082
- # application resource. Example ARN:
2083
- # `arn:aws:gameliftstreams:us-west-2:111122223333:application/a-9ZY8X7Wv6`.
2084
- # Example ID: `a-9ZY8X7Wv6`.
2085
- #
2086
- #
2087
- #
2088
- # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html
2089
- #
2090
2049
  # @option params [String] :client_token
2091
2050
  # A unique identifier that represents a client request. The request is
2092
2051
  # idempotent, which ensures that an API request completes only once.
@@ -2096,13 +2055,6 @@ module Aws::GameLiftStreams
2096
2055
  # **A suitable default value is auto-generated.** You should normally
2097
2056
  # not need to pass this option.**
2098
2057
  #
2099
- # @option params [Integer] :connection_timeout_seconds
2100
- # Length of time (in seconds) that Amazon GameLift Streams should wait
2101
- # for a client to connect to the stream session. This time span starts
2102
- # when the stream session reaches `ACTIVE` status. If no client connects
2103
- # before the timeout, Amazon GameLift Streams stops the stream session
2104
- # with status of `TERMINATED`. Default value is 120.
2105
- #
2106
2058
  # @option params [String] :description
2107
2059
  # A human-readable label for the stream session. You can update this
2108
2060
  # value later.
@@ -2119,6 +2071,38 @@ module Aws::GameLiftStreams
2119
2071
  #
2120
2072
  # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html
2121
2073
  #
2074
+ # @option params [required, String] :protocol
2075
+ # The data transport protocol to use for the stream session.
2076
+ #
2077
+ # @option params [required, String] :signal_request
2078
+ # A WebRTC ICE offer string to use when initializing a WebRTC
2079
+ # connection. Typically, the offer is a very long JSON string. Provide
2080
+ # the string as a text value in quotes.
2081
+ #
2082
+ # Amazon GameLift Streams also supports setting the field to
2083
+ # "NO\_CLIENT\_CONNECTION". This will create a session without needing
2084
+ # any browser request or Web SDK integration. The session starts up as
2085
+ # usual and waits for a reconnection from a browser, which is
2086
+ # accomplished using [CreateStreamSessionConnection][1].
2087
+ #
2088
+ #
2089
+ #
2090
+ # [1]: https://docs.aws.amazon.com/gameliftstreams/latest/apireference/API_CreateStreamSessionConnection.html
2091
+ #
2092
+ # @option params [required, String] :application_identifier
2093
+ # An [Amazon Resource Name (ARN)][1] or ID that uniquely identifies the
2094
+ # application resource. Example ARN:
2095
+ # `arn:aws:gameliftstreams:us-west-2:111122223333:application/a-9ZY8X7Wv6`.
2096
+ # Example ID: `a-9ZY8X7Wv6`.
2097
+ #
2098
+ #
2099
+ #
2100
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html
2101
+ #
2102
+ # @option params [String] :user_id
2103
+ # An opaque, unique identifier for an end-user, defined by the
2104
+ # developer.
2105
+ #
2122
2106
  # @option params [Array<String>] :locations
2123
2107
  # A list of locations, in order of priority, where you want Amazon
2124
2108
  # GameLift Streams to start a stream from. Amazon GameLift Streams
@@ -2135,8 +2119,12 @@ module Aws::GameLiftStreams
2135
2119
  #
2136
2120
  # [1]: https://docs.aws.amazon.com/gameliftstreams/latest/developerguide/regions-quotas.html
2137
2121
  #
2138
- # @option params [required, String] :protocol
2139
- # The data transport protocol to use for the stream session.
2122
+ # @option params [Integer] :connection_timeout_seconds
2123
+ # Length of time (in seconds) that Amazon GameLift Streams should wait
2124
+ # for a client to connect or reconnect to the stream session. This time
2125
+ # span starts when the stream session reaches `ACTIVE` status. If no
2126
+ # client connects before the timeout, Amazon GameLift Streams stops the
2127
+ # stream session with status of `TERMINATED`. Default value is 120.
2140
2128
  #
2141
2129
  # @option params [Integer] :session_length_seconds
2142
2130
  # The maximum length of time (in seconds) that Amazon GameLift Streams
@@ -2144,93 +2132,104 @@ module Aws::GameLiftStreams
2144
2132
  # ends the stream session regardless of any existing client connections.
2145
2133
  # Default value is 43200.
2146
2134
  #
2147
- # @option params [required, String] :signal_request
2148
- # A WebRTC ICE offer string to use when initializing a WebRTC
2149
- # connection. Typically, the offer is a very long JSON string. Provide
2150
- # the string as a text value in quotes.
2135
+ # @option params [Array<String>] :additional_launch_args
2136
+ # A list of CLI arguments that are sent to the streaming server when a
2137
+ # stream session launches. You can use this to configure the application
2138
+ # or stream session details. You can also provide custom arguments that
2139
+ # Amazon GameLift Streams passes to your game client.
2151
2140
  #
2152
- # Amazon GameLift Streams also supports setting the field to
2153
- # "NO\_CLIENT\_CONNECTION". This will create a session without needing
2154
- # any browser request or Web SDK integration. The session starts up as
2155
- # usual and waits for a reconnection from a browser, which is
2156
- # accomplished using [CreateStreamSessionConnection][1].
2141
+ # `AdditionalEnvironmentVariables` and `AdditionalLaunchArgs` have
2142
+ # similar purposes. `AdditionalEnvironmentVariables` passes data using
2143
+ # environment variables; while `AdditionalLaunchArgs` passes data using
2144
+ # command-line arguments.
2157
2145
  #
2146
+ # @option params [Hash<String,String>] :additional_environment_variables
2147
+ # A set of options that you can use to control the stream session
2148
+ # runtime environment, expressed as a set of key-value pairs. You can
2149
+ # use this to configure the application or stream session details. You
2150
+ # can also provide custom environment variables that Amazon GameLift
2151
+ # Streams passes to your game client.
2158
2152
  #
2153
+ # <note markdown="1"> If you want to debug your application with environment variables, we
2154
+ # recommend that you do so in a local environment outside of Amazon
2155
+ # GameLift Streams. For more information, refer to the Compatibility
2156
+ # Guidance in the troubleshooting section of the Developer Guide.
2159
2157
  #
2160
- # [1]: https://docs.aws.amazon.com/gameliftstreams/latest/apireference/API_CreateStreamSessionConnection.html
2158
+ # </note>
2161
2159
  #
2162
- # @option params [String] :user_id
2163
- # An opaque, unique identifier for an end-user, defined by the
2164
- # developer.
2160
+ # `AdditionalEnvironmentVariables` and `AdditionalLaunchArgs` have
2161
+ # similar purposes. `AdditionalEnvironmentVariables` passes data using
2162
+ # environment variables; while `AdditionalLaunchArgs` passes data using
2163
+ # command-line arguments.
2165
2164
  #
2166
2165
  # @return [Types::StartStreamSessionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2167
2166
  #
2168
- # * {Types::StartStreamSessionOutput#additional_environment_variables #additional_environment_variables} => Hash&lt;String,String&gt;
2169
- # * {Types::StartStreamSessionOutput#additional_launch_args #additional_launch_args} => Array&lt;String&gt;
2170
- # * {Types::StartStreamSessionOutput#application_arn #application_arn} => String
2171
2167
  # * {Types::StartStreamSessionOutput#arn #arn} => String
2172
- # * {Types::StartStreamSessionOutput#connection_timeout_seconds #connection_timeout_seconds} => Integer
2173
- # * {Types::StartStreamSessionOutput#created_at #created_at} => Time
2174
2168
  # * {Types::StartStreamSessionOutput#description #description} => String
2175
- # * {Types::StartStreamSessionOutput#export_files_metadata #export_files_metadata} => Types::ExportFilesMetadata
2176
- # * {Types::StartStreamSessionOutput#last_updated_at #last_updated_at} => Time
2177
- # * {Types::StartStreamSessionOutput#location #location} => String
2178
- # * {Types::StartStreamSessionOutput#log_file_location_uri #log_file_location_uri} => String
2169
+ # * {Types::StartStreamSessionOutput#stream_group_id #stream_group_id} => String
2170
+ # * {Types::StartStreamSessionOutput#user_id #user_id} => String
2171
+ # * {Types::StartStreamSessionOutput#status #status} => String
2172
+ # * {Types::StartStreamSessionOutput#status_reason #status_reason} => String
2179
2173
  # * {Types::StartStreamSessionOutput#protocol #protocol} => String
2180
- # * {Types::StartStreamSessionOutput#session_length_seconds #session_length_seconds} => Integer
2174
+ # * {Types::StartStreamSessionOutput#location #location} => String
2181
2175
  # * {Types::StartStreamSessionOutput#signal_request #signal_request} => String
2182
2176
  # * {Types::StartStreamSessionOutput#signal_response #signal_response} => String
2183
- # * {Types::StartStreamSessionOutput#status #status} => String
2184
- # * {Types::StartStreamSessionOutput#status_reason #status_reason} => String
2185
- # * {Types::StartStreamSessionOutput#stream_group_id #stream_group_id} => String
2186
- # * {Types::StartStreamSessionOutput#user_id #user_id} => String
2177
+ # * {Types::StartStreamSessionOutput#connection_timeout_seconds #connection_timeout_seconds} => Integer
2178
+ # * {Types::StartStreamSessionOutput#session_length_seconds #session_length_seconds} => Integer
2179
+ # * {Types::StartStreamSessionOutput#additional_launch_args #additional_launch_args} => Array&lt;String&gt;
2180
+ # * {Types::StartStreamSessionOutput#additional_environment_variables #additional_environment_variables} => Hash&lt;String,String&gt;
2181
+ # * {Types::StartStreamSessionOutput#log_file_location_uri #log_file_location_uri} => String
2187
2182
  # * {Types::StartStreamSessionOutput#web_sdk_protocol_url #web_sdk_protocol_url} => String
2183
+ # * {Types::StartStreamSessionOutput#last_updated_at #last_updated_at} => Time
2184
+ # * {Types::StartStreamSessionOutput#created_at #created_at} => Time
2185
+ # * {Types::StartStreamSessionOutput#application_arn #application_arn} => String
2186
+ # * {Types::StartStreamSessionOutput#export_files_metadata #export_files_metadata} => Types::ExportFilesMetadata
2188
2187
  #
2189
2188
  # @example Request syntax with placeholder values
2190
2189
  #
2191
2190
  # resp = client.start_stream_session({
2192
- # additional_environment_variables: {
2193
- # "EnvironmentVariablesKeyString" => "EnvironmentVariablesValueString",
2194
- # },
2195
- # additional_launch_args: ["String"],
2196
- # application_identifier: "Identifier", # required
2197
2191
  # client_token: "ClientToken",
2198
- # connection_timeout_seconds: 1,
2199
2192
  # description: "Description",
2200
2193
  # identifier: "Identifier", # required
2201
- # locations: ["LocationName"],
2202
2194
  # protocol: "WebRTC", # required, accepts WebRTC
2203
- # session_length_seconds: 1,
2204
2195
  # signal_request: "SignalRequest", # required
2196
+ # application_identifier: "Identifier", # required
2205
2197
  # user_id: "UserId",
2198
+ # locations: ["LocationName"],
2199
+ # connection_timeout_seconds: 1,
2200
+ # session_length_seconds: 1,
2201
+ # additional_launch_args: ["String"],
2202
+ # additional_environment_variables: {
2203
+ # "EnvironmentVariablesKeyString" => "EnvironmentVariablesValueString",
2204
+ # },
2206
2205
  # })
2207
2206
  #
2208
2207
  # @example Response structure
2209
2208
  #
2210
- # resp.additional_environment_variables #=> Hash
2211
- # resp.additional_environment_variables["EnvironmentVariablesKeyString"] #=> String
2212
- # resp.additional_launch_args #=> Array
2213
- # resp.additional_launch_args[0] #=> String
2214
- # resp.application_arn #=> String
2215
2209
  # resp.arn #=> String
2216
- # resp.connection_timeout_seconds #=> Integer
2217
- # resp.created_at #=> Time
2218
2210
  # resp.description #=> String
2219
- # resp.export_files_metadata.output_uri #=> String
2220
- # resp.export_files_metadata.status #=> String, one of "SUCCEEDED", "FAILED", "PENDING"
2221
- # resp.export_files_metadata.status_reason #=> String
2222
- # resp.last_updated_at #=> Time
2223
- # resp.location #=> String
2224
- # resp.log_file_location_uri #=> String
2211
+ # resp.stream_group_id #=> String
2212
+ # resp.user_id #=> String
2213
+ # resp.status #=> String, one of "ACTIVATING", "ACTIVE", "CONNECTED", "PENDING_CLIENT_RECONNECTION", "RECONNECTING", "TERMINATING", "TERMINATED", "ERROR"
2214
+ # resp.status_reason #=> String, one of "internalError", "invalidSignalRequest", "placementTimeout", "applicationLogS3DestinationError"
2225
2215
  # resp.protocol #=> String, one of "WebRTC"
2226
- # resp.session_length_seconds #=> Integer
2216
+ # resp.location #=> String
2227
2217
  # resp.signal_request #=> String
2228
2218
  # resp.signal_response #=> String
2229
- # resp.status #=> String, one of "ACTIVATING", "ACTIVE", "CONNECTED", "PENDING_CLIENT_RECONNECTION", "RECONNECTING", "TERMINATING", "TERMINATED", "ERROR"
2230
- # resp.status_reason #=> String, one of "internalError", "invalidSignalRequest", "placementTimeout", "applicationLogS3DestinationError"
2231
- # resp.stream_group_id #=> String
2232
- # resp.user_id #=> String
2219
+ # resp.connection_timeout_seconds #=> Integer
2220
+ # resp.session_length_seconds #=> Integer
2221
+ # resp.additional_launch_args #=> Array
2222
+ # resp.additional_launch_args[0] #=> String
2223
+ # resp.additional_environment_variables #=> Hash
2224
+ # resp.additional_environment_variables["EnvironmentVariablesKeyString"] #=> String
2225
+ # resp.log_file_location_uri #=> String
2233
2226
  # resp.web_sdk_protocol_url #=> String
2227
+ # resp.last_updated_at #=> Time
2228
+ # resp.created_at #=> Time
2229
+ # resp.application_arn #=> String
2230
+ # resp.export_files_metadata.status #=> String, one of "SUCCEEDED", "FAILED", "PENDING"
2231
+ # resp.export_files_metadata.status_reason #=> String
2232
+ # resp.export_files_metadata.output_uri #=> String
2234
2233
  #
2235
2234
  # @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/StartStreamSession AWS API Documentation
2236
2235
  #
@@ -2381,21 +2380,18 @@ module Aws::GameLiftStreams
2381
2380
  # the new values. If the operation is successful, it returns the
2382
2381
  # complete updated set of settings for the application.
2383
2382
  #
2384
- # @option params [String] :application_log_output_uri
2385
- # An Amazon S3 URI to a bucket where you would like Amazon GameLift
2386
- # Streams to save application logs. Required if you specify one or more
2387
- # `ApplicationLogPaths`.
2388
- #
2389
- # <note markdown="1"> The log bucket must have permissions that give Amazon GameLift Streams
2390
- # access to write the log files. For more information, see [Application
2391
- # log bucket permission policy][1] in the *Amazon GameLift Streams
2392
- # Developer Guide*.
2383
+ # @option params [required, String] :identifier
2384
+ # An [Amazon Resource Name (ARN)][1] or ID that uniquely identifies the
2385
+ # application resource. Example ARN:
2386
+ # `arn:aws:gameliftstreams:us-west-2:111122223333:application/a-9ZY8X7Wv6`.
2387
+ # Example ID: `a-9ZY8X7Wv6`.
2393
2388
  #
2394
- # </note>
2395
2389
  #
2396
2390
  #
2391
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html
2397
2392
  #
2398
- # [1]: https://docs.aws.amazon.com/gameliftstreams/latest/developerguide/applications.html#application-bucket-permission-template
2393
+ # @option params [String] :description
2394
+ # A human-readable label for the application.
2399
2395
  #
2400
2396
  # @option params [Array<String>] :application_log_paths
2401
2397
  # Locations of log files that your content generates during a stream
@@ -2410,66 +2406,69 @@ module Aws::GameLiftStreams
2410
2406
  #
2411
2407
  # [1]: https://docs.aws.amazon.com/gameliftstreams/latest/apireference/API_GetStreamSession.html
2412
2408
  #
2413
- # @option params [String] :description
2414
- # A human-readable label for the application.
2409
+ # @option params [String] :application_log_output_uri
2410
+ # An Amazon S3 URI to a bucket where you would like Amazon GameLift
2411
+ # Streams to save application logs. Required if you specify one or more
2412
+ # `ApplicationLogPaths`.
2415
2413
  #
2416
- # @option params [required, String] :identifier
2417
- # An [Amazon Resource Name (ARN)][1] or ID that uniquely identifies the
2418
- # application resource. Example ARN:
2419
- # `arn:aws:gameliftstreams:us-west-2:111122223333:application/a-9ZY8X7Wv6`.
2420
- # Example ID: `a-9ZY8X7Wv6`.
2414
+ # <note markdown="1"> The log bucket must have permissions that give Amazon GameLift Streams
2415
+ # access to write the log files. For more information, see [Application
2416
+ # log bucket permission policy][1] in the *Amazon GameLift Streams
2417
+ # Developer Guide*.
2421
2418
  #
2419
+ # </note>
2422
2420
  #
2423
2421
  #
2424
- # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html
2422
+ #
2423
+ # [1]: https://docs.aws.amazon.com/gameliftstreams/latest/developerguide/applications.html#application-bucket-permission-template
2425
2424
  #
2426
2425
  # @return [Types::UpdateApplicationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2427
2426
  #
2428
- # * {Types::UpdateApplicationOutput#application_log_output_uri #application_log_output_uri} => String
2429
- # * {Types::UpdateApplicationOutput#application_log_paths #application_log_paths} => Array&lt;String&gt;
2430
- # * {Types::UpdateApplicationOutput#application_source_uri #application_source_uri} => String
2431
2427
  # * {Types::UpdateApplicationOutput#arn #arn} => String
2432
- # * {Types::UpdateApplicationOutput#associated_stream_groups #associated_stream_groups} => Array&lt;String&gt;
2433
- # * {Types::UpdateApplicationOutput#created_at #created_at} => Time
2434
2428
  # * {Types::UpdateApplicationOutput#description #description} => String
2429
+ # * {Types::UpdateApplicationOutput#runtime_environment #runtime_environment} => Types::RuntimeEnvironment
2435
2430
  # * {Types::UpdateApplicationOutput#executable_path #executable_path} => String
2431
+ # * {Types::UpdateApplicationOutput#application_log_paths #application_log_paths} => Array&lt;String&gt;
2432
+ # * {Types::UpdateApplicationOutput#application_log_output_uri #application_log_output_uri} => String
2433
+ # * {Types::UpdateApplicationOutput#application_source_uri #application_source_uri} => String
2436
2434
  # * {Types::UpdateApplicationOutput#id #id} => String
2437
- # * {Types::UpdateApplicationOutput#last_updated_at #last_updated_at} => Time
2438
- # * {Types::UpdateApplicationOutput#replication_statuses #replication_statuses} => Array&lt;Types::ReplicationStatus&gt;
2439
- # * {Types::UpdateApplicationOutput#runtime_environment #runtime_environment} => Types::RuntimeEnvironment
2440
2435
  # * {Types::UpdateApplicationOutput#status #status} => String
2441
2436
  # * {Types::UpdateApplicationOutput#status_reason #status_reason} => String
2437
+ # * {Types::UpdateApplicationOutput#replication_statuses #replication_statuses} => Array&lt;Types::ReplicationStatus&gt;
2438
+ # * {Types::UpdateApplicationOutput#created_at #created_at} => Time
2439
+ # * {Types::UpdateApplicationOutput#last_updated_at #last_updated_at} => Time
2440
+ # * {Types::UpdateApplicationOutput#associated_stream_groups #associated_stream_groups} => Array&lt;String&gt;
2442
2441
  #
2443
2442
  # @example Request syntax with placeholder values
2444
2443
  #
2445
2444
  # resp = client.update_application({
2446
- # application_log_output_uri: "ApplicationLogOutputUri",
2447
- # application_log_paths: ["FilePath"],
2448
- # description: "Description",
2449
2445
  # identifier: "Identifier", # required
2446
+ # description: "Description",
2447
+ # application_log_paths: ["FilePath"],
2448
+ # application_log_output_uri: "ApplicationLogOutputUri",
2450
2449
  # })
2451
2450
  #
2452
2451
  # @example Response structure
2453
2452
  #
2454
- # resp.application_log_output_uri #=> String
2455
- # resp.application_log_paths #=> Array
2456
- # resp.application_log_paths[0] #=> String
2457
- # resp.application_source_uri #=> String
2458
2453
  # resp.arn #=> String
2459
- # resp.associated_stream_groups #=> Array
2460
- # resp.associated_stream_groups[0] #=> String
2461
- # resp.created_at #=> Time
2462
2454
  # resp.description #=> String
2455
+ # resp.runtime_environment.type #=> String, one of "PROTON", "WINDOWS", "UBUNTU"
2456
+ # resp.runtime_environment.version #=> String
2463
2457
  # resp.executable_path #=> String
2458
+ # resp.application_log_paths #=> Array
2459
+ # resp.application_log_paths[0] #=> String
2460
+ # resp.application_log_output_uri #=> String
2461
+ # resp.application_source_uri #=> String
2464
2462
  # resp.id #=> String
2465
- # resp.last_updated_at #=> Time
2463
+ # resp.status #=> String, one of "INITIALIZED", "PROCESSING", "READY", "DELETING", "ERROR"
2464
+ # resp.status_reason #=> String, one of "internalError", "accessDenied"
2466
2465
  # resp.replication_statuses #=> Array
2467
2466
  # resp.replication_statuses[0].location #=> String
2468
2467
  # resp.replication_statuses[0].status #=> String, one of "REPLICATING", "COMPLETED"
2469
- # resp.runtime_environment.type #=> String, one of "PROTON", "WINDOWS", "UBUNTU"
2470
- # resp.runtime_environment.version #=> String
2471
- # resp.status #=> String, one of "INITIALIZED", "PROCESSING", "READY", "DELETING", "ERROR"
2472
- # resp.status_reason #=> String, one of "internalError", "accessDenied"
2468
+ # resp.created_at #=> Time
2469
+ # resp.last_updated_at #=> Time
2470
+ # resp.associated_stream_groups #=> Array
2471
+ # resp.associated_stream_groups[0] #=> String
2473
2472
  #
2474
2473
  # @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/UpdateApplication AWS API Documentation
2475
2474
  #
@@ -2505,9 +2504,6 @@ module Aws::GameLiftStreams
2505
2504
  # Amazon GameLift Streams returns the complete updated metadata for the
2506
2505
  # stream group.
2507
2506
  #
2508
- # @option params [String] :description
2509
- # A descriptive label for the stream group.
2510
- #
2511
2507
  # @option params [required, String] :identifier
2512
2508
  # An [Amazon Resource Name (ARN)][1] or ID that uniquely identifies the
2513
2509
  # stream group resource. Example ARN:
@@ -2522,56 +2518,59 @@ module Aws::GameLiftStreams
2522
2518
  # A set of one or more locations and the streaming capacity for each
2523
2519
  # location.
2524
2520
  #
2521
+ # @option params [String] :description
2522
+ # A descriptive label for the stream group.
2523
+ #
2525
2524
  # @return [Types::UpdateStreamGroupOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2526
2525
  #
2527
2526
  # * {Types::UpdateStreamGroupOutput#arn #arn} => String
2528
- # * {Types::UpdateStreamGroupOutput#associated_applications #associated_applications} => Array&lt;String&gt;
2529
- # * {Types::UpdateStreamGroupOutput#created_at #created_at} => Time
2530
- # * {Types::UpdateStreamGroupOutput#default_application #default_application} => Types::DefaultApplication
2531
2527
  # * {Types::UpdateStreamGroupOutput#description #description} => String
2532
- # * {Types::UpdateStreamGroupOutput#id #id} => String
2533
- # * {Types::UpdateStreamGroupOutput#last_updated_at #last_updated_at} => Time
2528
+ # * {Types::UpdateStreamGroupOutput#default_application #default_application} => Types::DefaultApplication
2534
2529
  # * {Types::UpdateStreamGroupOutput#location_states #location_states} => Array&lt;Types::LocationState&gt;
2530
+ # * {Types::UpdateStreamGroupOutput#stream_class #stream_class} => String
2531
+ # * {Types::UpdateStreamGroupOutput#id #id} => String
2535
2532
  # * {Types::UpdateStreamGroupOutput#status #status} => String
2536
2533
  # * {Types::UpdateStreamGroupOutput#status_reason #status_reason} => String
2537
- # * {Types::UpdateStreamGroupOutput#stream_class #stream_class} => String
2534
+ # * {Types::UpdateStreamGroupOutput#last_updated_at #last_updated_at} => Time
2535
+ # * {Types::UpdateStreamGroupOutput#created_at #created_at} => Time
2536
+ # * {Types::UpdateStreamGroupOutput#associated_applications #associated_applications} => Array&lt;String&gt;
2538
2537
  #
2539
2538
  # @example Request syntax with placeholder values
2540
2539
  #
2541
2540
  # resp = client.update_stream_group({
2542
- # description: "Description",
2543
2541
  # identifier: "Identifier", # required
2544
2542
  # location_configurations: [
2545
2543
  # {
2546
- # always_on_capacity: 1,
2547
2544
  # location_name: "LocationName", # required
2545
+ # always_on_capacity: 1,
2548
2546
  # on_demand_capacity: 1,
2549
2547
  # },
2550
2548
  # ],
2549
+ # description: "Description",
2551
2550
  # })
2552
2551
  #
2553
2552
  # @example Response structure
2554
2553
  #
2555
2554
  # resp.arn #=> String
2556
- # resp.associated_applications #=> Array
2557
- # resp.associated_applications[0] #=> String
2558
- # resp.created_at #=> Time
2559
- # resp.default_application.arn #=> String
2560
- # resp.default_application.id #=> String
2561
2555
  # resp.description #=> String
2562
- # resp.id #=> String
2563
- # resp.last_updated_at #=> Time
2556
+ # resp.default_application.id #=> String
2557
+ # resp.default_application.arn #=> String
2564
2558
  # resp.location_states #=> Array
2565
- # resp.location_states[0].allocated_capacity #=> Integer
2566
- # resp.location_states[0].always_on_capacity #=> Integer
2567
- # resp.location_states[0].idle_capacity #=> Integer
2568
2559
  # resp.location_states[0].location_name #=> String
2560
+ # resp.location_states[0].status #=> String, one of "ACTIVATING", "ACTIVE", "ERROR", "REMOVING"
2561
+ # resp.location_states[0].always_on_capacity #=> Integer
2569
2562
  # resp.location_states[0].on_demand_capacity #=> Integer
2570
2563
  # resp.location_states[0].requested_capacity #=> Integer
2571
- # resp.location_states[0].status #=> String, one of "ACTIVATING", "ACTIVE", "ERROR", "REMOVING"
2564
+ # resp.location_states[0].allocated_capacity #=> Integer
2565
+ # resp.location_states[0].idle_capacity #=> Integer
2566
+ # resp.stream_class #=> String, one of "gen4n_high", "gen4n_ultra", "gen4n_win2022", "gen5n_high", "gen5n_ultra", "gen5n_win2022"
2567
+ # resp.id #=> String
2572
2568
  # resp.status #=> String, one of "ACTIVATING", "UPDATING_LOCATIONS", "ACTIVE", "ACTIVE_WITH_ERRORS", "ERROR", "DELETING"
2573
2569
  # resp.status_reason #=> String, one of "internalError", "noAvailableInstances"
2574
- # resp.stream_class #=> String, one of "gen4n_high", "gen4n_ultra", "gen4n_win2022", "gen5n_high", "gen5n_ultra", "gen5n_win2022"
2570
+ # resp.last_updated_at #=> Time
2571
+ # resp.created_at #=> Time
2572
+ # resp.associated_applications #=> Array
2573
+ # resp.associated_applications[0] #=> String
2575
2574
  #
2576
2575
  # @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/UpdateStreamGroup AWS API Documentation
2577
2576
  #
@@ -2600,7 +2599,7 @@ module Aws::GameLiftStreams
2600
2599
  tracer: tracer
2601
2600
  )
2602
2601
  context[:gem_name] = 'aws-sdk-gameliftstreams'
2603
- context[:gem_version] = '1.7.0'
2602
+ context[:gem_version] = '1.9.0'
2604
2603
  Seahorse::Client::Request.new(handlers, context)
2605
2604
  end
2606
2605