aws-sdk-appstream 1.129.0 → 1.130.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: 22ac223367427d984e450ab2ae1e050c2a112bf2e4490f83fa7b382a58f4e96f
4
- data.tar.gz: 699386c5c7b104402ca6e7379a342ad71dfcaf3a2334d54cf116f0760f608519
3
+ metadata.gz: f5103c3fa612becad412d4884ef50383325779713ab4531de89e0c2d2618597d
4
+ data.tar.gz: 9fe9ffdc7267d8c4dc00476d425d317650658ef954320d6c816a2d32c363fc53
5
5
  SHA512:
6
- metadata.gz: cf0180dfe61dbeb78f977fc952c621c55a7be78f2773d49e46148192bca98ad3068ac0c1c4777fb0dd9c38f35a5f840814eba8b8fc3a39173b78edb12daeb8ba
7
- data.tar.gz: 987211d3e6abdef924b817e823eb3e95e92ce2fd75a3497d2180b3c7c65675e5e0b805370f7905a03f38936071c53be26908124b199be9839f0512527eade011
6
+ metadata.gz: ebf0643008138c350c96cfb16c2bcd42f44356765efe7684569ceccf1612dab49c33f503a12a5118c1340dc80016a83f99a24259794f545a33238e33fee0ffa9
7
+ data.tar.gz: 5091b75268259a0f0dc966ab2688bbb392eaf42328a5932c42bf3f54f853988dce1645e5bc89b6612c945ac8ed31d379e51fe14b9f5cf22fc663dedbd58185e1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.130.0 (2026-03-30)
5
+ ------------------
6
+
7
+ * Feature - Add support for URL Redirection
8
+
4
9
  1.129.0 (2026-03-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.129.0
1
+ 1.130.0
@@ -2441,6 +2441,11 @@ module Aws::AppStream
2441
2441
  # The streaming protocol you want your stack to prefer. This can be UDP
2442
2442
  # or TCP. Currently, UDP is only supported in the Windows native client.
2443
2443
  #
2444
+ # @option params [Types::ContentRedirection] :content_redirection
2445
+ # Configuration for bidirectional URL redirection between the streaming
2446
+ # session and the local client. Use HostToClient to redirect URLs from
2447
+ # the remote desktop to the local browser.
2448
+ #
2444
2449
  # @return [Types::CreateStackResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2445
2450
  #
2446
2451
  # * {Types::CreateStackResult#stack #stack} => Types::Stack
@@ -2485,6 +2490,13 @@ module Aws::AppStream
2485
2490
  # streaming_experience_settings: {
2486
2491
  # preferred_protocol: "TCP", # accepts TCP, UDP
2487
2492
  # },
2493
+ # content_redirection: {
2494
+ # host_to_client: {
2495
+ # enabled: false, # required
2496
+ # allowed_urls: ["UrlPattern"],
2497
+ # denied_urls: ["UrlPattern"],
2498
+ # },
2499
+ # },
2488
2500
  # })
2489
2501
  #
2490
2502
  # @example Response structure
@@ -2519,6 +2531,11 @@ module Aws::AppStream
2519
2531
  # resp.stack.embed_host_domains #=> Array
2520
2532
  # resp.stack.embed_host_domains[0] #=> String
2521
2533
  # resp.stack.streaming_experience_settings.preferred_protocol #=> String, one of "TCP", "UDP"
2534
+ # resp.stack.content_redirection.host_to_client.enabled #=> Boolean
2535
+ # resp.stack.content_redirection.host_to_client.allowed_urls #=> Array
2536
+ # resp.stack.content_redirection.host_to_client.allowed_urls[0] #=> String
2537
+ # resp.stack.content_redirection.host_to_client.denied_urls #=> Array
2538
+ # resp.stack.content_redirection.host_to_client.denied_urls[0] #=> String
2522
2539
  #
2523
2540
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateStack AWS API Documentation
2524
2541
  #
@@ -4202,6 +4219,11 @@ module Aws::AppStream
4202
4219
  # resp.stacks[0].embed_host_domains #=> Array
4203
4220
  # resp.stacks[0].embed_host_domains[0] #=> String
4204
4221
  # resp.stacks[0].streaming_experience_settings.preferred_protocol #=> String, one of "TCP", "UDP"
4222
+ # resp.stacks[0].content_redirection.host_to_client.enabled #=> Boolean
4223
+ # resp.stacks[0].content_redirection.host_to_client.allowed_urls #=> Array
4224
+ # resp.stacks[0].content_redirection.host_to_client.allowed_urls[0] #=> String
4225
+ # resp.stacks[0].content_redirection.host_to_client.denied_urls #=> Array
4226
+ # resp.stacks[0].content_redirection.host_to_client.denied_urls[0] #=> String
4205
4227
  # resp.next_token #=> String
4206
4228
  #
4207
4229
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeStacks AWS API Documentation
@@ -6172,7 +6194,7 @@ module Aws::AppStream
6172
6194
  # delete_storage_connectors: false,
6173
6195
  # redirect_url: "RedirectURL",
6174
6196
  # feedback_url: "FeedbackURL",
6175
- # attributes_to_delete: ["STORAGE_CONNECTORS"], # accepts STORAGE_CONNECTORS, STORAGE_CONNECTOR_HOMEFOLDERS, STORAGE_CONNECTOR_GOOGLE_DRIVE, STORAGE_CONNECTOR_ONE_DRIVE, REDIRECT_URL, FEEDBACK_URL, THEME_NAME, USER_SETTINGS, EMBED_HOST_DOMAINS, IAM_ROLE_ARN, ACCESS_ENDPOINTS, STREAMING_EXPERIENCE_SETTINGS
6197
+ # attributes_to_delete: ["STORAGE_CONNECTORS"], # accepts STORAGE_CONNECTORS, STORAGE_CONNECTOR_HOMEFOLDERS, STORAGE_CONNECTOR_GOOGLE_DRIVE, STORAGE_CONNECTOR_ONE_DRIVE, REDIRECT_URL, FEEDBACK_URL, THEME_NAME, USER_SETTINGS, EMBED_HOST_DOMAINS, IAM_ROLE_ARN, ACCESS_ENDPOINTS, STREAMING_EXPERIENCE_SETTINGS, CONTENT_REDIRECTION
6176
6198
  # user_settings: [
6177
6199
  # {
6178
6200
  # action: "CLIPBOARD_COPY_FROM_LOCAL_DEVICE", # required, accepts CLIPBOARD_COPY_FROM_LOCAL_DEVICE, CLIPBOARD_COPY_TO_LOCAL_DEVICE, FILE_UPLOAD, FILE_DOWNLOAD, PRINTING_TO_LOCAL_DEVICE, DOMAIN_PASSWORD_SIGNIN, DOMAIN_SMART_CARD_SIGNIN, AUTO_TIME_ZONE_REDIRECTION
@@ -6228,6 +6250,11 @@ module Aws::AppStream
6228
6250
  # resp.stack.embed_host_domains #=> Array
6229
6251
  # resp.stack.embed_host_domains[0] #=> String
6230
6252
  # resp.stack.streaming_experience_settings.preferred_protocol #=> String, one of "TCP", "UDP"
6253
+ # resp.stack.content_redirection.host_to_client.enabled #=> Boolean
6254
+ # resp.stack.content_redirection.host_to_client.allowed_urls #=> Array
6255
+ # resp.stack.content_redirection.host_to_client.allowed_urls[0] #=> String
6256
+ # resp.stack.content_redirection.host_to_client.denied_urls #=> Array
6257
+ # resp.stack.content_redirection.host_to_client.denied_urls[0] #=> String
6231
6258
  #
6232
6259
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateStack AWS API Documentation
6233
6260
  #
@@ -6343,7 +6370,7 @@ module Aws::AppStream
6343
6370
  tracer: tracer
6344
6371
  )
