aws-sdk-gameliftstreams 1.14.0 → 1.16.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6aa3c5fbdb00239a3127edf259fe1fae99d58252275fc4f560e2efd511905495
4
- data.tar.gz: '08d0347963e4b2f9def13484932ff1bcceb7299c022d27a9f626328a438ed9a4'
3
+ metadata.gz: e1a6efc8a3ac6673ea92aebd8e682f6ffbd315047bdb87ea0b2a1447c27691ee
4
+ data.tar.gz: 79adb94407bb5a31ac6e472615266e1a10a06867034ec2929e682411ecad7932
5
5
  SHA512:
6
- metadata.gz: f45978d6ee052de0b46485739e2d8a7eebf76013f18f4bc2b5706248261b75dc5adab28802ef25d45db0d3aac2ca25b8b45f8c7742644260bd95884b649ff9eb
7
- data.tar.gz: 191ab79dac1ebd542ef1f57af8a5187364b01a09734b797144b172667a6fbf6ae152e5d0060c6175e4156995f32857385dc0d67fc8b0a513991b85ba6b79868b
6
+ metadata.gz: 5c66a79572e9c1ff2691feb68b115a3290c6b6cc7ea8770ddfc62787797d9b8c5e660e8831b10dcc40e7f1149e02db6406918cb0cc24f3f6ec1e91fb41eabbce
7
+ data.tar.gz: b6a082b7f82ae05b959d6f2c694445829193d0592381402b47b358c2aa94bfa376dc06ebe66f7238dc8af26e4494a6712e2aac93d397cbf14fec6cbfdb5fb169
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.16.0 (2025-10-28)
5
+ ------------------
6
+
7
+ * Feature - Add stream group expiration date and expired status
8
+
9
+ 1.15.0 (2025-10-24)
10
+ ------------------
11
+
12
+ * Feature - Add status reasons for TERMINATED stream sessions
13
+
4
14
  1.14.0 (2025-10-21)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.14.0
1
+ 1.16.0
@@ -476,9 +476,10 @@ module Aws::GameLiftStreams
476
476
 
477
477
  # @!group API Operations
478
478
 
479
- # Add locations that can host stream sessions. You configure locations
480
- # and their corresponding capacity for each stream group. Creating a
481
- # stream group in a location that's nearest to your end users can help
479
+ # Add locations that can host stream sessions. To add a location, the
480
+ # stream group must be in `ACTIVE` status. You configure locations and
481
+ # their corresponding capacity for each stream group. Creating a stream
482
+ # group in a location that's nearest to your end users can help
482
483
  # minimize latency and improve quality.
483
484
  #
484
485
  # This operation provisions stream capacity at the specified locations.
@@ -803,16 +804,14 @@ module Aws::GameLiftStreams
803
804
  req.send_request(options)
804
805
  end
805
806
 
806
- # Manage how Amazon GameLift Streams streams your applications by using
807
- # a stream group. A stream group is a collection of resources that
808
- # Amazon GameLift Streams uses to stream your application to end-users.
809
- # When you create a stream group, you specify an application to stream
810
- # by default and the type of hardware to use, such as the graphical
811
- # processing unit (GPU). You can also link additional applications,
812
- # which allows you to stream those applications using this stream group.
813
- # Depending on your expected users, you also scale the number of
814
- # concurrent streams you want to support at one time, and in what
815
- # locations.
807
+ # Stream groups manage how Amazon GameLift Streams allocates resources
808
+ # and handles concurrent streams, allowing you to effectively manage
809
+ # capacity and costs. Within a stream group, you specify an application
810
+ # to stream, streaming locations and their capacity, and the stream
811
+ # class you want to use when streaming applications to your end-users. A
812
+ # stream class defines the hardware configuration of the compute
813
+ # resources that Amazon GameLift Streams will use when streaming, such
814
+ # as the CPU, GPU, and memory.
816
815
  #
817
816
  # Stream capacity represents the number of concurrent streams that can
818
817
  # be active at a time. You set stream capacity per location, per stream
@@ -837,13 +836,22 @@ module Aws::GameLiftStreams
837
836
  # To adjust the capacity of any `ACTIVE` stream group, call
838
837
  # [UpdateStreamGroup][1].
839
838
  #
840
- # If the request is successful, Amazon GameLift Streams begins creating
841
- # the stream group. Amazon GameLift Streams assigns a unique ID to the
842
- # stream group resource and sets the status to `ACTIVATING`. When the
843
- # stream group reaches `ACTIVE` status, you can start stream sessions by
844
- # using [StartStreamSession][2]. To check the stream group's status,
839
+ # If the `CreateStreamGroup` request is successful, Amazon GameLift
840
+ # Streams assigns a unique ID to the stream group resource and sets the
841
+ # status to `ACTIVATING`. It can take a few minutes for Amazon GameLift
842
+ # Streams to finish creating the stream group while it searches for
843
+ # unallocated compute resources and provisions them. When complete, the
844
+ # stream group status will be `ACTIVE` and you can start stream sessions
845
+ # by using [StartStreamSession][2]. To check the stream group's status,
845
846
  # call [GetStreamGroup][3].
846
847
  #
848
+ # Stream groups should be recreated every 3-4 weeks to pick up important
849
+ # service updates and fixes. Stream groups that are older than 180 days
850
+ # can no longer be updated with new application associations. Stream
851
+ # groups expire when they are 365 days old, at which point they can no
852
+ # longer stream sessions. The exact expiration date is indicated by the
853
+ # date value in the `ExpiresAt` field.
854
+ #
847
855
  #
848
856
  #
849
857
  # [1]: https://docs.aws.amazon.com/gameliftstreams/latest/apireference/API_UpdateStreamGroup.html
