aws-sdk-appstream 1.92.0 → 1.94.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: 8d90046ff9737b9a8b2b08edf90aab5cf514cbc2251cca1be5b845d302f4a4b5
4
- data.tar.gz: f65c14660fc83d141d96ca983baa1b28e11549c6cd399ecc5dd1a88091ff505f
3
+ metadata.gz: 36c560bb098f39c30a93a261d9dadd44f67ea2636927f113b2d7eb1e962b7010
4
+ data.tar.gz: fe7beb3f2a446f281a9afa106a5d77667b1021c037f9713512aad07173254948
5
5
  SHA512:
6
- metadata.gz: 4c6048cbdfe80037cf0c2c9d1db01b694dc4d3ba3ea92a4de869365cea3cb399eb88c486c9b61bb594e3854f7d49f0b2394ec34966c4ea931735b4c015709708
7
- data.tar.gz: 86e4b2cec8f61d16121fe5ce8c9658ac7766825774be984c4c572783c928ee6201ae3cead216ca03b8fe8fa0256a84237c2ba598e17be4711e34a688cfc0b232
6
+ metadata.gz: fe072627089df99cfc7cc8e57f72df8983ee13d24d06fd0b1c41563823cdd6351a3255508034deb178b0119b6684b03cbfa767c0d8a96d1258c6dc9dd43e6343
7
+ data.tar.gz: ebef1ad8e6f090e4c00d1460c79b6b7124034c3137da8a82f86a2fb9b78212c687ae6bf2378b8e31cb7bb8578171c0e0696909b26fc0226cf085ee6445e8da20
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.94.0 (2024-08-13)
5
+ ------------------
6
+
7
+ * Feature - This release includes following new APIs: CreateThemeForStack, DescribeThemeForStack, UpdateThemeForStack, DeleteThemeForStack to support custom branding programmatically.
8
+
9
+ 1.93.0 (2024-07-30)
10
+ ------------------
11
+
12
+ * Feature - Added support for Red Hat Enterprise Linux 8 on Amazon AppStream 2.0
13
+
4
14
  1.92.0 (2024-07-02)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.92.0
1
+ 1.94.0
@@ -1039,7 +1039,7 @@ module Aws::AppStream
1039
1039
  # launch_path: "String", # required
1040
1040
  # working_directory: "String",
1041
1041
  # launch_parameters: "String",
1042
- # platforms: ["WINDOWS"], # required, accepts WINDOWS, WINDOWS_SERVER_2016, WINDOWS_SERVER_2019, WINDOWS_SERVER_2022, AMAZON_LINUX2
1042
+ # platforms: ["WINDOWS"], # required, accepts WINDOWS, WINDOWS_SERVER_2016, WINDOWS_SERVER_2019, WINDOWS_SERVER_2022, AMAZON_LINUX2, RHEL8
1043
1043
  # instance_families: ["String"], # required
1044
1044
  # app_block_arn: "Arn", # required
1045
1045
  # tags: {
@@ -1064,7 +1064,7 @@ module Aws::AppStream
1064
1064
  # resp.application.icon_s3_location.s3_bucket #=> String
1065
1065
  # resp.application.icon_s3_location.s3_key #=> String
1066
1066
  # resp.application.platforms #=> Array
1067
- # resp.application.platforms[0] #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2"
1067
+ # resp.application.platforms[0] #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2", "RHEL8"
1068
1068
  # resp.application.instance_families #=> Array
1069
1069
  # resp.application.instance_families[0] #=> String
1070
1070
  # resp.application.created_time #=> Time
@@ -1288,6 +1288,20 @@ module Aws::AppStream
1288
1288
  #
1289
1289
  # * stream.graphics.g4dn.16xlarge
1290
1290
  #
1291
+ # * stream.graphics.g5.xlarge
1292
+ #
1293
+ # * stream.graphics.g5.2xlarge
1294
+ #
1295
+ # * stream.graphics.g5.4xlarge
1296
+ #
1297
+ # * stream.graphics.g5.8xlarge
1298
+ #
1299
+ # * stream.graphics.g5.12xlarge
1300
+ #
1301
+ # * stream.graphics.g5.16xlarge
1302
+ #
1303
+ # * stream.graphics.g5.24xlarge
1304
+ #
1291
1305
  # * stream.graphics-pro.4xlarge
1292
1306
  #
1293
1307
  # * stream.graphics-pro.8xlarge
@@ -1347,7 +1361,7 @@ module Aws::AppStream
1347
1361
  # are connected to their previous session. Otherwise, they are connected
1348
1362
  # to a new session with a new streaming instance.
1349
1363
  #
1350
- # Specify a value between 60 and 360000.
1364
+ # Specify a value between 60 and 36000.
1351
1365
  #
1352
1366
  # @option params [String] :description
1353
1367
  # The description to display.
@@ -1396,7 +1410,7 @@ module Aws::AppStream
1396
1410
  # in `IdleDisconnectTimeoutInSeconds` elapses, they are disconnected.
1397
1411
  #
1398
1412
  # To prevent users from being disconnected due to inactivity, specify a
1399
- # value of 0. Otherwise, specify a value between 60 and 3600. The
1413
+ # value of 0. Otherwise, specify a value between 60 and 36000. The
1400
1414
  # default value is 0.
1401
1415
  #
