aws-sdk-appstream 1.132.0 → 1.133.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appstream/client.rb +56 -2
- data/lib/aws-sdk-appstream/client_api.rb +31 -0
- data/lib/aws-sdk-appstream/types.rb +123 -3
- data/lib/aws-sdk-appstream.rb +1 -1
- data/sig/client.rbs +25 -1
- data/sig/types.rbs +28 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cdaeb53d54a3919626a8bbe38075e44979d690118e7983c7a4f340eba7cd65e0
|
|
4
|
+
data.tar.gz: 35729a84529711c1c90877b3255554c0fe2db128d3284db7de64bed64b572345
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: de27379a6a66c3d68e6b7b2ee3957347467028ce10168ac67e9ed8e4e134e8c25b0c9aea9628d794cc172a30461eecff9783027710434598a4f07b30d57b679b
|
|
7
|
+
data.tar.gz: fb73dd97e190504bee4084a75e5a09579161df578b4409414116ce84c757699af1ba8f7bcc566746a08eccaa5c1818be572bffdb511507bedf1540a3d4fac40d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.133.0 (2026-05-01)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon WorkSpaces Applications now enables AI agents to securely operate desktop applications. Administrators configure stacks to provide agents access to WorkSpaces. Agents can click, type, and take screenshots. Agents authenticate with AWS IAM credentials with activity logged in AWS CloudTrail.
|
|
8
|
+
|
|
4
9
|
1.132.0 (2026-04-16)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.133.0
|
|
@@ -2449,6 +2449,10 @@ module Aws::AppStream
|
|
|
2449
2449
|
# session and the local client. Use HostToClient to redirect URLs from
|
|
2450
2450
|
# the remote desktop to the local browser.
|
|
2451
2451
|
#
|
|
2452
|
+
# @option params [Types::AgentAccessConfig] :agent_access_config
|
|
2453
|
+
# The configuration for agent access on the stack. If specified, agent
|
|
2454
|
+
# access is enabled for the stack.
|
|
2455
|
+
#
|
|
2452
2456
|
# @return [Types::CreateStackResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2453
2457
|
#
|
|
2454
2458
|
# * {Types::CreateStackResult#stack #stack} => Types::Stack
|
|
@@ -2500,6 +2504,18 @@ module Aws::AppStream
|
|
|
2500
2504
|
# denied_urls: ["UrlPattern"],
|
|
2501
2505
|
# },
|
|
2502
2506
|
# },
|
|
2507
|
+
# agent_access_config: {
|
|
2508
|
+
# settings: [ # required
|
|
2509
|
+
# {
|
|
2510
|
+
# agent_action: "COMPUTER_VISION", # required, accepts COMPUTER_VISION, COMPUTER_INPUT
|
|
2511
|
+
# permission: "ENABLED", # required, accepts ENABLED, DISABLED
|
|
2512
|
+
# },
|
|
2513
|
+
# ],
|
|
2514
|
+
# s3_bucket_arn: "S3BucketArn",
|
|
2515
|
+
# screenshots_upload_enabled: false,
|
|
2516
|
+
# screen_resolution: "W_1280xH_720", # required, accepts W_1280xH_720
|
|
2517
|
+
# screen_image_format: "PNG", # required, accepts PNG, JPEG
|
|
2518
|
+
# },
|
|
2503
2519
|
# })
|
|
2504
2520
|
#
|
|
2505
2521
|
# @example Response structure
|
|
@@ -2539,6 +2555,13 @@ module Aws::AppStream
|
|
|
2539
2555
|
# resp.stack.content_redirection.host_to_client.allowed_urls[0] #=> String
|
|
2540
2556
|
# resp.stack.content_redirection.host_to_client.denied_urls #=> Array
|
|
2541
2557
|
# resp.stack.content_redirection.host_to_client.denied_urls[0] #=> String
|
|
2558
|
+
# resp.stack.agent_access_config.settings #=> Array
|
|
2559
|
+
# resp.stack.agent_access_config.settings[0].agent_action #=> String, one of "COMPUTER_VISION", "COMPUTER_INPUT"
|
|
2560
|
+
# resp.stack.agent_access_config.settings[0].permission #=> String, one of "ENABLED", "DISABLED"
|
|
2561
|
+
# resp.stack.agent_access_config.s3_bucket_arn #=> String
|
|
2562
|
+
# resp.stack.agent_access_config.screenshots_upload_enabled #=> Boolean
|
|
2563
|
+
# resp.stack.agent_access_config.screen_resolution #=> String, one of "W_1280xH_720"
|
|
2564
|
+
# resp.stack.agent_access_config.screen_image_format #=> String, one of "PNG", "JPEG"
|
|
2542
2565
|
#
|
|
2543
2566
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateStack AWS API Documentation
|
|
2544
2567
|
#
|
|
@@ -4231,6 +4254,13 @@ module Aws::AppStream
|
|
|
4231
4254
|
# resp.stacks[0].content_redirection.host_to_client.allowed_urls[0] #=> String
|
|
4232
4255
|
# resp.stacks[0].content_redirection.host_to_client.denied_urls #=> Array
|
|
4233
4256
|
# resp.stacks[0].content_redirection.host_to_client.denied_urls[0] #=> String
|
|
4257
|
+
# resp.stacks[0].agent_access_config.settings #=> Array
|
|
4258
|
+
# resp.stacks[0].agent_access_config.settings[0].agent_action #=> String, one of "COMPUTER_VISION", "COMPUTER_INPUT"
|
|
4259
|
+
# resp.stacks[0].agent_access_config.settings[0].permission #=> String, one of "ENABLED", "DISABLED"
|
|
4260
|
+
# resp.stacks[0].agent_access_config.s3_bucket_arn #=> String
|
|
4261
|
+
# resp.stacks[0].agent_access_config.screenshots_upload_enabled #=> Boolean
|
|
4262
|
+
# resp.stacks[0].agent_access_config.screen_resolution #=> String, one of "W_1280xH_720"
|
|
4263
|
+
# resp.stacks[0].agent_access_config.screen_image_format #=> String, one of "PNG", "JPEG"
|
|
4234
4264
|
# resp.next_token #=> String
|
|
4235
4265
|
#
|
|
4236
4266
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeStacks AWS API Documentation
|
|
@@ -6213,6 +6243,11 @@ module Aws::AppStream
|
|
|
6213
6243
|
# session and the local client. Use HostToClient to redirect URLs from
|
|
6214
6244
|
# the remote desktop to the local browser.
|
|
6215
6245
|
#
|
|
6246
|
+
# @option params [Types::AgentAccessConfigForUpdate] :agent_access_config
|
|
6247
|
+
# The configuration for agent access on the stack. Specify this to
|
|
6248
|
+
# update agent access settings. To remove agent access, use
|
|
6249
|
+
# AttributesToDelete with the AGENT\_ACCESS\_CONFIG value.
|
|
6250
|
+
#
|
|
6216
6251
|
# @return [Types::UpdateStackResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6217
6252
|
#
|
|
6218
6253
|
# * {Types::UpdateStackResult#stack #stack} => Types::Stack
|
|
@@ -6234,7 +6269,7 @@ module Aws::AppStream
|
|
|
6234
6269
|
# delete_storage_connectors: false,
|
|
6235
6270
|
# redirect_url: "RedirectURL",
|
|
6236
6271
|
# feedback_url: "FeedbackURL",
|
|
6237
|
-
# 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
|
|
6272
|
+
# 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, AGENT_ACCESS_CONFIG
|
|
6238
6273
|
# user_settings: [
|
|
6239
6274
|
# {
|
|
6240
6275
|
# 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
|
|
@@ -6263,6 +6298,18 @@ module Aws::AppStream
|
|
|
6263
6298
|
# denied_urls: ["UrlPattern"],
|
|
6264
6299
|
# },
|
|
6265
6300
|
# },
|
|
6301
|
+
# agent_access_config: {
|
|
6302
|
+
# settings: [
|
|
6303
|
+
# {
|
|
6304
|
+
# agent_action: "COMPUTER_VISION", # required, accepts COMPUTER_VISION, COMPUTER_INPUT
|
|
6305
|
+
# permission: "ENABLED", # required, accepts ENABLED, DISABLED
|
|
6306
|
+
# },
|
|
6307
|
+
# ],
|
|
6308
|
+
# s3_bucket_arn: "S3BucketArn",
|
|
6309
|
+
# screenshots_upload_enabled: false,
|
|
6310
|
+
# screen_resolution: "W_1280xH_720", # accepts W_1280xH_720
|
|
6311
|
+
# screen_image_format: "PNG", # accepts PNG, JPEG
|
|
6312
|
+
# },
|
|
6266
6313
|
# })
|
|
6267
6314
|
#
|
|
6268
6315
|
# @example Response structure
|
|
@@ -6302,6 +6349,13 @@ module Aws::AppStream
|
|
|
6302
6349
|
# resp.stack.content_redirection.host_to_client.allowed_urls[0] #=> String
|
|
6303
6350
|
# resp.stack.content_redirection.host_to_client.denied_urls #=> Array
|
|
6304
6351
|
# resp.stack.content_redirection.host_to_client.denied_urls[0] #=> String
|
|
6352
|
+
# resp.stack.agent_access_config.settings #=> Array
|
|
6353
|
+
# resp.stack.agent_access_config.settings[0].agent_action #=> String, one of "COMPUTER_VISION", "COMPUTER_INPUT"
|
|
6354
|
+
# resp.stack.agent_access_config.settings[0].permission #=> String, one of "ENABLED", "DISABLED"
|
|
6355
|
+
# resp.stack.agent_access_config.s3_bucket_arn #=> String
|
|
6356
|
+
# resp.stack.agent_access_config.screenshots_upload_enabled #=> Boolean
|
|
6357
|
+
# resp.stack.agent_access_config.screen_resolution #=> String, one of "W_1280xH_720"
|
|
6358
|
+
# resp.stack.agent_access_config.screen_image_format #=> String, one of "PNG", "JPEG"
|
|
6305
6359
|
#
|
|
6306
6360
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateStack AWS API Documentation
|
|
6307
6361
|
#
|
|
@@ -6417,7 +6471,7 @@ module Aws::AppStream
|
|
|
6417
6471
|
tracer: tracer
|
|
6418
6472
|
)
|
|
6419
6473
|
context[:gem_name] = 'aws-sdk-appstream'
|
|
6420
|
-
context[:gem_version] = '1.
|
|
6474
|
+
context[:gem_version] = '1.133.0'
|
|
6421
6475
|
Seahorse::Client::Request.new(handlers, context)
|
|
6422
6476
|
end
|
|
6423
6477
|
|
|
@@ -22,6 +22,11 @@ module Aws::AppStream
|
|
|
22
22
|
Action = Shapes::StringShape.new(name: 'Action')
|
|
23
23
|
AdminAppLicenseUsageList = Shapes::ListShape.new(name: 'AdminAppLicenseUsageList')
|
|
24
24
|
AdminAppLicenseUsageRecord = Shapes::StructureShape.new(name: 'AdminAppLicenseUsageRecord')
|
|
25
|
+
AgentAccessConfig = Shapes::StructureShape.new(name: 'AgentAccessConfig')
|
|
26
|
+
AgentAccessConfigForUpdate = Shapes::StructureShape.new(name: 'AgentAccessConfigForUpdate')
|
|
27
|
+
AgentAccessSetting = Shapes::StructureShape.new(name: 'AgentAccessSetting')
|
|
28
|
+
AgentAccessSettingList = Shapes::ListShape.new(name: 'AgentAccessSettingList')
|
|
29
|
+
AgentAction = Shapes::StringShape.new(name: 'AgentAction')
|
|
25
30
|
AgentSoftwareVersion = Shapes::StringShape.new(name: 'AgentSoftwareVersion')
|
|
26
31
|
AmiName = Shapes::StringShape.new(name: 'AmiName')
|
|
27
32
|
AppBlock = Shapes::StructureShape.new(name: 'AppBlock')
|
|
@@ -306,8 +311,11 @@ module Aws::AppStream
|
|
|
306
311
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
|
307
312
|
RuntimeValidationConfig = Shapes::StructureShape.new(name: 'RuntimeValidationConfig')
|
|
308
313
|
S3Bucket = Shapes::StringShape.new(name: 'S3Bucket')
|
|
314
|
+
S3BucketArn = Shapes::StringShape.new(name: 'S3BucketArn')
|
|
309
315
|
S3Key = Shapes::StringShape.new(name: 'S3Key')
|
|
310
316
|
S3Location = Shapes::StructureShape.new(name: 'S3Location')
|
|
317
|
+
ScreenImageFormat = Shapes::StringShape.new(name: 'ScreenImageFormat')
|
|
318
|
+
ScreenResolution = Shapes::StringShape.new(name: 'ScreenResolution')
|
|
311
319
|
ScriptDetails = Shapes::StructureShape.new(name: 'ScriptDetails')
|
|
312
320
|
SecurityGroupIdList = Shapes::ListShape.new(name: 'SecurityGroupIdList')
|
|
313
321
|
ServiceAccountCredentials = Shapes::StructureShape.new(name: 'ServiceAccountCredentials')
|
|
@@ -429,6 +437,26 @@ module Aws::AppStream
|
|
|
429
437
|
AdminAppLicenseUsageRecord.add_member(:user_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "UserId"))
|
|
430
438
|
AdminAppLicenseUsageRecord.struct_class = Types::AdminAppLicenseUsageRecord
|
|
431
439
|
|
|
440
|
+
AgentAccessConfig.add_member(:settings, Shapes::ShapeRef.new(shape: AgentAccessSettingList, required: true, location_name: "Settings"))
|
|
441
|
+
AgentAccessConfig.add_member(:s3_bucket_arn, Shapes::ShapeRef.new(shape: S3BucketArn, location_name: "S3BucketArn"))
|
|
442
|
+
AgentAccessConfig.add_member(:screenshots_upload_enabled, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "ScreenshotsUploadEnabled"))
|
|
443
|
+
AgentAccessConfig.add_member(:screen_resolution, Shapes::ShapeRef.new(shape: ScreenResolution, required: true, location_name: "ScreenResolution"))
|
|
444
|
+
AgentAccessConfig.add_member(:screen_image_format, Shapes::ShapeRef.new(shape: ScreenImageFormat, required: true, location_name: "ScreenImageFormat"))
|
|
445
|
+
AgentAccessConfig.struct_class = Types::AgentAccessConfig
|
|
446
|
+
|
|
447
|
+
AgentAccessConfigForUpdate.add_member(:settings, Shapes::ShapeRef.new(shape: AgentAccessSettingList, location_name: "Settings"))
|
|
448
|
+
AgentAccessConfigForUpdate.add_member(:s3_bucket_arn, Shapes::ShapeRef.new(shape: S3BucketArn, location_name: "S3BucketArn"))
|
|
449
|
+
AgentAccessConfigForUpdate.add_member(:screenshots_upload_enabled, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "ScreenshotsUploadEnabled"))
|
|
450
|
+
AgentAccessConfigForUpdate.add_member(:screen_resolution, Shapes::ShapeRef.new(shape: ScreenResolution, location_name: "ScreenResolution"))
|
|
451
|
+
AgentAccessConfigForUpdate.add_member(:screen_image_format, Shapes::ShapeRef.new(shape: ScreenImageFormat, location_name: "ScreenImageFormat"))
|
|
452
|
+
AgentAccessConfigForUpdate.struct_class = Types::AgentAccessConfigForUpdate
|
|
453
|
+
|
|
454
|
+
AgentAccessSetting.add_member(:agent_action, Shapes::ShapeRef.new(shape: AgentAction, required: true, location_name: "AgentAction"))
|
|
455
|
+
AgentAccessSetting.add_member(:permission, Shapes::ShapeRef.new(shape: Permission, required: true, location_name: "Permission"))
|
|
456
|
+
AgentAccessSetting.struct_class = Types::AgentAccessSetting
|
|
457
|
+
|
|
458
|
+
AgentAccessSettingList.member = Shapes::ShapeRef.new(shape: AgentAccessSetting)
|
|
459
|
+
|
|
432
460
|
AppBlock.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
|
|
433
461
|
AppBlock.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "Arn"))
|
|
434
462
|
AppBlock.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
|
|
@@ -776,6 +804,7 @@ module Aws::AppStream
|
|
|
776
804
|
CreateStackRequest.add_member(:embed_host_domains, Shapes::ShapeRef.new(shape: EmbedHostDomains, location_name: "EmbedHostDomains"))
|
|
777
805
|
CreateStackRequest.add_member(:streaming_experience_settings, Shapes::ShapeRef.new(shape: StreamingExperienceSettings, location_name: "StreamingExperienceSettings"))
|
|
778
806
|
CreateStackRequest.add_member(:content_redirection, Shapes::ShapeRef.new(shape: ContentRedirection, location_name: "ContentRedirection"))
|
|
807
|
+
CreateStackRequest.add_member(:agent_access_config, Shapes::ShapeRef.new(shape: AgentAccessConfig, location_name: "AgentAccessConfig"))
|
|
779
808
|
CreateStackRequest.struct_class = Types::CreateStackRequest
|
|
780
809
|
|
|
781
810
|
CreateStackResult.add_member(:stack, Shapes::ShapeRef.new(shape: Stack, location_name: "Stack"))
|
|
@@ -1480,6 +1509,7 @@ module Aws::AppStream
|
|
|
1480
1509
|
Stack.add_member(:embed_host_domains, Shapes::ShapeRef.new(shape: EmbedHostDomains, location_name: "EmbedHostDomains"))
|
|
1481
1510
|
Stack.add_member(:streaming_experience_settings, Shapes::ShapeRef.new(shape: StreamingExperienceSettings, location_name: "StreamingExperienceSettings"))
|
|
1482
1511
|
Stack.add_member(:content_redirection, Shapes::ShapeRef.new(shape: ContentRedirection, location_name: "ContentRedirection"))
|
|
1512
|
+
Stack.add_member(:agent_access_config, Shapes::ShapeRef.new(shape: AgentAccessConfig, location_name: "AgentAccessConfig"))
|
|
1483
1513
|
Stack.struct_class = Types::Stack
|
|
1484
1514
|
|
|
1485
1515
|
StackAttributes.member = Shapes::ShapeRef.new(shape: StackAttribute)
|
|
@@ -1682,6 +1712,7 @@ module Aws::AppStream
|
|
|
1682
1712
|
UpdateStackRequest.add_member(:embed_host_domains, Shapes::ShapeRef.new(shape: EmbedHostDomains, location_name: "EmbedHostDomains"))
|
|
1683
1713
|
UpdateStackRequest.add_member(:streaming_experience_settings, Shapes::ShapeRef.new(shape: StreamingExperienceSettings, location_name: "StreamingExperienceSettings"))
|
|
1684
1714
|
UpdateStackRequest.add_member(:content_redirection, Shapes::ShapeRef.new(shape: ContentRedirection, location_name: "ContentRedirection"))
|
|
1715
|
+
UpdateStackRequest.add_member(:agent_access_config, Shapes::ShapeRef.new(shape: AgentAccessConfigForUpdate, location_name: "AgentAccessConfig"))
|
|
1685
1716
|
UpdateStackRequest.struct_class = Types::UpdateStackRequest
|
|
1686
1717
|
|
|
1687
1718
|
UpdateStackResult.add_member(:stack, Shapes::ShapeRef.new(shape: Stack, location_name: "Stack"))
|
|
@@ -80,6 +80,107 @@ module Aws::AppStream
|
|
|
80
80
|
include Aws::Structure
|
|
81
81
|
end
|
|
82
82
|
|
|
83
|
+
# The configuration for agent access on a stack. Agent access enables AI
|
|
84
|
+
# agents to interact with desktop applications during streaming
|
|
85
|
+
# sessions.
|
|
86
|
+
#
|
|
87
|
+
# @!attribute [rw] settings
|
|
88
|
+
# The list of agent access settings that define permissions for each
|
|
89
|
+
# agent action. You must specify at least one setting.
|
|
90
|
+
# @return [Array<Types::AgentAccessSetting>]
|
|
91
|
+
#
|
|
92
|
+
# @!attribute [rw] s3_bucket_arn
|
|
93
|
+
# The Amazon Resource Name (ARN) of the Amazon S3 bucket where agent
|
|
94
|
+
# screenshots are stored. Required when ScreenshotsUploadEnabled is
|
|
95
|
+
# true.
|
|
96
|
+
# @return [String]
|
|
97
|
+
#
|
|
98
|
+
# @!attribute [rw] screenshots_upload_enabled
|
|
99
|
+
# Indicates whether screenshot uploads to Amazon S3 are enabled for
|
|
100
|
+
# agent sessions.
|
|
101
|
+
# @return [Boolean]
|
|
102
|
+
#
|
|
103
|
+
# @!attribute [rw] screen_resolution
|
|
104
|
+
# The screen resolution for the agent streaming environment.
|
|
105
|
+
# @return [String]
|
|
106
|
+
#
|
|
107
|
+
# @!attribute [rw] screen_image_format
|
|
108
|
+
# The image format for agent screen captures.
|
|
109
|
+
# @return [String]
|
|
110
|
+
#
|
|
111
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/AgentAccessConfig AWS API Documentation
|
|
112
|
+
#
|
|
113
|
+
class AgentAccessConfig < Struct.new(
|
|
114
|
+
:settings,
|
|
115
|
+
:s3_bucket_arn,
|
|
116
|
+
:screenshots_upload_enabled,
|
|
117
|
+
:screen_resolution,
|
|
118
|
+
:screen_image_format)
|
|
119
|
+
SENSITIVE = []
|
|
120
|
+
include Aws::Structure
|
|
121
|
+
end
|
|
122
|
+
|
|
123
|
+
# The configuration for updating agent access on a stack. This type
|
|
124
|
+
# supports partial updates, so you only need to specify the fields you
|
|
125
|
+
# want to change.
|
|
126
|
+
#
|
|
127
|
+
# @!attribute [rw] settings
|
|
128
|
+
# The list of agent access settings that define permissions for each
|
|
129
|
+
# agent action.
|
|
130
|
+
# @return [Array<Types::AgentAccessSetting>]
|
|
131
|
+
#
|
|
132
|
+
# @!attribute [rw] s3_bucket_arn
|
|
133
|
+
# The Amazon Resource Name (ARN) of the Amazon S3 bucket where agent
|
|
134
|
+
# screenshots are stored.
|
|
135
|
+
# @return [String]
|
|
136
|
+
#
|
|
137
|
+
# @!attribute [rw] screenshots_upload_enabled
|
|
138
|
+
# Indicates whether screenshot uploads to Amazon S3 are enabled for
|
|
139
|
+
# agent sessions.
|
|
140
|
+
# @return [Boolean]
|
|
141
|
+
#
|
|
142
|
+
# @!attribute [rw] screen_resolution
|
|
143
|
+
# The screen resolution for the agent streaming environment.
|
|
144
|
+
# @return [String]
|
|
145
|
+
#
|
|
146
|
+
# @!attribute [rw] screen_image_format
|
|
147
|
+
# The image format for agent screen captures.
|
|
148
|
+
# @return [String]
|
|
149
|
+
#
|
|
150
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/AgentAccessConfigForUpdate AWS API Documentation
|
|
151
|
+
#
|
|
152
|
+
class AgentAccessConfigForUpdate < Struct.new(
|
|
153
|
+
:settings,
|
|
154
|
+
:s3_bucket_arn,
|
|
155
|
+
:screenshots_upload_enabled,
|
|
156
|
+
:screen_resolution,
|
|
157
|
+
:screen_image_format)
|
|
158
|
+
SENSITIVE = []
|
|
159
|
+
include Aws::Structure
|
|
160
|
+
end
|
|
161
|
+
|
|
162
|
+
# A permission setting for an agent action. Each setting specifies an
|
|
163
|
+
# agent action and whether it is enabled or disabled.
|
|
164
|
+
#
|
|
165
|
+
# @!attribute [rw] agent_action
|
|
166
|
+
# The agent action to configure. Valid values are COMPUTER\_VISION and
|
|
167
|
+
# COMPUTER\_INPUT. If you enable COMPUTER\_INPUT, you must also enable
|
|
168
|
+
# COMPUTER\_VISION.
|
|
169
|
+
# @return [String]
|
|
170
|
+
#
|
|
171
|
+
# @!attribute [rw] permission
|
|
172
|
+
# Whether the agent action is enabled or disabled.
|
|
173
|
+
# @return [String]
|
|
174
|
+
#
|
|
175
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/AgentAccessSetting AWS API Documentation
|
|
176
|
+
#
|
|
177
|
+
class AgentAccessSetting < Struct.new(
|
|
178
|
+
:agent_action,
|
|
179
|
+
:permission)
|
|
180
|
+
SENSITIVE = []
|
|
181
|
+
include Aws::Structure
|
|
182
|
+
end
|
|
183
|
+
|
|
83
184
|
# Describes an app block.
|
|
84
185
|
#
|
|
85
186
|
# App blocks are a WorkSpaces Applications resource that stores the
|
|
@@ -2320,6 +2421,11 @@ module Aws::AppStream
|
|
|
2320
2421
|
# URLs from the remote desktop to the local browser.
|
|
2321
2422
|
# @return [Types::ContentRedirection]
|
|
2322
2423
|
#
|
|
2424
|
+
# @!attribute [rw] agent_access_config
|
|
2425
|
+
# The configuration for agent access on the stack. If specified, agent
|
|
2426
|
+
# access is enabled for the stack.
|
|
2427
|
+
# @return [Types::AgentAccessConfig]
|
|
2428
|
+
#
|
|
2323
2429
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateStackRequest AWS API Documentation
|
|
2324
2430
|
#
|
|
2325
2431
|
class CreateStackRequest < Struct.new(
|
|
@@ -2335,7 +2441,8 @@ module Aws::AppStream
|
|
|
2335
2441
|
:access_endpoints,
|
|
2336
2442
|
:embed_host_domains,
|
|
2337
2443
|
:streaming_experience_settings,
|
|
2338
|
-
:content_redirection
|
|
2444
|
+
:content_redirection,
|
|
2445
|
+
:agent_access_config)
|
|
2339
2446
|
SENSITIVE = []
|
|
2340
2447
|
include Aws::Structure
|
|
2341
2448
|
end
|
|
@@ -5858,6 +5965,11 @@ module Aws::AppStream
|
|
|
5858
5965
|
# URLs from the remote desktop to the local browser.
|
|
5859
5966
|
# @return [Types::ContentRedirection]
|
|
5860
5967
|
#
|
|
5968
|
+
# @!attribute [rw] agent_access_config
|
|
5969
|
+
# The agent access configuration of the stack, if agent access is
|
|
5970
|
+
# enabled.
|
|
5971
|
+
# @return [Types::AgentAccessConfig]
|
|
5972
|
+
#
|
|
5861
5973
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Stack AWS API Documentation
|
|
5862
5974
|
#
|
|
5863
5975
|
class Stack < Struct.new(
|
|
@@ -5875,7 +5987,8 @@ module Aws::AppStream
|
|
|
5875
5987
|
:access_endpoints,
|
|
5876
5988
|
:embed_host_domains,
|
|
5877
5989
|
:streaming_experience_settings,
|
|
5878
|
-
:content_redirection
|
|
5990
|
+
:content_redirection,
|
|
5991
|
+
:agent_access_config)
|
|
5879
5992
|
SENSITIVE = []
|
|
5880
5993
|
include Aws::Structure
|
|
5881
5994
|
end
|
|
@@ -6920,6 +7033,12 @@ module Aws::AppStream
|
|
|
6920
7033
|
# URLs from the remote desktop to the local browser.
|
|
6921
7034
|
# @return [Types::ContentRedirection]
|
|
6922
7035
|
#
|
|
7036
|
+
# @!attribute [rw] agent_access_config
|
|
7037
|
+
# The configuration for agent access on the stack. Specify this to
|
|
7038
|
+
# update agent access settings. To remove agent access, use
|
|
7039
|
+
# AttributesToDelete with the AGENT\_ACCESS\_CONFIG value.
|
|
7040
|
+
# @return [Types::AgentAccessConfigForUpdate]
|
|
7041
|
+
#
|
|
6923
7042
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateStackRequest AWS API Documentation
|
|
6924
7043
|
#
|
|
6925
7044
|
class UpdateStackRequest < Struct.new(
|
|
@@ -6936,7 +7055,8 @@ module Aws::AppStream
|
|
|
6936
7055
|
:access_endpoints,
|
|
6937
7056
|
:embed_host_domains,
|
|
6938
7057
|
:streaming_experience_settings,
|
|
6939
|
-
:content_redirection
|
|
7058
|
+
:content_redirection,
|
|
7059
|
+
:agent_access_config)
|
|
6940
7060
|
SENSITIVE = []
|
|
6941
7061
|
include Aws::Structure
|
|
6942
7062
|
end
|
data/lib/aws-sdk-appstream.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -506,6 +506,18 @@ module Aws
|
|
|
506
506
|
allowed_urls: Array[::String]?,
|
|
507
507
|
denied_urls: Array[::String]?
|
|
508
508
|
}?
|
|
509
|
+
},
|
|
510
|
+
?agent_access_config: {
|
|
511
|
+
settings: Array[
|
|
512
|
+
{
|
|
513
|
+
agent_action: ("COMPUTER_VISION" | "COMPUTER_INPUT"),
|
|
514
|
+
permission: ("ENABLED" | "DISABLED")
|
|
515
|
+
},
|
|
516
|
+
],
|
|
517
|
+
s3_bucket_arn: ::String?,
|
|
518
|
+
screenshots_upload_enabled: bool?,
|
|
519
|
+
screen_resolution: ("W_1280xH_720"),
|
|
520
|
+
screen_image_format: ("PNG" | "JPEG")
|
|
509
521
|
}
|
|
510
522
|
) -> _CreateStackResponseSuccess
|
|
511
523
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStackResponseSuccess
|
|
@@ -1389,7 +1401,7 @@ module Aws
|
|
|
1389
1401
|
?delete_storage_connectors: bool,
|
|
1390
1402
|
?redirect_url: ::String,
|
|
1391
1403
|
?feedback_url: ::String,
|
|
1392
|
-
?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")],
|
|
1404
|
+
?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" | "AGENT_ACCESS_CONFIG")],
|
|
1393
1405
|
?user_settings: Array[
|
|
1394
1406
|
{
|
|
1395
1407
|
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"),
|
|
@@ -1417,6 +1429,18 @@ module Aws
|
|
|
1417
1429
|
allowed_urls: Array[::String]?,
|
|
1418
1430
|
denied_urls: Array[::String]?
|
|
1419
1431
|
}?
|
|
1432
|
+
},
|
|
1433
|
+
?agent_access_config: {
|
|
1434
|
+
settings: Array[
|
|
1435
|
+
{
|
|
1436
|
+
agent_action: ("COMPUTER_VISION" | "COMPUTER_INPUT"),
|
|
1437
|
+
permission: ("ENABLED" | "DISABLED")
|
|
1438
|
+
},
|
|
1439
|
+
]?,
|
|
1440
|
+
s3_bucket_arn: ::String?,
|
|
1441
|
+
screenshots_upload_enabled: bool?,
|
|
1442
|
+
screen_resolution: ("W_1280xH_720")?,
|
|
1443
|
+
screen_image_format: ("PNG" | "JPEG")?
|
|
1420
1444
|
}
|
|
1421
1445
|
) -> _UpdateStackResponseSuccess
|
|
1422
1446
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateStackResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -25,6 +25,30 @@ module Aws::AppStream
|
|
|
25
25
|
SENSITIVE: []
|
|
26
26
|
end
|
|
27
27
|
|
|
28
|
+
class AgentAccessConfig
|
|
29
|
+
attr_accessor settings: ::Array[Types::AgentAccessSetting]
|
|
30
|
+
attr_accessor s3_bucket_arn: ::String
|
|
31
|
+
attr_accessor screenshots_upload_enabled: bool
|
|
32
|
+
attr_accessor screen_resolution: ("W_1280xH_720")
|
|
33
|
+
attr_accessor screen_image_format: ("PNG" | "JPEG")
|
|
34
|
+
SENSITIVE: []
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
class AgentAccessConfigForUpdate
|
|
38
|
+
attr_accessor settings: ::Array[Types::AgentAccessSetting]
|
|
39
|
+
attr_accessor s3_bucket_arn: ::String
|
|
40
|
+
attr_accessor screenshots_upload_enabled: bool
|
|
41
|
+
attr_accessor screen_resolution: ("W_1280xH_720")
|
|
42
|
+
attr_accessor screen_image_format: ("PNG" | "JPEG")
|
|
43
|
+
SENSITIVE: []
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
class AgentAccessSetting
|
|
47
|
+
attr_accessor agent_action: ("COMPUTER_VISION" | "COMPUTER_INPUT")
|
|
48
|
+
attr_accessor permission: ("ENABLED" | "DISABLED")
|
|
49
|
+
SENSITIVE: []
|
|
50
|
+
end
|
|
51
|
+
|
|
28
52
|
class AppBlock
|
|
29
53
|
attr_accessor name: ::String
|
|
30
54
|
attr_accessor arn: ::String
|
|
@@ -454,6 +478,7 @@ module Aws::AppStream
|
|
|
454
478
|
attr_accessor embed_host_domains: ::Array[::String]
|
|
455
479
|
attr_accessor streaming_experience_settings: Types::StreamingExperienceSettings
|
|
456
480
|
attr_accessor content_redirection: Types::ContentRedirection
|
|
481
|
+
attr_accessor agent_access_config: Types::AgentAccessConfig
|
|
457
482
|
SENSITIVE: []
|
|
458
483
|
end
|
|
459
484
|
|
|
@@ -1374,6 +1399,7 @@ module Aws::AppStream
|
|
|
1374
1399
|
attr_accessor embed_host_domains: ::Array[::String]
|
|
1375
1400
|
attr_accessor streaming_experience_settings: Types::StreamingExperienceSettings
|
|
1376
1401
|
attr_accessor content_redirection: Types::ContentRedirection
|
|
1402
|
+
attr_accessor agent_access_config: Types::AgentAccessConfig
|
|
1377
1403
|
SENSITIVE: []
|
|
1378
1404
|
end
|
|
1379
1405
|
|
|
@@ -1614,13 +1640,14 @@ module Aws::AppStream
|
|
|
1614
1640
|
attr_accessor delete_storage_connectors: bool
|
|
1615
1641
|
attr_accessor redirect_url: ::String
|
|
1616
1642
|
attr_accessor feedback_url: ::String
|
|
1617
|
-
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")]
|
|
1643
|
+
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" | "AGENT_ACCESS_CONFIG")]
|
|
1618
1644
|
attr_accessor user_settings: ::Array[Types::UserSetting]
|
|
1619
1645
|
attr_accessor application_settings: Types::ApplicationSettings
|
|
1620
1646
|
attr_accessor access_endpoints: ::Array[Types::AccessEndpoint]
|
|
1621
1647
|
attr_accessor embed_host_domains: ::Array[::String]
|
|
1622
1648
|
attr_accessor streaming_experience_settings: Types::StreamingExperienceSettings
|
|
1623
1649
|
attr_accessor content_redirection: Types::ContentRedirection
|
|
1650
|
+
attr_accessor agent_access_config: Types::AgentAccessConfigForUpdate
|
|
1624
1651
|
SENSITIVE: []
|
|
1625
1652
|
end
|
|
1626
1653
|
|