aws-sdk-appstream 1.121.0 → 1.122.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 +483 -146
- data/lib/aws-sdk-appstream/client_api.rb +170 -0
- data/lib/aws-sdk-appstream/errors.rb +16 -0
- data/lib/aws-sdk-appstream/types.rb +600 -173
- data/lib/aws-sdk-appstream.rb +1 -1
- data/sig/client.rbs +85 -3
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +113 -6
- metadata +1 -1
|
@@ -12,11 +12,11 @@ module Aws::AppStream
|
|
|
12
12
|
|
|
13
13
|
# Describes an interface VPC endpoint (interface endpoint) that lets you
|
|
14
14
|
# create a private connection between the virtual private cloud (VPC)
|
|
15
|
-
# that you specify and
|
|
16
|
-
# endpoint for a stack, users of the stack can connect to
|
|
17
|
-
# only through that endpoint. When you specify
|
|
18
|
-
# an image builder, administrators can connect
|
|
19
|
-
# through that endpoint.
|
|
15
|
+
# that you specify and WorkSpaces Applications. When you specify an
|
|
16
|
+
# interface endpoint for a stack, users of the stack can connect to
|
|
17
|
+
# WorkSpaces Applications only through that endpoint. When you specify
|
|
18
|
+
# an interface endpoint for an image builder, administrators can connect
|
|
19
|
+
# to the image builder only through that endpoint.
|
|
20
20
|
#
|
|
21
21
|
# @!attribute [rw] endpoint_type
|
|
22
22
|
# The type of interface endpoint.
|
|
@@ -82,7 +82,7 @@ module Aws::AppStream
|
|
|
82
82
|
|
|
83
83
|
# Describes an app block.
|
|
84
84
|
#
|
|
85
|
-
# App blocks are
|
|
85
|
+
# App blocks are a WorkSpaces Applications resource that stores the
|
|
86
86
|
# details about the virtual hard disk in an S3 bucket. It also stores
|
|
87
87
|
# the setup script with details about how to mount the virtual hard
|
|
88
88
|
# disk. The virtual hard disk includes the application binaries and
|
|
@@ -134,10 +134,10 @@ module Aws::AppStream
|
|
|
134
134
|
# @!attribute [rw] state
|
|
135
135
|
# The state of the app block.
|
|
136
136
|
#
|
|
137
|
-
# An app block with
|
|
138
|
-
# state if no application package (VHD) is assigned to it.
|
|
139
|
-
# application package (VHD) is created by an app block
|
|
140
|
-
# app block, it becomes `ACTIVE`.
|
|
137
|
+
# An app block with WorkSpaces Applications packaging will be in the
|
|
138
|
+
# `INACTIVE` state if no application package (VHD) is assigned to it.
|
|
139
|
+
# After an application package (VHD) is created by an app block
|
|
140
|
+
# builder for an app block, it becomes `ACTIVE`.
|
|
141
141
|
#
|
|
142
142
|
# Custom app blocks are always in the `ACTIVE` state and no action is
|
|
143
143
|
# required to use them.
|
|
@@ -373,6 +373,72 @@ module Aws::AppStream
|
|
|
373
373
|
include Aws::Structure
|
|
374
374
|
end
|
|
375
375
|
|
|
376
|
+
# Configuration for an application in the imported image's application
|
|
377
|
+
# catalog. This structure defines how applications appear and launch for
|
|
378
|
+
# users.
|
|
379
|
+
#
|
|
380
|
+
# @!attribute [rw] name
|
|
381
|
+
# The name of the application. This is a required field that must be
|
|
382
|
+
# unique within the application catalog and between 1-100 characters,
|
|
383
|
+
# matching the pattern ^\[a-zA-Z0-9\]\[a-zA-Z0-9\_.-\]\{0,99}$.
|
|
384
|
+
# @return [String]
|
|
385
|
+
#
|
|
386
|
+
# @!attribute [rw] display_name
|
|
387
|
+
# The display name shown to users for this application. This field is
|
|
388
|
+
# optional and can be 0-100 characters, matching the pattern
|
|
389
|
+
# ^\[a-zA-Z0-9\]\[a-zA-Z0-9\_. -\]\{0,99}$.
|
|
390
|
+
# @return [String]
|
|
391
|
+
#
|
|
392
|
+
# @!attribute [rw] absolute_app_path
|
|
393
|
+
# The absolute path to the executable file that launches the
|
|
394
|
+
# application. This is a required field that can be 1-32767 characters
|
|
395
|
+
# to support Windows extended file paths. Use escaped file path
|
|
396
|
+
# strings like
|
|
397
|
+
# "C:\\\\\\\\Windows\\\\\\\\System32\\\\\\\\notepad.exe".
|
|
398
|
+
# @return [String]
|
|
399
|
+
#
|
|
400
|
+
# @!attribute [rw] absolute_icon_path
|
|
401
|
+
# The absolute path to the icon file for the application. This field
|
|
402
|
+
# is optional and can be 1-32767 characters. If not provided, the icon
|
|
403
|
+
# is derived from the executable. Use PNG images with proper
|
|
404
|
+
# transparency for the best user experience.
|
|
405
|
+
# @return [String]
|
|
406
|
+
#
|
|
407
|
+
# @!attribute [rw] absolute_manifest_path
|
|
408
|
+
# The absolute path to the prewarm manifest file for this application.
|
|
409
|
+
# This field is optional and only applicable when using
|
|
410
|
+
# application-specific manifests. The path can be 1-32767 characters
|
|
411
|
+
# and should point to a text file containing file paths to prewarm.
|
|
412
|
+
# @return [String]
|
|
413
|
+
#
|
|
414
|
+
# @!attribute [rw] working_directory
|
|
415
|
+
# The working directory to use when launching the application. This
|
|
416
|
+
# field is optional and can be 0-32767 characters. Use escaped file
|
|
417
|
+
# path strings like
|
|
418
|
+
# "C:\\\\\\\\Path\\\\\\\\To\\\\\\\\Working\\\\\\\\Directory".
|
|
419
|
+
# @return [String]
|
|
420
|
+
#
|
|
421
|
+
# @!attribute [rw] launch_parameters
|
|
422
|
+
# The launch parameters to pass to the application executable. This
|
|
423
|
+
# field is optional and can be 0-1024 characters. Use escaped strings
|
|
424
|
+
# with the full list of required parameters, such as PowerShell script
|
|
425
|
+
# paths or command-line arguments.
|
|
426
|
+
# @return [String]
|
|
427
|
+
#
|
|
428
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/ApplicationConfig AWS API Documentation
|
|
429
|
+
#
|
|
430
|
+
class ApplicationConfig < Struct.new(
|
|
431
|
+
:name,
|
|
432
|
+
:display_name,
|
|
433
|
+
:absolute_app_path,
|
|
434
|
+
:absolute_icon_path,
|
|
435
|
+
:absolute_manifest_path,
|
|
436
|
+
:working_directory,
|
|
437
|
+
:launch_parameters)
|
|
438
|
+
SENSITIVE = [:absolute_app_path, :absolute_icon_path, :absolute_manifest_path, :working_directory, :launch_parameters]
|
|
439
|
+
include Aws::Structure
|
|
440
|
+
end
|
|
441
|
+
|
|
376
442
|
# Describes the application fleet association.
|
|
377
443
|
#
|
|
378
444
|
# @!attribute [rw] fleet_name
|
|
@@ -876,7 +942,7 @@ module Aws::AppStream
|
|
|
876
942
|
# \_ . : / = + \\ - @
|
|
877
943
|
#
|
|
878
944
|
# For more information, see [Tagging Your Resources][1] in the *Amazon
|
|
879
|
-
#
|
|
945
|
+
# WorkSpaces Applications Administration Guide*.
|
|
880
946
|
#
|
|
881
947
|
#
|
|
882
948
|
#
|
|
@@ -921,13 +987,14 @@ module Aws::AppStream
|
|
|
921
987
|
# block builder. To assume a role, the app block builder calls the AWS
|
|
922
988
|
# Security Token Service (STS) `AssumeRole` API operation and passes
|
|
923
989
|
# the ARN of the role to use. The operation creates a new session with
|
|
924
|
-
# temporary credentials.
|
|
925
|
-
# credentials and creates the **appstream\_machine\_role**
|
|
926
|
-
# profile on the instance.
|
|
990
|
+
# temporary credentials. WorkSpaces Applications retrieves the
|
|
991
|
+
# temporary credentials and creates the **appstream\_machine\_role**
|
|
992
|
+
# credential profile on the instance.
|
|
927
993
|
#
|
|
928
994
|
# For more information, see [Using an IAM Role to Grant Permissions to
|
|
929
|
-
# Applications and Scripts Running on
|
|
930
|
-
# Instances][1] in the *Amazon
|
|
995
|
+
# Applications and Scripts Running on WorkSpaces Applications
|
|
996
|
+
# Streaming Instances][1] in the *Amazon WorkSpaces Applications
|
|
997
|
+
# Administration Guide*.
|
|
931
998
|
#
|
|
932
999
|
#
|
|
933
1000
|
#
|
|
@@ -1240,6 +1307,58 @@ module Aws::AppStream
|
|
|
1240
1307
|
include Aws::Structure
|
|
1241
1308
|
end
|
|
1242
1309
|
|
|
1310
|
+
# @!attribute [rw] image_name
|
|
1311
|
+
# The name of the WorkSpaces Applications image to export. The image
|
|
1312
|
+
# must be in an available state and owned by your account.
|
|
1313
|
+
# @return [String]
|
|
1314
|
+
#
|
|
1315
|
+
# @!attribute [rw] ami_name
|
|
1316
|
+
# The name for the exported EC2 AMI. This is a required field that
|
|
1317
|
+
# must be unique within your account and region.
|
|
1318
|
+
# @return [String]
|
|
1319
|
+
#
|
|
1320
|
+
# @!attribute [rw] iam_role_arn
|
|
1321
|
+
# The ARN of the IAM role that allows WorkSpaces Applications to
|
|
1322
|
+
# create the AMI. The role must have permissions to copy images,
|
|
1323
|
+
# describe images, and create tags, with a trust relationship allowing
|
|
1324
|
+
# appstream.amazonaws.com to assume the role.
|
|
1325
|
+
# @return [String]
|
|
1326
|
+
#
|
|
1327
|
+
# @!attribute [rw] tag_specifications
|
|
1328
|
+
# The tags to apply to the exported AMI. These tags help you organize
|
|
1329
|
+
# and manage your EC2 AMIs.
|
|
1330
|
+
# @return [Hash<String,String>]
|
|
1331
|
+
#
|
|
1332
|
+
# @!attribute [rw] ami_description
|
|
1333
|
+
# An optional description for the exported AMI. This description will
|
|
1334
|
+
# be applied to the resulting EC2 AMI.
|
|
1335
|
+
# @return [String]
|
|
1336
|
+
#
|
|
1337
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateExportImageTaskRequest AWS API Documentation
|
|
1338
|
+
#
|
|
1339
|
+
class CreateExportImageTaskRequest < Struct.new(
|
|
1340
|
+
:image_name,
|
|
1341
|
+
:ami_name,
|
|
1342
|
+
:iam_role_arn,
|
|
1343
|
+
:tag_specifications,
|
|
1344
|
+
:ami_description)
|
|
1345
|
+
SENSITIVE = []
|
|
1346
|
+
include Aws::Structure
|
|
1347
|
+
end
|
|
1348
|
+
|
|
1349
|
+
# @!attribute [rw] export_image_task
|
|
1350
|
+
# Information about the export image task that was created, including
|
|
1351
|
+
# the task ID and initial state.
|
|
1352
|
+
# @return [Types::ExportImageTask]
|
|
1353
|
+
#
|
|
1354
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateExportImageTaskResult AWS API Documentation
|
|
1355
|
+
#
|
|
1356
|
+
class CreateExportImageTaskResult < Struct.new(
|
|
1357
|
+
:export_image_task)
|
|
1358
|
+
SENSITIVE = []
|
|
1359
|
+
include Aws::Structure
|
|
1360
|
+
end
|
|
1361
|
+
|
|
1243
1362
|
# @!attribute [rw] name
|
|
1244
1363
|
# A unique name for the fleet.
|
|
1245
1364
|
# @return [String]
|
|
@@ -1306,8 +1425,6 @@ module Aws::AppStream
|
|
|
1306
1425
|
#
|
|
1307
1426
|
# * stream.graphics-design.4xlarge
|
|
1308
1427
|
#
|
|
1309
|
-
# * stream.graphics-desktop.2xlarge
|
|
1310
|
-
#
|
|
1311
1428
|
# * stream.graphics.g4dn.xlarge
|
|
1312
1429
|
#
|
|
1313
1430
|
# * stream.graphics.g4dn.2xlarge
|
|
@@ -1334,12 +1451,6 @@ module Aws::AppStream
|
|
|
1334
1451
|
#
|
|
1335
1452
|
# * stream.graphics.g5.24xlarge
|
|
1336
1453
|
#
|
|
1337
|
-
# * stream.graphics-pro.4xlarge
|
|
1338
|
-
#
|
|
1339
|
-
# * stream.graphics-pro.8xlarge
|
|
1340
|
-
#
|
|
1341
|
-
# * stream.graphics-pro.16xlarge
|
|
1342
|
-
#
|
|
1343
1454
|
# * stream.graphics.g6.xlarge
|
|
1344
1455
|
#
|
|
1345
1456
|
# * stream.graphics.g6.2xlarge
|
|
@@ -1462,7 +1573,7 @@ module Aws::AppStream
|
|
|
1462
1573
|
# \_ . : / = + \\ - @
|
|
1463
1574
|
#
|
|
1464
1575
|
# For more information, see [Tagging Your Resources][1] in the *Amazon
|
|
1465
|
-
#
|
|
1576
|
+
# WorkSpaces Applications Administration Guide*.
|
|
1466
1577
|
#
|
|
1467
1578
|
#
|
|
1468
1579
|
#
|
|
@@ -1504,13 +1615,14 @@ module Aws::AppStream
|
|
|
1504
1615
|
# fleet. To assume a role, a fleet instance calls the AWS Security
|
|
1505
1616
|
# Token Service (STS) `AssumeRole` API operation and passes the ARN of
|
|
1506
1617
|
# the role to use. The operation creates a new session with temporary
|
|
1507
|
-
# credentials.
|
|
1508
|
-
# creates the **appstream\_machine\_role** credential
|
|
1509
|
-
# instance.
|
|
1618
|
+
# credentials. WorkSpaces Applications retrieves the temporary
|
|
1619
|
+
# credentials and creates the **appstream\_machine\_role** credential
|
|
1620
|
+
# profile on the instance.
|
|
1510
1621
|
#
|
|
1511
1622
|
# For more information, see [Using an IAM Role to Grant Permissions to
|
|
1512
|
-
# Applications and Scripts Running on
|
|
1513
|
-
# Instances][1] in the *Amazon
|
|
1623
|
+
# Applications and Scripts Running on WorkSpaces Applications
|
|
1624
|
+
# Streaming Instances][1] in the *Amazon WorkSpaces Applications
|
|
1625
|
+
# Administration Guide*.
|
|
1514
1626
|
#
|
|
1515
1627
|
#
|
|
1516
1628
|
#
|
|
@@ -1518,11 +1630,11 @@ module Aws::AppStream
|
|
|
1518
1630
|
# @return [String]
|
|
1519
1631
|
#
|
|
1520
1632
|
# @!attribute [rw] stream_view
|
|
1521
|
-
# The
|
|
1522
|
-
# stream from the fleet. When `APP` is specified, only the
|
|
1523
|
-
# applications opened by users display. When `DESKTOP` is
|
|
1524
|
-
# the standard desktop that is provided by the operating
|
|
1525
|
-
# displays.
|
|
1633
|
+
# The WorkSpaces Applications view that is displayed to your users
|
|
1634
|
+
# when they stream from the fleet. When `APP` is specified, only the
|
|
1635
|
+
# windows of applications opened by users display. When `DESKTOP` is
|
|
1636
|
+
# specified, the standard desktop that is provided by the operating
|
|
1637
|
+
# system displays.
|
|
1526
1638
|
#
|
|
1527
1639
|
# The default value is `APP`.
|
|
1528
1640
|
# @return [String]
|
|
@@ -1553,6 +1665,12 @@ module Aws::AppStream
|
|
|
1553
1665
|
# applies to multi-session fleets.
|
|
1554
1666
|
# @return [Integer]
|
|
1555
1667
|
#
|
|
1668
|
+
# @!attribute [rw] root_volume_config
|
|
1669
|
+
# The configuration for the root volume of fleet instances. Use this
|
|
1670
|
+
# to customize storage capacity from 200 GB up to 500 GB based on your
|
|
1671
|
+
# application requirements.
|
|
1672
|
+
# @return [Types::VolumeConfig]
|
|
1673
|
+
#
|
|
1556
1674
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateFleetRequest AWS API Documentation
|
|
1557
1675
|
#
|
|
1558
1676
|
class CreateFleetRequest < Struct.new(
|
|
@@ -1577,7 +1695,8 @@ module Aws::AppStream
|
|
|
1577
1695
|
:max_concurrent_sessions,
|
|
1578
1696
|
:usb_device_filter_strings,
|
|
1579
1697
|
:session_script_s3_location,
|
|
1580
|
-
:max_sessions_per_instance
|
|
1698
|
+
:max_sessions_per_instance,
|
|
1699
|
+
:root_volume_config)
|
|
1581
1700
|
SENSITIVE = []
|
|
1582
1701
|
include Aws::Structure
|
|
1583
1702
|
end
|
|
@@ -1656,8 +1775,6 @@ module Aws::AppStream
|
|
|
1656
1775
|
#
|
|
1657
1776
|
# * stream.graphics-design.4xlarge
|
|
1658
1777
|
#
|
|
1659
|
-
# * stream.graphics-desktop.2xlarge
|
|
1660
|
-
#
|
|
1661
1778
|
# * stream.graphics.g4dn.xlarge
|
|
1662
1779
|
#
|
|
1663
1780
|
# * stream.graphics.g4dn.2xlarge
|
|
@@ -1670,12 +1787,6 @@ module Aws::AppStream
|
|
|
1670
1787
|
#
|
|
1671
1788
|
# * stream.graphics.g4dn.16xlarge
|
|
1672
1789
|
#
|
|
1673
|
-
# * stream.graphics-pro.4xlarge
|
|
1674
|
-
#
|
|
1675
|
-
# * stream.graphics-pro.8xlarge
|
|
1676
|
-
#
|
|
1677
|
-
# * stream.graphics-pro.16xlarge
|
|
1678
|
-
#
|
|
1679
1790
|
# * stream.graphics.g5.xlarge
|
|
1680
1791
|
#
|
|
1681
1792
|
# * stream.graphics.g5.2xlarge
|
|
@@ -1737,13 +1848,14 @@ module Aws::AppStream
|
|
|
1737
1848
|
# builder. To assume a role, the image builder calls the AWS Security
|
|
1738
1849
|
# Token Service (STS) `AssumeRole` API operation and passes the ARN of
|
|
1739
1850
|
# the role to use. The operation creates a new session with temporary
|
|
1740
|
-
# credentials.
|
|
1741
|
-
# creates the **appstream\_machine\_role** credential
|
|
1742
|
-
# instance.
|
|
1851
|
+
# credentials. WorkSpaces Applications retrieves the temporary
|
|
1852
|
+
# credentials and creates the **appstream\_machine\_role** credential
|
|
1853
|
+
# profile on the instance.
|
|
1743
1854
|
#
|
|
1744
1855
|
# For more information, see [Using an IAM Role to Grant Permissions to
|
|
1745
|
-
# Applications and Scripts Running on
|
|
1746
|
-
# Instances][1] in the *Amazon
|
|
1856
|
+
# Applications and Scripts Running on WorkSpaces Applications
|
|
1857
|
+
# Streaming Instances][1] in the *Amazon WorkSpaces Applications
|
|
1858
|
+
# Administration Guide*.
|
|
1747
1859
|
#
|
|
1748
1860
|
#
|
|
1749
1861
|
#
|
|
@@ -1760,9 +1872,9 @@ module Aws::AppStream
|
|
|
1760
1872
|
# @return [Types::DomainJoinInfo]
|
|
1761
1873
|
#
|
|
1762
1874
|
# @!attribute [rw] appstream_agent_version
|
|
1763
|
-
# The version of the
|
|
1764
|
-
# builder. To use the latest version of the
|
|
1765
|
-
# specify \[LATEST\].
|
|
1875
|
+
# The version of the WorkSpaces Applications agent to use for this
|
|
1876
|
+
# image builder. To use the latest version of the WorkSpaces
|
|
1877
|
+
# Applications agent, specify \[LATEST\].
|
|
1766
1878
|
# @return [String]
|
|
1767
1879
|
#
|
|
1768
1880
|
# @!attribute [rw] tags
|
|
@@ -1778,7 +1890,7 @@ module Aws::AppStream
|
|
|
1778
1890
|
# If you do not specify a value, the value is set to an empty string.
|
|
1779
1891
|
#
|
|
1780
1892
|
# For more information about tags, see [Tagging Your Resources][1] in
|
|
1781
|
-
# the *Amazon
|
|
1893
|
+
# the *Amazon WorkSpaces Applications Administration Guide*.
|
|
1782
1894
|
#
|
|
1783
1895
|
#
|
|
1784
1896
|
#
|
|
@@ -1791,6 +1903,12 @@ module Aws::AppStream
|
|
|
1791
1903
|
# specified endpoints.
|
|
1792
1904
|
# @return [Array<Types::AccessEndpoint>]
|
|
1793
1905
|
#
|
|
1906
|
+
# @!attribute [rw] root_volume_config
|
|
1907
|
+
# The configuration for the root volume of the image builder. Use this
|
|
1908
|
+
# to customize storage capacity from 200 GB up to 500 GB based on your
|
|
1909
|
+
# application installation requirements.
|
|
1910
|
+
# @return [Types::VolumeConfig]
|
|
1911
|
+
#
|
|
1794
1912
|
# @!attribute [rw] softwares_to_install
|
|
1795
1913
|
# The list of license included applications to install on the image
|
|
1796
1914
|
# builder during creation.
|
|
@@ -1917,6 +2035,7 @@ module Aws::AppStream
|
|
|
1917
2035
|
:appstream_agent_version,
|
|
1918
2036
|
:tags,
|
|
1919
2037
|
:access_endpoints,
|
|
2038
|
+
:root_volume_config,
|
|
1920
2039
|
:softwares_to_install,
|
|
1921
2040
|
:softwares_to_uninstall)
|
|
1922
2041
|
SENSITIVE = []
|
|
@@ -1954,7 +2073,7 @@ module Aws::AppStream
|
|
|
1954
2073
|
end
|
|
1955
2074
|
|
|
1956
2075
|
# @!attribute [rw] streaming_url
|
|
1957
|
-
# The URL to start the
|
|
2076
|
+
# The URL to start the WorkSpaces Applications streaming session.
|
|
1958
2077
|
# @return [String]
|
|
1959
2078
|
#
|
|
1960
2079
|
# @!attribute [rw] expires
|
|
@@ -1971,6 +2090,96 @@ module Aws::AppStream
|
|
|
1971
2090
|
include Aws::Structure
|
|
1972
2091
|
end
|
|
1973
2092
|
|
|
2093
|
+
# @!attribute [rw] name
|
|
2094
|
+
# A unique name for the imported image. The name must be between 1 and
|
|
2095
|
+
# 100 characters and can contain letters, numbers, underscores,
|
|
2096
|
+
# periods, and hyphens.
|
|
2097
|
+
# @return [String]
|
|
2098
|
+
#
|
|
2099
|
+
# @!attribute [rw] source_ami_id
|
|
2100
|
+
# The ID of the EC2 AMI to import. The AMI must meet specific
|
|
2101
|
+
# requirements including Windows Server 2022 Full Base, UEFI boot
|
|
2102
|
+
# mode, TPM 2.0 support, and proper drivers.
|
|
2103
|
+
# @return [String]
|
|
2104
|
+
#
|
|
2105
|
+
# @!attribute [rw] iam_role_arn
|
|
2106
|
+
# The ARN of the IAM role that allows WorkSpaces Applications to
|
|
2107
|
+
# access your AMI. The role must have permissions to modify image
|
|
2108
|
+
# attributes and describe images, with a trust relationship allowing
|
|
2109
|
+
# appstream.amazonaws.com to assume the role.
|
|
2110
|
+
# @return [String]
|
|
2111
|
+
#
|
|
2112
|
+
# @!attribute [rw] description
|
|
2113
|
+
# An optional description for the imported image. The description must
|
|
2114
|
+
# match approved regex patterns and can be up to 256 characters.
|
|
2115
|
+
# @return [String]
|
|
2116
|
+
#
|
|
2117
|
+
# @!attribute [rw] display_name
|
|
2118
|
+
# An optional display name for the imported image. The display name
|
|
2119
|
+
# must match approved regex patterns and can be up to 100 characters.
|
|
2120
|
+
# @return [String]
|
|
2121
|
+
#
|
|
2122
|
+
# @!attribute [rw] tags
|
|
2123
|
+
# The tags to apply to the imported image. Tags help you organize and
|
|
2124
|
+
# manage your WorkSpaces Applications resources.
|
|
2125
|
+
# @return [Hash<String,String>]
|
|
2126
|
+
#
|
|
2127
|
+
# @!attribute [rw] runtime_validation_config
|
|
2128
|
+
# Configuration for runtime validation of the imported image. When
|
|
2129
|
+
# specified, WorkSpaces Applications provisions an instance to test
|
|
2130
|
+
# streaming functionality, which helps ensure the image is suitable
|
|
2131
|
+
# for use.
|
|
2132
|
+
# @return [Types::RuntimeValidationConfig]
|
|
2133
|
+
#
|
|
2134
|
+
# @!attribute [rw] agent_software_version
|
|
2135
|
+
# The version of the WorkSpaces Applications agent to use for the
|
|
2136
|
+
# imported image. Choose CURRENT\_LATEST to use the agent version
|
|
2137
|
+
# available at the time of import, or ALWAYS\_LATEST to automatically
|
|
2138
|
+
# update to the latest agent version when new versions are released.
|
|
2139
|
+
# @return [String]
|
|
2140
|
+
#
|
|
2141
|
+
# @!attribute [rw] app_catalog_config
|
|
2142
|
+
# Configuration for the application catalog of the imported image.
|
|
2143
|
+
# This allows you to specify applications available for streaming,
|
|
2144
|
+
# including their paths, icons, and launch parameters. This field
|
|
2145
|
+
# contains sensitive data.
|
|
2146
|
+
# @return [Array<Types::ApplicationConfig>]
|
|
2147
|
+
#
|
|
2148
|
+
# @!attribute [rw] dry_run
|
|
2149
|
+
# When set to true, performs validation checks without actually
|
|
2150
|
+
# creating the imported image. Use this to verify your configuration
|
|
2151
|
+
# before executing the actual import operation.
|
|
2152
|
+
# @return [Boolean]
|
|
2153
|
+
#
|
|
2154
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateImportedImageRequest AWS API Documentation
|
|
2155
|
+
#
|
|
2156
|
+
class CreateImportedImageRequest < Struct.new(
|
|
2157
|
+
:name,
|
|
2158
|
+
:source_ami_id,
|
|
2159
|
+
:iam_role_arn,
|
|
2160
|
+
:description,
|
|
2161
|
+
:display_name,
|
|
2162
|
+
:tags,
|
|
2163
|
+
:runtime_validation_config,
|
|
2164
|
+
:agent_software_version,
|
|
2165
|
+
:app_catalog_config,
|
|
2166
|
+
:dry_run)
|
|
2167
|
+
SENSITIVE = [:app_catalog_config]
|
|
2168
|
+
include Aws::Structure
|
|
2169
|
+
end
|
|
2170
|
+
|
|
2171
|
+
# @!attribute [rw] image
|
|
2172
|
+
# Describes an image.
|
|
2173
|
+
# @return [Types::Image]
|
|
2174
|
+
#
|
|
2175
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateImportedImageResult AWS API Documentation
|
|
2176
|
+
#
|
|
2177
|
+
class CreateImportedImageResult < Struct.new(
|
|
2178
|
+
:image)
|
|
2179
|
+
SENSITIVE = []
|
|
2180
|
+
include Aws::Structure
|
|
2181
|
+
end
|
|
2182
|
+
|
|
1974
2183
|
# @!attribute [rw] name
|
|
1975
2184
|
# The name of the stack.
|
|
1976
2185
|
# @return [String]
|
|
@@ -2023,7 +2232,7 @@ module Aws::AppStream
|
|
|
2023
2232
|
# \_ . : / = + \\ - @
|
|
2024
2233
|
#
|
|
2025
2234
|
# For more information about tags, see [Tagging Your Resources][1] in
|
|
2026
|
-
# the *Amazon
|
|
2235
|
+
# the *Amazon WorkSpaces Applications Administration Guide*.
|
|
2027
2236
|
#
|
|
2028
2237
|
#
|
|
2029
2238
|
#
|
|
@@ -2032,14 +2241,14 @@ module Aws::AppStream
|
|
|
2032
2241
|
#
|
|
2033
2242
|
# @!attribute [rw] access_endpoints
|
|
2034
2243
|
# The list of interface VPC endpoint (interface endpoint) objects.
|
|
2035
|
-
# Users of the stack can connect to
|
|
2036
|
-
# specified endpoints.
|
|
2244
|
+
# Users of the stack can connect to WorkSpaces Applications only
|
|
2245
|
+
# through the specified endpoints.
|
|
2037
2246
|
# @return [Array<Types::AccessEndpoint>]
|
|
2038
2247
|
#
|
|
2039
2248
|
# @!attribute [rw] embed_host_domains
|
|
2040
|
-
# The domains where
|
|
2041
|
-
# in an iframe. You must approve the domains that you want to
|
|
2042
|
-
# embedded
|
|
2249
|
+
# The domains where WorkSpaces Applications streaming sessions can be
|
|
2250
|
+
# embedded in an iframe. You must approve the domains that you want to
|
|
2251
|
+
# host embedded WorkSpaces Applications streaming sessions.
|
|
2043
2252
|
# @return [Array<String>]
|
|
2044
2253
|
#
|
|
2045
2254
|
# @!attribute [rw] streaming_experience_settings
|
|
@@ -2106,7 +2315,7 @@ module Aws::AppStream
|
|
|
2106
2315
|
#
|
|
2107
2316
|
# @!attribute [rw] session_context
|
|
2108
2317
|
# The session context. For more information, see [Session Context][1]
|
|
2109
|
-
# in the *Amazon
|
|
2318
|
+
# in the *Amazon WorkSpaces Applications Administration Guide*.
|
|
2110
2319
|
#
|
|
2111
2320
|
#
|
|
2112
2321
|
#
|
|
@@ -2127,7 +2336,7 @@ module Aws::AppStream
|
|
|
2127
2336
|
end
|
|
2128
2337
|
|
|
2129
2338
|
# @!attribute [rw] streaming_url
|
|
2130
|
-
# The URL to start the
|
|
2339
|
+
# The URL to start the WorkSpaces Applications streaming session.
|
|
2131
2340
|
# @return [String]
|
|
2132
2341
|
#
|
|
2133
2342
|
# @!attribute [rw] expires
|
|
@@ -2233,7 +2442,7 @@ module Aws::AppStream
|
|
|
2233
2442
|
# If you do not specify a value, the value is set to an empty string.
|
|
2234
2443
|
#
|
|
2235
2444
|
# For more information about tags, see [Tagging Your Resources][1] in
|
|
2236
|
-
# the *Amazon
|
|
2445
|
+
# the *Amazon WorkSpaces Applications Administration Guide*.
|
|
2237
2446
|
#
|
|
2238
2447
|
#
|
|
2239
2448
|
#
|
|
@@ -2242,12 +2451,12 @@ module Aws::AppStream
|
|
|
2242
2451
|
#
|
|
2243
2452
|
# @!attribute [rw] dry_run
|
|
2244
2453
|
# Indicates whether to display the status of image update availability
|
|
2245
|
-
# before
|
|
2246
|
-
# image. If this value is set to `true`,
|
|
2247
|
-
# whether image updates are available. If this
|
|
2248
|
-
# `false`,
|
|
2249
|
-
# updated image without displaying whether
|
|
2250
|
-
# available.
|
|
2454
|
+
# before WorkSpaces Applications initiates the process of creating a
|
|
2455
|
+
# new updated image. If this value is set to `true`, WorkSpaces
|
|
2456
|
+
# Applications displays whether image updates are available. If this
|
|
2457
|
+
# value is set to `false`, WorkSpaces Applications initiates the
|
|
2458
|
+
# process of creating a new updated image without displaying whether
|
|
2459
|
+
# image updates are available.
|
|
2251
2460
|
# @return [Boolean]
|
|
2252
2461
|
#
|
|
2253
2462
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateUpdatedImageRequest AWS API Documentation
|
|
@@ -2290,12 +2499,13 @@ module Aws::AppStream
|
|
|
2290
2499
|
# The Amazon S3 bucket where generated reports are stored.
|
|
2291
2500
|
#
|
|
2292
2501
|
# If you enabled on-instance session scripts and Amazon S3 logging for
|
|
2293
|
-
# your session script configuration,
|
|
2294
|
-
# bucket to store the script output. The bucket is unique to
|
|
2295
|
-
# account and Region. When you enable usage reporting in this
|
|
2296
|
-
#
|
|
2297
|
-
# you haven't already enabled on-instance session
|
|
2298
|
-
# enable usage reports,
|
|
2502
|
+
# your session script configuration, WorkSpaces Applications created
|
|
2503
|
+
# an S3 bucket to store the script output. The bucket is unique to
|
|
2504
|
+
# your account and Region. When you enable usage reporting in this
|
|
2505
|
+
# case, WorkSpaces Applications uses the same bucket to store your
|
|
2506
|
+
# usage reports. If you haven't already enabled on-instance session
|
|
2507
|
+
# scripts, when you enable usage reports, WorkSpaces Applications
|
|
2508
|
+
# creates a new S3 bucket.
|
|
2299
2509
|
# @return [String]
|
|
2300
2510
|
#
|
|
2301
2511
|
# @!attribute [rw] schedule
|
|
@@ -3699,6 +3909,22 @@ module Aws::AppStream
|
|
|
3699
3909
|
include Aws::Structure
|
|
3700
3910
|
end
|
|
3701
3911
|
|
|
3912
|
+
# The exception that is thrown when a dry run operation is requested.
|
|
3913
|
+
# This indicates that the validation checks have been performed
|
|
3914
|
+
# successfully, but no actual resources were created or modified.
|
|
3915
|
+
#
|
|
3916
|
+
# @!attribute [rw] message
|
|
3917
|
+
# The error message in the exception.
|
|
3918
|
+
# @return [String]
|
|
3919
|
+
#
|
|
3920
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DryRunOperationException AWS API Documentation
|
|
3921
|
+
#
|
|
3922
|
+
class DryRunOperationException < Struct.new(
|
|
3923
|
+
:message)
|
|
3924
|
+
SENSITIVE = []
|
|
3925
|
+
include Aws::Structure
|
|
3926
|
+
end
|
|
3927
|
+
|
|
3702
3928
|
# @!attribute [rw] user_name
|
|
3703
3929
|
# The email address of the user.
|
|
3704
3930
|
#
|
|
@@ -3744,9 +3970,9 @@ module Aws::AppStream
|
|
|
3744
3970
|
|
|
3745
3971
|
# Specifies an entitlement. Entitlements control access to specific
|
|
3746
3972
|
# applications within a stack, based on user attributes. Entitlements
|
|
3747
|
-
# apply to SAML 2.0 federated user identities.
|
|
3748
|
-
# pool and streaming URL users are entitled to all applications in
|
|
3749
|
-
# stack. Entitlements don't apply to the desktop stream view
|
|
3973
|
+
# apply to SAML 2.0 federated user identities. WorkSpaces Applications
|
|
3974
|
+
# user pool and streaming URL users are entitled to all applications in
|
|
3975
|
+
# a stack. Entitlements don't apply to the desktop stream view
|
|
3750
3976
|
# application, or to applications managed by a dynamic app provider
|
|
3751
3977
|
# using the Dynamic Application Framework.
|
|
3752
3978
|
#
|
|
@@ -3808,12 +4034,12 @@ module Aws::AppStream
|
|
|
3808
4034
|
|
|
3809
4035
|
# An attribute associated with an entitlement. Application entitlements
|
|
3810
4036
|
# work by matching a supported SAML 2.0 attribute name to a value when a
|
|
3811
|
-
# user identity federates to
|
|
4037
|
+
# user identity federates to a WorkSpaces Applications SAML application.
|
|
3812
4038
|
#
|
|
3813
4039
|
# @!attribute [rw] name
|
|
3814
4040
|
# A supported AWS IAM SAML `PrincipalTag` attribute that is matched to
|
|
3815
|
-
# the associated value when a user identity federates into
|
|
3816
|
-
#
|
|
4041
|
+
# the associated value when a user identity federates into a
|
|
4042
|
+
# WorkSpaces Applications SAML application.
|
|
3817
4043
|
#
|
|
3818
4044
|
# The following are valid values:
|
|
3819
4045
|
#
|
|
@@ -3834,7 +4060,7 @@ module Aws::AppStream
|
|
|
3834
4060
|
#
|
|
3835
4061
|
# @!attribute [rw] value
|
|
3836
4062
|
# A value that is matched to a supported SAML attribute name when a
|
|
3837
|
-
# user identity federates into
|
|
4063
|
+
# user identity federates into a WorkSpaces Applications SAML
|
|
3838
4064
|
# application.
|
|
3839
4065
|
# @return [String]
|
|
3840
4066
|
#
|
|
@@ -3896,6 +4122,88 @@ module Aws::AppStream
|
|
|
3896
4122
|
#
|
|
3897
4123
|
class ExpireSessionResult < Aws::EmptyStructure; end
|
|
3898
4124
|
|
|
4125
|
+
# Information about an export image task, including its current state,
|
|
4126
|
+
# timestamps, and any error details.
|
|
4127
|
+
#
|
|
4128
|
+
# @!attribute [rw] task_id
|
|
4129
|
+
# The unique identifier for the export image task. Use this ID to
|
|
4130
|
+
# track the task's progress and retrieve its details.
|
|
4131
|
+
# @return [String]
|
|
4132
|
+
#
|
|
4133
|
+
# @!attribute [rw] image_arn
|
|
4134
|
+
# The ARN of the WorkSpaces Applications image being exported.
|
|
4135
|
+
# @return [String]
|
|
4136
|
+
#
|
|
4137
|
+
# @!attribute [rw] ami_name
|
|
4138
|
+
# The name of the EC2 AMI that will be created by this export task.
|
|
4139
|
+
# @return [String]
|
|
4140
|
+
#
|
|
4141
|
+
# @!attribute [rw] created_date
|
|
4142
|
+
# The date and time when the export image task was created.
|
|
4143
|
+
# @return [Time]
|
|
4144
|
+
#
|
|
4145
|
+
# @!attribute [rw] ami_description
|
|
4146
|
+
# The description that will be applied to the exported EC2 AMI.
|
|
4147
|
+
# @return [String]
|
|
4148
|
+
#
|
|
4149
|
+
# @!attribute [rw] state
|
|
4150
|
+
# The current state of the export image task, such as PENDING,
|
|
4151
|
+
# RUNNING, COMPLETED, or FAILED.
|
|
4152
|
+
# @return [String]
|
|
4153
|
+
#
|
|
4154
|
+
# @!attribute [rw] ami_id
|
|
4155
|
+
# The ID of the EC2 AMI that was created by this export task. This
|
|
4156
|
+
# field is only populated when the task completes successfully.
|
|
4157
|
+
# @return [String]
|
|
4158
|
+
#
|
|
4159
|
+
# @!attribute [rw] tag_specifications
|
|
4160
|
+
# The tags that will be applied to the exported EC2 AMI.
|
|
4161
|
+
# @return [Hash<String,String>]
|
|
4162
|
+
#
|
|
4163
|
+
# @!attribute [rw] error_details
|
|
4164
|
+
# Details about any errors that occurred during the export process.
|
|
4165
|
+
# This field is only populated when the task fails.
|
|
4166
|
+
# @return [Array<Types::ErrorDetails>]
|
|
4167
|
+
#
|
|
4168
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/ExportImageTask AWS API Documentation
|
|
4169
|
+
#
|
|
4170
|
+
class ExportImageTask < Struct.new(
|
|
4171
|
+
:task_id,
|
|
4172
|
+
:image_arn,
|
|
4173
|
+
:ami_name,
|
|
4174
|
+
:created_date,
|
|
4175
|
+
:ami_description,
|
|
4176
|
+
:state,
|
|
4177
|
+
:ami_id,
|
|
4178
|
+
:tag_specifications,
|
|
4179
|
+
:error_details)
|
|
4180
|
+
SENSITIVE = []
|
|
4181
|
+
include Aws::Structure
|
|
4182
|
+
end
|
|
4183
|
+
|
|
4184
|
+
# A filter for narrowing down the results when listing export image
|
|
4185
|
+
# tasks. Filters allow you to specify criteria such as task state or
|
|
4186
|
+
# creation date.
|
|
4187
|
+
#
|
|
4188
|
+
# @!attribute [rw] name
|
|
4189
|
+
# The name of the filter. Valid filter names depend on the operation
|
|
4190
|
+
# being performed.
|
|
4191
|
+
# @return [String]
|
|
4192
|
+
#
|
|
4193
|
+
# @!attribute [rw] values
|
|
4194
|
+
# The values for the filter. Multiple values can be specified for a
|
|
4195
|
+
# single filter name.
|
|
4196
|
+
# @return [Array<String>]
|
|
4197
|
+
#
|
|
4198
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Filter AWS API Documentation
|
|
4199
|
+
#
|
|
4200
|
+
class Filter < Struct.new(
|
|
4201
|
+
:name,
|
|
4202
|
+
:values)
|
|
4203
|
+
SENSITIVE = []
|
|
4204
|
+
include Aws::Structure
|
|
4205
|
+
end
|
|
4206
|
+
|
|
3899
4207
|
# Describes a fleet.
|
|
3900
4208
|
#
|
|
3901
4209
|
# @!attribute [rw] arn
|
|
@@ -3972,8 +4280,6 @@ module Aws::AppStream
|
|
|
3972
4280
|
#
|
|
3973
4281
|
# * stream.graphics-design.4xlarge
|
|
3974
4282
|
#
|
|
3975
|
-
# * stream.graphics-desktop.2xlarge
|
|
3976
|
-
#
|
|
3977
4283
|
# * stream.graphics.g4dn.xlarge
|
|
3978
4284
|
#
|
|
3979
4285
|
# * stream.graphics.g4dn.2xlarge
|
|
@@ -3986,12 +4292,6 @@ module Aws::AppStream
|
|
|
3986
4292
|
#
|
|
3987
4293
|
# * stream.graphics.g4dn.16xlarge
|
|
3988
4294
|
#
|
|
3989
|
-
# * stream.graphics-pro.4xlarge
|
|
3990
|
-
#
|
|
3991
|
-
# * stream.graphics-pro.8xlarge
|
|
3992
|
-
#
|
|
3993
|
-
# * stream.graphics-pro.16xlarge
|
|
3994
|
-
#
|
|
3995
4295
|
# * stream.graphics.g5.xlarge
|
|
3996
4296
|
#
|
|
3997
4297
|
# * stream.graphics.g5.2xlarge
|
|
@@ -4137,12 +4437,14 @@ module Aws::AppStream
|
|
|
4137
4437
|
# role, the fleet instance calls the AWS Security Token Service (STS)
|
|
4138
4438
|
# `AssumeRole` API operation and passes the ARN of the role to use.
|
|
4139
4439
|
# The operation creates a new session with temporary credentials.
|
|
4140
|
-
#
|
|
4141
|
-
# **appstream\_machine\_role** credential profile on the
|
|
4440
|
+
# WorkSpaces Applications retrieves the temporary credentials and
|
|
4441
|
+
# creates the **appstream\_machine\_role** credential profile on the
|
|
4442
|
+
# instance.
|
|
4142
4443
|
#
|
|
4143
4444
|
# For more information, see [Using an IAM Role to Grant Permissions to
|
|
4144
|
-
# Applications and Scripts Running on
|
|
4145
|
-
# Instances][1] in the *Amazon
|
|
4445
|
+
# Applications and Scripts Running on WorkSpaces Applications
|
|
4446
|
+
# Streaming Instances][1] in the *Amazon WorkSpaces Applications
|
|
4447
|
+
# Administration Guide*.
|
|
4146
4448
|
#
|
|
4147
4449
|
#
|
|
4148
4450
|
#
|
|
@@ -4150,11 +4452,11 @@ module Aws::AppStream
|
|
|
4150
4452
|
# @return [String]
|
|
4151
4453
|
#
|
|
4152
4454
|
# @!attribute [rw] stream_view
|
|
4153
|
-
# The
|
|
4154
|
-
# stream from the fleet. When `APP` is specified, only the
|
|
4155
|
-
# applications opened by users display. When `DESKTOP` is
|
|
4156
|
-
# the standard desktop that is provided by the operating
|
|
4157
|
-
# displays.
|
|
4455
|
+
# The WorkSpaces Applications view that is displayed to your users
|
|
4456
|
+
# when they stream from the fleet. When `APP` is specified, only the
|
|
4457
|
+
# windows of applications opened by users display. When `DESKTOP` is
|
|
4458
|
+
# specified, the standard desktop that is provided by the operating
|
|
4459
|
+
# system displays.
|
|
4158
4460
|
#
|
|
4159
4461
|
# The default value is `APP`.
|
|
4160
4462
|
# @return [String]
|
|
@@ -4181,6 +4483,11 @@ module Aws::AppStream
|
|
|
4181
4483
|
# applies to multi-session fleets.
|
|
4182
4484
|
# @return [Integer]
|
|
4183
4485
|
#
|
|
4486
|
+
# @!attribute [rw] root_volume_config
|
|
4487
|
+
# The current configuration of the root volume for fleet instances,
|
|
4488
|
+
# including the storage size in GB.
|
|
4489
|
+
# @return [Types::VolumeConfig]
|
|
4490
|
+
#
|
|
4184
4491
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Fleet AWS API Documentation
|
|
4185
4492
|
#
|
|
4186
4493
|
class Fleet < Struct.new(
|
|
@@ -4208,7 +4515,8 @@ module Aws::AppStream
|
|
|
4208
4515
|
:max_concurrent_sessions,
|
|
4209
4516
|
:usb_device_filter_strings,
|
|
4210
4517
|
:session_script_s3_location,
|
|
4211
|
-
:max_sessions_per_instance
|
|
4518
|
+
:max_sessions_per_instance,
|
|
4519
|
+
:root_volume_config)
|
|
4212
4520
|
SENSITIVE = []
|
|
4213
4521
|
include Aws::Structure
|
|
4214
4522
|
end
|
|
@@ -4232,6 +4540,32 @@ module Aws::AppStream
|
|
|
4232
4540
|
include Aws::Structure
|
|
4233
4541
|
end
|
|
4234
4542
|
|
|
4543
|
+
# @!attribute [rw] task_id
|
|
4544
|
+
# The unique identifier of the export image task to retrieve
|
|
4545
|
+
# information about.
|
|
4546
|
+
# @return [String]
|
|
4547
|
+
#
|
|
4548
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/GetExportImageTaskRequest AWS API Documentation
|
|
4549
|
+
#
|
|
4550
|
+
class GetExportImageTaskRequest < Struct.new(
|
|
4551
|
+
:task_id)
|
|
4552
|
+
SENSITIVE = []
|
|
4553
|
+
include Aws::Structure
|
|
4554
|
+
end
|
|
4555
|
+
|
|
4556
|
+
# @!attribute [rw] export_image_task
|
|
4557
|
+
# Information about the export image task, including its current
|
|
4558
|
+
# state, created date, and any error details.
|
|
4559
|
+
# @return [Types::ExportImageTask]
|
|
4560
|
+
#
|
|
4561
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/GetExportImageTaskResult AWS API Documentation
|
|
4562
|
+
#
|
|
4563
|
+
class GetExportImageTaskResult < Struct.new(
|
|
4564
|
+
:export_image_task)
|
|
4565
|
+
SENSITIVE = []
|
|
4566
|
+
include Aws::Structure
|
|
4567
|
+
end
|
|
4568
|
+
|
|
4235
4569
|
# Describes an image.
|
|
4236
4570
|
#
|
|
4237
4571
|
# @!attribute [rw] name
|
|
@@ -4297,8 +4631,8 @@ module Aws::AppStream
|
|
|
4297
4631
|
# @return [Time]
|
|
4298
4632
|
#
|
|
4299
4633
|
# @!attribute [rw] appstream_agent_version
|
|
4300
|
-
# The version of the
|
|
4301
|
-
# launched from this image.
|
|
4634
|
+
# The version of the WorkSpaces Applications agent to use for
|
|
4635
|
+
# instances that are launched from this image.
|
|
4302
4636
|
# @return [String]
|
|
4303
4637
|
#
|
|
4304
4638
|
# @!attribute [rw] image_permissions
|
|
@@ -4312,8 +4646,8 @@ module Aws::AppStream
|
|
|
4312
4646
|
# @return [Array<Types::ResourceError>]
|
|
4313
4647
|
#
|
|
4314
4648
|
# @!attribute [rw] latest_appstream_agent_version
|
|
4315
|
-
# Indicates whether the image is using the latest
|
|
4316
|
-
# version or not.
|
|
4649
|
+
# Indicates whether the image is using the latest WorkSpaces
|
|
4650
|
+
# Applications agent version or not.
|
|
4317
4651
|
# @return [String]
|
|
4318
4652
|
#
|
|
4319
4653
|
# @!attribute [rw] supported_instance_families
|
|
@@ -4340,7 +4674,7 @@ module Aws::AppStream
|
|
|
4340
4674
|
#
|
|
4341
4675
|
# @!attribute [rw] dynamic_app_providers_enabled
|
|
4342
4676
|
# Indicates whether dynamic app providers are enabled within an
|
|
4343
|
-
#
|
|
4677
|
+
# WorkSpaces Applications image or not.
|
|
4344
4678
|
# @return [String]
|
|
4345
4679
|
#
|
|
4346
4680
|
# @!attribute [rw] image_shared_with_others
|
|
@@ -4351,6 +4685,14 @@ module Aws::AppStream
|
|
|
4351
4685
|
# Indicates whether the image includes license-included applications.
|
|
4352
4686
|
# @return [Boolean]
|
|
4353
4687
|
#
|
|
4688
|
+
# @!attribute [rw] image_type
|
|
4689
|
+
# The type of the image. Images created through AMI import have type
|
|
4690
|
+
# "custom", while WorkSpaces Applications provided images have type
|
|
4691
|
+
# "native". Custom images support additional instance types
|
|
4692
|
+
# including GeneralPurpose, MemoryOptimized, ComputeOptimized, and
|
|
4693
|
+
# Accelerated instance families.
|
|
4694
|
+
# @return [String]
|
|
4695
|
+
#
|
|
4354
4696
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Image AWS API Documentation
|
|
4355
4697
|
#
|
|
4356
4698
|
class Image < Struct.new(
|
|
@@ -4375,7 +4717,8 @@ module Aws::AppStream
|
|
|
4375
4717
|
:supported_instance_families,
|
|
4376
4718
|
:dynamic_app_providers_enabled,
|
|
4377
4719
|
:image_shared_with_others,
|
|
4378
|
-
:managed_software_included
|
|
4720
|
+
:managed_software_included,
|
|
4721
|
+
:image_type)
|
|
4379
4722
|
SENSITIVE = []
|
|
4380
4723
|
include Aws::Structure
|
|
4381
4724
|
end
|
|
@@ -4456,8 +4799,6 @@ module Aws::AppStream
|
|
|
4456
4799
|
#
|
|
4457
4800
|
# * stream.graphics-design.4xlarge
|
|
4458
4801
|
#
|
|
4459
|
-
# * stream.graphics-desktop.2xlarge
|
|
4460
|
-
#
|
|
4461
4802
|
# * stream.graphics.g4dn.xlarge
|
|
4462
4803
|
#
|
|
4463
4804
|
# * stream.graphics.g4dn.2xlarge
|
|
@@ -4470,12 +4811,6 @@ module Aws::AppStream
|
|
|
4470
4811
|
#
|
|
4471
4812
|
# * stream.graphics.g4dn.16xlarge
|
|
4472
4813
|
#
|
|
4473
|
-
# * stream.graphics-pro.4xlarge
|
|
4474
|
-
#
|
|
4475
|
-
# * stream.graphics-pro.8xlarge
|
|
4476
|
-
#
|
|
4477
|
-
# * stream.graphics-pro.16xlarge
|
|
4478
|
-
#
|
|
4479
4814
|
# * stream.graphics.g5.xlarge
|
|
4480
4815
|
#
|
|
4481
4816
|
# * stream.graphics.g5.2xlarge
|
|
@@ -4528,13 +4863,14 @@ module Aws::AppStream
|
|
|
4528
4863
|
# assume a role, the image builder calls the AWS Security Token
|
|
4529
4864
|
# Service (STS) `AssumeRole` API operation and passes the ARN of the
|
|
4530
4865
|
# role to use. The operation creates a new session with temporary
|
|
4531
|
-
# credentials.
|
|
4532
|
-
# creates the **appstream\_machine\_role** credential
|
|
4533
|
-
# instance.
|
|
4866
|
+
# credentials. WorkSpaces Applications retrieves the temporary
|
|
4867
|
+
# credentials and creates the **appstream\_machine\_role** credential
|
|
4868
|
+
# profile on the instance.
|
|
4534
4869
|
#
|
|
4535
4870
|
# For more information, see [Using an IAM Role to Grant Permissions to
|
|
4536
|
-
# Applications and Scripts Running on
|
|
4537
|
-
# Instances][1] in the *Amazon
|
|
4871
|
+
# Applications and Scripts Running on WorkSpaces Applications
|
|
4872
|
+
# Streaming Instances][1] in the *Amazon WorkSpaces Applications
|
|
4873
|
+
# Administration Guide*.
|
|
4538
4874
|
#
|
|
4539
4875
|
#
|
|
4540
4876
|
#
|
|
@@ -4572,8 +4908,8 @@ module Aws::AppStream
|
|
|
4572
4908
|
# @return [Array<Types::ResourceError>]
|
|
4573
4909
|
#
|
|
4574
4910
|
# @!attribute [rw] appstream_agent_version
|
|
4575
|
-
# The version of the
|
|
4576
|
-
# by the image builder.
|
|
4911
|
+
# The version of the WorkSpaces Applications agent that is currently
|
|
4912
|
+
# being used by the image builder.
|
|
4577
4913
|
# @return [String]
|
|
4578
4914
|
#
|
|
4579
4915
|
# @!attribute [rw] access_endpoints
|
|
@@ -4582,9 +4918,14 @@ module Aws::AppStream
|
|
|
4582
4918
|
# specified endpoints.
|
|
4583
4919
|
# @return [Array<Types::AccessEndpoint>]
|
|
4584
4920
|
#
|
|
4921
|
+
# @!attribute [rw] root_volume_config
|
|
4922
|
+
# The current configuration of the root volume for the image builder,
|
|
4923
|
+
# including the storage size in GB.
|
|
4924
|
+
# @return [Types::VolumeConfig]
|
|
4925
|
+
#
|
|
4585
4926
|
# @!attribute [rw] latest_appstream_agent_version
|
|
4586
|
-
# Indicates whether the image builder is using the latest
|
|
4587
|
-
#
|
|
4927
|
+
# Indicates whether the image builder is using the latest WorkSpaces
|
|
4928
|
+
# Applications agent version or not.
|
|
4588
4929
|
# @return [String]
|
|
4589
4930
|
#
|
|
4590
4931
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/ImageBuilder AWS API Documentation
|
|
@@ -4608,6 +4949,7 @@ module Aws::AppStream
|
|
|
4608
4949
|
:image_builder_errors,
|
|
4609
4950
|
:appstream_agent_version,
|
|
4610
4951
|
:access_endpoints,
|
|
4952
|
+
:root_volume_config,
|
|
4611
4953
|
:latest_appstream_agent_version)
|
|
4612
4954
|
SENSITIVE = []
|
|
4613
4955
|
include Aws::Structure
|
|
@@ -4882,6 +5224,50 @@ module Aws::AppStream
|
|
|
4882
5224
|
include Aws::Structure
|
|
4883
5225
|
end
|
|
4884
5226
|
|
|
5227
|
+
# @!attribute [rw] filters
|
|
5228
|
+
# Optional filters to apply when listing export image tasks. Filters
|
|
5229
|
+
# help you narrow down the results based on specific criteria.
|
|
5230
|
+
# @return [Array<Types::Filter>]
|
|
5231
|
+
#
|
|
5232
|
+
# @!attribute [rw] max_results
|
|
5233
|
+
# The maximum number of export image tasks to return in a single
|
|
5234
|
+
# request. The valid range is 1-500, with a default of 50.
|
|
5235
|
+
# @return [Integer]
|
|
5236
|
+
#
|
|
5237
|
+
# @!attribute [rw] next_token
|
|
5238
|
+
# The pagination token from a previous request. Use this to retrieve
|
|
5239
|
+
# the next page of results when there are more tasks than the
|
|
5240
|
+
# MaxResults limit.
|
|
5241
|
+
# @return [String]
|
|
5242
|
+
#
|
|
5243
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/ListExportImageTasksRequest AWS API Documentation
|
|
5244
|
+
#
|
|
5245
|
+
class ListExportImageTasksRequest < Struct.new(
|
|
5246
|
+
:filters,
|
|
5247
|
+
:max_results,
|
|
5248
|
+
:next_token)
|
|
5249
|
+
SENSITIVE = []
|
|
5250
|
+
include Aws::Structure
|
|
5251
|
+
end
|
|
5252
|
+
|
|
5253
|
+
# @!attribute [rw] export_image_tasks
|
|
5254
|
+
# The list of export image tasks that match the specified criteria.
|
|
5255
|
+
# @return [Array<Types::ExportImageTask>]
|
|
5256
|
+
#
|
|
5257
|
+
# @!attribute [rw] next_token
|
|
5258
|
+
# The pagination token to use for retrieving the next page of results.
|
|
5259
|
+
# This field is only present when there are more results available.
|
|
5260
|
+
# @return [String]
|
|
5261
|
+
#
|
|
5262
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/ListExportImageTasksResult AWS API Documentation
|
|
5263
|
+
#
|
|
5264
|
+
class ListExportImageTasksResult < Struct.new(
|
|
5265
|
+
:export_image_tasks,
|
|
5266
|
+
:next_token)
|
|
5267
|
+
SENSITIVE = []
|
|
5268
|
+
include Aws::Structure
|
|
5269
|
+
end
|
|
5270
|
+
|
|
4885
5271
|
# @!attribute [rw] resource_arn
|
|
4886
5272
|
# The Amazon Resource Name (ARN) of the resource.
|
|
4887
5273
|
# @return [String]
|
|
@@ -4914,8 +5300,9 @@ module Aws::AppStream
|
|
|
4914
5300
|
# @return [String]
|
|
4915
5301
|
#
|
|
4916
5302
|
# @!attribute [rw] eni_ipv_6_addresses
|
|
4917
|
-
# The IPv6 addresses
|
|
4918
|
-
#
|
|
5303
|
+
# The IPv6 addresses assigned to the elastic network interface. This
|
|
5304
|
+
# field supports IPv6 connectivity for WorkSpaces Applications
|
|
5305
|
+
# instances.
|
|
4919
5306
|
# @return [Array<String>]
|
|
4920
5307
|
#
|
|
4921
5308
|
# @!attribute [rw] eni_id
|
|
@@ -4948,9 +5335,9 @@ module Aws::AppStream
|
|
|
4948
5335
|
include Aws::Structure
|
|
4949
5336
|
end
|
|
4950
5337
|
|
|
4951
|
-
#
|
|
4952
|
-
# calls from your AWS account are being throttled by Amazon
|
|
4953
|
-
# again later.
|
|
5338
|
+
# WorkSpaces Applications can’t process the request right now because
|
|
5339
|
+
# the Describe calls from your AWS account are being throttled by Amazon
|
|
5340
|
+
# EC2. Try again later.
|
|
4954
5341
|
#
|
|
4955
5342
|
# @!attribute [rw] message
|
|
4956
5343
|
# The error message in the exception.
|
|
@@ -5044,6 +5431,24 @@ module Aws::AppStream
|
|
|
5044
5431
|
include Aws::Structure
|
|
5045
5432
|
end
|
|
5046
5433
|
|
|
5434
|
+
# Configuration for runtime validation of imported images. This
|
|
5435
|
+
# structure specifies the instance type to use for testing the imported
|
|
5436
|
+
# image's streaming capabilities.
|
|
5437
|
+
#
|
|
5438
|
+
# @!attribute [rw] intended_instance_type
|
|
5439
|
+
# The instance type to use for runtime validation testing. It's
|
|
5440
|
+
# recommended to use the same instance type you plan to use for your
|
|
5441
|
+
# fleet to ensure accurate validation results.
|
|
5442
|
+
# @return [String]
|
|
5443
|
+
#
|
|
5444
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/RuntimeValidationConfig AWS API Documentation
|
|
5445
|
+
#
|
|
5446
|
+
class RuntimeValidationConfig < Struct.new(
|
|
5447
|
+
:intended_instance_type)
|
|
5448
|
+
SENSITIVE = []
|
|
5449
|
+
include Aws::Structure
|
|
5450
|
+
end
|
|
5451
|
+
|
|
5047
5452
|
# Describes the S3 location.
|
|
5048
5453
|
#
|
|
5049
5454
|
# @!attribute [rw] s3_bucket
|
|
@@ -5353,14 +5758,14 @@ module Aws::AppStream
|
|
|
5353
5758
|
#
|
|
5354
5759
|
# @!attribute [rw] access_endpoints
|
|
5355
5760
|
# The list of virtual private cloud (VPC) interface endpoint objects.
|
|
5356
|
-
# Users of the stack can connect to
|
|
5357
|
-
# specified endpoints.
|
|
5761
|
+
# Users of the stack can connect to WorkSpaces Applications only
|
|
5762
|
+
# through the specified endpoints.
|
|
5358
5763
|
# @return [Array<Types::AccessEndpoint>]
|
|
5359
5764
|
#
|
|
5360
5765
|
# @!attribute [rw] embed_host_domains
|
|
5361
|
-
# The domains where
|
|
5362
|
-
# in an iframe. You must approve the domains that you want to
|
|
5363
|
-
# embedded
|
|
5766
|
+
# The domains where WorkSpaces Applications streaming sessions can be
|
|
5767
|
+
# embedded in an iframe. You must approve the domains that you want to
|
|
5768
|
+
# host embedded WorkSpaces Applications streaming sessions.
|
|
5364
5769
|
# @return [Array<String>]
|
|
5365
5770
|
#
|
|
5366
5771
|
# @!attribute [rw] streaming_experience_settings
|
|
@@ -5454,9 +5859,9 @@ module Aws::AppStream
|
|
|
5454
5859
|
# @return [String]
|
|
5455
5860
|
#
|
|
5456
5861
|
# @!attribute [rw] appstream_agent_version
|
|
5457
|
-
# The version of the
|
|
5458
|
-
# builder. To use the latest version of the
|
|
5459
|
-
# specify \[LATEST\].
|
|
5862
|
+
# The version of the WorkSpaces Applications agent to use for this
|
|
5863
|
+
# image builder. To use the latest version of the WorkSpaces
|
|
5864
|
+
# Applications agent, specify \[LATEST\].
|
|
5460
5865
|
# @return [String]
|
|
5461
5866
|
#
|
|
5462
5867
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StartImageBuilderRequest AWS API Documentation
|
|
@@ -5582,8 +5987,9 @@ module Aws::AppStream
|
|
|
5582
5987
|
#
|
|
5583
5988
|
# @!attribute [rw] domains_require_admin_consent
|
|
5584
5989
|
# The OneDrive for Business domains where you require admin consent
|
|
5585
|
-
# when users try to link their OneDrive account to
|
|
5586
|
-
# attribute can only be specified when
|
|
5990
|
+
# when users try to link their OneDrive account to WorkSpaces
|
|
5991
|
+
# Applications. The attribute can only be specified when
|
|
5992
|
+
# ConnectorType=ONE\_DRIVE.
|
|
5587
5993
|
# @return [Array<String>]
|
|
5588
5994
|
#
|
|
5589
5995
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StorageConnector AWS API Documentation
|
|
@@ -5785,13 +6191,14 @@ module Aws::AppStream
|
|
|
5785
6191
|
# block builder. To assume a role, the app block builder calls the AWS
|
|
5786
6192
|
# Security Token Service (STS) `AssumeRole` API operation and passes
|
|
5787
6193
|
# the ARN of the role to use. The operation creates a new session with
|
|
5788
|
-
# temporary credentials.
|
|
5789
|
-
# credentials and creates the **appstream\_machine\_role**
|
|
5790
|
-
# profile on the instance.
|
|
6194
|
+
# temporary credentials. WorkSpaces Applications retrieves the
|
|
6195
|
+
# temporary credentials and creates the **appstream\_machine\_role**
|
|
6196
|
+
# credential profile on the instance.
|
|
5791
6197
|
#
|
|
5792
6198
|
# For more information, see [Using an IAM Role to Grant Permissions to
|
|
5793
|
-
# Applications and Scripts Running on
|
|
5794
|
-
# Instances][1] in the *Amazon
|
|
6199
|
+
# Applications and Scripts Running on WorkSpaces Applications
|
|
6200
|
+
# Streaming Instances][1] in the *Amazon WorkSpaces Applications
|
|
6201
|
+
# Administration Guide*.
|
|
5795
6202
|
#
|
|
5796
6203
|
#
|
|
5797
6204
|
#
|
|
@@ -6063,8 +6470,6 @@ module Aws::AppStream
|
|
|
6063
6470
|
#
|
|
6064
6471
|
# * stream.graphics-design.4xlarge
|
|
6065
6472
|
#
|
|
6066
|
-
# * stream.graphics-desktop.2xlarge
|
|
6067
|
-
#
|
|
6068
6473
|
# * stream.graphics.g4dn.xlarge
|
|
6069
6474
|
#
|
|
6070
6475
|
# * stream.graphics.g4dn.2xlarge
|
|
@@ -6077,12 +6482,6 @@ module Aws::AppStream
|
|
|
6077
6482
|
#
|
|
6078
6483
|
# * stream.graphics.g4dn.16xlarge
|
|
6079
6484
|
#
|
|
6080
|
-
# * stream.graphics-pro.4xlarge
|
|
6081
|
-
#
|
|
6082
|
-
# * stream.graphics-pro.8xlarge
|
|
6083
|
-
#
|
|
6084
|
-
# * stream.graphics-pro.16xlarge
|
|
6085
|
-
#
|
|
6086
6485
|
# * stream.graphics.g5.xlarge
|
|
6087
6486
|
#
|
|
6088
6487
|
# * stream.graphics.g5.2xlarge
|
|
@@ -6231,13 +6630,14 @@ module Aws::AppStream
|
|
|
6231
6630
|
# fleet. To assume a role, a fleet instance calls the AWS Security
|
|
6232
6631
|
# Token Service (STS) `AssumeRole` API operation and passes the ARN of
|
|
6233
6632
|
# the role to use. The operation creates a new session with temporary
|
|
6234
|
-
# credentials.
|
|
6235
|
-
# creates the **appstream\_machine\_role** credential
|
|
6236
|
-
# instance.
|
|
6633
|
+
# credentials. WorkSpaces Applications retrieves the temporary
|
|
6634
|
+
# credentials and creates the **appstream\_machine\_role** credential
|
|
6635
|
+
# profile on the instance.
|
|
6237
6636
|
#
|
|
6238
6637
|
# For more information, see [Using an IAM Role to Grant Permissions to
|
|
6239
|
-
# Applications and Scripts Running on
|
|
6240
|
-
# Instances][1] in the *Amazon
|
|
6638
|
+
# Applications and Scripts Running on WorkSpaces Applications
|
|
6639
|
+
# Streaming Instances][1] in the *Amazon WorkSpaces Applications
|
|
6640
|
+
# Administration Guide*.
|
|
6241
6641
|
#
|
|
6242
6642
|
#
|
|
6243
6643
|
#
|
|
@@ -6245,11 +6645,11 @@ module Aws::AppStream
|
|
|
6245
6645
|
# @return [String]
|
|
6246
6646
|
#
|
|
6247
6647
|
# @!attribute [rw] stream_view
|
|
6248
|
-
# The
|
|
6249
|
-
# stream from the fleet. When `APP` is specified, only the
|
|
6250
|
-
# applications opened by users display. When `DESKTOP` is
|
|
6251
|
-
# the standard desktop that is provided by the operating
|
|
6252
|
-
# displays.
|
|
6648
|
+
# The WorkSpaces Applications view that is displayed to your users
|
|
6649
|
+
# when they stream from the fleet. When `APP` is specified, only the
|
|
6650
|
+
# windows of applications opened by users display. When `DESKTOP` is
|
|
6651
|
+
# specified, the standard desktop that is provided by the operating
|
|
6652
|
+
# system displays.
|
|
6253
6653
|
#
|
|
6254
6654
|
# The default value is `APP`.
|
|
6255
6655
|
# @return [String]
|
|
@@ -6279,6 +6679,12 @@ module Aws::AppStream
|
|
|
6279
6679
|
# applies to multi-session fleets.
|
|
6280
6680
|
# @return [Integer]
|
|
6281
6681
|
#
|
|
6682
|
+
# @!attribute [rw] root_volume_config
|
|
6683
|
+
# The updated configuration for the root volume of fleet instances.
|
|
6684
|
+
# Note that volume size cannot be decreased below the image volume
|
|
6685
|
+
# size.
|
|
6686
|
+
# @return [Types::VolumeConfig]
|
|
6687
|
+
#
|
|
6282
6688
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateFleetRequest AWS API Documentation
|
|
6283
6689
|
#
|
|
6284
6690
|
class UpdateFleetRequest < Struct.new(
|
|
@@ -6303,7 +6709,8 @@ module Aws::AppStream
|
|
|
6303
6709
|
:max_concurrent_sessions,
|
|
6304
6710
|
:usb_device_filter_strings,
|
|
6305
6711
|
:session_script_s3_location,
|
|
6306
|
-
:max_sessions_per_instance
|
|
6712
|
+
:max_sessions_per_instance,
|
|
6713
|
+
:root_volume_config)
|
|
6307
6714
|
SENSITIVE = []
|
|
6308
6715
|
include Aws::Structure
|
|
6309
6716
|
end
|
|
@@ -6396,14 +6803,14 @@ module Aws::AppStream
|
|
|
6396
6803
|
#
|
|
6397
6804
|
# @!attribute [rw] access_endpoints
|
|
6398
6805
|
# The list of interface VPC endpoint (interface endpoint) objects.
|
|
6399
|
-
# Users of the stack can connect to
|
|
6400
|
-
# specified endpoints.
|
|
6806
|
+
# Users of the stack can connect to WorkSpaces Applications only
|
|
6807
|
+
# through the specified endpoints.
|
|
6401
6808
|
# @return [Array<Types::AccessEndpoint>]
|
|
6402
6809
|
#
|
|
6403
6810
|
# @!attribute [rw] embed_host_domains
|
|
6404
|
-
# The domains where
|
|
6405
|
-
# in an iframe. You must approve the domains that you want to
|
|
6406
|
-
# embedded
|
|
6811
|
+
# The domains where WorkSpaces Applications streaming sessions can be
|
|
6812
|
+
# embedded in an iframe. You must approve the domains that you want to
|
|
6813
|
+
# host embedded WorkSpaces Applications streaming sessions.
|
|
6407
6814
|
# @return [Array<String>]
|
|
6408
6815
|
#
|
|
6409
6816
|
# @!attribute [rw] streaming_experience_settings
|
|
@@ -6520,12 +6927,13 @@ module Aws::AppStream
|
|
|
6520
6927
|
# The Amazon S3 bucket where generated reports are stored.
|
|
6521
6928
|
#
|
|
6522
6929
|
# If you enabled on-instance session scripts and Amazon S3 logging for
|
|
6523
|
-
# your session script configuration,
|
|
6524
|
-
# bucket to store the script output. The bucket is unique to
|
|
6525
|
-
# account and Region. When you enable usage reporting in this
|
|
6526
|
-
#
|
|
6527
|
-
# you haven't already enabled on-instance session
|
|
6528
|
-
# enable usage reports,
|
|
6930
|
+
# your session script configuration, WorkSpaces Applications created
|
|
6931
|
+
# an S3 bucket to store the script output. The bucket is unique to
|
|
6932
|
+
# your account and Region. When you enable usage reporting in this
|
|
6933
|
+
# case, WorkSpaces Applications uses the same bucket to store your
|
|
6934
|
+
# usage reports. If you haven't already enabled on-instance session
|
|
6935
|
+
# scripts, when you enable usage reports, WorkSpaces Applications
|
|
6936
|
+
# creates a new S3 bucket.
|
|
6529
6937
|
# @return [String]
|
|
6530
6938
|
#
|
|
6531
6939
|
# @!attribute [rw] schedule
|
|
@@ -6715,6 +7123,25 @@ module Aws::AppStream
|
|
|
6715
7123
|
include Aws::Structure
|
|
6716
7124
|
end
|
|
6717
7125
|
|
|
7126
|
+
# Configuration for the root volume of fleet instances and image
|
|
7127
|
+
# builders. This allows you to customize the storage capacity beyond the
|
|
7128
|
+
# default 200 GB.
|
|
7129
|
+
#
|
|
7130
|
+
# @!attribute [rw] volume_size_in_gb
|
|
7131
|
+
# The size of the root volume in GB. Valid range is 200-500 GB. The
|
|
7132
|
+
# default is 200 GB, which is included in the hourly instance rate.
|
|
7133
|
+
# Additional storage beyond 200 GB incurs extra charges and applies to
|
|
7134
|
+
# instances regardless of their running state.
|
|
7135
|
+
# @return [Integer]
|
|
7136
|
+
#
|
|
7137
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/VolumeConfig AWS API Documentation
|
|
7138
|
+
#
|
|
7139
|
+
class VolumeConfig < Struct.new(
|
|
7140
|
+
:volume_size_in_gb)
|
|
7141
|
+
SENSITIVE = []
|
|
7142
|
+
include Aws::Structure
|
|
7143
|
+
end
|
|
7144
|
+
|
|
6718
7145
|
# Describes VPC configuration information for fleets and image builders.
|
|
6719
7146
|
#
|
|
6720
7147
|
# @!attribute [rw] subnet_ids
|