1402
1416
  # <note markdown="1"> If you enable this feature, we recommend that you specify a value that
@@ -1491,7 +1505,7 @@ module Aws::AppStream
1491
1505
  # idle_disconnect_timeout_in_seconds: 1,
1492
1506
  # iam_role_arn: "Arn",
1493
1507
  # stream_view: "APP", # accepts APP, DESKTOP
1494
- # platform: "WINDOWS", # accepts WINDOWS, WINDOWS_SERVER_2016, WINDOWS_SERVER_2019, WINDOWS_SERVER_2022, AMAZON_LINUX2
1508
+ # platform: "WINDOWS", # accepts WINDOWS, WINDOWS_SERVER_2016, WINDOWS_SERVER_2019, WINDOWS_SERVER_2022, AMAZON_LINUX2, RHEL8
1495
1509
  # max_concurrent_sessions: 1,
1496
1510
  # usb_device_filter_strings: ["UsbDeviceFilterString"],
1497
1511
  # session_script_s3_location: {
@@ -1536,7 +1550,7 @@ module Aws::AppStream
1536
1550
  # resp.fleet.idle_disconnect_timeout_in_seconds #=> Integer
1537
1551
  # resp.fleet.iam_role_arn #=> String
1538
1552
  # resp.fleet.stream_view #=> String, one of "APP", "DESKTOP"
1539
- # resp.fleet.platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2"
1553
+ # resp.fleet.platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2", "RHEL8"
1540
1554
  # resp.fleet.max_concurrent_sessions #=> Integer
1541
1555
  # resp.fleet.usb_device_filter_strings #=> Array
1542
1556
  # resp.fleet.usb_device_filter_strings[0] #=> String
@@ -1748,7 +1762,7 @@ module Aws::AppStream
1748
1762
  # resp.image_builder.vpc_config.security_group_ids #=> Array
1749
1763
  # resp.image_builder.vpc_config.security_group_ids[0] #=> String
1750
1764
  # resp.image_builder.instance_type #=> String
1751
- # resp.image_builder.platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2"
1765
+ # resp.image_builder.platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2", "RHEL8"
1752
1766
  # resp.image_builder.iam_role_arn #=> String
1753
1767
  # resp.image_builder.state #=> String, one of "PENDING", "UPDATING_AGENT", "RUNNING", "STOPPING", "STOPPED", "REBOOTING", "SNAPSHOTTING", "DELETING", "FAILED", "UPDATING", "PENDING_QUALIFICATION"
1754
1768
  # resp.image_builder.state_change_reason.code #=> String, one of "INTERNAL_ERROR", "IMAGE_UNAVAILABLE"
@@ -1767,6 +1781,7 @@ module Aws::AppStream
1767
1781
  # resp.image_builder.access_endpoints #=> Array
1768
1782
  # resp.image_builder.access_endpoints[0].endpoint_type #=> String, one of "STREAMING"
1769
1783
  # resp.image_builder.access_endpoints[0].vpce_id #=> String
1784
+ # resp.image_builder.latest_appstream_agent_version #=> String, one of "TRUE", "FALSE"
1770
1785
  #
1771
1786
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateImageBuilder AWS API Documentation
1772
1787
  #
@@ -2027,6 +2042,84 @@ module Aws::AppStream
2027
2042
  req.send_request(options)
2028
2043
  end
2029
2044
 
2045
+ # Creates custom branding that customizes the appearance of the
2046
+ # streaming application catalog page.
2047
+ #
2048
+ # @option params [required, String] :stack_name
2049
+ # The name of the stack for the theme.
2050
+ #
2051
+ # @option params [Array<Types::ThemeFooterLink>] :footer_links
2052
+ # The links that are displayed in the footer of the streaming
2053
+ # application catalog page. These links are helpful resources for users,
2054
+ # such as the organization's IT support and product marketing sites.
2055
+ #
2056
+ # @option params [required, String] :title_text
2057
+ # The title that is displayed at the top of the browser tab during
2058
+ # users' application streaming sessions.
2059
+ #
2060
+ # @option params [required, String] :theme_styling
2061
+ # The color theme that is applied to website links, text, and buttons.
2062
+ # These colors are also applied as accents in the background for the
2063
+ # streaming application catalog page.
2064
+ #
2065
+ # @option params [required, Types::S3Location] :organization_logo_s3_location
2066
+ # The organization logo that appears on the streaming application
2067
+ # catalog page.
2068
+ #
2069
+ # @option params [required, Types::S3Location] :favicon_s3_location
2070
+ # The S3 location of the favicon. The favicon enables users to recognize
2071
+ # their application streaming site in a browser full of tabs or
2072
+ # bookmarks. It is displayed at the top of the browser tab for the
2073
+ # application streaming site during users' streaming sessions.
2074
+ #
2075
+ # @return [Types::CreateThemeForStackResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2076
+ #
2077
+ # * {Types::CreateThemeForStackResult#theme #theme} => Types::Theme
2078
+ #
2079
+ # @example Request syntax with placeholder values
2080
+ #
2081
+ # resp = client.create_theme_for_stack({
2082
+ # stack_name: "Name", # required
2083
+ # footer_links: [
2084
+ # {
2085
+ # display_name: "ThemeFooterLinkDisplayName",
2086
+ # footer_link_url: "ThemeFooterLinkURL",
2087
+ # },
2088
+ # ],
2089
+ # title_text: "ThemeTitleText", # required
2090
+ # theme_styling: "LIGHT_BLUE", # required, accepts LIGHT_BLUE, BLUE, PINK, RED
2091
+ # organization_logo_s3_location: { # required
2092
+ # s3_bucket: "S3Bucket", # required
2093
+ # s3_key: "S3Key",
2094
+ # },
2095
+ # favicon_s3_location: { # required
2096
+ # s3_bucket: "S3Bucket", # required
2097
+ # s3_key: "S3Key",
2098
+ # },
2099
+ # })
2100
+ #
2101
+ # @example Response structure
2102
+ #
2103
+ # resp.theme.stack_name #=> String
2104
+ # resp.theme.state #=> String, one of "ENABLED", "DISABLED"
2105
+ # resp.theme.theme_title_text #=> String
2106
+ # resp.theme.theme_styling #=> String, one of "LIGHT_BLUE", "BLUE", "PINK", "RED"
2107
+ # resp.theme.theme_footer_links #=> Array
2108
+ # resp.theme.theme_footer_links[0].display_name #=> String
2109
+ # resp.theme.theme_footer_links[0].footer_link_url #=> String
2110
+ # resp.theme.theme_organization_logo_url #=> String
2111
+ # resp.theme.theme_favicon_url #=> String
2112
+ # resp.theme.created_time #=> Time
2113
+ #
2114
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateThemeForStack AWS API Documentation
2115
+ #
2116
+ # @overload create_theme_for_stack(params = {})
2117
+ # @param [Hash] params ({})
2118
+ def create_theme_for_stack(params = {}, options = {})
2119
+ req = build_request(:create_theme_for_stack, params)
2120
+ req.send_request(options)
2121
+ end
2122
+
2030
2123
  # Creates a new image with the latest Windows operating system updates,
