aws-sdk-appstream 1.27.0 → 1.28.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
  SHA1:
3
- metadata.gz: bac7437b71bf2779e93a224073b394cd4e001fc4
4
- data.tar.gz: 26497b13fe485565227d9fce68386db6f6cdaf27
3
+ metadata.gz: 4fdea859577a190901da61311fe3fa60ef5c7e2a
4
+ data.tar.gz: bf766a61be5c8493c89cebae63392c63d244c95e
5
5
  SHA512:
6
- metadata.gz: 109730050996ade1140502c1943ff71d3db03807014bb1aec5245e975916dfb71a69fe84fc4bfee68a6423a512e2a217218a1f3a604b7f33dc9c271154183c64
7
- data.tar.gz: 2693902762a664ed8f3c6948b1198beddf0ee86852b3ce419b59ade81d82db628c144178b2e737579bbeb23c8fc8d6c07456b992fee2cab611394e9924f275a6
6
+ metadata.gz: bfe54d360f334001b93456afe946be76eea4b48ac4c6e6a5f95060ccf295bd2f534255b07d77643286627d8d33e5dba5901061f8e13512ec0409ba573cc692fe
7
+ data.tar.gz: caeda5312fcb35346c33fb4a4270098f7ce5bff23313231fe8c5dda034cc9f14ffcd6432738a13f693a373ad4e1277e4549c0a9ba57dbbb1b1f87083855882d4
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-appstream/customizations'
43
43
  # @service
44
44
  module Aws::AppStream
45
45
 
46
- GEM_VERSION = '1.27.0'
46
+ GEM_VERSION = '1.28.0'
47
47
 
48
48
  end
@@ -417,8 +417,8 @@ module Aws::AppStream
417
417
  end
418
418
 
419
419
  # Creates a Directory Config object in AppStream 2.0. This object
420
- # includes the information required to join streaming instances to an
421
- # Active Directory domain.
420
+ # includes the configuration information required to join fleets and
421
+ # image builders to Microsoft Active Directory domains.
422
422
  #
423
423
  # @option params [required, String] :directory_name
424
424
  # The fully qualified name of the directory (for example,
@@ -429,8 +429,8 @@ module Aws::AppStream
429
429
  # accounts.
430
430
  #
431
431
  # @option params [required, Types::ServiceAccountCredentials] :service_account_credentials
432
- # The credentials for the service account used by the streaming instance
433
- # to connect to the directory.
432
+ # The credentials for the service account used by the fleet or image
433
+ # builder to connect to the directory.
434
434
  #
435
435
  # @return [Types::CreateDirectoryConfigResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
436
436
  #
@@ -544,13 +544,21 @@ module Aws::AppStream
544
544
  # The VPC configuration for the fleet.
545
545
  #
546
546
  # @option params [Integer] :max_user_duration_in_seconds
547
- # The maximum time that a streaming session can run, in seconds. Specify
548
- # a value between 600 and 360000.
547
+ # The maximum amount of time that a streaming session can remain active,
548
+ # in seconds. If users are still connected to a streaming instance five
549
+ # minutes before this limit is reached, they are prompted to save any
550
+ # open documents before being disconnected. After this time elapses, the
551
+ # instance is terminated and replaced by a new instance.
552
+ #
553
+ # Specify a value between 600 and 360000.
549
554
  #
550
555
  # @option params [Integer] :disconnect_timeout_in_seconds
551
- # The time after disconnection when a session is considered to have
552
- # ended, in seconds. If a user who was disconnected reconnects within
553
- # this time interval, the user is connected to their previous session.
556
+ # The amount of time that a streaming session remains active after users
557
+ # disconnect. If users try to reconnect to the streaming session after a
558
+ # disconnection or network interruption within this time interval, they
559
+ # are connected to their previous session. Otherwise, they are connected
560
+ # to a new session with a new streaming instance.
561
+ #
554
562
  # Specify a value between 60 and 360000.
555
563
  #
556
564
  # @option params [String] :description
@@ -573,6 +581,11 @@ module Aws::AppStream
573
581
  #
574
582
  # If you do not specify a value, the value is set to an empty string.
575
583
  #
584
+ # Generally allowed characters are: letters, numbers, and spaces
585
+ # representable in UTF-8, and the following special characters:
586
+ #
587
+ # \_ . : / = + \\ - @
588
+ #
576
589
  # For more information, see [Tagging Your Resources][1] in the *Amazon