6345
6372
  context[:gem_name] = 'aws-sdk-appstream'
6346
- context[:gem_version] = '1.129.0'
6373
+ context[:gem_version] = '1.130.0'
6347
6374
  Seahorse::Client::Request.new(handlers, context)
6348
6375
  end
6349
6376
 
@@ -77,6 +77,7 @@ module Aws::AppStream
77
77
  ComputeCapacity = Shapes::StructureShape.new(name: 'ComputeCapacity')
78
78
  ComputeCapacityStatus = Shapes::StructureShape.new(name: 'ComputeCapacityStatus')
79
79
  ConcurrentModificationException = Shapes::StructureShape.new(name: 'ConcurrentModificationException')
80
+ ContentRedirection = Shapes::StructureShape.new(name: 'ContentRedirection')
80
81
  CopyImageRequest = Shapes::StructureShape.new(name: 'CopyImageRequest')
81
82
  CopyImageResponse = Shapes::StructureShape.new(name: 'CopyImageResponse')
82
83
  CreateAppBlockBuilderRequest = Shapes::StructureShape.new(name: 'CreateAppBlockBuilderRequest')
@@ -383,6 +384,9 @@ module Aws::AppStream
383
384
  UpdateStackResult = Shapes::StructureShape.new(name: 'UpdateStackResult')