2031
2124
  # driver updates, and AppStream 2.0 agent software.
2032
2125
  #
@@ -2106,7 +2199,7 @@ module Aws::AppStream
2106
2199
  # resp.image.visibility #=> String, one of "PUBLIC", "PRIVATE", "SHARED"
2107
2200
  # resp.image.image_builder_supported #=> Boolean
2108
2201
  # resp.image.image_builder_name #=> String
2109
- # resp.image.platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2"
2202
+ # resp.image.platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2", "RHEL8"
2110
2203
  # resp.image.description #=> String
2111
2204
  # resp.image.state_change_reason.code #=> String, one of "INTERNAL_ERROR", "IMAGE_BUILDER_NOT_AVAILABLE", "IMAGE_COPY_FAILURE"
2112
2205
  # resp.image.state_change_reason.message #=> String
@@ -2126,7 +2219,7 @@ module Aws::AppStream
2126
2219
  # resp.image.applications[0].icon_s3_location.s3_bucket #=> String
2127
2220
  # resp.image.applications[0].icon_s3_location.s3_key #=> String
2128
2221
  # resp.image.applications[0].platforms #=> Array
2129
- # resp.image.applications[0].platforms[0] #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2"
2222
+ # resp.image.applications[0].platforms[0] #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2", "RHEL8"
2130
2223
  # resp.image.applications[0].instance_families #=> Array
2131
2224
  # resp.image.applications[0].instance_families[0] #=> String
2132
2225
  # resp.image.applications[0].created_time #=> Time
@@ -2139,6 +2232,11 @@ module Aws::AppStream
2139
2232
  # resp.image.image_errors[0].error_code #=> String, one of "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION", "NETWORK_INTERFACE_LIMIT_EXCEEDED", "INTERNAL_SERVICE_ERROR", "IAM_SERVICE_ROLE_IS_MISSING", "MACHINE_ROLE_IS_MISSING", "STS_DISABLED_IN_REGION", "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION", "SUBNET_NOT_FOUND", "IMAGE_NOT_FOUND", "INVALID_SUBNET_CONFIGURATION", "SECURITY_GROUPS_NOT_FOUND", "IGW_NOT_ATTACHED", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION", "FLEET_STOPPED", "FLEET_INSTANCE_PROVISIONING_FAILURE", "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND", "DOMAIN_JOIN_ERROR_ACCESS_DENIED", "DOMAIN_JOIN_ERROR_LOGON_FAILURE", "DOMAIN_JOIN_ERROR_INVALID_PARAMETER", "DOMAIN_JOIN_ERROR_MORE_DATA", "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN", "DOMAIN_JOIN_ERROR_NOT_SUPPORTED", "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME", "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED", "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED", "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED", "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR"
2140
2233
  # resp.image.image_errors[0].error_message #=> String
2141
2234
  # resp.image.image_errors[0].error_timestamp #=> Time
2235
+ # resp.image.latest_appstream_agent_version #=> String, one of "TRUE", "FALSE"
2236
+ # resp.image.supported_instance_families #=> Array
2237
+ # resp.image.supported_instance_families[0] #=> String
2238
+ # resp.image.dynamic_app_providers_enabled #=> String, one of "ENABLED", "DISABLED"
2239
+ # resp.image.image_shared_with_others #=> String, one of "TRUE", "FALSE"
2142
2240
  # resp.can_update_image #=> Boolean
2143
2241
  #