@@ -998,6 +1006,7 @@ module Aws::GameLiftStreams
998
1006
  # * {Types::CreateStreamGroupOutput#status_reason #status_reason} => String
999
1007
  # * {Types::CreateStreamGroupOutput#last_updated_at #last_updated_at} => Time
1000
1008
  # * {Types::CreateStreamGroupOutput#created_at #created_at} => Time
1009
+ # * {Types::CreateStreamGroupOutput#expires_at #expires_at} => Time
1001
1010
  # * {Types::CreateStreamGroupOutput#associated_applications #associated_applications} => Array<String>
1002
1011
  #
1003
1012
  # @example Request syntax with placeholder values
@@ -1035,10 +1044,11 @@ module Aws::GameLiftStreams
1035
1044
  # resp.location_states[0].idle_capacity #=> Integer
1036
1045
  # resp.stream_class #=> String, one of "gen4n_high", "gen4n_ultra", "gen4n_win2022", "gen5n_high", "gen5n_ultra", "gen5n_win2022"
1037
1046
  # resp.id #=> String
1038
- # resp.status #=> String, one of "ACTIVATING", "UPDATING_LOCATIONS", "ACTIVE", "ACTIVE_WITH_ERRORS", "ERROR", "DELETING"
1047
+ # resp.status #=> String, one of "ACTIVATING", "UPDATING_LOCATIONS", "ACTIVE", "ACTIVE_WITH_ERRORS", "ERROR", "DELETING", "EXPIRED"
1039
1048
  # resp.status_reason #=> String, one of "internalError", "noAvailableInstances"
1040
1049
  # resp.last_updated_at #=> Time
1041
1050
  # resp.created_at #=> Time
1051
+ # resp.expires_at #=> Time
1042
1052
  # resp.associated_applications #=> Array
1043
1053
  # resp.associated_applications[0] #=> String
1044
1054
  #
@@ -1273,7 +1283,8 @@ module Aws::GameLiftStreams
1273
1283
  # end-user's stream. Amazon GameLift Streams will not initiate new
1274
1284
  # streams in the stream group using the disassociated application. The
1275
1285
  # disassociate action does not affect the stream capacity of a stream
1276
- # group.
1286
+ # group. To disassociate an application, the stream group must be in
1287
+ # `ACTIVE` status.
1277
1288
  #
1278
1289
  # If you disassociate the default application, Amazon GameLift Streams
1279
1290
  # will automatically choose a new default application from the remaining
@@ -1531,6 +1542,7 @@ module Aws::GameLiftStreams
1531
1542
  # * {Types::GetStreamGroupOutput#status_reason #status_reason} => String
1532
1543
  # * {Types::GetStreamGroupOutput#last_updated_at #last_updated_at} => Time
1533
1544
  # * {Types::GetStreamGroupOutput#created_at #created_at} => Time
1545
+ # * {Types::GetStreamGroupOutput#expires_at #expires_at} => Time
1534
1546
  # * {Types::GetStreamGroupOutput#associated_applications #associated_applications} => Array<String>
1535
1547
  #
1536
1548
  # @example Request syntax with placeholder values
@@ -1555,10 +1567,11 @@ module Aws::GameLiftStreams
1555
1567
  # resp.location_states[0].idle_capacity #=> Integer
1556
1568
  # resp.stream_class #=> String, one of "gen4n_high", "gen4n_ultra", "gen4n_win2022", "gen5n_high", "gen5n_ultra", "gen5n_win2022"
1557
1569
  # resp.id #=> String
1558
- # resp.status #=> String, one of "ACTIVATING", "UPDATING_LOCATIONS", "ACTIVE", "ACTIVE_WITH_ERRORS", "ERROR", "DELETING"
1570
+ # resp.status #=> String, one of "ACTIVATING", "UPDATING_LOCATIONS", "ACTIVE", "ACTIVE_WITH_ERRORS", "ERROR", "DELETING", "EXPIRED"
1559
1571
  # resp.status_reason #=> String, one of "internalError", "noAvailableInstances"
1560
1572
  # resp.last_updated_at #=> Time
1561
1573
  # resp.created_at #=> Time
1574
+ # resp.expires_at #=> Time
1562
1575
  # resp.associated_applications #=> Array
1563
1576
  # resp.associated_applications[0] #=> String
1564
1577
  #
@@ -1641,7 +1654,7 @@ module Aws::GameLiftStreams
1641
1654
  # resp.stream_group_id #=> String
1642
1655
  # resp.user_id #=> String
1643
1656
  # resp.status #=> String, one of "ACTIVATING", "ACTIVE", "CONNECTED", "PENDING_CLIENT_RECONNECTION", "RECONNECTING", "TERMINATING", "TERMINATED", "ERROR"
1644
- # resp.status_reason #=> String, one of "internalError", "invalidSignalRequest", "placementTimeout", "applicationLogS3DestinationError"
1657
+ # resp.status_reason #=> String, one of "internalError", "invalidSignalRequest", "placementTimeout", "applicationLogS3DestinationError", "applicationExit", "connectionTimeout", "reconnectionTimeout", "maxSessionLengthTimeout", "idleTimeout", "apiTerminated"
1645
1658
  # resp.protocol #=> String, one of "WebRTC"
1646
1659
  # resp.location #=> String
1647
1660
  # resp.signal_request #=> String
@@ -1764,9 +1777,10 @@ module Aws::GameLiftStreams
1764
1777
  # resp.items[0].default_application.id #=> String
1765
1778
  # resp.items[0].default_application.arn #=> String
1766
1779
  # resp.items[0].stream_class #=> String, one of "gen4n_high", "gen4n_ultra", "gen4n_win2022", "gen5n_high", "gen5n_ultra", "gen5n_win2022"
