aws-sdk-appstream 1.93.0 → 1.95.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.
@@ -1204,6 +1204,20 @@ module Aws::AppStream
1204
1204
  #
1205
1205
  # * stream.graphics.g4dn.16xlarge
1206
1206
  #
1207
+ # * stream.graphics.g5.xlarge
1208
+ #
1209
+ # * stream.graphics.g5.2xlarge
1210
+ #
1211
+ # * stream.graphics.g5.4xlarge
1212
+ #
1213
+ # * stream.graphics.g5.8xlarge
1214
+ #
1215
+ # * stream.graphics.g5.12xlarge
1216
+ #
1217
+ # * stream.graphics.g5.16xlarge
1218
+ #
1219
+ # * stream.graphics.g5.24xlarge
1220
+ #
1207
1221
  # * stream.graphics-pro.4xlarge
1208
1222
  #
1209
1223
  # * stream.graphics-pro.8xlarge
@@ -1832,6 +1846,65 @@ module Aws::AppStream
1832
1846
  include Aws::Structure
1833
1847
  end
1834
1848
 
1849
+ # @!attribute [rw] stack_name
1850
+ # The name of the stack for the theme.
1851
+ # @return [String]
1852
+ #
1853
+ # @!attribute [rw] footer_links
1854
+ # The links that are displayed in the footer of the streaming
1855
+ # application catalog page. These links are helpful resources for
1856
+ # users, such as the organization's IT support and product marketing
1857
+ # sites.
1858
+ # @return [Array<Types::ThemeFooterLink>]
1859
+ #
1860
+ # @!attribute [rw] title_text
1861
+ # The title that is displayed at the top of the browser tab during
1862
+ # users' application streaming sessions.
1863
+ # @return [String]
1864
+ #
1865
+ # @!attribute [rw] theme_styling
1866
+ # The color theme that is applied to website links, text, and buttons.
1867
+ # These colors are also applied as accents in the background for the
1868
+ # streaming application catalog page.
1869
+ # @return [String]
1870
+ #
1871
+ # @!attribute [rw] organization_logo_s3_location
1872
+ # The organization logo that appears on the streaming application
1873
+ # catalog page.
1874
+ # @return [Types::S3Location]
1875
+ #
1876
+ # @!attribute [rw] favicon_s3_location
1877
+ # The S3 location of the favicon. The favicon enables users to
1878
+ # recognize their application streaming site in a browser full of tabs
1879
+ # or bookmarks. It is displayed at the top of the browser tab for the
1880
+ # application streaming site during users' streaming sessions.
1881
+ # @return [Types::S3Location]
1882
+ #
1883
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateThemeForStackRequest AWS API Documentation
1884
+ #
1885
+ class CreateThemeForStackRequest < Struct.new(
1886
+ :stack_name,
1887
+ :footer_links,
1888
+ :title_text,
1889
+ :theme_styling,
1890
+ :organization_logo_s3_location,
1891
+ :favicon_s3_location)
1892
+ SENSITIVE = []
1893
+ include Aws::Structure
1894
+ end
1895
+
1896
+ # @!attribute [rw] theme
1897
+ # The theme object that contains the metadata of the custom branding.
1898
+ # @return [Types::Theme]
1899
+ #
1900
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateThemeForStackResult AWS API Documentation
1901
+ #
1902
+ class CreateThemeForStackResult < Struct.new(
1903
+ :theme)
1904
+ SENSITIVE = []
1905
+ include Aws::Structure
1906
+ end
1907
+
1835
1908
  # @!attribute [rw] existing_image_name
1836
1909
  # The name of the image to update.
1837
1910
  # @return [String]
@@ -2180,6 +2253,22 @@ module Aws::AppStream
2180
2253
  #
2181
2254
  class DeleteStackResult < Aws::EmptyStructure; end
2182
2255
 
2256
+ # @!attribute [rw] stack_name
2257
+ # The name of the stack for the theme.
2258
+ # @return [String]
2259
+ #
2260
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteThemeForStackRequest AWS API Documentation
2261
+ #
2262
+ class DeleteThemeForStackRequest < Struct.new(
2263
+ :stack_name)
2264
+ SENSITIVE = []
2265
+ include Aws::Structure
2266
+ end
2267
+
2268
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteThemeForStackResult AWS API Documentation
2269
+ #
2270
+ class DeleteThemeForStackResult < Aws::EmptyStructure; end
2271
+
2183
2272
  # @api private