2144
2242
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateUpdatedImage AWS API Documentation
@@ -2394,7 +2492,7 @@ module Aws::AppStream
2394
2492
  # resp.image.visibility #=> String, one of "PUBLIC", "PRIVATE", "SHARED"
2395
2493
  # resp.image.image_builder_supported #=> Boolean
2396
2494
  # resp.image.image_builder_name #=> String
2397
- # resp.image.platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2"
2495
+ # resp.image.platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2", "RHEL8"
2398
2496
  # resp.image.description #=> String
2399
2497
  # resp.image.state_change_reason.code #=> String, one of "INTERNAL_ERROR", "IMAGE_BUILDER_NOT_AVAILABLE", "IMAGE_COPY_FAILURE"
2400
2498
  # resp.image.state_change_reason.message #=> String
@@ -2414,7 +2512,7 @@ module Aws::AppStream
2414
2512
  # resp.image.applications[0].icon_s3_location.s3_bucket #=> String
2415
2513
  # resp.image.applications[0].icon_s3_location.s3_key #=> String
2416
2514
  # resp.image.applications[0].platforms #=> Array
2417
- # resp.image.applications[0].platforms[0] #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2"
2515
+ # resp.image.applications[0].platforms[0] #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2", "RHEL8"
2418
2516
  # resp.image.applications[0].instance_families #=> Array
2419
2517
  # resp.image.applications[0].instance_families[0] #=> String
2420
2518
  # resp.image.applications[0].created_time #=> Time
@@ -2427,6 +2525,11 @@ module Aws::AppStream
2427
2525
  # resp.image.image_errors[0].error_code #=> String, one of "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION", "NETWORK_INTERFACE_LIMIT_EXCEEDED", "INTERNAL_SERVICE_ERROR", "IAM_SERVICE_ROLE_IS_MISSING", "MACHINE_ROLE_IS_MISSING", "STS_DISABLED_IN_REGION", "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION", "SUBNET_NOT_FOUND", "IMAGE_NOT_FOUND", "INVALID_SUBNET_CONFIGURATION", "SECURITY_GROUPS_NOT_FOUND", "IGW_NOT_ATTACHED", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION", "FLEET_STOPPED", "FLEET_INSTANCE_PROVISIONING_FAILURE", "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND", "DOMAIN_JOIN_ERROR_ACCESS_DENIED", "DOMAIN_JOIN_ERROR_LOGON_FAILURE", "DOMAIN_JOIN_ERROR_INVALID_PARAMETER", "DOMAIN_JOIN_ERROR_MORE_DATA", "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN", "DOMAIN_JOIN_ERROR_NOT_SUPPORTED", "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME", "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED", "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED", "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED", "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR"
2428
2526
  # resp.image.image_errors[0].error_message #=> String
2429
2527
  # resp.image.image_errors[0].error_timestamp #=> Time
2528
+ # resp.image.latest_appstream_agent_version #=> String, one of "TRUE", "FALSE"
2529
+ # resp.image.supported_instance_families #=> Array
2530
+ # resp.image.supported_instance_families[0] #=> String
2531
+ # resp.image.dynamic_app_providers_enabled #=> String, one of "ENABLED", "DISABLED"
2532
+ # resp.image.image_shared_with_others #=> String, one of "TRUE", "FALSE"
2430
2533
  #
2431
2534
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteImage AWS API Documentation
2432
2535
  #
@@ -2464,7 +2567,7 @@ module Aws::AppStream
2464
2567
  # resp.image_builder.vpc_config.security_group_ids #=> Array
2465
2568
  # resp.image_builder.vpc_config.security_group_ids[0] #=> String
2466
2569
  # resp.image_builder.instance_type #=> String
2467
- # resp.image_builder.platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2"
2570
+ # resp.image_builder.platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2", "RHEL8"
2468
2571
  # resp.image_builder.iam_role_arn #=> String
2469
2572
  # resp.image_builder.state #=> String, one of "PENDING", "UPDATING_AGENT", "RUNNING", "STOPPING", "STOPPED", "REBOOTING", "SNAPSHOTTING", "DELETING", "FAILED", "UPDATING", "PENDING_QUALIFICATION"
2470
2573
  # resp.image_builder.state_change_reason.code #=> String, one of "INTERNAL_ERROR", "IMAGE_UNAVAILABLE"
@@ -2483,6 +2586,7 @@ module Aws::AppStream
2483
2586
  # resp.image_builder.access_endpoints #=> Array
2484
2587
  # resp.image_builder.access_endpoints[0].endpoint_type #=> String, one of "STREAMING"
2485
2588
  # resp.image_builder.access_endpoints[0].vpce_id #=> String
2589
+ # resp.image_builder.latest_appstream_agent_version #=> String, one of "TRUE", "FALSE"
2486
2590
  #
2487
2591
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteImageBuilder AWS API Documentation
2488
2592
  #
@@ -2547,6 +2651,29 @@ module Aws::AppStream
2547
2651
  req.send_request(options)
2548
2652
  end
2549
2653
 