384
385
  UpdateThemeForStackRequest = Shapes::StructureShape.new(name: 'UpdateThemeForStackRequest')
385
386
  UpdateThemeForStackResult = Shapes::StructureShape.new(name: 'UpdateThemeForStackResult')
387
+ UrlPattern = Shapes::StringShape.new(name: 'UrlPattern')
388
+ UrlPatternList = Shapes::ListShape.new(name: 'UrlPatternList')
389
+ UrlRedirectionConfig = Shapes::StructureShape.new(name: 'UrlRedirectionConfig')
386
390
  UsageReportExecutionErrorCode = Shapes::StringShape.new(name: 'UsageReportExecutionErrorCode')
387
391
  UsageReportSchedule = Shapes::StringShape.new(name: 'UsageReportSchedule')
388
392
  UsageReportSubscription = Shapes::StructureShape.new(name: 'UsageReportSubscription')
@@ -585,6 +589,9 @@ module Aws::AppStream
585
589
  ConcurrentModificationException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
586
590
  ConcurrentModificationException.struct_class = Types::ConcurrentModificationException
587
591
 
592
+ ContentRedirection.add_member(:host_to_client, Shapes::ShapeRef.new(shape: UrlRedirectionConfig, location_name: "HostToClient"))
593
+ ContentRedirection.struct_class = Types::ContentRedirection
594
+
588
595
  CopyImageRequest.add_member(:source_image_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "SourceImageName"))
589
596
  CopyImageRequest.add_member(:destination_image_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "DestinationImageName"))
590
597
  CopyImageRequest.add_member(:destination_region, Shapes::ShapeRef.new(shape: RegionName, required: true, location_name: "DestinationRegion"))
@@ -762,6 +769,7 @@ module Aws::AppStream
762
769
  CreateStackRequest.add_member(:access_endpoints, Shapes::ShapeRef.new(shape: AccessEndpointList, location_name: "AccessEndpoints"))
763
770
  CreateStackRequest.add_member(:embed_host_domains, Shapes::ShapeRef.new(shape: EmbedHostDomains, location_name: "EmbedHostDomains"))
764
771
  CreateStackRequest.add_member(:streaming_experience_settings, Shapes::ShapeRef.new(shape: StreamingExperienceSettings, location_name: "StreamingExperienceSettings"))
772
+ CreateStackRequest.add_member(:content_redirection, Shapes::ShapeRef.new(shape: ContentRedirection, location_name: "ContentRedirection"))
765
773
  CreateStackRequest.struct_class = Types::CreateStackRequest
766
774
 
767
775
  CreateStackResult.add_member(:stack, Shapes::ShapeRef.new(shape: Stack, location_name: "Stack"))
@@ -1459,6 +1467,7 @@ module Aws::AppStream
1459
1467
  Stack.add_member(:access_endpoints, Shapes::ShapeRef.new(shape: AccessEndpointList, location_name: "AccessEndpoints"))
1460
1468
  Stack.add_member(:embed_host_domains, Shapes::ShapeRef.new(shape: EmbedHostDomains, location_name: "EmbedHostDomains"))
1461
1469
  Stack.add_member(:streaming_experience_settings, Shapes::ShapeRef.new(shape: StreamingExperienceSettings, location_name: "StreamingExperienceSettings"))
1470
+ Stack.add_member(:content_redirection, Shapes::ShapeRef.new(shape: ContentRedirection, location_name: "ContentRedirection"))
1462
1471
  Stack.struct_class = Types::Stack
1463
1472
 
1464
1473
  StackAttributes.member = Shapes::ShapeRef.new(shape: StackAttribute)