577
590
  # AppStream 2.0 Developer Guide*.
578
591
  #
@@ -580,6 +593,34 @@ module Aws::AppStream
580
593
  #
581
594
  # [1]: https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html
582
595
  #
596
+ # @option params [Integer] :idle_disconnect_timeout_in_seconds
597
+ # The amount of time that users can be idle (inactive) before they are
598
+ # disconnected from their streaming session and the
599
+ # `DisconnectTimeoutInSeconds` time interval begins. Users are notified
600
+ # before they are disconnected due to inactivity. If they try to
601
+ # reconnect to the streaming session before the time interval specified
602
+ # in `DisconnectTimeoutInSeconds` elapses, they are connected to their
603
+ # previous session. Users are considered idle when they stop providing
604
+ # keyboard or mouse input during their streaming session. File uploads
605
+ # and downloads, audio in, audio out, and pixels changing do not qualify
606
+ # as user activity. If users continue to be idle after the time interval
607
+ # in `IdleDisconnectTimeoutInSeconds` elapses, they are disconnected.
608
+ #
609
+ # To prevent users from being disconnected due to inactivity, specify a
610
+ # value of 0. Otherwise, specify a value between 60 and 3600. The
611
+ # default value is 900.
612
+ #
613
+ # <note markdown="1"> If you enable this feature, we recommend that you specify a value that
614
+ # corresponds exactly to a whole number of minutes (for example, 60,
615
+ # 120, and 180). If you don't do this, the value is rounded to the
616
+ # nearest minute. For example, if you specify a value of 70, users are
617
+ # disconnected after 1 minute of inactivity. If you specify a value that
618
+ # is at the midpoint between two different minutes, the value is rounded
619
+ # up. For example, if you specify a value of 90, users are disconnected
620
+ # after 2 minutes of inactivity.
621
+ #
622
+ # </note>
623
+ #
583
624
  # @return [Types::CreateFleetResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
584
625
  #
585
626
  # * {Types::CreateFleetResult#fleet #fleet} => Types::Fleet
@@ -611,6 +652,7 @@ module Aws::AppStream
611
652
  # tags: {
612
653
  # "TagKey" => "TagValue",
613
654
  # },
655
+ # idle_disconnect_timeout_in_seconds: 1,
614
656
  # })
615
657
  #
616
658
  # @example Response structure
@@ -641,6 +683,7 @@ module Aws::AppStream
641
683
  # resp.fleet.enable_default_internet_access #=> Boolean
642
684
  # resp.fleet.domain_join_info.directory_name #=> String
643
685
  # resp.fleet.domain_join_info.organizational_unit_distinguished_name #=> String
686
+ # resp.fleet.idle_disconnect_timeout_in_seconds #=> Integer
644
687
  #
645
688
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateFleet AWS API Documentation
646
689
  #
@@ -696,6 +739,11 @@ module Aws::AppStream
696
739
  # pair, and the value is optional. For example, Environment=Test. If you
697
740
  # do not specify a value, Environment=.
698
741
  #
742
+ # Generally allowed characters are: letters, numbers, and spaces
743
+ # representable in UTF-8, and the following special characters:
744
+ #
745
+ # \_ . : / = + \\ - @
746
+ #
699
747
  # If you do not specify a value, the value is set to an empty string.
700
748
  #
701
749
  # For more information about tags, see [Tagging Your Resources][1] in
@@ -845,6 +893,11 @@ module Aws::AppStream
845
893
  #
846
894
  # If you do not specify a value, the value is set to an empty string.
847
895
  #
896
+ # Generally allowed characters are: letters, numbers, and spaces
897
+ # representable in UTF-8, and the following special characters:
898
+ #
899
+ # \_ . : / = + \\ - @
900
+ #
848
901
  # For more information about tags, see [Tagging Your Resources][1] in
849
902
  # the *Amazon AppStream 2.0 Developer Guide*.
850
903
  #
@@ -978,11 +1031,40 @@ module Aws::AppStream
978
1031
  req.send_request(options)
979
1032
  end
980
1033
 
1034
+ # Creates a usage report subscription. Usage reports are generated
1035
+ # daily.
1036
+ #
1037
+ # @return [Types::CreateUsageReportSubscriptionResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1038
+ #
1039
+ # * {Types::CreateUsageReportSubscriptionResult#s3_bucket_name #s3_bucket_name} => String
1040
+ # * {Types::CreateUsageReportSubscriptionResult#schedule #schedule} => String
1041
+ #
1042
+ # @example Response structure
1043
+ #
1044
+ # resp.s3_bucket_name #=> String
1045
+ # resp.schedule #=> String, one of "DAILY"
1046
+ #
1047
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateUsageReportSubscription AWS API Documentation
1048
+ #
1049
+ # @overload create_usage_report_subscription(params = {})
1050
+ # @param [Hash] params ({})
1051
+ def create_usage_report_subscription(params = {}, options = {})
1052
+ req = build_request(:create_usage_report_subscription, params)
1053
+ req.send_request(options)
1054
+ end
1055
+
981
1056
  # Creates a new user in the user pool.
982
1057
  #
983
1058
  # @option params [required, String] :user_name
984
1059
  # The email address of the user.
985
1060
  #
1061
+ # <note markdown="1"> Users' email addresses are case-sensitive. During login, if they
1062
+ # specify an email address that doesn't use the same capitalization as
1063
+ # the email address specified when their user pool account was created,
1064
+ # a "user does not exist" error message displays.
1065
+ #
1066
+ # </note>
1067
+ #
986
1068
  # @option params [String] :message_action
987
1069
  # The action to take for the welcome email that is sent to a user after
988
1070
  # the user is created in the user pool. If you specify SUPPRESS, no
@@ -1229,11 +1311,28 @@ module Aws::AppStream
1229
1311
  req.send_request(options)
1230
1312
  end
1231
1313
 
1314
+ # Disables usage report generation.
1315
+ #
1316
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1317
+ #
1318
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteUsageReportSubscription AWS API Documentation
1319
+ #
1320
+ # @overload delete_usage_report_subscription(params = {})
1321
+ # @param [Hash] params ({})
1322
+ def delete_usage_report_subscription(params = {}, options = {})
1323
+ req = build_request(:delete_usage_report_subscription, params)
1324
+ req.send_request(options)
1325
+ end
1326
+
1232
1327
  # Deletes a user from the user pool.
1233
1328
  #
1234
1329
  # @option params [required, String] :user_name
1235
1330
  # The email address of the user.
1236
1331
  #
1332
+ # <note markdown="1"> Users' email addresses are case-sensitive.
1333
+ #
1334
+ # </note>
1335
+ #
1237
1336
  # @option params [required, String] :authentication_type
1238
1337
  # The authentication type for the user. You must specify USERPOOL.
1239
1338
  #
@@ -1258,8 +1357,9 @@ module Aws::AppStream
1258
1357
  # Retrieves a list that describes one or more specified Directory Config
1259
1358
  # objects for AppStream 2.0, if the names for these objects are
1260
1359
  # provided. Otherwise, all Directory Config objects in the account are
1261
- # described. These objects include the information required to join
1262
- # streaming instances to an Active Directory domain.
1360
+ # described. These objects include the configuration information
1361
+ # required to join fleets and image builders to Microsoft Active
1362
+ # Directory domains.
1263
1363
  #
1264
1364
  # Although the response syntax in this topic includes the account
1265
1365
  # password, this password is not returned in the actual response.
@@ -1359,6 +1459,7 @@ module Aws::AppStream
1359
1459
  # resp.fleets[0].enable_default_internet_access #=> Boolean
1360
1460
  # resp.fleets[0].domain_join_info.directory_name #=> String
1361
1461
  # resp.fleets[0].domain_join_info.organizational_unit_distinguished_name #=> String
1462
+ # resp.fleets[0].idle_disconnect_timeout_in_seconds #=> Integer
1362
1463
  # resp.next_token #=> String
1363
1464
  #
1364
1465
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeFleets AWS API Documentation
@@ -1559,11 +1660,11 @@ module Aws::AppStream
1559
1660
  req.send_request(options)
1560
1661
  end
1561
1662
 
1562
- # Retrieves a list that describes the active streaming sessions for a
1563
- # specified stack and fleet. If a value for `UserId` is provided for the
1564
- # stack and fleet, only streaming sessions for that user are described.
1565
- # If an authentication type is not provided, the default is to
1566
- # authenticate users using a streaming URL.
1663
+ # Retrieves a list that describes the streaming sessions for a specified
1664
+ # stack and fleet. If a UserId is provided for the stack and fleet, only
1665
+ # streaming sessions for that user are described. If an authentication
1666
+ # type is not provided, the default is to authenticate users using a
1667
+ # streaming URL.
1567
1668
  #