1767
- # resp.items[0].status #=> String, one of "ACTIVATING", "UPDATING_LOCATIONS", "ACTIVE", "ACTIVE_WITH_ERRORS", "ERROR", "DELETING"
1780
+ # resp.items[0].status #=> String, one of "ACTIVATING", "UPDATING_LOCATIONS", "ACTIVE", "ACTIVE_WITH_ERRORS", "ERROR", "DELETING", "EXPIRED"
1768
1781
  # resp.items[0].created_at #=> Time
1769
1782
  # resp.items[0].last_updated_at #=> Time
1783
+ # resp.items[0].expires_at #=> Time
1770
1784
  # resp.next_token #=> String
1771
1785
  #
1772
1786
  # @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/ListStreamGroups AWS API Documentation
@@ -1994,16 +2008,18 @@ module Aws::GameLiftStreams
1994
2008
  req.send_request(options)
1995
2009
  end
1996
2010
 
1997
- # Removes a set of remote locations from this stream group. Amazon
1998
- # GameLift Streams works to release allocated compute resources in these
1999
- # location. Thus, stream sessions can no longer start from these
2000
- # locations by using this stream group. Amazon GameLift Streams also
2011
+ # Removes a set of remote locations from this stream group. To remove a
2012
+ # location, the stream group must be in `ACTIVE` status. When you remove
2013
+ # a location, Amazon GameLift Streams releases allocated compute
2014
+ # resources in that location. Stream sessions can no longer start from
2015
+ # removed locations in a stream group. Amazon GameLift Streams also
2001
2016
  # deletes the content files of all associated applications that were in
2002
- # Amazon GameLift Streams's internal S3 bucket at this location.
2017
+ # Amazon GameLift Streams's internal Amazon S3 bucket at this location.
2003
2018
  #
2004
- # You cannot remove the region where you initially created this stream
2005
- # group, known as the primary location. However, you can set the stream
2006
- # capacity to zero.
2019
+ # You cannot remove the Amazon Web Services Region location where you
2020
+ # initially created this stream group, known as the primary location.
2021
+ # However, you can set the stream capacity to zero to avoid incurring
2022
+ # costs for allocated compute resources in that location.
2007
2023
  #
2008
2024
  # @option params [required, String] :identifier
2009
2025
  # A stream group to remove the specified locations from.
@@ -2056,7 +2072,7 @@ module Aws::GameLiftStreams
2056
2072
  #
2057
2073
  # 1. Prerequisites:
2058
2074
  #
2059
- # * You must have a stream group in `ACTIVE` state
2075
+ # * You must have a stream group in `ACTIVE` status
2060
2076
  #
2061
2077
  # * You must have idle or on-demand capacity in a stream group in
2062
2078
  # the location you want to stream from
@@ -2314,7 +2330,7 @@ module Aws::GameLiftStreams
2314
2330
  # resp.stream_group_id #=> String
2315
2331
  # resp.user_id #=> String
2316
2332
  # resp.status #=> String, one of "ACTIVATING", "ACTIVE", "CONNECTED", "PENDING_CLIENT_RECONNECTION", "RECONNECTING", "TERMINATING", "TERMINATED", "ERROR"
2317
- # resp.status_reason #=> String, one of "internalError", "invalidSignalRequest", "placementTimeout", "applicationLogS3DestinationError"
2333
+ # resp.status_reason #=> String, one of "internalError", "invalidSignalRequest", "placementTimeout", "applicationLogS3DestinationError", "applicationExit", "connectionTimeout", "reconnectionTimeout", "maxSessionLengthTimeout", "idleTimeout", "apiTerminated"
2318
2334
  # resp.protocol #=> String, one of "WebRTC"
2319
2335
  # resp.location #=> String
2320
2336
  # resp.signal_request #=> String
@@ -2583,9 +2599,10 @@ module Aws::GameLiftStreams
2583
2599
  end
2584
2600
 
2585
2601
  # Updates the configuration settings for an Amazon GameLift Streams
2586
- # stream group resource. You can change the description, the set of
2587
- # locations, and the requested capacity of a stream group per location.
2588
- # If you want to change the stream class, create a new stream group.
2602
+ # stream group resource. To update a stream group, it must be in
2603
+ # `ACTIVE` status. You can change the description, the set of locations,
2604
+ # and the requested capacity of a stream group per location. If you want
2605
+ # to change the stream class, create a new stream group.
2589
2606
  #
2590
2607
  # Stream capacity represents the number of concurrent streams that can
2591
2608
  # be active at a time. You set stream capacity per location, per stream
@@ -2610,7 +2627,7 @@ module Aws::GameLiftStreams
2610
2627
  # To update a stream group, specify the stream group's Amazon Resource
2611
2628
  # Name (ARN) and provide the new values. If the request is successful,
2612
2629
  # Amazon GameLift Streams returns the complete updated metadata for the
2613
- # stream group.
2630
+ # stream group. Expired stream groups cannot be updated.
2614
2631
  #
2615
2632
  # @option params [required, String] :identifier
2616
2633
  # An [Amazon Resource Name (ARN)][1] or ID that uniquely identifies the
@@ -2666,6 +2683,7 @@ module Aws::GameLiftStreams
2666
2683
  # * {Types::UpdateStreamGroupOutput#status_reason #status_reason} => String
2667
2684
  # * {Types::UpdateStreamGroupOutput#last_updated_at #last_updated_at} => Time
2668
2685
  # * {Types::UpdateStreamGroupOutput#created_at #created_at} => Time
2686
+ # * {Types::UpdateStreamGroupOutput#expires_at #expires_at} => Time
2669
2687
  # * {Types::UpdateStreamGroupOutput#associated_applications #associated_applications} => Array<String>
2670
2688
  #