@@ -1678,6 +1687,13 @@ module Aws::AppStream
1678
1687
  UpdateThemeForStackResult.add_member(:theme, Shapes::ShapeRef.new(shape: Theme, location_name: "Theme"))
1679
1688
  UpdateThemeForStackResult.struct_class = Types::UpdateThemeForStackResult
1680
1689
 
1690
+ UrlPatternList.member = Shapes::ShapeRef.new(shape: UrlPattern)
1691
+
1692
+ UrlRedirectionConfig.add_member(:enabled, Shapes::ShapeRef.new(shape: BooleanObject, required: true, location_name: "Enabled"))
1693
+ UrlRedirectionConfig.add_member(:allowed_urls, Shapes::ShapeRef.new(shape: UrlPatternList, location_name: "AllowedUrls"))
1694
+ UrlRedirectionConfig.add_member(:denied_urls, Shapes::ShapeRef.new(shape: UrlPatternList, location_name: "DeniedUrls"))
1695
+ UrlRedirectionConfig.struct_class = Types::UrlRedirectionConfig
1696
+
1681
1697
  UsageReportSubscription.add_member(:s3_bucket_name, Shapes::ShapeRef.new(shape: String, location_name: "S3BucketName"))
1682
1698
  UsageReportSubscription.add_member(:schedule, Shapes::ShapeRef.new(shape: UsageReportSchedule, location_name: "Schedule"))
1683
1699
  UsageReportSubscription.add_member(:last_generated_report_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastGeneratedReportDate"))
@@ -880,6 +880,23 @@ module Aws::AppStream
880
880
  include Aws::Structure
881
881
  end
882
882
 
883
+ # Configuration for bidirectional URL redirection between the streaming
884
+ # session and the local client. Use HostToClient to redirect URLs from
885
+ # the remote desktop to the local browser.
886
+ #
887
+ # @!attribute [rw] host_to_client
888
+ # Configuration for redirecting URLs from the remote desktop to the
889
+ # local client browser.
890
+ # @return [Types::UrlRedirectionConfig]
891
+ #
892
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/ContentRedirection AWS API Documentation
893
+ #
894
+ class ContentRedirection < Struct.new(
895
+ :host_to_client)
896
+ SENSITIVE = []
897
+ include Aws::Structure
898
+ end
899
+
883
900
  # @!attribute [rw] source_image_name
884
901
  # The name of the image to copy.
885
902
  # @return [String]
@@ -2278,6 +2295,12 @@ module Aws::AppStream
2278
2295
  # client.
2279
2296
  # @return [Types::StreamingExperienceSettings]
2280
2297
  #
2298
+ # @!attribute [rw] content_redirection
2299
+ # Configuration for bidirectional URL redirection between the
2300
+ # streaming session and the local client. Use HostToClient to redirect
2301
+ # URLs from the remote desktop to the local browser.
2302
+ # @return [Types::ContentRedirection]
2303
+ #
2281
2304
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateStackRequest AWS API Documentation
2282
2305
  #
2283
2306
  class CreateStackRequest < Struct.new(
@@ -2292,7 +2315,8 @@ module Aws::AppStream
2292
2315
  :tags,
2293
2316
  :access_endpoints,
2294
2317
  :embed_host_domains,
2295
- :streaming_experience_settings)
2318
+ :streaming_experience_settings,
2319
+ :content_redirection)
2296
2320
  SENSITIVE = []
2297
2321
  include Aws::Structure
2298
2322
  end
@@ -5787,6 +5811,12 @@ module Aws::AppStream
5787
5811
  # client.
5788
5812
  # @return [Types::StreamingExperienceSettings]
5789
5813
  #
5814
+ # @!attribute [rw] content_redirection
5815
+ # Configuration for bidirectional URL redirection between the
5816
+ # streaming session and the local client. Use HostToClient to redirect
5817
+ # URLs from the remote desktop to the local browser.
5818
+ # @return [Types::ContentRedirection]
5819
+ #
5790
5820
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Stack AWS API Documentation
5791
5821
  #
5792
5822
  class Stack < Struct.new(
@@ -5803,7 +5833,8 @@ module Aws::AppStream
5803
5833
  :application_settings,
5804
5834
  :access_endpoints,
5805
5835
  :embed_host_domains,
5806
- :streaming_experience_settings)
5836
+ :streaming_experience_settings,
5837
+ :content_redirection)
5807
5838
  SENSITIVE = []