1568
1669
  # @option params [required, String] :stack_name
1569
1670
  # The name of the stack. This value is case-sensitive.
@@ -1584,9 +1685,8 @@ module Aws::AppStream
1584
1685
  #
1585
1686
  # @option params [String] :authentication_type
1586
1687
  # The authentication method. Specify `API` for a user authenticated
1587
- # using a streaming URL, `SAML` for a SAML 2.0-federated user, or
1588
- # `USERPOOL` for a user in the AppStream 2.0 user pool. The default is
1589
- # to authenticate users using a streaming URL.
1688
+ # using a streaming URL or `SAML` for a SAML federated user. The default
1689
+ # is to authenticate users using a streaming URL.
1590
1690
  #
1591
1691
  # @return [Types::DescribeSessionsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1592
1692
  #
@@ -1687,6 +1787,48 @@ module Aws::AppStream
1687
1787
  req.send_request(options)
1688
1788
  end
1689
1789
 
1790
+ # Retrieves a list that describes one or more usage report
1791
+ # subscriptions.
1792
+ #
1793
+ # @option params [Integer] :max_results
1794
+ # The maximum size of each page of results.
1795
+ #
1796
+ # @option params [String] :next_token
1797
+ # The pagination token to use to retrieve the next page of results for
1798
+ # this operation. If this value is null, it retrieves the first page.
1799
+ #
1800
+ # @return [Types::DescribeUsageReportSubscriptionsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1801
+ #
1802
+ # * {Types::DescribeUsageReportSubscriptionsResult#usage_report_subscriptions #usage_report_subscriptions} => Array&lt;Types::UsageReportSubscription&gt;
1803
+ # * {Types::DescribeUsageReportSubscriptionsResult#next_token #next_token} => String
1804
+ #
1805
+ # @example Request syntax with placeholder values
1806
+ #
1807
+ # resp = client.describe_usage_report_subscriptions({
1808
+ # max_results: 1,
1809
+ # next_token: "String",
1810
+ # })
1811
+ #
1812
+ # @example Response structure
1813
+ #
1814
+ # resp.usage_report_subscriptions #=> Array
1815
+ # resp.usage_report_subscriptions[0].s3_bucket_name #=> String
1816
+ # resp.usage_report_subscriptions[0].schedule #=> String, one of "DAILY"
1817
+ # resp.usage_report_subscriptions[0].last_generated_report_date #=> Time
1818
+ # resp.usage_report_subscriptions[0].subscription_errors #=> Array
1819
+ # resp.usage_report_subscriptions[0].subscription_errors[0].error_code #=> String, one of "RESOURCE_NOT_FOUND", "ACCESS_DENIED", "INTERNAL_SERVICE_ERROR"
1820
+ # resp.usage_report_subscriptions[0].subscription_errors[0].error_message #=> String
1821
+ # resp.next_token #=> String
1822
+ #
1823
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeUsageReportSubscriptions AWS API Documentation
1824
+ #
1825
+ # @overload describe_usage_report_subscriptions(params = {})
1826
+ # @param [Hash] params ({})
1827
+ def describe_usage_report_subscriptions(params = {}, options = {})
1828
+ req = build_request(:describe_usage_report_subscriptions, params)
1829
+ req.send_request(options)
1830
+ end
1831
+
1690
1832
  # Retrieves a list that describes the UserStackAssociation objects. You
1691
1833
  # must specify either or both of the following:
1692
1834
  #
@@ -1701,6 +1843,10 @@ module Aws::AppStream
1701
1843
  # @option params [String] :user_name
1702
1844
  # The email address of the user who is associated with the stack.
1703
1845
  #
1846
+ # <note markdown="1"> Users' email addresses are case-sensitive.
1847
+ #
1848
+ # </note>
1849
+ #
1704
1850
  # @option params [String] :authentication_type
1705
1851
  # The authentication type for the user who is associated with the stack.
1706
1852
  # You must specify USERPOOL.
@@ -1801,6 +1947,10 @@ module Aws::AppStream
1801
1947
  # @option params [required, String] :user_name