2671
2689
  # @example Request syntax with placeholder values
@@ -2699,10 +2717,11 @@ module Aws::GameLiftStreams
2699
2717
  # resp.location_states[0].idle_capacity #=> Integer
2700
2718
  # resp.stream_class #=> String, one of "gen4n_high", "gen4n_ultra", "gen4n_win2022", "gen5n_high", "gen5n_ultra", "gen5n_win2022"
2701
2719
  # resp.id #=> String
2702
- # resp.status #=> String, one of "ACTIVATING", "UPDATING_LOCATIONS", "ACTIVE", "ACTIVE_WITH_ERRORS", "ERROR", "DELETING"
2720
+ # resp.status #=> String, one of "ACTIVATING", "UPDATING_LOCATIONS", "ACTIVE", "ACTIVE_WITH_ERRORS", "ERROR", "DELETING", "EXPIRED"
2703
2721
  # resp.status_reason #=> String, one of "internalError", "noAvailableInstances"
2704
2722
  # resp.last_updated_at #=> Time
2705
2723
  # resp.created_at #=> Time
2724
+ # resp.expires_at #=> Time
2706
2725
  # resp.associated_applications #=> Array
2707
2726
  # resp.associated_applications[0] #=> String
2708
2727
  #
@@ -2733,7 +2752,7 @@ module Aws::GameLiftStreams
2733
2752
  tracer: tracer
2734
2753
  )
2735
2754
  context[:gem_name] = 'aws-sdk-gameliftstreams'
2736
- context[:gem_version] = '1.14.0'
2755
+ context[:gem_version] = '1.16.0'
2737
2756
  Seahorse::Client::Request.new(handlers, context)
2738
2757
  end
2739
2758
 
@@ -212,6 +212,7 @@ module Aws::GameLiftStreams
212
212
  CreateStreamGroupOutput.add_member(:status_reason, Shapes::ShapeRef.new(shape: StreamGroupStatusReason, location_name: "StatusReason"))
213
213
  CreateStreamGroupOutput.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdatedAt"))
214
214
  CreateStreamGroupOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedAt"))
215
+ CreateStreamGroupOutput.add_member(:expires_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "ExpiresAt"))
215
216
  CreateStreamGroupOutput.add_member(:associated_applications, Shapes::ShapeRef.new(shape: ArnList, location_name: "AssociatedApplications"))
216
217
  CreateStreamGroupOutput.struct_class = Types::CreateStreamGroupOutput
217
218
 
@@ -293,6 +294,7 @@ module Aws::GameLiftStreams
293
294
  GetStreamGroupOutput.add_member(:status_reason, Shapes::ShapeRef.new(shape: StreamGroupStatusReason, location_name: "StatusReason"))
294
295
  GetStreamGroupOutput.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdatedAt"))
295
296
  GetStreamGroupOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedAt"))
297
+ GetStreamGroupOutput.add_member(:expires_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "ExpiresAt"))
296
298
  GetStreamGroupOutput.add_member(:associated_applications, Shapes::ShapeRef.new(shape: ArnList, location_name: "AssociatedApplications"))
297
299
  GetStreamGroupOutput.struct_class = Types::GetStreamGroupOutput
298
300
 
@@ -456,6 +458,7 @@ module Aws::GameLiftStreams
456
458
  StreamGroupSummary.add_member(:status, Shapes::ShapeRef.new(shape: StreamGroupStatus, location_name: "Status"))
457
459
  StreamGroupSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedAt"))
458
460
  StreamGroupSummary.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdatedAt"))
461
+ StreamGroupSummary.add_member(:expires_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "ExpiresAt"))
459
462
  StreamGroupSummary.struct_class = Types::StreamGroupSummary
460
463
 
461
464
  StreamGroupSummaryList.member = Shapes::ShapeRef.new(shape: StreamGroupSummary)
@@ -535,6 +538,7 @@ module Aws::GameLiftStreams
535
538
  UpdateStreamGroupOutput.add_member(:status_reason, Shapes::ShapeRef.new(shape: StreamGroupStatusReason, location_name: "StatusReason"))
536
539
  UpdateStreamGroupOutput.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdatedAt"))
537
540
  UpdateStreamGroupOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedAt"))
541
+ UpdateStreamGroupOutput.add_member(:expires_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "ExpiresAt"))
538
542
  UpdateStreamGroupOutput.add_member(:associated_applications, Shapes::ShapeRef.new(shape: ArnList, location_name: "AssociatedApplications"))
539
543
  UpdateStreamGroupOutput.struct_class = Types::UpdateStreamGroupOutput
540
544
 
@@ -839,12 +839,17 @@ module Aws::GameLiftStreams
839
839
  # are in an error state. Verify the details of individual locations
840
840
  # and remove any locations which are in error.
841
841
  #
842
+ # * `DELETING`: Amazon GameLift Streams is in the process of deleting
843
+ # the stream group.
844
+ #
842
845
  # * `ERROR`: An error occurred when the stream group deployed. See
843
846
  # `StatusReason` (returned by `CreateStreamGroup`, `GetStreamGroup`,
844
847
  # and `UpdateStreamGroup`) for more information.
845
848
  #
846
- # * `DELETING`: Amazon GameLift Streams is in the process of deleting
847
- # the stream group.
849
+ # * `EXPIRED`: The stream group is expired and can no longer host
850
+ # streams. This typically occurs when a stream group is 365 days
851
+ # old, as indicated by the value of `ExpiresAt`. Create a new stream
852
+ # group to resume streaming capabilities.
848
853
  #
849
854
  # * `UPDATING_LOCATIONS`: One or more locations in the stream group
850
855
  # are in the process of updating (either activating or deleting).
@@ -876,6 +881,15 @@ module Aws::GameLiftStreams
876
881
  # `2022-12-27T22:29:40+00:00` (UTC).
877
882
  # @return [Time]
878
883
  #
884
+ # @!attribute [rw] expires_at
885
+ # The time at which this stream group expires. Timestamps are
886
+ # expressed using in ISO8601 format, such as:
887
+ # `2022-12-27T22:29:40+00:00` (UTC). After this time, you will no
888
+ # longer be able to update this stream group or use it to start stream
889
+ # sessions. Only Get and Delete operations will work on an expired
890
+ # stream group.
891
+ # @return [Time]
892
+ #
879
893
  # @!attribute [rw] associated_applications
880
894
  # A set of applications that this stream group is associated to. You
881
895
  # can stream any of these applications by using this stream group.
@@ -902,6 +916,7 @@ module Aws::GameLiftStreams
902
916
  :status_reason,
903
917
  :last_updated_at,
904
918
  :created_at,
919
+ :expires_at,
905
920
  :associated_applications)
906
921
  SENSITIVE = []
907
922
  include Aws::Structure
@@ -1529,12 +1544,17 @@ module Aws::GameLiftStreams
1529
1544
  # are in an error state. Verify the details of individual locations
1530
1545
  # and remove any locations which are in error.
1531
1546
  #
1547
+ # * `DELETING`: Amazon GameLift Streams is in the process of deleting
1548
+ # the stream group.
1549
+ #
1532
1550
  # * `ERROR`: An error occurred when the stream group deployed. See
1533
1551
  # `StatusReason` (returned by `CreateStreamGroup`, `GetStreamGroup`,
1534
1552
  # and `UpdateStreamGroup`) for more information.
1535
1553
  #
1536
- # * `DELETING`: Amazon GameLift Streams is in the process of deleting
1537
- # the stream group.
1554
+ # * `EXPIRED`: The stream group is expired and can no longer host
1555
+ # streams. This typically occurs when a stream group is 365 days
1556
+ # old, as indicated by the value of `ExpiresAt`. Create a new stream
1557
+ # group to resume streaming capabilities.
1538
1558
  #
1539
1559
  # * `UPDATING_LOCATIONS`: One or more locations in the stream group
1540
1560
  # are in the process of updating (either activating or deleting).
@@ -1566,6 +1586,15 @@ module Aws::GameLiftStreams
1566
1586
  # `2022-12-27T22:29:40+00:00` (UTC).
1567
1587
  # @return [Time]
1568
1588
  #
1589
+ # @!attribute [rw] expires_at
1590
+ # The time at which this stream group expires. Timestamps are
1591
+ # expressed using in ISO8601 format, such as:
1592
+ # `2022-12-27T22:29:40+00:00` (UTC). After this time, you will no
1593
+ # longer be able to update this stream group or use it to start stream
1594
+ # sessions. Only Get and Delete operations will work on an expired
1595
+ # stream group.
1596
+ # @return [Time]
1597
+ #
1569
1598
  # @!attribute [rw] associated_applications
1570
1599
  # A set of applications that this stream group is associated to. You
1571
1600
  # can stream any of these applications by using this stream group.
@@ -1592,6 +1621,7 @@ module Aws::GameLiftStreams
1592
1621
  :status_reason,
1593
1622
  :last_updated_at,
1594
1623
  :created_at,
1624
+ :expires_at,
1595
1625
  :associated_applications)
1596
1626
  SENSITIVE = []
1597
1627
  include Aws::Structure
@@ -1698,7 +1728,13 @@ module Aws::GameLiftStreams
1698
1728
  #
1699
1729
  # @!attribute [rw] status_reason
1700
1730
  # A short description of the reason the stream session is in `ERROR`
1701
- # status.
1731
+ # status or `TERMINATED` status.
1732
+ #
1733
+ # `ERROR` status reasons:
1734
+ #
1735
+ # * `applicationLogS3DestinationError`: Could not write the
1736
+ # application log to the Amazon S3 bucket that is configured for the
1737
+ # streaming application. Make sure the bucket still exists.
1702
1738
  #
1703
1739
  # * `internalError`: An internal service error occurred. Start a new
1704
1740
  # stream session to continue streaming.
@@ -1713,9 +1749,35 @@ module Aws::GameLiftStreams
1713
1749
  # stream capacity in the stream group or wait until capacity becomes
1714
1750
  # available.
1715
1751
  #
1716
- # * `applicationLogS3DestinationError`: Could not write the
1717
- # application log to the Amazon S3 bucket that is configured for the
1718
- # streaming application. Make sure the bucket still exists.
1752
+ # `TERMINATED` status reasons:
1753
+ #
1754
+ # * `apiTerminated`: The stream session was terminated by an API call
1755
+ # to [TerminateStreamSession][1].
1756
+ #
1757
+ # * `applicationExit`: The streaming application exited or crashed.
1758
+ # The stream session was terminated because the application is no
1759
+ # longer running.
1760
+ #
1761
+ # * `connectionTimeout`: The stream session was terminated because the
1762
+ # client failed to connect within the connection timeout period
1763
+ # specified by `ConnectionTimeoutSeconds`.
1764
+ #
1765
+ # * `idleTimeout`: The stream session was terminated because it
1766
+ # exceeded the idle timeout period of 60 minutes with no user input
1767
+ # activity.
1768
+ #
1769
+ # * `maxSessionLengthTimeout`: The stream session was terminated
1770
+ # because it exceeded the maximum session length timeout period
1771
+ # specified by `SessionLengthSeconds`.
1772
+ #
1773
+ # * `reconnectionTimeout`: The stream session was terminated because
1774
+ # the client failed to reconnect within the reconnection timeout
1775
+ # period specified by `ConnectionTimeoutSeconds` after losing
1776
+ # connection.
1777
+ #
1778
+ #
1779
+ #
1780
+ # [1]: https://docs.aws.amazon.com/gameliftstreams/latest/apireference/API_TerminateStreamSession.html
1719
1781
  # @return [String]