5808
5839
  include Aws::Structure
5809
5840
  end
@@ -6944,6 +6975,36 @@ module Aws::AppStream
6944
6975
  include Aws::Structure
6945
6976
  end
6946
6977
 
6978
+ # Configuration for URL redirection in a specific direction
6979
+ # (host-to-client or client-to-host). When enabled, URLs matching the
6980
+ # allowed or denied patterns are redirected accordingly. The denied list
6981
+ # takes precedence over the allowed list.
6982
+ #
6983
+ # @!attribute [rw] enabled
6984
+ # Whether URL redirection is enabled for this direction.
6985
+ # @return [Boolean]
6986
+ #
6987
+ # @!attribute [rw] allowed_urls
6988
+ # List of URL patterns that are allowed to be redirected. URLs
6989
+ # matching these patterns will be redirected unless they also match a
6990
+ # pattern in the denied list.
6991
+ # @return [Array<String>]
6992
+ #
6993
+ # @!attribute [rw] denied_urls
6994
+ # List of URL patterns that are denied from redirection. This list
6995
+ # takes precedence over the allowed list.
6996
+ # @return [Array<String>]
6997
+ #
6998
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UrlRedirectionConfig AWS API Documentation
6999
+ #
7000
+ class UrlRedirectionConfig < Struct.new(
7001
+ :enabled,
7002
+ :allowed_urls,
7003
+ :denied_urls)
7004
+ SENSITIVE = []
7005
+ include Aws::Structure
7006
+ end
7007
+
6947
7008
  # Describes information about the usage report subscription.
6948
7009
  #
6949
7010
  # @!attribute [rw] s3_bucket_name
@@ -55,7 +55,7 @@ module Aws::AppStream
55
55
  autoload :EndpointProvider, 'aws-sdk-appstream/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-appstream/endpoints'
57
57
 
58
- GEM_VERSION = '1.129.0'
58
+ GEM_VERSION = '1.130.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -499,6 +499,13 @@ module Aws
499
499
  ?embed_host_domains: Array[::String],
500
500
  ?streaming_experience_settings: {
501
501
  preferred_protocol: ("TCP" | "UDP")?
502
+ },
503
+ ?content_redirection: {
504
+ host_to_client: {
505
+ enabled: bool,
506
+ allowed_urls: Array[::String]?,
507
+ denied_urls: Array[::String]?
508
+ }?
502
509
  }
503
510
  ) -> _CreateStackResponseSuccess
504
511
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStackResponseSuccess
@@ -1373,7 +1380,7 @@ module Aws
1373
1380
  ?delete_storage_connectors: bool,
1374
1381
  ?redirect_url: ::String,
1375
1382
  ?feedback_url: ::String,