2184
2273
  #
2185
2274
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteUsageReportSubscriptionRequest AWS API Documentation
@@ -2801,6 +2890,30 @@ module Aws::AppStream
2801
2890
  include Aws::Structure
2802
2891
  end
2803
2892
 
2893
+ # @!attribute [rw] stack_name
2894
+ # The name of the stack for the theme.
2895
+ # @return [String]
2896
+ #
2897
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeThemeForStackRequest AWS API Documentation
2898
+ #
2899
+ class DescribeThemeForStackRequest < Struct.new(
2900
+ :stack_name)
2901
+ SENSITIVE = []
2902
+ include Aws::Structure
2903
+ end
2904
+
2905
+ # @!attribute [rw] theme
2906
+ # The theme object that contains the metadata of the custom branding.
2907
+ # @return [Types::Theme]
2908
+ #
2909
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeThemeForStackResult AWS API Documentation
2910
+ #
2911
+ class DescribeThemeForStackResult < Struct.new(
2912
+ :theme)
2913
+ SENSITIVE = []
2914
+ include Aws::Structure
2915
+ end
2916
+
2804
2917
  # @!attribute [rw] max_results
2805
2918
  # The maximum size of each page of results.
2806
2919
  # @return [Integer]
@@ -3687,6 +3800,42 @@ module Aws::AppStream
3687
3800
  # created.
3688
3801
  # @return [Array<Types::ResourceError>]
3689
3802
  #
3803
+ # @!attribute [rw] latest_appstream_agent_version
3804
+ # Indicates whether the image is using the latest AppStream 2.0 agent
3805
+ # version or not.
3806
+ # @return [String]
3807
+ #
3808
+ # @!attribute [rw] supported_instance_families
3809
+ # The supported instances families that determine which image a
3810
+ # customer can use when the customer launches a fleet or image
3811
+ # builder. The following instances families are supported:
3812
+ #
3813
+ # * General Purpose
3814
+ #
3815
+ # * Compute Optimized
3816
+ #
3817
+ # * Memory Optimized
3818
+ #
3819
+ # * Graphics
3820
+ #
3821
+ # * Graphics Design
3822
+ #
3823
+ # * Graphics Pro
3824
+ #
3825
+ # * Graphics G4
3826
+ #
3827
+ # * Graphics G5
3828
+ # @return [Array<String>]
3829
+ #
3830
+ # @!attribute [rw] dynamic_app_providers_enabled
3831
+ # Indicates whether dynamic app providers are enabled within an
3832
+ # AppStream 2.0 image or not.
3833
+ # @return [String]
3834
+ #
3835
+ # @!attribute [rw] image_shared_with_others
3836
+ # Indicates whether the image is shared with another account ID.
3837
+ # @return [String]
3838
+ #
3690
3839
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Image AWS API Documentation
3691
3840
  #
3692
3841
  class Image < Struct.new(
@@ -3706,7 +3855,11 @@ module Aws::AppStream
3706
3855
  :public_base_image_released_date,
3707
3856
  :appstream_agent_version,
3708
3857
  :image_permissions,
3709
- :image_errors)
3858
+ :image_errors,
3859
+ :latest_appstream_agent_version,
3860
+ :supported_instance_families,
3861
+ :dynamic_app_providers_enabled,
3862
+ :image_shared_with_others)
3710
3863
  SENSITIVE = []
3711
3864
  include Aws::Structure
3712
3865
  end
@@ -3871,6 +4024,11 @@ module Aws::AppStream
3871
4024
  # specified endpoints.
3872
4025
  # @return [Array<Types::AccessEndpoint>]
3873
4026
  #
4027
+ # @!attribute [rw] latest_appstream_agent_version
4028
+ # Indicates whether the image builder is using the latest AppStream
4029
+ # 2.0 agent version or not.
4030
+ # @return [String]
4031
+ #
3874
4032
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/ImageBuilder AWS API Documentation
3875
4033
  #
3876
4034
  class ImageBuilder < Struct.new(
@@ -3891,7 +4049,8 @@ module Aws::AppStream
3891
4049
  :network_access_configuration,
3892
4050
  :image_builder_errors,
3893
4051
  :appstream_agent_version,
3894
- :access_endpoints)
4052
+ :access_endpoints,
4053
+ :latest_appstream_agent_version)
3895
4054
  SENSITIVE = []