1802
1948
  # The email address of the user.
1803
1949
  #
1950
+ # <note markdown="1"> Users' email addresses are case-sensitive.
1951
+ #
1952
+ # </note>
1953
+ #
1804
1954
  # @option params [required, String] :authentication_type
1805
1955
  # The authentication type for the user. You must specify USERPOOL.
1806
1956
  #
@@ -1855,6 +2005,13 @@ module Aws::AppStream
1855
2005
  # @option params [required, String] :user_name
1856
2006
  # The email address of the user.
1857
2007
  #
2008
+ # <note markdown="1"> Users' email addresses are case-sensitive. During login, if they
2009
+ # specify an email address that doesn't use the same capitalization as
2010
+ # the email address specified when their user pool account was created,
2011
+ # a "user does not exist" error message displays.
2012
+ #
2013
+ # </note>
2014
+ #
1858
2015
  # @option params [required, String] :authentication_type
1859
2016
  # The authentication type for the user. You must specify USERPOOL.
1860
2017
  #
@@ -2186,6 +2343,11 @@ module Aws::AppStream
2186
2343
  #
2187
2344
  # If you do not specify a value, the value is set to an empty string.
2188
2345
  #
2346
+ # Generally allowed characters are: letters, numbers, and spaces
2347
+ # representable in UTF-8, and the following special characters:
2348
+ #
2349
+ # \_ . : / = + \\ - @
2350
+ #
2189
2351
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2190
2352
  #
2191
2353
  # @example Request syntax with placeholder values
@@ -2243,8 +2405,8 @@ module Aws::AppStream
2243
2405
  end
2244
2406
 
2245
2407
  # Updates the specified Directory Config object in AppStream 2.0. This
2246
- # object includes the information required to join streaming instances
2247
- # to an Active Directory domain.
2408
+ # object includes the configuration information required to join fleets
2409
+ # and image builders to Microsoft Active Directory domains.
2248
2410
  #
2249
2411
  # @option params [required, String] :directory_name
2250
2412
  # The name of the Directory Config object.
@@ -2254,8 +2416,8 @@ module Aws::AppStream
2254
2416
  # accounts.
2255
2417
  #
2256
2418
  # @option params [Types::ServiceAccountCredentials] :service_account_credentials
2257
- # The credentials for the service account used by the streaming instance
2258
- # to connect to the directory.
2419
+ # The credentials for the service account used by the fleet or image
2420
+ # builder to connect to the directory.
2259
2421
  #
2260
2422
  # @return [Types::UpdateDirectoryConfigResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2261
2423
  #
@@ -2294,8 +2456,9 @@ module Aws::AppStream
2294
2456
  #
2295
2457
  # If the fleet is in the `STOPPED` state, you can update any attribute
2296
2458
  # except the fleet name. If the fleet is in the `RUNNING` state, you can
2297
- # update the `DisplayName` and `ComputeCapacity` attributes. If the
2298
- # fleet is in the `STARTING` or `STOPPING` state, you can't update it.
2459
+ # update the `DisplayName`, `ComputeCapacity`, `ImageARN`, `ImageName`,
2460
+ # and `DisconnectTimeoutInSeconds` attributes. If the fleet is in the
2461
+ # `STARTING` or `STOPPING` state, you can't update it.
2299
2462
  #
2300
2463
  # @option params [String] :image_name
2301
2464
  # The name of the image used to create the fleet.
@@ -2357,16 +2520,22 @@ module Aws::AppStream
2357
2520
  # The VPC configuration for the fleet.
2358
2521
  #
2359
2522
  # @option params [Integer] :max_user_duration_in_seconds
2360
- # The maximum time that a streaming session can run, in seconds. Specify
2361
- # a value between 600 and 360000. By default, the value is 900 seconds
2362
- # (15 minutes).
2523
+ # The maximum amount of time that a streaming session can remain active,
2524
+ # in seconds. If users are still connected to a streaming instance five
2525
+ # minutes before this limit is reached, they are prompted to save any
2526
+ # open documents before being disconnected. After this time elapses, the
2527
+ # instance is terminated and replaced by a new instance.
2528
+ #
2529
+ # Specify a value between 600 and 360000.
2363
2530
  #
2364
2531
  # @option params [Integer] :disconnect_timeout_in_seconds