1376
- ?attributes_to_delete: Array[("STORAGE_CONNECTORS" | "STORAGE_CONNECTOR_HOMEFOLDERS" | "STORAGE_CONNECTOR_GOOGLE_DRIVE" | "STORAGE_CONNECTOR_ONE_DRIVE" | "REDIRECT_URL" | "FEEDBACK_URL" | "THEME_NAME" | "USER_SETTINGS" | "EMBED_HOST_DOMAINS" | "IAM_ROLE_ARN" | "ACCESS_ENDPOINTS" | "STREAMING_EXPERIENCE_SETTINGS")],
1383
+ ?attributes_to_delete: Array[("STORAGE_CONNECTORS" | "STORAGE_CONNECTOR_HOMEFOLDERS" | "STORAGE_CONNECTOR_GOOGLE_DRIVE" | "STORAGE_CONNECTOR_ONE_DRIVE" | "REDIRECT_URL" | "FEEDBACK_URL" | "THEME_NAME" | "USER_SETTINGS" | "EMBED_HOST_DOMAINS" | "IAM_ROLE_ARN" | "ACCESS_ENDPOINTS" | "STREAMING_EXPERIENCE_SETTINGS" | "CONTENT_REDIRECTION")],
1377
1384
  ?user_settings: Array[
1378
1385
  {
1379
1386
  action: ("CLIPBOARD_COPY_FROM_LOCAL_DEVICE" | "CLIPBOARD_COPY_TO_LOCAL_DEVICE" | "FILE_UPLOAD" | "FILE_DOWNLOAD" | "PRINTING_TO_LOCAL_DEVICE" | "DOMAIN_PASSWORD_SIGNIN" | "DOMAIN_SMART_CARD_SIGNIN" | "AUTO_TIME_ZONE_REDIRECTION"),
data/sig/types.rbs CHANGED
@@ -219,6 +219,11 @@ module Aws::AppStream
219
219
  SENSITIVE: []
220
220
  end
221
221
 
222
+ class ContentRedirection
223
+ attr_accessor host_to_client: Types::UrlRedirectionConfig
224
+ SENSITIVE: []
225
+ end
226
+
222
227
  class CopyImageRequest
223
228
  attr_accessor source_image_name: ::String
224
229
  attr_accessor destination_image_name: ::String
@@ -445,6 +450,7 @@ module Aws::AppStream
445
450
  attr_accessor access_endpoints: ::Array[Types::AccessEndpoint]
446
451
  attr_accessor embed_host_domains: ::Array[::String]
447
452
  attr_accessor streaming_experience_settings: Types::StreamingExperienceSettings
453
+ attr_accessor content_redirection: Types::ContentRedirection
448
454
  SENSITIVE: []
449
455
  end
450
456
 
@@ -1355,6 +1361,7 @@ module Aws::AppStream
1355
1361
  attr_accessor access_endpoints: ::Array[Types::AccessEndpoint]
1356
1362
  attr_accessor embed_host_domains: ::Array[::String]
1357
1363
  attr_accessor streaming_experience_settings: Types::StreamingExperienceSettings
1364
+ attr_accessor content_redirection: Types::ContentRedirection
1358
1365
  SENSITIVE: []
1359
1366
  end
1360
1367
 
@@ -1595,7 +1602,7 @@ module Aws::AppStream
1595
1602
  attr_accessor delete_storage_connectors: bool
1596
1603
  attr_accessor redirect_url: ::String
1597
1604
  attr_accessor feedback_url: ::String
1598
- attr_accessor attributes_to_delete: ::Array[("STORAGE_CONNECTORS" | "STORAGE_CONNECTOR_HOMEFOLDERS" | "STORAGE_CONNECTOR_GOOGLE_DRIVE" | "STORAGE_CONNECTOR_ONE_DRIVE" | "REDIRECT_URL" | "FEEDBACK_URL" | "THEME_NAME" | "USER_SETTINGS" | "EMBED_HOST_DOMAINS" | "IAM_ROLE_ARN" | "ACCESS_ENDPOINTS" | "STREAMING_EXPERIENCE_SETTINGS")]
1605
+ attr_accessor attributes_to_delete: ::Array[("STORAGE_CONNECTORS" | "STORAGE_CONNECTOR_HOMEFOLDERS" | "STORAGE_CONNECTOR_GOOGLE_DRIVE" | "STORAGE_CONNECTOR_ONE_DRIVE" | "REDIRECT_URL" | "FEEDBACK_URL" | "THEME_NAME" | "USER_SETTINGS" | "EMBED_HOST_DOMAINS" | "IAM_ROLE_ARN" | "ACCESS_ENDPOINTS" | "STREAMING_EXPERIENCE_SETTINGS" | "CONTENT_REDIRECTION")]
1599
1606
  attr_accessor user_settings: ::Array[Types::UserSetting]
1600
1607
  attr_accessor application_settings: Types::ApplicationSettings
1601
1608
  attr_accessor access_endpoints: ::Array[Types::AccessEndpoint]
@@ -1626,6 +1633,13 @@ module Aws::AppStream
1626
1633
  SENSITIVE: []
1627
1634
  end
1628
1635
 
1636
+ class UrlRedirectionConfig
1637
+ attr_accessor enabled: bool
1638
+ attr_accessor allowed_urls: ::Array[::String]
1639
+ attr_accessor denied_urls: ::Array[::String]
1640
+ SENSITIVE: []
1641
+ end
1642
+
1629
1643
  class UsageReportSubscription
1630
1644
  attr_accessor s3_bucket_name: ::String
1631
1645
  attr_accessor schedule: ("DAILY")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appstream
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.129.0
4
+ version: 1.130.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services