1720
1782
  #
1721
1783
  # @!attribute [rw] protocol
@@ -2618,7 +2680,13 @@ module Aws::GameLiftStreams
2618
2680
  #
2619
2681
  # @!attribute [rw] status_reason
2620
2682
  # A short description of the reason the stream session is in `ERROR`
2621
- # status.
2683
+ # status or `TERMINATED` status.
2684
+ #
2685
+ # `ERROR` status reasons:
2686
+ #
2687
+ # * `applicationLogS3DestinationError`: Could not write the
2688
+ # application log to the Amazon S3 bucket that is configured for the
2689
+ # streaming application. Make sure the bucket still exists.
2622
2690
  #
2623
2691
  # * `internalError`: An internal service error occurred. Start a new
2624
2692
  # stream session to continue streaming.
@@ -2633,9 +2701,35 @@ module Aws::GameLiftStreams
2633
2701
  # stream capacity in the stream group or wait until capacity becomes
2634
2702
  # available.
2635
2703
  #
2636
- # * `applicationLogS3DestinationError`: Could not write the
2637
- # application log to the Amazon S3 bucket that is configured for the
2638
- # streaming application. Make sure the bucket still exists.
2704
+ # `TERMINATED` status reasons:
2705
+ #
2706
+ # * `apiTerminated`: The stream session was terminated by an API call
2707
+ # to [TerminateStreamSession][1].
2708
+ #
2709
+ # * `applicationExit`: The streaming application exited or crashed.
2710
+ # The stream session was terminated because the application is no
2711
+ # longer running.
2712
+ #
2713
+ # * `connectionTimeout`: The stream session was terminated because the
2714
+ # client failed to connect within the connection timeout period
2715
+ # specified by `ConnectionTimeoutSeconds`.
2716
+ #
2717
+ # * `idleTimeout`: The stream session was terminated because it
2718
+ # exceeded the idle timeout period of 60 minutes with no user input
2719
+ # activity.
2720
+ #
2721
+ # * `maxSessionLengthTimeout`: The stream session was terminated
2722
+ # because it exceeded the maximum session length timeout period
2723
+ # specified by `SessionLengthSeconds`.
2724
+ #
2725
+ # * `reconnectionTimeout`: The stream session was terminated because
2726
+ # the client failed to reconnect within the reconnection timeout
2727
+ # period specified by `ConnectionTimeoutSeconds` after losing
2728
+ # connection.
2729
+ #
2730
+ #
2731
+ #
2732
+ # [1]: https://docs.aws.amazon.com/gameliftstreams/latest/apireference/API_TerminateStreamSession.html
2639
2733
  # @return [String]
2640
2734
  #
2641
2735
  # @!attribute [rw] protocol
@@ -2902,12 +2996,17 @@ module Aws::GameLiftStreams
2902
2996
  # are in an error state. Verify the details of individual locations
2903
2997
  # and remove any locations which are in error.
2904
2998
  #
2999
+ # * `DELETING`: Amazon GameLift Streams is in the process of deleting
3000
+ # the stream group.
3001
+ #
2905
3002
  # * `ERROR`: An error occurred when the stream group deployed. See
2906
3003
  # `StatusReason` (returned by `CreateStreamGroup`, `GetStreamGroup`,
2907
3004
  # and `UpdateStreamGroup`) for more information.
2908
3005
  #
2909
- # * `DELETING`: Amazon GameLift Streams is in the process of deleting
2910
- # the stream group.
3006
+ # * `EXPIRED`: The stream group is expired and can no longer host
3007
+ # streams. This typically occurs when a stream group is 365 days
3008
+ # old, as indicated by the value of `ExpiresAt`. Create a new stream
3009
+ # group to resume streaming capabilities.
2911
3010
  #
2912
3011
  # * `UPDATING_LOCATIONS`: One or more locations in the stream group
2913
3012
  # are in the process of updating (either activating or deleting).
@@ -2925,6 +3024,15 @@ module Aws::GameLiftStreams
2925
3024
  # `2022-12-27T22:29:40+00:00` (UTC).
2926
3025
  # @return [Time]
2927
3026
  #
3027
+ # @!attribute [rw] expires_at
3028
+ # The time at which this stream group expires. Timestamps are
3029
+ # expressed using in ISO8601 format, such as:
3030
+ # `2022-12-27T22:29:40+00:00` (UTC). After this time, you will no
3031
+ # longer be able to update this stream group or use it to start stream
3032
+ # sessions. Only Get and Delete operations will work on an expired
3033
+ # stream group.
3034
+ # @return [Time]
3035
+ #
2928
3036
  # @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/StreamGroupSummary AWS API Documentation
2929
3037
  #
2930
3038
  class StreamGroupSummary < Struct.new(
@@ -2935,7 +3043,8 @@ module Aws::GameLiftStreams
2935
3043
  :stream_class,
2936
3044
  :status,
2937
3045
  :created_at,
2938
- :last_updated_at)
3046
+ :last_updated_at,
3047
+ :expires_at)
2939
3048
  SENSITIVE = []
2940
3049
  include Aws::Structure
2941
3050
  end
@@ -3560,12 +3669,17 @@ module Aws::GameLiftStreams
3560
3669
  # are in an error state. Verify the details of individual locations
3561
3670
  # and remove any locations which are in error.
3562
3671
  #
3672
+ # * `DELETING`: Amazon GameLift Streams is in the process of deleting
3673
+ # the stream group.
3674
+ #
3563
3675
  # * `ERROR`: An error occurred when the stream group deployed. See
3564
3676
  # `StatusReason` (returned by `CreateStreamGroup`, `GetStreamGroup`,
3565
3677
  # and `UpdateStreamGroup`) for more information.
3566
3678
  #
3567
- # * `DELETING`: Amazon GameLift Streams is in the process of deleting
3568
- # the stream group.
3679
+ # * `EXPIRED`: The stream group is expired and can no longer host
3680
+ # streams. This typically occurs when a stream group is 365 days
3681
+ # old, as indicated by the value of `ExpiresAt`. Create a new stream
3682
+ # group to resume streaming capabilities.
3569
3683
  #
3570
3684
  # * `UPDATING_LOCATIONS`: One or more locations in the stream group
3571
3685
  # are in the process of updating (either activating or deleting).
@@ -3597,6 +3711,15 @@ module Aws::GameLiftStreams
3597
3711
  # `2022-12-27T22:29:40+00:00` (UTC).
3598
3712
  # @return [Time]
3599
3713
  #
3714
+ # @!attribute [rw] expires_at
3715
+ # The time at which this stream group expires. Timestamps are
3716
+ # expressed using in ISO8601 format, such as:
3717
+ # `2022-12-27T22:29:40+00:00` (UTC). After this time, you will no
3718
+ # longer be able to update this stream group or use it to start stream
3719
+ # sessions. Only Get and Delete operations will work on an expired
3720
+ # stream group.
3721
+ # @return [Time]
3722
+ #
3600
3723
  # @!attribute [rw] associated_applications
3601
3724
  # A set of applications that this stream group is associated with. You
3602
3725
  # can stream any of these applications with the stream group.
@@ -3623,6 +3746,7 @@ module Aws::GameLiftStreams
3623
3746
  :status_reason,
3624
3747
  :last_updated_at,
3625
3748
  :created_at,
3749
+ :expires_at,
3626
3750
  :associated_applications)
3627
3751
  SENSITIVE = []
3628
3752
  include Aws::Structure
@@ -55,7 +55,7 @@ module Aws::GameLiftStreams
55
55
  autoload :EndpointProvider, 'aws-sdk-gameliftstreams/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-gameliftstreams/endpoints'
57
57
 
58
- GEM_VERSION = '1.14.0'
58
+ GEM_VERSION = '1.16.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -149,10 +149,11 @@ module Aws
149
149
  def location_states: () -> ::Array[Types::LocationState]
150
150
  def stream_class: () -> ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022")
151
151
  def id: () -> ::String
152
- def status: () -> ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING")
152
+ def status: () -> ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING" | "EXPIRED")
153
153
  def status_reason: () -> ("internalError" | "noAvailableInstances")
154
154
  def last_updated_at: () -> ::Time
155
155
  def created_at: () -> ::Time
156
+ def expires_at: () -> ::Time
156
157
  def associated_applications: () -> ::Array[::String]
157
158
  end
158
159
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLiftStreams/Client.html#create_stream_group-instance_method
@@ -251,10 +252,11 @@ module Aws
251
252
  def location_states: () -> ::Array[Types::LocationState]
252
253
  def stream_class: () -> ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022")
253
254
  def id: () -> ::String
254
- def status: () -> ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING")
255
+ def status: () -> ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING" | "EXPIRED")
255
256
  def status_reason: () -> ("internalError" | "noAvailableInstances")
256
257
  def last_updated_at: () -> ::Time
257
258
  def created_at: () -> ::Time
259
+ def expires_at: () -> ::Time
258
260
  def associated_applications: () -> ::Array[::String]
259
261
  end
260
262
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLiftStreams/Client.html#get_stream_group-instance_method
@@ -270,7 +272,7 @@ module Aws
270
272
  def stream_group_id: () -> ::String
271
273
  def user_id: () -> ::String
272
274
  def status: () -> ("ACTIVATING" | "ACTIVE" | "CONNECTED" | "PENDING_CLIENT_RECONNECTION" | "RECONNECTING" | "TERMINATING" | "TERMINATED" | "ERROR")
273
- def status_reason: () -> ("internalError" | "invalidSignalRequest" | "placementTimeout" | "applicationLogS3DestinationError")
275
+ def status_reason: () -> ("internalError" | "invalidSignalRequest" | "placementTimeout" | "applicationLogS3DestinationError" | "applicationExit" | "connectionTimeout" | "reconnectionTimeout" | "maxSessionLengthTimeout" | "idleTimeout" | "apiTerminated")
274
276
  def protocol: () -> ("WebRTC")
275
277
  def location: () -> ::String
276
278
  def signal_request: () -> ::String
@@ -370,7 +372,7 @@ module Aws
370
372
  def stream_group_id: () -> ::String
371
373
  def user_id: () -> ::String
372
374
  def status: () -> ("ACTIVATING" | "ACTIVE" | "CONNECTED" | "PENDING_CLIENT_RECONNECTION" | "RECONNECTING" | "TERMINATING" | "TERMINATED" | "ERROR")
373
- def status_reason: () -> ("internalError" | "invalidSignalRequest" | "placementTimeout" | "applicationLogS3DestinationError")
375
+ def status_reason: () -> ("internalError" | "invalidSignalRequest" | "placementTimeout" | "applicationLogS3DestinationError" | "applicationExit" | "connectionTimeout" | "reconnectionTimeout" | "maxSessionLengthTimeout" | "idleTimeout" | "apiTerminated")
374
376
  def protocol: () -> ("WebRTC")
375
377
  def location: () -> ::String
376
378
  def signal_request: () -> ::String
@@ -464,10 +466,11 @@ module Aws
464
466
  def location_states: () -> ::Array[Types::LocationState]