2365
- # The time after disconnection when a session is considered to have
2366
- # ended, in seconds. If a user who was disconnected reconnects within
2367
- # this time interval, the user is connected to their previous session.
2368
- # Specify a value between 60 and 360000. By default, the value is 900
2369
- # seconds (15 minutes).
2532
+ # The amount of time that a streaming session remains active after users
2533
+ # disconnect. If users try to reconnect to the streaming session after a
2534
+ # disconnection or network interruption within this time interval, they
2535
+ # are connected to their previous session. Otherwise, they are connected
2536
+ # to a new session with a new streaming instance.
2537
+ #
2538
+ # Specify a value between 60 and 360000.
2370
2539
  #
2371
2540
  # @option params [Boolean] :delete_vpc_config
2372
2541
  # Deletes the VPC association for the specified fleet.
@@ -2384,6 +2553,34 @@ module Aws::AppStream
2384
2553
  # The name of the directory and organizational unit (OU) to use to join
2385
2554
  # the fleet to a Microsoft Active Directory domain.
2386
2555
  #
2556
+ # @option params [Integer] :idle_disconnect_timeout_in_seconds
2557
+ # The amount of time that users can be idle (inactive) before they are
2558
+ # disconnected from their streaming session and the
2559
+ # `DisconnectTimeoutInSeconds` time interval begins. Users are notified
2560
+ # before they are disconnected due to inactivity. If users try to
2561
+ # reconnect to the streaming session before the time interval specified
2562
+ # in `DisconnectTimeoutInSeconds` elapses, they are connected to their
2563
+ # previous session. Users are considered idle when they stop providing
2564
+ # keyboard or mouse input during their streaming session. File uploads
2565
+ # and downloads, audio in, audio out, and pixels changing do not qualify
2566
+ # as user activity. If users continue to be idle after the time interval
2567
+ # in `IdleDisconnectTimeoutInSeconds` elapses, they are disconnected.
2568
+ #
2569
+ # To prevent users from being disconnected due to inactivity, specify a
2570
+ # value of 0. Otherwise, specify a value between 60 and 3600. The
2571
+ # default value is 900.
2572
+ #
2573
+ # <note markdown="1"> If you enable this feature, we recommend that you specify a value that
2574
+ # corresponds exactly to a whole number of minutes (for example, 60,
2575
+ # 120, and 180). If you don't do this, the value is rounded to the
2576
+ # nearest minute. For example, if you specify a value of 70, users are
2577
+ # disconnected after 1 minute of inactivity. If you specify a value that
2578
+ # is at the midpoint between two different minutes, the value is rounded
2579
+ # up. For example, if you specify a value of 90, users are disconnected
2580
+ # after 2 minutes of inactivity.
2581
+ #
2582
+ # </note>
2583
+ #
2387
2584
  # @option params [Array<String>] :attributes_to_delete
2388
2585
  # The fleet attributes to delete.
2389
2586
  #
@@ -2415,6 +2612,7 @@ module Aws::AppStream
2415
2612
  # directory_name: "DirectoryName",
2416
2613
  # organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
2417
2614
  # },
2615
+ # idle_disconnect_timeout_in_seconds: 1,
2418
2616
  # attributes_to_delete: ["VPC_CONFIGURATION"], # accepts VPC_CONFIGURATION, VPC_CONFIGURATION_SECURITY_GROUP_IDS, DOMAIN_JOIN_INFO
2419
2617
  # })
2420
2618
  #
@@ -2446,6 +2644,7 @@ module Aws::AppStream
2446
2644
  # resp.fleet.enable_default_internet_access #=> Boolean
2447
2645
  # resp.fleet.domain_join_info.directory_name #=> String
2448
2646
  # resp.fleet.domain_join_info.organizational_unit_distinguished_name #=> String
2647
+ # resp.fleet.idle_disconnect_timeout_in_seconds #=> Integer
2449
2648
  #
2450
2649
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateFleet AWS API Documentation
2451
2650
  #
@@ -2608,7 +2807,7 @@ module Aws::AppStream
2608
2807
  params: params,
2609
2808
  config: config)
2610
2809
  context[:gem_name] = 'aws-sdk-appstream'
2611
- context[:gem_version] = '1.27.0'
2810
+ context[:gem_version] = '1.28.0'
2612
2811
  Seahorse::Client::Request.new(handlers, context)
2613
2812
  end
2614
2813