3896
4055
  include Aws::Structure
3897
4056
  end
@@ -4816,6 +4975,77 @@ module Aws::AppStream
4816
4975
  #
4817
4976
  class TagResourceResponse < Aws::EmptyStructure; end
4818
4977
 
4978
+ # The custom branding theme, which might include a custom logo, website
4979
+ # links, and other branding to display to users.
4980
+ #
4981
+ # @!attribute [rw] stack_name
4982
+ # The stack that has the custom branding theme.
4983
+ # @return [String]
4984
+ #
4985
+ # @!attribute [rw] state
4986
+ # The state of the theme.
4987
+ # @return [String]
4988
+ #
4989
+ # @!attribute [rw] theme_title_text
4990
+ # The browser tab page title.
4991
+ # @return [String]
4992
+ #
4993
+ # @!attribute [rw] theme_styling
4994
+ # The color that is used for the website links, text, buttons, and
4995
+ # catalog page background.
4996
+ # @return [String]
4997
+ #
4998
+ # @!attribute [rw] theme_footer_links
4999
+ # The website links that display in the catalog page footer.
5000
+ # @return [Array<Types::ThemeFooterLink>]
5001
+ #
5002
+ # @!attribute [rw] theme_organization_logo_url
5003
+ # The URL of the logo that displays in the catalog page header.
5004
+ # @return [String]
5005
+ #
5006
+ # @!attribute [rw] theme_favicon_url
5007
+ # The URL of the icon that displays at the top of a user's browser
5008
+ # tab during streaming sessions.
5009
+ # @return [String]
5010
+ #
5011
+ # @!attribute [rw] created_time
5012
+ # The time the theme was created.
5013
+ # @return [Time]
5014
+ #
5015
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Theme AWS API Documentation
5016
+ #
5017
+ class Theme < Struct.new(
5018
+ :stack_name,
5019
+ :state,
5020
+ :theme_title_text,
5021
+ :theme_styling,
5022
+ :theme_footer_links,
5023
+ :theme_organization_logo_url,
5024
+ :theme_favicon_url,
5025
+ :created_time)
5026
+ SENSITIVE = []
5027
+ include Aws::Structure
5028
+ end
5029
+
5030
+ # The website links that display in the catalog page footer.
5031
+ #
5032
+ # @!attribute [rw] display_name
5033
+ # The name of the websites that display in the catalog page footer.
5034
+ # @return [String]
5035
+ #
5036
+ # @!attribute [rw] footer_link_url
5037
+ # The URL of the websites that display in the catalog page footer.
5038
+ # @return [String]
5039
+ #
5040
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/ThemeFooterLink AWS API Documentation
5041
+ #
5042
+ class ThemeFooterLink < Struct.new(
5043
+ :display_name,
5044
+ :footer_link_url)
5045
+ SENSITIVE = []
5046
+ include Aws::Structure
5047
+ end
5048
+
4819
5049
  # @!attribute [rw] resource_arn
4820
5050
  # The Amazon Resource Name (ARN) of the resource.
4821
5051
  # @return [String]
@@ -5504,6 +5734,76 @@ module Aws::AppStream
5504
5734
  include Aws::Structure
5505
5735
  end
5506
5736
 