2654
+ # Deletes custom branding that customizes the appearance of the
2655
+ # streaming application catalog page.
2656
+ #
2657
+ # @option params [required, String] :stack_name
2658
+ # The name of the stack for the theme.
2659
+ #
2660
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2661
+ #
2662
+ # @example Request syntax with placeholder values
2663
+ #
2664
+ # resp = client.delete_theme_for_stack({
2665
+ # stack_name: "Name", # required
2666
+ # })
2667
+ #
2668
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteThemeForStack AWS API Documentation
2669
+ #
2670
+ # @overload delete_theme_for_stack(params = {})
2671
+ # @param [Hash] params ({})
2672
+ def delete_theme_for_stack(params = {}, options = {})
2673
+ req = build_request(:delete_theme_for_stack, params)
2674
+ req.send_request(options)
2675
+ end
2676
+
2550
2677
  # Disables usage report generation.
2551
2678
  #
2552
2679
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
@@ -2852,7 +2979,7 @@ module Aws::AppStream
2852
2979
  # resp.applications[0].icon_s3_location.s3_bucket #=> String
2853
2980
  # resp.applications[0].icon_s3_location.s3_key #=> String
2854
2981
  # resp.applications[0].platforms #=> Array
2855
- # resp.applications[0].platforms[0] #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2"
2982
+ # resp.applications[0].platforms[0] #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2", "RHEL8"
2856
2983
  # resp.applications[0].instance_families #=> Array
2857
2984
  # resp.applications[0].instance_families[0] #=> String
2858
2985
  # resp.applications[0].created_time #=> Time
@@ -3033,7 +3160,7 @@ module Aws::AppStream
3033
3160
  # resp.fleets[0].idle_disconnect_timeout_in_seconds #=> Integer
3034
3161
  # resp.fleets[0].iam_role_arn #=> String
3035
3162
  # resp.fleets[0].stream_view #=> String, one of "APP", "DESKTOP"
3036
- # resp.fleets[0].platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2"
3163
+ # resp.fleets[0].platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2", "RHEL8"
3037
3164
  # resp.fleets[0].max_concurrent_sessions #=> Integer
3038
3165
  # resp.fleets[0].usb_device_filter_strings #=> Array
3039
3166
  # resp.fleets[0].usb_device_filter_strings[0] #=> String
@@ -3097,7 +3224,7 @@ module Aws::AppStream
3097
3224
  # resp.image_builders[0].vpc_config.security_group_ids #=> Array
3098
3225
  # resp.image_builders[0].vpc_config.security_group_ids[0] #=> String
3099
3226
  # resp.image_builders[0].instance_type #=> String
3100
- # resp.image_builders[0].platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2"
3227
+ # resp.image_builders[0].platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2", "RHEL8"
3101
3228
  # resp.image_builders[0].iam_role_arn #=> String
3102
3229
  # resp.image_builders[0].state #=> String, one of "PENDING", "UPDATING_AGENT", "RUNNING", "STOPPING", "STOPPED", "REBOOTING", "SNAPSHOTTING", "DELETING", "FAILED", "UPDATING", "PENDING_QUALIFICATION"
3103
3230
  # resp.image_builders[0].state_change_reason.code #=> String, one of "INTERNAL_ERROR", "IMAGE_UNAVAILABLE"
@@ -3116,6 +3243,7 @@ module Aws::AppStream
3116
3243
  # resp.image_builders[0].access_endpoints #=> Array
3117
3244
  # resp.image_builders[0].access_endpoints[0].endpoint_type #=> String, one of "STREAMING"
3118
3245
  # resp.image_builders[0].access_endpoints[0].vpce_id #=> String
3246
+ # resp.image_builders[0].latest_appstream_agent_version #=> String, one of "TRUE", "FALSE"
3119
3247
  # resp.next_token #=> String
3120
3248
  #
3121
3249
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeImageBuilders AWS API Documentation
@@ -3228,7 +3356,7 @@ module Aws::AppStream
3228
3356
  # resp.images[0].visibility #=> String, one of "PUBLIC", "PRIVATE", "SHARED"
3229
3357
  # resp.images[0].image_builder_supported #=> Boolean
3230
3358
  # resp.images[0].image_builder_name #=> String
3231
- # resp.images[0].platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2"
3359
+ # resp.images[0].platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2", "RHEL8"
3232
3360
  # resp.images[0].description #=> String
3233
3361
  # resp.images[0].state_change_reason.code #=> String, one of "INTERNAL_ERROR", "IMAGE_BUILDER_NOT_AVAILABLE", "IMAGE_COPY_FAILURE"
3234
3362
  # resp.images[0].state_change_reason.message #=> String
@@ -3248,7 +3376,7 @@ module Aws::AppStream
3248
3376
  # resp.images[0].applications[0].icon_s3_location.s3_bucket #=> String
3249
3377
  # resp.images[0].applications[0].icon_s3_location.s3_key #=> String
3250
3378
  # resp.images[0].applications[0].platforms #=> Array
3251
- # resp.images[0].applications[0].platforms[0] #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2"
3379
+ # resp.images[0].applications[0].platforms[0] #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2", "RHEL8"
3252
3380
  # resp.images[0].applications[0].instance_families #=> Array
3253
3381
  # resp.images[0].applications[0].instance_families[0] #=> String
3254
3382
  # resp.images[0].applications[0].created_time #=> Time
@@ -3261,6 +3389,11 @@ module Aws::AppStream
3261
3389
  # resp.images[0].image_errors[0].error_code #=> String, one of "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION", "NETWORK_INTERFACE_LIMIT_EXCEEDED", "INTERNAL_SERVICE_ERROR", "IAM_SERVICE_ROLE_IS_MISSING", "MACHINE_ROLE_IS_MISSING", "STS_DISABLED_IN_REGION", "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION", "SUBNET_NOT_FOUND", "IMAGE_NOT_FOUND", "INVALID_SUBNET_CONFIGURATION", "SECURITY_GROUPS_NOT_FOUND", "IGW_NOT_ATTACHED", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION", "FLEET_STOPPED", "FLEET_INSTANCE_PROVISIONING_FAILURE", "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND", "DOMAIN_JOIN_ERROR_ACCESS_DENIED", "DOMAIN_JOIN_ERROR_LOGON_FAILURE", "DOMAIN_JOIN_ERROR_INVALID_PARAMETER", "DOMAIN_JOIN_ERROR_MORE_DATA", "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN", "DOMAIN_JOIN_ERROR_NOT_SUPPORTED", "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME", "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED", "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED", "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED", "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR"
3262
3390
  # resp.images[0].image_errors[0].error_message #=> String
3263
3391
  # resp.images[0].image_errors[0].error_timestamp #=> Time
3392
+ # resp.images[0].latest_appstream_agent_version #=> String, one of "TRUE", "FALSE"
3393
+ # resp.images[0].supported_instance_families #=> Array
3394
+ # resp.images[0].supported_instance_families[0] #=> String
3395
+ # resp.images[0].dynamic_app_providers_enabled #=> String, one of "ENABLED", "DISABLED"
3396
+ # resp.images[0].image_shared_with_others #=> String, one of "TRUE", "FALSE"
3264
3397
  # resp.next_token #=> String
3265
3398
  #
3266
3399
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeImages AWS API Documentation
@@ -3412,6 +3545,45 @@ module Aws::AppStream
3412
3545
  req.send_request(options)
3413
3546
  end
3414
3547
 
3548
+ # Retrieves a list that describes the theme for a specified stack. A
3549
+ # theme is custom branding that customizes the appearance of the
3550
+ # streaming application catalog page.
3551
+ #
3552
+ # @option params [required, String] :stack_name
3553
+ # The name of the stack for the theme.
3554
+ #
3555
+ # @return [Types::DescribeThemeForStackResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3556
+ #
3557
+ # * {Types::DescribeThemeForStackResult#theme #theme} => Types::Theme
3558
+ #
3559
+ # @example Request syntax with placeholder values
3560
+ #
3561
+ # resp = client.describe_theme_for_stack({
3562
+ # stack_name: "Name", # required
3563
+ # })
3564
+ #
3565
+ # @example Response structure
3566
+ #
3567
+ # resp.theme.stack_name #=> String
3568
+ # resp.theme.state #=> String, one of "ENABLED", "DISABLED"
3569
+ # resp.theme.theme_title_text #=> String
3570
+ # resp.theme.theme_styling #=> String, one of "LIGHT_BLUE", "BLUE", "PINK", "RED"
3571
+ # resp.theme.theme_footer_links #=> Array
3572
+ # resp.theme.theme_footer_links[0].display_name #=> String
3573
+ # resp.theme.theme_footer_links[0].footer_link_url #=> String
3574
+ # resp.theme.theme_organization_logo_url #=> String
3575
+ # resp.theme.theme_favicon_url #=> String
3576
+ # resp.theme.created_time #=> Time
3577
+ #
3578
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeThemeForStack AWS API Documentation
3579
+ #
3580
+ # @overload describe_theme_for_stack(params = {})
3581
+ # @param [Hash] params ({})
3582
+ def describe_theme_for_stack(params = {}, options = {})
3583
+ req = build_request(:describe_theme_for_stack, params)
3584
+ req.send_request(options)
3585
+ end
3586
+
3415
3587
  # Retrieves a list that describes one or more usage report
3416
3588
  # subscriptions.
3417
3589
  #
@@ -4030,7 +4202,7 @@ module Aws::AppStream
4030
4202
  # resp.image_builder.vpc_config.security_group_ids #=> Array
4031
4203
  # resp.image_builder.vpc_config.security_group_ids[0] #=> String
4032
4204
  # resp.image_builder.instance_type #=> String
4033
- # resp.image_builder.platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2"
4205
+ # resp.image_builder.platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2", "RHEL8"
4034
4206
  # resp.image_builder.iam_role_arn #=> String
4035
4207
  # resp.image_builder.state #=> String, one of "PENDING", "UPDATING_AGENT", "RUNNING", "STOPPING", "STOPPED", "REBOOTING", "SNAPSHOTTING", "DELETING", "FAILED", "UPDATING", "PENDING_QUALIFICATION"
4036
4208
  # resp.image_builder.state_change_reason.code #=> String, one of "INTERNAL_ERROR", "IMAGE_UNAVAILABLE"
@@ -4049,6 +4221,7 @@ module Aws::AppStream
4049
4221
  # resp.image_builder.access_endpoints #=> Array
4050
4222
  # resp.image_builder.access_endpoints[0].endpoint_type #=> String, one of "STREAMING"
4051
4223
  # resp.image_builder.access_endpoints[0].vpce_id #=> String
4224
+ # resp.image_builder.latest_appstream_agent_version #=> String, one of "TRUE", "FALSE"
4052
4225
  #
4053
4226
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StartImageBuilder AWS API Documentation
4054
4227
  #