465
467
  def stream_class: () -> ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022")
466
468
  def id: () -> ::String
467
- def status: () -> ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING")
469
+ def status: () -> ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING" | "EXPIRED")
468
470
  def status_reason: () -> ("internalError" | "noAvailableInstances")
469
471
  def last_updated_at: () -> ::Time
470
472
  def created_at: () -> ::Time
473
+ def expires_at: () -> ::Time
471
474
  def associated_applications: () -> ::Array[::String]
472
475
  end
473
476
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLiftStreams/Client.html#update_stream_group-instance_method
data/sig/types.rbs CHANGED
@@ -100,10 +100,11 @@ module Aws::GameLiftStreams
100
100
  attr_accessor location_states: ::Array[Types::LocationState]
101
101
  attr_accessor stream_class: ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022")
102
102
  attr_accessor id: ::String
103
- attr_accessor status: ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING")
103
+ attr_accessor status: ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING" | "EXPIRED")
104
104
  attr_accessor status_reason: ("internalError" | "noAvailableInstances")
105
105
  attr_accessor last_updated_at: ::Time
106
106
  attr_accessor created_at: ::Time
107
+ attr_accessor expires_at: ::Time
107
108
  attr_accessor associated_applications: ::Array[::String]
108
109
  SENSITIVE: []
109
110
  end
@@ -201,10 +202,11 @@ module Aws::GameLiftStreams
201
202
  attr_accessor location_states: ::Array[Types::LocationState]
202
203
  attr_accessor stream_class: ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022")
203
204
  attr_accessor id: ::String
204
- attr_accessor status: ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING")
205
+ attr_accessor status: ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING" | "EXPIRED")
205
206
  attr_accessor status_reason: ("internalError" | "noAvailableInstances")
206
207
  attr_accessor last_updated_at: ::Time
207
208
  attr_accessor created_at: ::Time
209
+ attr_accessor expires_at: ::Time
208
210
  attr_accessor associated_applications: ::Array[::String]
209
211
  SENSITIVE: []
210
212
  end
@@ -221,7 +223,7 @@ module Aws::GameLiftStreams
221
223
  attr_accessor stream_group_id: ::String
222
224
  attr_accessor user_id: ::String
223
225
  attr_accessor status: ("ACTIVATING" | "ACTIVE" | "CONNECTED" | "PENDING_CLIENT_RECONNECTION" | "RECONNECTING" | "TERMINATING" | "TERMINATED" | "ERROR")
224
- attr_accessor status_reason: ("internalError" | "invalidSignalRequest" | "placementTimeout" | "applicationLogS3DestinationError")
226
+ attr_accessor status_reason: ("internalError" | "invalidSignalRequest" | "placementTimeout" | "applicationLogS3DestinationError" | "applicationExit" | "connectionTimeout" | "reconnectionTimeout" | "maxSessionLengthTimeout" | "idleTimeout" | "apiTerminated")
225
227
  attr_accessor protocol: ("WebRTC")
226
228
  attr_accessor location: ::String
227
229
  attr_accessor signal_request: ::String
@@ -375,7 +377,7 @@ module Aws::GameLiftStreams
375
377
  attr_accessor stream_group_id: ::String
376
378
  attr_accessor user_id: ::String
377
379
  attr_accessor status: ("ACTIVATING" | "ACTIVE" | "CONNECTED" | "PENDING_CLIENT_RECONNECTION" | "RECONNECTING" | "TERMINATING" | "TERMINATED" | "ERROR")
378
- attr_accessor status_reason: ("internalError" | "invalidSignalRequest" | "placementTimeout" | "applicationLogS3DestinationError")
380
+ attr_accessor status_reason: ("internalError" | "invalidSignalRequest" | "placementTimeout" | "applicationLogS3DestinationError" | "applicationExit" | "connectionTimeout" | "reconnectionTimeout" | "maxSessionLengthTimeout" | "idleTimeout" | "apiTerminated")
379
381
  attr_accessor protocol: ("WebRTC")
380
382
  attr_accessor location: ::String
381
383
  attr_accessor signal_request: ::String
@@ -399,9 +401,10 @@ module Aws::GameLiftStreams
399
401
  attr_accessor description: ::String
400
402
  attr_accessor default_application: Types::DefaultApplication
401
403
  attr_accessor stream_class: ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022")
402
- attr_accessor status: ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING")
404
+ attr_accessor status: ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING" | "EXPIRED")
403
405
  attr_accessor created_at: ::Time
404
406
  attr_accessor last_updated_at: ::Time
407
+ attr_accessor expires_at: ::Time
405
408
  SENSITIVE: []
406
409
  end
407
410
 
@@ -488,10 +491,11 @@ module Aws::GameLiftStreams
488
491
  attr_accessor location_states: ::Array[Types::LocationState]
489
492
  attr_accessor stream_class: ("gen4n_high" | "gen4n_ultra" | "gen4n_win2022" | "gen5n_high" | "gen5n_ultra" | "gen5n_win2022")
490
493
  attr_accessor id: ::String
491
- attr_accessor status: ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING")
494
+ attr_accessor status: ("ACTIVATING" | "UPDATING_LOCATIONS" | "ACTIVE" | "ACTIVE_WITH_ERRORS" | "ERROR" | "DELETING" | "EXPIRED")
492
495
  attr_accessor status_reason: ("internalError" | "noAvailableInstances")
493
496
  attr_accessor last_updated_at: ::Time
494
497
  attr_accessor created_at: ::Time
498
+ attr_accessor expires_at: ::Time
495
499
  attr_accessor associated_applications: ::Array[::String]
496
500
  SENSITIVE: []
497
501
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-gameliftstreams
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.14.0
4
+ version: 1.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services