5737
+ # @!attribute [rw] stack_name
5738
+ # The name of the stack for the theme.
5739
+ # @return [String]
5740
+ #
5741
+ # @!attribute [rw] footer_links
5742
+ # The links that are displayed in the footer of the streaming
5743
+ # application catalog page. These links are helpful resources for
5744
+ # users, such as the organization's IT support and product marketing
5745
+ # sites.
5746
+ # @return [Array<Types::ThemeFooterLink>]
5747
+ #
5748
+ # @!attribute [rw] title_text
5749
+ # The title that is displayed at the top of the browser tab during
5750
+ # users' application streaming sessions.
5751
+ # @return [String]
5752
+ #
5753
+ # @!attribute [rw] theme_styling
5754
+ # The color theme that is applied to website links, text, and buttons.
5755
+ # These colors are also applied as accents in the background for the
5756
+ # streaming application catalog page.
5757
+ # @return [String]
5758
+ #
5759
+ # @!attribute [rw] organization_logo_s3_location
5760
+ # The organization logo that appears on the streaming application
5761
+ # catalog page.
5762
+ # @return [Types::S3Location]
5763
+ #
5764
+ # @!attribute [rw] favicon_s3_location
5765
+ # The S3 location of the favicon. The favicon enables users to
5766
+ # recognize their application streaming site in a browser full of tabs
5767
+ # or bookmarks. It is displayed at the top of the browser tab for the
5768
+ # application streaming site during users' streaming sessions.
5769
+ # @return [Types::S3Location]
5770
+ #
5771
+ # @!attribute [rw] state
5772
+ # Specifies whether custom branding should be applied to catalog page
5773
+ # or not.
5774
+ # @return [String]
5775
+ #
5776
+ # @!attribute [rw] attributes_to_delete
5777
+ # The attributes to delete.
5778
+ # @return [Array<String>]
5779
+ #
5780
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateThemeForStackRequest AWS API Documentation
5781
+ #
5782
+ class UpdateThemeForStackRequest < Struct.new(
5783
+ :stack_name,
5784
+ :footer_links,
5785
+ :title_text,
5786
+ :theme_styling,
5787
+ :organization_logo_s3_location,
5788
+ :favicon_s3_location,
5789
+ :state,
5790
+ :attributes_to_delete)
5791
+ SENSITIVE = []
5792
+ include Aws::Structure
5793
+ end
5794
+
5795
+ # @!attribute [rw] theme
5796
+ # The theme object that contains the metadata of the custom branding.
5797
+ # @return [Types::Theme]
5798
+ #
5799
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateThemeForStackResult AWS API Documentation
5800
+ #
5801
+ class UpdateThemeForStackResult < Struct.new(
5802
+ :theme)
5803
+ SENSITIVE = []
5804
+ include Aws::Structure
5805
+ end
5806
+
5507
5807
  # Describes information about the usage report subscription.
5508
5808
  #
5509
5809
  # @!attribute [rw] s3_bucket_name
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-appstream/customizations'
53
53
  # @!group service
54
54
  module Aws::AppStream
55
55
 
56
- GEM_VERSION = '1.93.0'
56
+ GEM_VERSION = '1.95.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -51,6 +51,7 @@ module Aws
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?simple_json: bool,
53
53
  ?stub_responses: untyped,
54
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
54
55
  ?token_provider: untyped,
55
56
  ?use_dualstack_endpoint: bool,
56
57
  ?use_fips_endpoint: bool,
@@ -447,6 +448,32 @@ module Aws
447
448
  ) -> _CreateStreamingURLResponseSuccess
448
449
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStreamingURLResponseSuccess
449
450
 
451
+ interface _CreateThemeForStackResponseSuccess
452
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateThemeForStackResult]
453
+ def theme: () -> Types::Theme
454
+ end
455
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppStream/Client.html#create_theme_for_stack-instance_method
456
+ def create_theme_for_stack: (
457
+ stack_name: ::String,
458
+ ?footer_links: Array[
459
+ {
460
+ display_name: ::String?,
461
+ footer_link_url: ::String?
462
+ },
463
+ ],
464
+ title_text: ::String,
465
+ theme_styling: ("LIGHT_BLUE" | "BLUE" | "PINK" | "RED"),
466
+ organization_logo_s3_location: {
467
+ s3_bucket: ::String,
468
+ s3_key: ::String?
469
+ },
470
+ favicon_s3_location: {
471
+ s3_bucket: ::String,
472
+ s3_key: ::String?
473
+ }
474
+ ) -> _CreateThemeForStackResponseSuccess
475
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateThemeForStackResponseSuccess
476
+
450
477
  interface _CreateUpdatedImageResponseSuccess
451
478
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateUpdatedImageResult]
452
479
  def image: () -> Types::Image
@@ -580,6 +607,15 @@ module Aws
580
607
  ) -> _DeleteStackResponseSuccess
581
608
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteStackResponseSuccess
582
609
 
610
+ interface _DeleteThemeForStackResponseSuccess
611
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteThemeForStackResult]
612
+ end
613
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppStream/Client.html#delete_theme_for_stack-instance_method
614
+ def delete_theme_for_stack: (
615
+ stack_name: ::String
616
+ ) -> _DeleteThemeForStackResponseSuccess
617
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteThemeForStackResponseSuccess
618
+
583
619
  interface _DeleteUsageReportSubscriptionResponseSuccess
584
620
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteUsageReportSubscriptionResult]
585
621
  end
@@ -776,6 +812,16 @@ module Aws
776
812
  ) -> _DescribeStacksResponseSuccess