@@ -4161,7 +4334,7 @@ module Aws::AppStream
4161
4334
  # resp.image_builder.vpc_config.security_group_ids #=> Array
4162
4335
  # resp.image_builder.vpc_config.security_group_ids[0] #=> String
4163
4336
  # resp.image_builder.instance_type #=> String
4164
- # resp.image_builder.platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2"
4337
+ # resp.image_builder.platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2", "RHEL8"
4165
4338
  # resp.image_builder.iam_role_arn #=> String
4166
4339
  # resp.image_builder.state #=> String, one of "PENDING", "UPDATING_AGENT", "RUNNING", "STOPPING", "STOPPED", "REBOOTING", "SNAPSHOTTING", "DELETING", "FAILED", "UPDATING", "PENDING_QUALIFICATION"
4167
4340
  # resp.image_builder.state_change_reason.code #=> String, one of "INTERNAL_ERROR", "IMAGE_UNAVAILABLE"
@@ -4180,6 +4353,7 @@ module Aws::AppStream
4180
4353
  # resp.image_builder.access_endpoints #=> Array
4181
4354
  # resp.image_builder.access_endpoints[0].endpoint_type #=> String, one of "STREAMING"
4182
4355
  # resp.image_builder.access_endpoints[0].vpce_id #=> String
4356
+ # resp.image_builder.latest_appstream_agent_version #=> String, one of "TRUE", "FALSE"
4183
4357
  #
4184
4358
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StopImageBuilder AWS API Documentation
4185
4359
  #
@@ -4358,7 +4532,7 @@ module Aws::AppStream
4358
4532
  # name: "Name", # required
4359
4533
  # description: "Description",
4360
4534
  # display_name: "DisplayName",
4361
- # platform: "WINDOWS", # accepts WINDOWS, WINDOWS_SERVER_2016, WINDOWS_SERVER_2019, WINDOWS_SERVER_2022, AMAZON_LINUX2
4535
+ # platform: "WINDOWS", # accepts WINDOWS, WINDOWS_SERVER_2016, WINDOWS_SERVER_2019, WINDOWS_SERVER_2022, AMAZON_LINUX2, RHEL8
4362
4536
  # instance_type: "String",
4363
4537
  # vpc_config: {
4364
4538
  # subnet_ids: ["String"],
@@ -4479,7 +4653,7 @@ module Aws::AppStream
4479
4653
  # resp.application.icon_s3_location.s3_bucket #=> String
4480
4654
  # resp.application.icon_s3_location.s3_key #=> String
4481
4655
  # resp.application.platforms #=> Array
4482
- # resp.application.platforms[0] #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2"
4656
+ # resp.application.platforms[0] #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2", "RHEL8"
4483
4657
  # resp.application.instance_families #=> Array
4484
4658
  # resp.application.instance_families[0] #=> String
4485
4659
  # resp.application.created_time #=> Time
@@ -4759,7 +4933,7 @@ module Aws::AppStream
4759
4933
  # are connected to their previous session. Otherwise, they are connected
4760
4934
  # to a new session with a new streaming instance.
4761
4935
  #
4762
- # Specify a value between 60 and 360000.
4936
+ # Specify a value between 60 and 36000.
4763
4937
  #
4764
4938
  # @option params [Boolean] :delete_vpc_config
4765
4939
  # Deletes the VPC association for the specified fleet.
@@ -4791,7 +4965,7 @@ module Aws::AppStream
4791
4965
  # in `IdleDisconnectTimeoutInSeconds` elapses, they are disconnected.
4792
4966
  #
4793
4967
  # To prevent users from being disconnected due to inactivity, specify a
4794
- # value of 0. Otherwise, specify a value between 60 and 3600. The
4968
+ # value of 0. Otherwise, specify a value between 60 and 36000. The
4795
4969
  # default value is 0.
4796
4970
  #
4797
4971
  # <note markdown="1"> If you enable this feature, we recommend that you specify a value that
@@ -4886,7 +5060,7 @@ module Aws::AppStream
4886
5060
  # attributes_to_delete: ["VPC_CONFIGURATION"], # accepts VPC_CONFIGURATION, VPC_CONFIGURATION_SECURITY_GROUP_IDS, DOMAIN_JOIN_INFO, IAM_ROLE_ARN, USB_DEVICE_FILTER_STRINGS, SESSION_SCRIPT_S3_LOCATION, MAX_SESSIONS_PER_INSTANCE
4887
5061
  # iam_role_arn: "Arn",
4888
5062
  # stream_view: "APP", # accepts APP, DESKTOP
4889
- # platform: "WINDOWS", # accepts WINDOWS, WINDOWS_SERVER_2016, WINDOWS_SERVER_2019, WINDOWS_SERVER_2022, AMAZON_LINUX2
5063
+ # platform: "WINDOWS", # accepts WINDOWS, WINDOWS_SERVER_2016, WINDOWS_SERVER_2019, WINDOWS_SERVER_2022, AMAZON_LINUX2, RHEL8
4890
5064
  # max_concurrent_sessions: 1,
4891
5065
  # usb_device_filter_strings: ["UsbDeviceFilterString"],
4892
5066
  # session_script_s3_location: {
@@ -4931,7 +5105,7 @@ module Aws::AppStream
4931
5105
  # resp.fleet.idle_disconnect_timeout_in_seconds #=> Integer
4932
5106
  # resp.fleet.iam_role_arn #=> String
4933
5107
  # resp.fleet.stream_view #=> String, one of "APP", "DESKTOP"
4934
- # resp.fleet.platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2"
5108
+ # resp.fleet.platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2", "RHEL8"
4935
5109
  # resp.fleet.max_concurrent_sessions #=> Integer
4936
5110
  # resp.fleet.usb_device_filter_strings #=> Array
4937
5111
  # resp.fleet.usb_device_filter_strings[0] #=> String
@@ -5119,6 +5293,93 @@ module Aws::AppStream
5119
5293
  req.send_request(options)
5120
5294
  end
5121
5295
 
5296
+ # Updates custom branding that customizes the appearance of the
5297
+ # streaming application catalog page.
5298
+ #
5299
+ # @option params [required, String] :stack_name
5300
+ # The name of the stack for the theme.
5301
+ #
5302
+ # @option params [Array<Types::ThemeFooterLink>] :footer_links
5303
+ # The links that are displayed in the footer of the streaming
5304
+ # application catalog page. These links are helpful resources for users,
5305
+ # such as the organization's IT support and product marketing sites.
5306
+ #
5307
+ # @option params [String] :title_text
5308
+ # The title that is displayed at the top of the browser tab during
5309
+ # users' application streaming sessions.
5310
+ #
5311
+ # @option params [String] :theme_styling
5312
+ # The color theme that is applied to website links, text, and buttons.
5313
+ # These colors are also applied as accents in the background for the
5314
+ # streaming application catalog page.
5315
+ #
5316
+ # @option params [Types::S3Location] :organization_logo_s3_location
5317
+ # The organization logo that appears on the streaming application
5318
+ # catalog page.
5319
+ #
5320
+ # @option params [Types::S3Location] :favicon_s3_location
5321
+ # The S3 location of the favicon. The favicon enables users to recognize
5322
+ # their application streaming site in a browser full of tabs or
5323
+ # bookmarks. It is displayed at the top of the browser tab for the
5324
+ # application streaming site during users' streaming sessions.
5325
+ #
5326
+ # @option params [String] :state
5327
+ # Specifies whether custom branding should be applied to catalog page or
5328
+ # not.
5329
+ #
5330
+ # @option params [Array<String>] :attributes_to_delete
5331
+ # The attributes to delete.
5332
+ #
5333
+ # @return [Types::UpdateThemeForStackResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5334
+ #
5335
+ # * {Types::UpdateThemeForStackResult#theme #theme} => Types::Theme
5336
+ #
5337
+ # @example Request syntax with placeholder values
5338
+ #
5339
+ # resp = client.update_theme_for_stack({
5340
+ # stack_name: "Name", # required
5341
+ # footer_links: [
5342
+ # {
5343
+ # display_name: "ThemeFooterLinkDisplayName",
5344
+ # footer_link_url: "ThemeFooterLinkURL",
5345
+ # },
5346
+ # ],
5347
+ # title_text: "ThemeTitleText",
5348
+ # theme_styling: "LIGHT_BLUE", # accepts LIGHT_BLUE, BLUE, PINK, RED
5349
+ # organization_logo_s3_location: {
5350
+ # s3_bucket: "S3Bucket", # required
5351
+ # s3_key: "S3Key",
5352
+ # },
5353
+ # favicon_s3_location: {
5354
+ # s3_bucket: "S3Bucket", # required
5355
+ # s3_key: "S3Key",
5356
+ # },
5357
+ # state: "ENABLED", # accepts ENABLED, DISABLED
5358
+ # attributes_to_delete: ["FOOTER_LINKS"], # accepts FOOTER_LINKS
5359
+ # })
5360
+ #
5361
+ # @example Response structure
5362
+ #
5363
+ # resp.theme.stack_name #=> String
5364
+ # resp.theme.state #=> String, one of "ENABLED", "DISABLED"
5365
+ # resp.theme.theme_title_text #=> String
5366
+ # resp.theme.theme_styling #=> String, one of "LIGHT_BLUE", "BLUE", "PINK", "RED"
5367
+ # resp.theme.theme_footer_links #=> Array
5368
+ # resp.theme.theme_footer_links[0].display_name #=> String
5369
+ # resp.theme.theme_footer_links[0].footer_link_url #=> String
5370
+ # resp.theme.theme_organization_logo_url #=> String
5371
+ # resp.theme.theme_favicon_url #=> String
5372
+ # resp.theme.created_time #=> Time
5373
+ #
5374
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateThemeForStack AWS API Documentation
5375
+ #
5376
+ # @overload update_theme_for_stack(params = {})
5377
+ # @param [Hash] params ({})
5378
+ def update_theme_for_stack(params = {}, options = {})
5379
+ req = build_request(:update_theme_for_stack, params)
5380
+ req.send_request(options)
5381
+ end
5382
+
5122
5383
  # @!endgroup
5123
5384
 
5124
5385
  # @param params ({})
@@ -5132,7 +5393,7 @@ module Aws::AppStream
5132
5393
  params: params,
5133
5394
  config: config)
5134
5395
  context[:gem_name] = 'aws-sdk-appstream'
5135
- context[:gem_version] = '1.92.0'
5396
+ context[:gem_version] = '1.94.0'
5136
5397
  Seahorse::Client::Request.new(handlers, context)
5137
5398
  end
5138
5399