777
813
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStacksResponseSuccess
778
814
 
815
+ interface _DescribeThemeForStackResponseSuccess
816
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeThemeForStackResult]
817
+ def theme: () -> Types::Theme
818
+ end
819
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppStream/Client.html#describe_theme_for_stack-instance_method
820
+ def describe_theme_for_stack: (
821
+ stack_name: ::String
822
+ ) -> _DescribeThemeForStackResponseSuccess
823
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeThemeForStackResponseSuccess
824
+
779
825
  interface _DescribeUsageReportSubscriptionsResponseSuccess
780
826
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeUsageReportSubscriptionsResult]
781
827
  def usage_report_subscriptions: () -> ::Array[Types::UsageReportSubscription]
@@ -1200,6 +1246,34 @@ module Aws
1200
1246
  ) -> _UpdateStackResponseSuccess
1201
1247
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateStackResponseSuccess
1202
1248
 
1249
+ interface _UpdateThemeForStackResponseSuccess
1250
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateThemeForStackResult]
1251
+ def theme: () -> Types::Theme
1252
+ end
1253
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppStream/Client.html#update_theme_for_stack-instance_method
1254
+ def update_theme_for_stack: (
1255
+ stack_name: ::String,
1256
+ ?footer_links: Array[
1257
+ {
1258
+ display_name: ::String?,
1259
+ footer_link_url: ::String?
1260
+ },
1261
+ ],
1262
+ ?title_text: ::String,
1263
+ ?theme_styling: ("LIGHT_BLUE" | "BLUE" | "PINK" | "RED"),
1264
+ ?organization_logo_s3_location: {
1265
+ s3_bucket: ::String,
1266
+ s3_key: ::String?
1267
+ },
1268
+ ?favicon_s3_location: {
1269
+ s3_bucket: ::String,
1270
+ s3_key: ::String?
1271
+ },
1272
+ ?state: ("ENABLED" | "DISABLED"),
1273
+ ?attributes_to_delete: Array[("FOOTER_LINKS")]
1274
+ ) -> _UpdateThemeForStackResponseSuccess
1275
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateThemeForStackResponseSuccess
1276
+
1203
1277
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppStream/Client.html#wait_until-instance_method
1204
1278
  def wait_until: (:fleet_started waiter_name,
1205
1279
  ?names: Array[::String],
data/sig/resource.rbs CHANGED
@@ -51,6 +51,7 @@ module Aws
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?simple_json: bool,
53
53
  ?stub_responses: untyped,
54
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
54
55
  ?token_provider: untyped,
55
56
  ?use_dualstack_endpoint: bool,
56
57
  ?use_fips_endpoint: bool,
data/sig/types.rbs CHANGED
@@ -397,6 +397,21 @@ module Aws::AppStream
397
397
  SENSITIVE: []
398
398
  end
399
399
 
400
+ class CreateThemeForStackRequest
401
+ attr_accessor stack_name: ::String
402
+ attr_accessor footer_links: ::Array[Types::ThemeFooterLink]
403
+ attr_accessor title_text: ::String
404
+ attr_accessor theme_styling: ("LIGHT_BLUE" | "BLUE" | "PINK" | "RED")
405
+ attr_accessor organization_logo_s3_location: Types::S3Location
406
+ attr_accessor favicon_s3_location: Types::S3Location
407
+ SENSITIVE: []
408
+ end
409
+
410
+ class CreateThemeForStackResult
411
+ attr_accessor theme: Types::Theme
412
+ SENSITIVE: []
413
+ end
414
+
400
415
  class CreateUpdatedImageRequest
401
416
  attr_accessor existing_image_name: ::String
402
417
  attr_accessor new_image_name: ::String
@@ -520,6 +535,14 @@ module Aws::AppStream
520
535
  class DeleteStackResult < Aws::EmptyStructure
521
536
  end
522
537
 
538
+ class DeleteThemeForStackRequest
539
+ attr_accessor stack_name: ::String
540
+ SENSITIVE: []
541
+ end
542
+
543
+ class DeleteThemeForStackResult < Aws::EmptyStructure
544
+ end
545
+
523
546
  class DeleteUsageReportSubscriptionRequest < Aws::EmptyStructure
524
547
  end
525
548
 
@@ -713,6 +736,16 @@ module Aws::AppStream
713
736
  SENSITIVE: []
714
737
  end
715
738
 
739
+ class DescribeThemeForStackRequest
740
+ attr_accessor stack_name: ::String
741
+ SENSITIVE: []
742
+ end
743
+
744
+ class DescribeThemeForStackResult
745
+ attr_accessor theme: Types::Theme
746
+ SENSITIVE: []
747
+ end
748
+
716
749
  class DescribeUsageReportSubscriptionsRequest
717
750
  attr_accessor max_results: ::Integer
718
751
  attr_accessor next_token: ::String
@@ -922,6 +955,10 @@ module Aws::AppStream
922
955
  attr_accessor appstream_agent_version: ::String
923
956
  attr_accessor image_permissions: Types::ImagePermissions
924
957
  attr_accessor image_errors: ::Array[Types::ResourceError]
958
+ attr_accessor latest_appstream_agent_version: ("TRUE" | "FALSE")
959
+ attr_accessor supported_instance_families: ::Array[::String]
960
+ attr_accessor dynamic_app_providers_enabled: ("ENABLED" | "DISABLED")
961
+ attr_accessor image_shared_with_others: ("TRUE" | "FALSE")
925
962
  SENSITIVE: []
926
963
  end
927
964
 
@@ -944,6 +981,7 @@ module Aws::AppStream
944
981
  attr_accessor image_builder_errors: ::Array[Types::ResourceError]
945
982
  attr_accessor appstream_agent_version: ::String
946
983
  attr_accessor access_endpoints: ::Array[Types::AccessEndpoint]
984
+ attr_accessor latest_appstream_agent_version: ("TRUE" | "FALSE")
947
985
  SENSITIVE: []
948
986
  end
949
987
 
@@ -1230,6 +1268,24 @@ module Aws::AppStream
1230
1268
  class TagResourceResponse < Aws::EmptyStructure
1231
1269
  end
1232
1270
 
1271
+ class Theme
1272
+ attr_accessor stack_name: ::String
1273
+ attr_accessor state: ("ENABLED" | "DISABLED")
1274
+ attr_accessor theme_title_text: ::String
1275
+ attr_accessor theme_styling: ("LIGHT_BLUE" | "BLUE" | "PINK" | "RED")
1276
+ attr_accessor theme_footer_links: ::Array[Types::ThemeFooterLink]
1277
+ attr_accessor theme_organization_logo_url: ::String
1278
+ attr_accessor theme_favicon_url: ::String
1279
+ attr_accessor created_time: ::Time
1280
+ SENSITIVE: []
1281
+ end
1282
+
1283
+ class ThemeFooterLink
1284
+ attr_accessor display_name: ::String
1285
+ attr_accessor footer_link_url: ::String
1286
+ SENSITIVE: []
1287
+ end
1288
+
1233
1289
  class UntagResourceRequest
1234
1290
  attr_accessor resource_arn: ::String
1235
1291
  attr_accessor tag_keys: ::Array[::String]
@@ -1366,6 +1422,23 @@ module Aws::AppStream
1366
1422
  SENSITIVE: []
1367
1423
  end
1368
1424
 
1425
+ class UpdateThemeForStackRequest
1426
+ attr_accessor stack_name: ::String
1427
+ attr_accessor footer_links: ::Array[Types::ThemeFooterLink]
1428
+ attr_accessor title_text: ::String
1429
+ attr_accessor theme_styling: ("LIGHT_BLUE" | "BLUE" | "PINK" | "RED")
1430
+ attr_accessor organization_logo_s3_location: Types::S3Location
1431
+ attr_accessor favicon_s3_location: Types::S3Location
1432
+ attr_accessor state: ("ENABLED" | "DISABLED")
1433
+ attr_accessor attributes_to_delete: ::Array[("FOOTER_LINKS")]
1434
+ SENSITIVE: []
1435
+ end
1436
+
1437
+ class UpdateThemeForStackResult
1438
+ attr_accessor theme: Types::Theme
1439
+ SENSITIVE: []
1440
+ end
1441
+
1369
1442
  class UsageReportSubscription
1370
1443
  attr_accessor s3_bucket_name: ::String
1371
1444
  attr_accessor schedule: ("DAILY")
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appstream
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.93.0
4
+ version: 1.95.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-07-30 00:00:00.000000000 Z
11
+ date: 2024-09-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.201.0
22
+ version: 3.203.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.201.0
32
+ version: 3.203.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement