@aws-sdk/client-appstream 3.931.0 → 3.933.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.
Files changed (60) hide show
  1. package/README.md +45 -13
  2. package/dist-cjs/index.js +312 -42
  3. package/dist-es/AppStream.js +8 -0
  4. package/dist-es/commands/CreateExportImageTaskCommand.js +16 -0
  5. package/dist-es/commands/CreateImportedImageCommand.js +16 -0
  6. package/dist-es/commands/GetExportImageTaskCommand.js +16 -0
  7. package/dist-es/commands/ListExportImageTasksCommand.js +16 -0
  8. package/dist-es/commands/index.js +4 -0
  9. package/dist-es/models/models_0.js +60 -27
  10. package/dist-es/schemas/schemas_0.js +194 -16
  11. package/dist-types/AppStream.d.ts +36 -6
  12. package/dist-types/AppStreamClient.d.ts +12 -8
  13. package/dist-types/commands/CreateAppBlockBuilderCommand.d.ts +2 -2
  14. package/dist-types/commands/CreateAppBlockCommand.d.ts +1 -1
  15. package/dist-types/commands/CreateApplicationCommand.d.ts +1 -1
  16. package/dist-types/commands/CreateDirectoryConfigCommand.d.ts +1 -1
  17. package/dist-types/commands/CreateEntitlementCommand.d.ts +1 -1
  18. package/dist-types/commands/CreateExportImageTaskCommand.d.ts +118 -0
  19. package/dist-types/commands/CreateFleetCommand.d.ts +8 -2
  20. package/dist-types/commands/CreateImageBuilderCommand.d.ts +9 -3
  21. package/dist-types/commands/CreateImportedImageCommand.d.ts +186 -0
  22. package/dist-types/commands/CreateStreamingURLCommand.d.ts +1 -1
  23. package/dist-types/commands/CreateUpdatedImageCommand.d.ts +6 -5
  24. package/dist-types/commands/DeleteDirectoryConfigCommand.d.ts +1 -1
  25. package/dist-types/commands/DeleteImageBuilderCommand.d.ts +5 -2
  26. package/dist-types/commands/DeleteImageCommand.d.ts +4 -3
  27. package/dist-types/commands/DescribeAppBlockBuildersCommand.d.ts +1 -1
  28. package/dist-types/commands/DescribeDirectoryConfigsCommand.d.ts +1 -1
  29. package/dist-types/commands/DescribeFleetsCommand.d.ts +4 -1
  30. package/dist-types/commands/DescribeImageBuildersCommand.d.ts +5 -2
  31. package/dist-types/commands/DescribeImagesCommand.d.ts +4 -3
  32. package/dist-types/commands/DisableUserCommand.d.ts +1 -1
  33. package/dist-types/commands/EnableUserCommand.d.ts +1 -1
  34. package/dist-types/commands/GetExportImageTaskCommand.d.ts +97 -0
  35. package/dist-types/commands/ListExportImageTasksCommand.d.ts +106 -0
  36. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -2
  37. package/dist-types/commands/StartAppBlockBuilderCommand.d.ts +2 -2
  38. package/dist-types/commands/StartFleetCommand.d.ts +1 -1
  39. package/dist-types/commands/StartImageBuilderCommand.d.ts +5 -2
  40. package/dist-types/commands/StopAppBlockBuilderCommand.d.ts +1 -1
  41. package/dist-types/commands/StopImageBuilderCommand.d.ts +5 -2
  42. package/dist-types/commands/TagResourceCommand.d.ts +2 -2
  43. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  44. package/dist-types/commands/UpdateAppBlockBuilderCommand.d.ts +2 -2
  45. package/dist-types/commands/UpdateDirectoryConfigCommand.d.ts +1 -1
  46. package/dist-types/commands/UpdateFleetCommand.d.ts +9 -3
  47. package/dist-types/commands/index.d.ts +4 -0
  48. package/dist-types/index.d.ts +6 -6
  49. package/dist-types/models/models_0.d.ts +822 -503
  50. package/dist-types/schemas/schemas_0.d.ts +24 -0
  51. package/dist-types/ts3.4/AppStream.d.ts +70 -0
  52. package/dist-types/ts3.4/AppStreamClient.d.ts +24 -0
  53. package/dist-types/ts3.4/commands/CreateExportImageTaskCommand.d.ts +51 -0
  54. package/dist-types/ts3.4/commands/CreateImportedImageCommand.d.ts +51 -0
  55. package/dist-types/ts3.4/commands/GetExportImageTaskCommand.d.ts +51 -0
  56. package/dist-types/ts3.4/commands/ListExportImageTasksCommand.d.ts +51 -0
  57. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  58. package/dist-types/ts3.4/models/models_0.d.ts +176 -68
  59. package/dist-types/ts3.4/schemas/schemas_0.d.ts +24 -0
  60. package/package.json +6 -6
@@ -12,7 +12,7 @@ export declare const AccessEndpointType: {
12
12
  */
13
13
  export type AccessEndpointType = (typeof AccessEndpointType)[keyof typeof AccessEndpointType];
14
14
  /**
15
- * <p>Describes an interface VPC endpoint (interface endpoint) that lets you create a private connection between the virtual private cloud (VPC) that you specify and AppStream 2.0. When you specify an interface endpoint for a stack, users of the stack can connect to AppStream 2.0 only through that endpoint. When you specify an interface endpoint for an image builder, administrators can connect to the image builder only through that endpoint.</p>
15
+ * <p>Describes an interface VPC endpoint (interface endpoint) that lets you create a private connection between the virtual private cloud (VPC) that you specify and WorkSpaces Applications. When you specify an interface endpoint for a stack, users of the stack can connect to WorkSpaces Applications only through that endpoint. When you specify an interface endpoint for an image builder, administrators can connect to the image builder only through that endpoint.</p>
16
16
  * @public
17
17
  */
18
18
  export interface AccessEndpoint {
@@ -86,6 +86,18 @@ export interface AdminAppLicenseUsageRecord {
86
86
  */
87
87
  UserId: string | undefined;
88
88
  }
89
+ /**
90
+ * @public
91
+ * @enum
92
+ */
93
+ export declare const AgentSoftwareVersion: {
94
+ readonly ALWAYS_LATEST: "ALWAYS_LATEST";
95
+ readonly CURRENT_LATEST: "CURRENT_LATEST";
96
+ };
97
+ /**
98
+ * @public
99
+ */
100
+ export type AgentSoftwareVersion = (typeof AgentSoftwareVersion)[keyof typeof AgentSoftwareVersion];
89
101
  /**
90
102
  * <p>The error details.</p>
91
103
  * @public
@@ -193,7 +205,7 @@ export declare const AppBlockState: {
193
205
  export type AppBlockState = (typeof AppBlockState)[keyof typeof AppBlockState];
194
206
  /**
195
207
  * <p>Describes an app block.</p>
196
- * <p>App blocks are an Amazon AppStream 2.0 resource that stores the details about the
208
+ * <p>App blocks are a WorkSpaces Applications resource that stores the details about the
197
209
  * virtual hard disk in an S3 bucket. It also stores the setup script with details about
198
210
  * how to mount the virtual hard disk. The virtual hard disk includes the application
199
211
  * binaries and other files necessary to launch your applications. Multiple applications
@@ -251,7 +263,7 @@ export interface AppBlock {
251
263
  PackagingType?: PackagingType | undefined;
252
264
  /**
253
265
  * <p>The state of the app block.</p>
254
- * <p>An app block with AppStream 2.0 packaging will be in the <code>INACTIVE</code> state
266
+ * <p>An app block with WorkSpaces Applications packaging will be in the <code>INACTIVE</code> state
255
267
  * if no application package (VHD) is assigned to it. After an application package (VHD) is
256
268
  * created by an app block builder for an app block, it becomes <code>ACTIVE</code>. </p>
257
269
  * <p>Custom app blocks are always in the <code>ACTIVE</code> state and no action is required to use them.</p>
@@ -299,6 +311,7 @@ export declare const FleetErrorCode: {
299
311
  readonly STS_DISABLED_IN_REGION: "STS_DISABLED_IN_REGION";
300
312
  readonly SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES: "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES";
301
313
  readonly SUBNET_NOT_FOUND: "SUBNET_NOT_FOUND";
314
+ readonly VALIDATION_ERROR: "VALIDATION_ERROR";
302
315
  };
303
316
  /**
304
317
  * @public
@@ -500,6 +513,47 @@ export declare const AppBlockBuilderAttribute: {
500
513
  * @public
501
514
  */
502
515
  export type AppBlockBuilderAttribute = (typeof AppBlockBuilderAttribute)[keyof typeof AppBlockBuilderAttribute];
516
+ /**
517
+ * <p>Configuration for an application in the imported image's application catalog. This structure defines how applications appear and launch for users.</p>
518
+ * @public
519
+ */
520
+ export interface ApplicationConfig {
521
+ /**
522
+ * <p>The name of the application. This is a required field that must be unique within the application catalog and between 1-100 characters, matching the pattern ^[a-zA-Z0-9][a-zA-Z0-9_.-]\{0,99\}$.</p>
523
+ * @public
524
+ */
525
+ Name: string | undefined;
526
+ /**
527
+ * <p>The display name shown to users for this application. This field is optional and can be 0-100 characters, matching the pattern ^[a-zA-Z0-9][a-zA-Z0-9_. -]\{0,99\}$.</p>
528
+ * @public
529
+ */
530
+ DisplayName?: string | undefined;
531
+ /**
532
+ * <p>The absolute path to the executable file that launches the application. This is a required field that can be 1-32767 characters to support Windows extended file paths. Use escaped file path strings like "C:\\\\Windows\\\\System32\\\\notepad.exe".</p>
533
+ * @public
534
+ */
535
+ AbsoluteAppPath: string | undefined;
536
+ /**
537
+ * <p>The absolute path to the icon file for the application. This field is optional and can be 1-32767 characters. If not provided, the icon is derived from the executable. Use PNG images with proper transparency for the best user experience.</p>
538
+ * @public
539
+ */
540
+ AbsoluteIconPath?: string | undefined;
541
+ /**
542
+ * <p>The absolute path to the prewarm manifest file for this application. This field is optional and only applicable when using application-specific manifests. The path can be 1-32767 characters and should point to a text file containing file paths to prewarm.</p>
543
+ * @public
544
+ */
545
+ AbsoluteManifestPath?: string | undefined;
546
+ /**
547
+ * <p>The working directory to use when launching the application. This field is optional and can be 0-32767 characters. Use escaped file path strings like "C:\\\\Path\\\\To\\\\Working\\\\Directory".</p>
548
+ * @public
549
+ */
550
+ WorkingDirectory?: string | undefined;
551
+ /**
552
+ * <p>The launch parameters to pass to the application executable. This field is optional and can be 0-1024 characters. Use escaped strings with the full list of required parameters, such as PowerShell script paths or command-line arguments.</p>
553
+ * @public
554
+ */
555
+ LaunchParameters?: string | undefined;
556
+ }
503
557
  /**
504
558
  * @public
505
559
  * @enum
@@ -1379,7 +1433,7 @@ export interface CreateAppBlockBuilderRequest {
1379
1433
  * <p>If you do not specify a value, the value is set to an empty string.</p>
1380
1434
  * <p>Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following special characters: </p>
1381
1435
  * <p>_ . : / = + \ - @</p>
1382
- * <p>For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
1436
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging Your Resources</a> in the <i>Amazon WorkSpaces Applications Administration Guide</i>.</p>
1383
1437
  * @public
1384
1438
  */
1385
1439
  Tags?: Record<string, string> | undefined;
@@ -1429,9 +1483,9 @@ export interface CreateAppBlockBuilderRequest {
1429
1483
  * <p>The Amazon Resource Name (ARN) of the IAM role to apply to the app block builder. To
1430
1484
  * assume a role, the app block builder calls the AWS Security Token Service (STS)
1431
1485
  * <code>AssumeRole</code> API operation and passes the ARN of the role to use. The
1432
- * operation creates a new session with temporary credentials. AppStream 2.0 retrieves the
1486
+ * operation creates a new session with temporary credentials. WorkSpaces Applications retrieves the
1433
1487
  * temporary credentials and creates the <b>appstream_machine_role</b> credential profile on the instance.</p>
1434
- * <p>For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html">Using an IAM Role to Grant Permissions to Applications and Scripts Running on AppStream 2.0 Streaming Instances</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
1488
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html">Using an IAM Role to Grant Permissions to Applications and Scripts Running on WorkSpaces Applications Streaming Instances</a> in the <i>Amazon WorkSpaces Applications Administration Guide</i>.</p>
1435
1489
  * @public
1436
1490
  */
1437
1491
  IamRoleArn?: string | undefined;
@@ -1469,7 +1523,7 @@ export declare class InvalidRoleException extends __BaseException {
1469
1523
  constructor(opts: __ExceptionOptionType<InvalidRoleException, __BaseException>);
1470
1524
  }
1471
1525
  /**
1472
- * <p>AppStream 2.0 can’t process the request right now because the Describe calls from your AWS account are being throttled by Amazon EC2. Try again later.</p>
1526
+ * <p>WorkSpaces Applications can’t process the request right now because the Describe calls from your AWS account are being throttled by Amazon EC2. Try again later.</p>
1473
1527
  * @public
1474
1528
  */
1475
1529
  export declare class RequestLimitExceededException extends __BaseException {
@@ -1684,14 +1738,13 @@ export interface CreateDirectoryConfigResult {
1684
1738
  }
1685
1739
  /**
1686
1740
  * <p>An attribute associated with an entitlement. Application entitlements work by matching
1687
- * a supported SAML 2.0 attribute name to a value when a user identity federates to an
1688
- * Amazon AppStream 2.0 SAML application.</p>
1741
+ * a supported SAML 2.0 attribute name to a value when a user identity federates to a WorkSpaces Applications SAML application.</p>
1689
1742
  * @public
1690
1743
  */
1691
1744
  export interface EntitlementAttribute {
1692
1745
  /**
1693
1746
  * <p>A supported AWS IAM SAML <code>PrincipalTag</code> attribute that is matched to the
1694
- * associated value when a user identity federates into an Amazon AppStream 2.0 SAML
1747
+ * associated value when a user identity federates into a WorkSpaces Applications SAML
1695
1748
  * application.</p>
1696
1749
  * <p>The following are valid values:</p>
1697
1750
  * <ul>
@@ -1723,7 +1776,7 @@ export interface EntitlementAttribute {
1723
1776
  Name: string | undefined;
1724
1777
  /**
1725
1778
  * <p>A value that is matched to a supported SAML attribute name when a user identity
1726
- * federates into an Amazon AppStream 2.0 SAML application. </p>
1779
+ * federates into a WorkSpaces Applications SAML application. </p>
1727
1780
  * @public
1728
1781
  */
1729
1782
  Value: string | undefined;
@@ -1761,7 +1814,7 @@ export interface CreateEntitlementRequest {
1761
1814
  /**
1762
1815
  * <p>Specifies an entitlement. Entitlements control access to specific applications within
1763
1816
  * a stack, based on user attributes. Entitlements apply to SAML 2.0 federated user
1764
- * identities. Amazon AppStream 2.0 user pool and streaming URL users are entitled to all
1817
+ * identities. WorkSpaces Applications user pool and streaming URL users are entitled to all
1765
1818
  * applications in a stack. Entitlements don't apply to the desktop stream view
1766
1819
  * application, or to applications managed by a dynamic app provider using the Dynamic
1767
1820
  * Application Framework.</p>
@@ -1831,6 +1884,110 @@ export declare class EntitlementAlreadyExistsException extends __BaseException {
1831
1884
  */
1832
1885
  constructor(opts: __ExceptionOptionType<EntitlementAlreadyExistsException, __BaseException>);
1833
1886
  }
1887
+ /**
1888
+ * @public
1889
+ */
1890
+ export interface CreateExportImageTaskRequest {
1891
+ /**
1892
+ * <p>The name of the WorkSpaces Applications image to export. The image must be in an available state and owned by your account.</p>
1893
+ * @public
1894
+ */
1895
+ ImageName: string | undefined;
1896
+ /**
1897
+ * <p>The name for the exported EC2 AMI. This is a required field that must be unique within your account and region.</p>
1898
+ * @public
1899
+ */
1900
+ AmiName: string | undefined;
1901
+ /**
1902
+ * <p>The ARN of the IAM role that allows WorkSpaces Applications to create the AMI. The role must have permissions to copy images, describe images, and create tags, with a trust relationship allowing appstream.amazonaws.com to assume the role.</p>
1903
+ * @public
1904
+ */
1905
+ IamRoleArn: string | undefined;
1906
+ /**
1907
+ * <p>The tags to apply to the exported AMI. These tags help you organize and manage your EC2 AMIs.</p>
1908
+ * @public
1909
+ */
1910
+ TagSpecifications?: Record<string, string> | undefined;
1911
+ /**
1912
+ * <p>An optional description for the exported AMI. This description will be applied to the resulting EC2 AMI.</p>
1913
+ * @public
1914
+ */
1915
+ AmiDescription?: string | undefined;
1916
+ }
1917
+ /**
1918
+ * @public
1919
+ * @enum
1920
+ */
1921
+ export declare const ExportImageTaskState: {
1922
+ readonly COMPLETED: "COMPLETED";
1923
+ readonly EXPORTING: "EXPORTING";
1924
+ readonly FAILED: "FAILED";
1925
+ };
1926
+ /**
1927
+ * @public
1928
+ */
1929
+ export type ExportImageTaskState = (typeof ExportImageTaskState)[keyof typeof ExportImageTaskState];
1930
+ /**
1931
+ * <p>Information about an export image task, including its current state, timestamps, and any error details.</p>
1932
+ * @public
1933
+ */
1934
+ export interface ExportImageTask {
1935
+ /**
1936
+ * <p>The unique identifier for the export image task. Use this ID to track the task's progress and retrieve its details.</p>
1937
+ * @public
1938
+ */
1939
+ TaskId: string | undefined;
1940
+ /**
1941
+ * <p>The ARN of the WorkSpaces Applications image being exported.</p>
1942
+ * @public
1943
+ */
1944
+ ImageArn: string | undefined;
1945
+ /**
1946
+ * <p>The name of the EC2 AMI that will be created by this export task.</p>
1947
+ * @public
1948
+ */
1949
+ AmiName: string | undefined;
1950
+ /**
1951
+ * <p>The date and time when the export image task was created.</p>
1952
+ * @public
1953
+ */
1954
+ CreatedDate: Date | undefined;
1955
+ /**
1956
+ * <p>The description that will be applied to the exported EC2 AMI.</p>
1957
+ * @public
1958
+ */
1959
+ AmiDescription?: string | undefined;
1960
+ /**
1961
+ * <p>The current state of the export image task, such as PENDING, RUNNING, COMPLETED, or FAILED.</p>
1962
+ * @public
1963
+ */
1964
+ State?: ExportImageTaskState | undefined;
1965
+ /**
1966
+ * <p>The ID of the EC2 AMI that was created by this export task. This field is only populated when the task completes successfully.</p>
1967
+ * @public
1968
+ */
1969
+ AmiId?: string | undefined;
1970
+ /**
1971
+ * <p>The tags that will be applied to the exported EC2 AMI.</p>
1972
+ * @public
1973
+ */
1974
+ TagSpecifications?: Record<string, string> | undefined;
1975
+ /**
1976
+ * <p>Details about any errors that occurred during the export process. This field is only populated when the task fails.</p>
1977
+ * @public
1978
+ */
1979
+ ErrorDetails?: ErrorDetails[] | undefined;
1980
+ }
1981
+ /**
1982
+ * @public
1983
+ */
1984
+ export interface CreateExportImageTaskResult {
1985
+ /**
1986
+ * <p>Information about the export image task that was created, including the task ID and initial state.</p>
1987
+ * @public
1988
+ */
1989
+ ExportImageTask?: ExportImageTask | undefined;
1990
+ }
1834
1991
  /**
1835
1992
  * <p>Describes the configuration information required to join fleets and image builders to Microsoft Active Directory domains.</p>
1836
1993
  * @public
@@ -1860,6 +2017,17 @@ export declare const FleetType: {
1860
2017
  * @public
1861
2018
  */
1862
2019
  export type FleetType = (typeof FleetType)[keyof typeof FleetType];
2020
+ /**
2021
+ * <p>Configuration for the root volume of fleet instances and image builders. This allows you to customize the storage capacity beyond the default 200 GB.</p>
2022
+ * @public
2023
+ */
2024
+ export interface VolumeConfig {
2025
+ /**
2026
+ * <p>The size of the root volume in GB. Valid range is 200-500 GB. The default is 200 GB, which is included in the hourly instance rate. Additional storage beyond 200 GB incurs extra charges and applies to instances regardless of their running state.</p>
2027
+ * @public
2028
+ */
2029
+ VolumeSizeInGb?: number | undefined;
2030
+ }
1863
2031
  /**
1864
2032
  * @public
1865
2033
  * @enum
@@ -1970,9 +2138,6 @@ export interface CreateFleetRequest {
1970
2138
  * <p>stream.graphics-design.4xlarge</p>
1971
2139
  * </li>
1972
2140
  * <li>
1973
- * <p>stream.graphics-desktop.2xlarge</p>
1974
- * </li>
1975
- * <li>
1976
2141
  * <p>stream.graphics.g4dn.xlarge</p>
1977
2142
  * </li>
1978
2143
  * <li>
@@ -2012,15 +2177,6 @@ export interface CreateFleetRequest {
2012
2177
  * <p>stream.graphics.g5.24xlarge</p>
2013
2178
  * </li>
2014
2179
  * <li>
2015
- * <p>stream.graphics-pro.4xlarge</p>
2016
- * </li>
2017
- * <li>
2018
- * <p>stream.graphics-pro.8xlarge</p>
2019
- * </li>
2020
- * <li>
2021
- * <p>stream.graphics-pro.16xlarge</p>
2022
- * </li>
2023
- * <li>
2024
2180
  * <p>stream.graphics.g6.xlarge</p>
2025
2181
  * </li>
2026
2182
  * <li>
@@ -2149,7 +2305,7 @@ export interface CreateFleetRequest {
2149
2305
  * <p>If you do not specify a value, the value is set to an empty string.</p>
2150
2306
  * <p>Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following special characters: </p>
2151
2307
  * <p>_ . : / = + \ - @</p>
2152
- * <p>For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
2308
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging Your Resources</a> in the <i>Amazon WorkSpaces Applications Administration Guide</i>.</p>
2153
2309
  * @public
2154
2310
  */
2155
2311
  Tags?: Record<string, string> | undefined;
@@ -2172,13 +2328,13 @@ export interface CreateFleetRequest {
2172
2328
  */
2173
2329
  IdleDisconnectTimeoutInSeconds?: number | undefined;
2174
2330
  /**
2175
- * <p>The Amazon Resource Name (ARN) of the IAM role to apply to the fleet. To assume a role, a fleet instance calls the AWS Security Token Service (STS) <code>AssumeRole</code> API operation and passes the ARN of the role to use. The operation creates a new session with temporary credentials. AppStream 2.0 retrieves the temporary credentials and creates the <b>appstream_machine_role</b> credential profile on the instance.</p>
2176
- * <p>For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html">Using an IAM Role to Grant Permissions to Applications and Scripts Running on AppStream 2.0 Streaming Instances</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
2331
+ * <p>The Amazon Resource Name (ARN) of the IAM role to apply to the fleet. To assume a role, a fleet instance calls the AWS Security Token Service (STS) <code>AssumeRole</code> API operation and passes the ARN of the role to use. The operation creates a new session with temporary credentials. WorkSpaces Applications retrieves the temporary credentials and creates the <b>appstream_machine_role</b> credential profile on the instance.</p>
2332
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html">Using an IAM Role to Grant Permissions to Applications and Scripts Running on WorkSpaces Applications Streaming Instances</a> in the <i>Amazon WorkSpaces Applications Administration Guide</i>.</p>
2177
2333
  * @public
2178
2334
  */
2179
2335
  IamRoleArn?: string | undefined;
2180
2336
  /**
2181
- * <p>The AppStream 2.0 view that is displayed to your users when they stream from the fleet. When <code>APP</code> is specified, only the windows of applications opened by users display. When <code>DESKTOP</code> is specified, the standard desktop that is provided by the operating system displays.</p>
2337
+ * <p>The WorkSpaces Applications view that is displayed to your users when they stream from the fleet. When <code>APP</code> is specified, only the windows of applications opened by users display. When <code>DESKTOP</code> is specified, the standard desktop that is provided by the operating system displays.</p>
2182
2338
  * <p>The default value is <code>APP</code>.</p>
2183
2339
  * @public
2184
2340
  */
@@ -2210,6 +2366,11 @@ export interface CreateFleetRequest {
2210
2366
  * @public
2211
2367
  */
2212
2368
  MaxSessionsPerInstance?: number | undefined;
2369
+ /**
2370
+ * <p>The configuration for the root volume of fleet instances. Use this to customize storage capacity from 200 GB up to 500 GB based on your application requirements.</p>
2371
+ * @public
2372
+ */
2373
+ RootVolumeConfig?: VolumeConfig | undefined;
2213
2374
  }
2214
2375
  /**
2215
2376
  * <p>Describes a fleet error.</p>
@@ -2349,9 +2510,6 @@ export interface Fleet {
2349
2510
  * <p>stream.graphics-design.4xlarge</p>
2350
2511
  * </li>
2351
2512
  * <li>
2352
- * <p>stream.graphics-desktop.2xlarge</p>
2353
- * </li>
2354
- * <li>
2355
2513
  * <p>stream.graphics.g4dn.xlarge</p>
2356
2514
  * </li>
2357
2515
  * <li>
@@ -2370,15 +2528,6 @@ export interface Fleet {
2370
2528
  * <p>stream.graphics.g4dn.16xlarge</p>
2371
2529
  * </li>
2372
2530
  * <li>
2373
- * <p>stream.graphics-pro.4xlarge</p>
2374
- * </li>
2375
- * <li>
2376
- * <p>stream.graphics-pro.8xlarge</p>
2377
- * </li>
2378
- * <li>
2379
- * <p>stream.graphics-pro.16xlarge</p>
2380
- * </li>
2381
- * <li>
2382
2531
  * <p>stream.graphics.g5.xlarge</p>
2383
2532
  * </li>
2384
2533
  * <li>
@@ -2529,13 +2678,13 @@ export interface Fleet {
2529
2678
  */
2530
2679
  IdleDisconnectTimeoutInSeconds?: number | undefined;
2531
2680
  /**
2532
- * <p>The ARN of the IAM role that is applied to the fleet. To assume a role, the fleet instance calls the AWS Security Token Service (STS) <code>AssumeRole</code> API operation and passes the ARN of the role to use. The operation creates a new session with temporary credentials. AppStream 2.0 retrieves the temporary credentials and creates the <b>appstream_machine_role</b> credential profile on the instance.</p>
2533
- * <p>For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html">Using an IAM Role to Grant Permissions to Applications and Scripts Running on AppStream 2.0 Streaming Instances</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
2681
+ * <p>The ARN of the IAM role that is applied to the fleet. To assume a role, the fleet instance calls the AWS Security Token Service (STS) <code>AssumeRole</code> API operation and passes the ARN of the role to use. The operation creates a new session with temporary credentials. WorkSpaces Applications retrieves the temporary credentials and creates the <b>appstream_machine_role</b> credential profile on the instance.</p>
2682
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html">Using an IAM Role to Grant Permissions to Applications and Scripts Running on WorkSpaces Applications Streaming Instances</a> in the <i>Amazon WorkSpaces Applications Administration Guide</i>.</p>
2534
2683
  * @public
2535
2684
  */
2536
2685
  IamRoleArn?: string | undefined;
2537
2686
  /**
2538
- * <p>The AppStream 2.0 view that is displayed to your users when they stream from the fleet. When <code>APP</code> is specified, only the windows of applications opened by users display. When <code>DESKTOP</code> is specified, the standard desktop that is provided by the operating system displays.</p>
2687
+ * <p>The WorkSpaces Applications view that is displayed to your users when they stream from the fleet. When <code>APP</code> is specified, only the windows of applications opened by users display. When <code>DESKTOP</code> is specified, the standard desktop that is provided by the operating system displays.</p>
2539
2688
  * <p>The default value is <code>APP</code>.</p>
2540
2689
  * @public
2541
2690
  */
@@ -2565,6 +2714,11 @@ export interface Fleet {
2565
2714
  * @public
2566
2715
  */
2567
2716
  MaxSessionsPerInstance?: number | undefined;
2717
+ /**
2718
+ * <p>The current configuration of the root volume for fleet instances, including the storage size in GB.</p>
2719
+ * @public
2720
+ */
2721
+ RootVolumeConfig?: VolumeConfig | undefined;
2568
2722
  }
2569
2723
  /**
2570
2724
  * @public
@@ -2668,9 +2822,6 @@ export interface CreateImageBuilderRequest {
2668
2822
  * <p>stream.graphics-design.4xlarge</p>
2669
2823
  * </li>
2670
2824
  * <li>
2671
- * <p>stream.graphics-desktop.2xlarge</p>
2672
- * </li>
2673
- * <li>
2674
2825
  * <p>stream.graphics.g4dn.xlarge</p>
2675
2826
  * </li>
2676
2827
  * <li>
@@ -2689,15 +2840,6 @@ export interface CreateImageBuilderRequest {
2689
2840
  * <p>stream.graphics.g4dn.16xlarge</p>
2690
2841
  * </li>
2691
2842
  * <li>
2692
- * <p>stream.graphics-pro.4xlarge</p>
2693
- * </li>
2694
- * <li>
2695
- * <p>stream.graphics-pro.8xlarge</p>
2696
- * </li>
2697
- * <li>
2698
- * <p>stream.graphics-pro.16xlarge</p>
2699
- * </li>
2700
- * <li>
2701
2843
  * <p>stream.graphics.g5.xlarge</p>
2702
2844
  * </li>
2703
2845
  * <li>
@@ -2780,8 +2922,8 @@ export interface CreateImageBuilderRequest {
2780
2922
  */
2781
2923
  VpcConfig?: VpcConfig | undefined;
2782
2924
  /**
2783
- * <p>The Amazon Resource Name (ARN) of the IAM role to apply to the image builder. To assume a role, the image builder calls the AWS Security Token Service (STS) <code>AssumeRole</code> API operation and passes the ARN of the role to use. The operation creates a new session with temporary credentials. AppStream 2.0 retrieves the temporary credentials and creates the <b>appstream_machine_role</b> credential profile on the instance.</p>
2784
- * <p>For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html">Using an IAM Role to Grant Permissions to Applications and Scripts Running on AppStream 2.0 Streaming Instances</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
2925
+ * <p>The Amazon Resource Name (ARN) of the IAM role to apply to the image builder. To assume a role, the image builder calls the AWS Security Token Service (STS) <code>AssumeRole</code> API operation and passes the ARN of the role to use. The operation creates a new session with temporary credentials. WorkSpaces Applications retrieves the temporary credentials and creates the <b>appstream_machine_role</b> credential profile on the instance.</p>
2926
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html">Using an IAM Role to Grant Permissions to Applications and Scripts Running on WorkSpaces Applications Streaming Instances</a> in the <i>Amazon WorkSpaces Applications Administration Guide</i>.</p>
2785
2927
  * @public
2786
2928
  */
2787
2929
  IamRoleArn?: string | undefined;
@@ -2796,7 +2938,7 @@ export interface CreateImageBuilderRequest {
2796
2938
  */
2797
2939
  DomainJoinInfo?: DomainJoinInfo | undefined;
2798
2940
  /**
2799
- * <p>The version of the AppStream 2.0 agent to use for this image builder. To use the latest version of the AppStream 2.0 agent, specify [LATEST]. </p>
2941
+ * <p>The version of the WorkSpaces Applications agent to use for this image builder. To use the latest version of the WorkSpaces Applications agent, specify [LATEST]. </p>
2800
2942
  * @public
2801
2943
  */
2802
2944
  AppstreamAgentVersion?: string | undefined;
@@ -2805,7 +2947,7 @@ export interface CreateImageBuilderRequest {
2805
2947
  * <p>Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following special characters: </p>
2806
2948
  * <p>_ . : / = + \ - @</p>
2807
2949
  * <p>If you do not specify a value, the value is set to an empty string.</p>
2808
- * <p>For more information about tags, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
2950
+ * <p>For more information about tags, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging Your Resources</a> in the <i>Amazon WorkSpaces Applications Administration Guide</i>.</p>
2809
2951
  * @public
2810
2952
  */
2811
2953
  Tags?: Record<string, string> | undefined;
@@ -2814,6 +2956,11 @@ export interface CreateImageBuilderRequest {
2814
2956
  * @public
2815
2957
  */
2816
2958
  AccessEndpoints?: AccessEndpoint[] | undefined;
2959
+ /**
2960
+ * <p>The configuration for the root volume of the image builder. Use this to customize storage capacity from 200 GB up to 500 GB based on your application installation requirements.</p>
2961
+ * @public
2962
+ */
2963
+ RootVolumeConfig?: VolumeConfig | undefined;
2817
2964
  /**
2818
2965
  * <p>The list of license included applications to install on the image builder during creation.</p>
2819
2966
  * <p>Possible values include the following:</p>
@@ -2998,7 +3145,7 @@ export interface NetworkAccessConfiguration {
2998
3145
  */
2999
3146
  EniPrivateIpAddress?: string | undefined;
3000
3147
  /**
3001
- * <p>The IPv6 addresses of the elastic network interface that is attached to instances in your VPC.</p>
3148
+ * <p>The IPv6 addresses assigned to the elastic network interface. This field supports IPv6 connectivity for WorkSpaces Applications instances.</p>
3002
3149
  * @public
3003
3150
  */
3004
3151
  EniIpv6Addresses?: string[] | undefined;
@@ -3016,6 +3163,7 @@ export declare const ImageBuilderState: {
3016
3163
  readonly DELETING: "DELETING";
3017
3164
  readonly FAILED: "FAILED";
3018
3165
  readonly PENDING: "PENDING";
3166
+ readonly PENDING_IMAGE_IMPORT: "PENDING_IMAGE_IMPORT";
3019
3167
  readonly PENDING_QUALIFICATION: "PENDING_QUALIFICATION";
3020
3168
  readonly PENDING_SYNCING_APPS: "PENDING_SYNCING_APPS";
3021
3169
  readonly REBOOTING: "REBOOTING";
@@ -3167,9 +3315,6 @@ export interface ImageBuilder {
3167
3315
  * <p>stream.graphics-design.4xlarge</p>
3168
3316
  * </li>
3169
3317
  * <li>
3170
- * <p>stream.graphics-desktop.2xlarge</p>
3171
- * </li>
3172
- * <li>
3173
3318
  * <p>stream.graphics.g4dn.xlarge</p>
3174
3319
  * </li>
3175
3320
  * <li>
@@ -3188,15 +3333,6 @@ export interface ImageBuilder {
3188
3333
  * <p>stream.graphics.g4dn.16xlarge</p>
3189
3334
  * </li>
3190
3335
  * <li>
3191
- * <p>stream.graphics-pro.4xlarge</p>
3192
- * </li>
3193
- * <li>
3194
- * <p>stream.graphics-pro.8xlarge</p>
3195
- * </li>
3196
- * <li>
3197
- * <p>stream.graphics-pro.16xlarge</p>
3198
- * </li>
3199
- * <li>
3200
3336
  * <p>stream.graphics.g5.xlarge</p>
3201
3337
  * </li>
3202
3338
  * <li>
@@ -3269,8 +3405,8 @@ export interface ImageBuilder {
3269
3405
  */
3270
3406
  Platform?: PlatformType | undefined;
3271
3407
  /**
3272
- * <p>The ARN of the IAM role that is applied to the image builder. To assume a role, the image builder calls the AWS Security Token Service (STS) <code>AssumeRole</code> API operation and passes the ARN of the role to use. The operation creates a new session with temporary credentials. AppStream 2.0 retrieves the temporary credentials and creates the <b>appstream_machine_role</b> credential profile on the instance.</p>
3273
- * <p>For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html">Using an IAM Role to Grant Permissions to Applications and Scripts Running on AppStream 2.0 Streaming Instances</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
3408
+ * <p>The ARN of the IAM role that is applied to the image builder. To assume a role, the image builder calls the AWS Security Token Service (STS) <code>AssumeRole</code> API operation and passes the ARN of the role to use. The operation creates a new session with temporary credentials. WorkSpaces Applications retrieves the temporary credentials and creates the <b>appstream_machine_role</b> credential profile on the instance.</p>
3409
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html">Using an IAM Role to Grant Permissions to Applications and Scripts Running on WorkSpaces Applications Streaming Instances</a> in the <i>Amazon WorkSpaces Applications Administration Guide</i>.</p>
3274
3410
  * @public
3275
3411
  */
3276
3412
  IamRoleArn?: string | undefined;
@@ -3310,7 +3446,7 @@ export interface ImageBuilder {
3310
3446
  */
3311
3447
  ImageBuilderErrors?: ResourceError[] | undefined;
3312
3448
  /**
3313
- * <p>The version of the AppStream 2.0 agent that is currently being used by the image builder. </p>
3449
+ * <p>The version of the WorkSpaces Applications agent that is currently being used by the image builder. </p>
3314
3450
  * @public
3315
3451
  */
3316
3452
  AppstreamAgentVersion?: string | undefined;
@@ -3320,7 +3456,12 @@ export interface ImageBuilder {
3320
3456
  */
3321
3457
  AccessEndpoints?: AccessEndpoint[] | undefined;
3322
3458
  /**
3323
- * <p>Indicates whether the image builder is using the latest AppStream 2.0 agent version or not.</p>
3459
+ * <p>The current configuration of the root volume for the image builder, including the storage size in GB.</p>
3460
+ * @public
3461
+ */
3462
+ RootVolumeConfig?: VolumeConfig | undefined;
3463
+ /**
3464
+ * <p>Indicates whether the image builder is using the latest WorkSpaces Applications agent version or not.</p>
3324
3465
  * @public
3325
3466
  */
3326
3467
  LatestAppstreamAgentVersion?: LatestAppstreamAgentVersion | undefined;
@@ -3356,7 +3497,7 @@ export interface CreateImageBuilderStreamingURLRequest {
3356
3497
  */
3357
3498
  export interface CreateImageBuilderStreamingURLResult {
3358
3499
  /**
3359
- * <p>The URL to start the AppStream 2.0 streaming session.</p>
3500
+ * <p>The URL to start the WorkSpaces Applications streaming session.</p>
3360
3501
  * @public
3361
3502
  */
3362
3503
  StreamingURL?: string | undefined;
@@ -3367,752 +3508,865 @@ export interface CreateImageBuilderStreamingURLResult {
3367
3508
  Expires?: Date | undefined;
3368
3509
  }
3369
3510
  /**
3370
- * @public
3371
- * @enum
3372
- */
3373
- export declare const StorageConnectorType: {
3374
- readonly GOOGLE_DRIVE: "GOOGLE_DRIVE";
3375
- readonly HOMEFOLDERS: "HOMEFOLDERS";
3376
- readonly ONE_DRIVE: "ONE_DRIVE";
3377
- };
3378
- /**
3511
+ * <p>Configuration for runtime validation of imported images. This structure specifies the instance type to use for testing the imported image's streaming capabilities.</p>
3379
3512
  * @public
3380
3513
  */
3381
- export type StorageConnectorType = (typeof StorageConnectorType)[keyof typeof StorageConnectorType];
3514
+ export interface RuntimeValidationConfig {
3515
+ /**
3516
+ * <p>The instance type to use for runtime validation testing. It's recommended to use the same instance type you plan to use for your fleet to ensure accurate validation results.</p>
3517
+ * @public
3518
+ */
3519
+ IntendedInstanceType?: string | undefined;
3520
+ }
3382
3521
  /**
3383
- * <p>Describes a connector that enables persistent storage for users.</p>
3384
3522
  * @public
3385
3523
  */
3386
- export interface StorageConnector {
3524
+ export interface CreateImportedImageRequest {
3387
3525
  /**
3388
- * <p>The type of storage connector.</p>
3526
+ * <p>A unique name for the imported image. The name must be between 1 and 100 characters and can contain letters, numbers, underscores, periods, and hyphens.</p>
3389
3527
  * @public
3390
3528
  */
3391
- ConnectorType: StorageConnectorType | undefined;
3529
+ Name: string | undefined;
3392
3530
  /**
3393
- * <p>The ARN of the storage connector.</p>
3531
+ * <p>The ID of the EC2 AMI to import. The AMI must meet specific requirements including Windows Server 2022 Full Base, UEFI boot mode, TPM 2.0 support, and proper drivers.</p>
3394
3532
  * @public
3395
3533
  */
3396
- ResourceIdentifier?: string | undefined;
3534
+ SourceAmiId: string | undefined;
3397
3535
  /**
3398
- * <p>The names of the domains for the account.</p>
3536
+ * <p>The ARN of the IAM role that allows WorkSpaces Applications to access your AMI. The role must have permissions to modify image attributes and describe images, with a trust relationship allowing appstream.amazonaws.com to assume the role.</p>
3399
3537
  * @public
3400
3538
  */
3401
- Domains?: string[] | undefined;
3539
+ IamRoleArn: string | undefined;
3402
3540
  /**
3403
- * <p>The OneDrive for Business domains where you require admin consent when users try to link their OneDrive account to AppStream 2.0. The attribute can only be specified when ConnectorType=ONE_DRIVE.</p>
3541
+ * <p>An optional description for the imported image. The description must match approved regex patterns and can be up to 256 characters.</p>
3404
3542
  * @public
3405
3543
  */
3406
- DomainsRequireAdminConsent?: string[] | undefined;
3544
+ Description?: string | undefined;
3545
+ /**
3546
+ * <p>An optional display name for the imported image. The display name must match approved regex patterns and can be up to 100 characters.</p>
3547
+ * @public
3548
+ */
3549
+ DisplayName?: string | undefined;
3550
+ /**
3551
+ * <p>The tags to apply to the imported image. Tags help you organize and manage your WorkSpaces Applications resources.</p>
3552
+ * @public
3553
+ */
3554
+ Tags?: Record<string, string> | undefined;
3555
+ /**
3556
+ * <p>Configuration for runtime validation of the imported image. When specified, WorkSpaces Applications provisions an instance to test streaming functionality, which helps ensure the image is suitable for use.</p>
3557
+ * @public
3558
+ */
3559
+ RuntimeValidationConfig?: RuntimeValidationConfig | undefined;
3560
+ /**
3561
+ * <p>The version of the WorkSpaces Applications agent to use for the imported image. Choose CURRENT_LATEST to use the agent version available at the time of import, or ALWAYS_LATEST to automatically update to the latest agent version when new versions are released.</p>
3562
+ * @public
3563
+ */
3564
+ AgentSoftwareVersion?: AgentSoftwareVersion | undefined;
3565
+ /**
3566
+ * <p>Configuration for the application catalog of the imported image. This allows you to specify applications available for streaming, including their paths, icons, and launch parameters. This field contains sensitive data.</p>
3567
+ * @public
3568
+ */
3569
+ AppCatalogConfig?: ApplicationConfig[] | undefined;
3570
+ /**
3571
+ * <p>When set to true, performs validation checks without actually creating the imported image. Use this to verify your configuration before executing the actual import operation.</p>
3572
+ * @public
3573
+ */
3574
+ DryRun?: boolean | undefined;
3407
3575
  }
3408
3576
  /**
3409
3577
  * @public
3410
3578
  * @enum
3411
3579
  */
3412
- export declare const PreferredProtocol: {
3413
- readonly TCP: "TCP";
3414
- readonly UDP: "UDP";
3580
+ export declare const DynamicAppProvidersEnabled: {
3581
+ readonly DISABLED: "DISABLED";
3582
+ readonly ENABLED: "ENABLED";
3415
3583
  };
3416
3584
  /**
3417
3585
  * @public
3418
3586
  */
3419
- export type PreferredProtocol = (typeof PreferredProtocol)[keyof typeof PreferredProtocol];
3587
+ export type DynamicAppProvidersEnabled = (typeof DynamicAppProvidersEnabled)[keyof typeof DynamicAppProvidersEnabled];
3420
3588
  /**
3421
- * <p>The streaming protocol you want your stack to prefer. This can be UDP or TCP. Currently, UDP is only supported in the Windows native client.</p>
3589
+ * <p>Describes the permissions for an image. </p>
3422
3590
  * @public
3423
3591
  */
3424
- export interface StreamingExperienceSettings {
3592
+ export interface ImagePermissions {
3425
3593
  /**
3426
- * <p>The preferred protocol that you want to use while streaming your application.</p>
3594
+ * <p>Indicates whether the image can be used for a fleet.</p>
3427
3595
  * @public
3428
3596
  */
3429
- PreferredProtocol?: PreferredProtocol | undefined;
3597
+ allowFleet?: boolean | undefined;
3598
+ /**
3599
+ * <p>Indicates whether the image can be used for an image builder.</p>
3600
+ * @public
3601
+ */
3602
+ allowImageBuilder?: boolean | undefined;
3430
3603
  }
3431
3604
  /**
3432
3605
  * @public
3433
3606
  * @enum
3434
3607
  */
3435
- export declare const Permission: {
3436
- readonly DISABLED: "DISABLED";
3437
- readonly ENABLED: "ENABLED";
3608
+ export declare const ImageSharedWithOthers: {
3609
+ readonly FALSE: "FALSE";
3610
+ readonly TRUE: "TRUE";
3438
3611
  };
3439
3612
  /**
3440
3613
  * @public
3441
3614
  */
3442
- export type Permission = (typeof Permission)[keyof typeof Permission];
3615
+ export type ImageSharedWithOthers = (typeof ImageSharedWithOthers)[keyof typeof ImageSharedWithOthers];
3443
3616
  /**
3444
- * <p>Describes an action and whether the action is enabled or disabled for users during their streaming sessions.</p>
3445
3617
  * @public
3618
+ * @enum
3446
3619
  */
3447
- export interface UserSetting {
3448
- /**
3449
- * <p>The action that is enabled or disabled.</p>
3450
- * @public
3451
- */
3452
- Action: Action | undefined;
3453
- /**
3454
- * <p>Indicates whether the action is enabled or disabled.</p>
3455
- * @public
3456
- */
3457
- Permission: Permission | undefined;
3458
- /**
3459
- * <p>Specifies the number of characters that can be copied by end users from the local device to the remote session, and to the local device from the remote session.</p>
3460
- * <p>This can be specified only for the <code>CLIPBOARD_COPY_FROM_LOCAL_DEVICE</code> and <code>CLIPBOARD_COPY_TO_LOCAL_DEVICE</code> actions.</p>
3461
- * <p>This defaults to 20,971,520 (20 MB) when unspecified and the permission is <code>ENABLED</code>. This can't be specified when the permission is <code>DISABLED</code>. </p>
3462
- * <p>The value can be between 1 and 20,971,520 (20 MB).</p>
3463
- * @public
3464
- */
3465
- MaximumLength?: number | undefined;
3466
- }
3620
+ export declare const ImageType: {
3621
+ readonly CUSTOM: "CUSTOM";
3622
+ readonly NATIVE: "NATIVE";
3623
+ };
3467
3624
  /**
3468
3625
  * @public
3469
3626
  */
3470
- export interface CreateStackRequest {
3471
- /**
3472
- * <p>The name of the stack.</p>
3473
- * @public
3474
- */
3475
- Name: string | undefined;
3476
- /**
3477
- * <p>The description to display.</p>
3478
- * @public
3479
- */
3480
- Description?: string | undefined;
3627
+ export type ImageType = (typeof ImageType)[keyof typeof ImageType];
3628
+ /**
3629
+ * @public
3630
+ * @enum
3631
+ */
3632
+ export declare const ImageState: {
3633
+ readonly AVAILABLE: "AVAILABLE";
3634
+ readonly COPYING: "COPYING";
3635
+ readonly CREATING: "CREATING";
3636
+ readonly DELETING: "DELETING";
3637
+ readonly FAILED: "FAILED";
3638
+ readonly IMPORTING: "IMPORTING";
3639
+ readonly PENDING: "PENDING";
3640
+ readonly VALIDATING: "VALIDATING";
3641
+ };
3642
+ /**
3643
+ * @public
3644
+ */
3645
+ export type ImageState = (typeof ImageState)[keyof typeof ImageState];
3646
+ /**
3647
+ * @public
3648
+ * @enum
3649
+ */
3650
+ export declare const ImageStateChangeReasonCode: {
3651
+ readonly IMAGE_BUILDER_NOT_AVAILABLE: "IMAGE_BUILDER_NOT_AVAILABLE";
3652
+ readonly IMAGE_COPY_FAILURE: "IMAGE_COPY_FAILURE";
3653
+ readonly IMAGE_IMPORT_FAILURE: "IMAGE_IMPORT_FAILURE";
3654
+ readonly IMAGE_UPDATE_FAILURE: "IMAGE_UPDATE_FAILURE";
3655
+ readonly INTERNAL_ERROR: "INTERNAL_ERROR";
3656
+ };
3657
+ /**
3658
+ * @public
3659
+ */
3660
+ export type ImageStateChangeReasonCode = (typeof ImageStateChangeReasonCode)[keyof typeof ImageStateChangeReasonCode];
3661
+ /**
3662
+ * <p>Describes the reason why the last image state change occurred.</p>
3663
+ * @public
3664
+ */
3665
+ export interface ImageStateChangeReason {
3481
3666
  /**
3482
- * <p>The stack name to display.</p>
3667
+ * <p>The state change reason code.</p>
3483
3668
  * @public
3484
3669
  */
3485
- DisplayName?: string | undefined;
3670
+ Code?: ImageStateChangeReasonCode | undefined;
3486
3671
  /**
3487
- * <p>The storage connectors to enable.</p>
3672
+ * <p>The state change reason message.</p>
3488
3673
  * @public
3489
3674
  */
3490
- StorageConnectors?: StorageConnector[] | undefined;
3675
+ Message?: string | undefined;
3676
+ }
3677
+ /**
3678
+ * @public
3679
+ * @enum
3680
+ */
3681
+ export declare const VisibilityType: {
3682
+ readonly PRIVATE: "PRIVATE";
3683
+ readonly PUBLIC: "PUBLIC";
3684
+ readonly SHARED: "SHARED";
3685
+ };
3686
+ /**
3687
+ * @public
3688
+ */
3689
+ export type VisibilityType = (typeof VisibilityType)[keyof typeof VisibilityType];
3690
+ /**
3691
+ * <p>Describes an image.</p>
3692
+ * @public
3693
+ */
3694
+ export interface Image {
3491
3695
  /**
3492
- * <p>The URL that users are redirected to after their streaming session ends.</p>
3696
+ * <p>The name of the image.</p>
3493
3697
  * @public
3494
3698
  */
3495
- RedirectURL?: string | undefined;
3699
+ Name: string | undefined;
3496
3700
  /**
3497
- * <p>The URL that users are redirected to after they click the Send Feedback link. If no URL is specified, no Send Feedback link is displayed.</p>
3701
+ * <p>The ARN of the image.</p>
3498
3702
  * @public
3499
3703
  */
3500
- FeedbackURL?: string | undefined;
3704
+ Arn?: string | undefined;
3501
3705
  /**
3502
- * <p>The actions that are enabled or disabled for users during their streaming sessions. By default, these actions are enabled. </p>
3706
+ * <p>The ARN of the image from which this image was created.</p>
3503
3707
  * @public
3504
3708
  */
3505
- UserSettings?: UserSetting[] | undefined;
3709
+ BaseImageArn?: string | undefined;
3506
3710
  /**
3507
- * <p>The persistent application settings for users of a stack. When these settings are enabled, changes that users make to applications and Windows settings are automatically saved after each session and applied to the next session.</p>
3711
+ * <p>The image name to display.</p>
3508
3712
  * @public
3509
3713
  */
3510
- ApplicationSettings?: ApplicationSettings | undefined;
3714
+ DisplayName?: string | undefined;
3511
3715
  /**
3512
- * <p>The tags to associate with the stack. A tag is a key-value pair, and the value is optional. For example, Environment=Test. If you do not specify a value, Environment=. </p>
3513
- * <p>If you do not specify a value, the value is set to an empty string.</p>
3514
- * <p>Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following special characters: </p>
3515
- * <p>_ . : / = + \ - @</p>
3516
- * <p>For more information about tags, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
3716
+ * <p>The image starts in the <code>PENDING</code> state. If image creation succeeds, the
3717
+ * state is <code>AVAILABLE</code>. If image creation fails, the state is <code>FAILED</code>.</p>
3517
3718
  * @public
3518
3719
  */
3519
- Tags?: Record<string, string> | undefined;
3720
+ State?: ImageState | undefined;
3520
3721
  /**
3521
- * <p>The list of interface VPC endpoint (interface endpoint) objects. Users of the stack can connect to AppStream 2.0 only through the specified endpoints.</p>
3722
+ * <p>Indicates whether the image is public or private.</p>
3522
3723
  * @public
3523
3724
  */
3524
- AccessEndpoints?: AccessEndpoint[] | undefined;
3725
+ Visibility?: VisibilityType | undefined;
3525
3726
  /**
3526
- * <p>The domains where AppStream 2.0 streaming sessions can be embedded in an iframe. You must approve the domains that you want to host embedded AppStream 2.0 streaming sessions. </p>
3727
+ * <p>Indicates whether an image builder can be launched from this image.</p>
3527
3728
  * @public
3528
3729
  */
3529
- EmbedHostDomains?: string[] | undefined;
3730
+ ImageBuilderSupported?: boolean | undefined;
3530
3731
  /**
3531
- * <p>The streaming protocol you want your stack to prefer. This can be UDP or TCP. Currently, UDP is only supported in the Windows native client.</p>
3732
+ * <p>The name of the image builder that was used to create the private image. If the image is shared, copied, or updated by using Managed Image Updates, this value is null.</p>
3532
3733
  * @public
3533
3734
  */
3534
- StreamingExperienceSettings?: StreamingExperienceSettings | undefined;
3535
- }
3536
- /**
3537
- * @public
3538
- * @enum
3539
- */
3540
- export declare const StackErrorCode: {
3541
- readonly INTERNAL_SERVICE_ERROR: "INTERNAL_SERVICE_ERROR";
3542
- readonly STORAGE_CONNECTOR_ERROR: "STORAGE_CONNECTOR_ERROR";
3543
- };
3544
- /**
3545
- * @public
3546
- */
3547
- export type StackErrorCode = (typeof StackErrorCode)[keyof typeof StackErrorCode];
3548
- /**
3549
- * <p>Describes a stack error.</p>
3550
- * @public
3551
- */
3552
- export interface StackError {
3735
+ ImageBuilderName?: string | undefined;
3553
3736
  /**
3554
- * <p>The error code.</p>
3737
+ * <p>The operating system platform of the image.</p>
3555
3738
  * @public
3556
3739
  */
3557
- ErrorCode?: StackErrorCode | undefined;
3740
+ Platform?: PlatformType | undefined;
3558
3741
  /**
3559
- * <p>The error message.</p>
3742
+ * <p>The description to display.</p>
3560
3743
  * @public
3561
3744
  */
3562
- ErrorMessage?: string | undefined;
3563
- }
3564
- /**
3565
- * <p>Describes a stack.</p>
3566
- * @public
3567
- */
3568
- export interface Stack {
3745
+ Description?: string | undefined;
3569
3746
  /**
3570
- * <p>The ARN of the stack.</p>
3747
+ * <p>The reason why the last state change occurred.</p>
3571
3748
  * @public
3572
3749
  */
3573
- Arn?: string | undefined;
3750
+ StateChangeReason?: ImageStateChangeReason | undefined;
3574
3751
  /**
3575
- * <p>The name of the stack.</p>
3752
+ * <p>The applications associated with the image.</p>
3576
3753
  * @public
3577
3754
  */
3578
- Name: string | undefined;
3755
+ Applications?: Application[] | undefined;
3579
3756
  /**
3580
- * <p>The description to display.</p>
3757
+ * <p>The time the image was created.</p>
3581
3758
  * @public
3582
3759
  */
3583
- Description?: string | undefined;
3760
+ CreatedTime?: Date | undefined;
3584
3761
  /**
3585
- * <p>The stack name to display.</p>
3762
+ * <p>The release date of the public base image.
3763
+ * For private images, this date is the release date of the base image from which the image was created.</p>
3586
3764
  * @public
3587
3765
  */
3588
- DisplayName?: string | undefined;
3766
+ PublicBaseImageReleasedDate?: Date | undefined;
3589
3767
  /**
3590
- * <p>The time the stack was created.</p>
3768
+ * <p>The version of the WorkSpaces Applications agent to use for instances that are launched from this image. </p>
3591
3769
  * @public
3592
3770
  */
3593
- CreatedTime?: Date | undefined;
3771
+ AppstreamAgentVersion?: string | undefined;
3594
3772
  /**
3595
- * <p>The storage connectors to enable.</p>
3773
+ * <p>The permissions to provide to the destination AWS account for the specified image.</p>
3596
3774
  * @public
3597
3775
  */
3598
- StorageConnectors?: StorageConnector[] | undefined;
3776
+ ImagePermissions?: ImagePermissions | undefined;
3599
3777
  /**
3600
- * <p>The URL that users are redirected to after their streaming session ends.</p>
3778
+ * <p>Describes the errors that are returned when a new image can't be created.</p>
3601
3779
  * @public
3602
3780
  */
3603
- RedirectURL?: string | undefined;
3781
+ ImageErrors?: ResourceError[] | undefined;
3604
3782
  /**
3605
- * <p>The URL that users are redirected to after they click the Send Feedback link. If no URL is specified, no Send Feedback link is displayed.</p>
3783
+ * <p>Indicates whether the image is using the latest WorkSpaces Applications agent version or not.</p>
3606
3784
  * @public
3607
3785
  */
3608
- FeedbackURL?: string | undefined;
3786
+ LatestAppstreamAgentVersion?: LatestAppstreamAgentVersion | undefined;
3609
3787
  /**
3610
- * <p>The errors for the stack.</p>
3788
+ * <p>The supported instances families that determine which image a customer can use when the customer launches a fleet or image builder. The following instances families are supported:</p>
3789
+ * <ul>
3790
+ * <li>
3791
+ * <p>General Purpose</p>
3792
+ * </li>
3793
+ * <li>
3794
+ * <p>Compute Optimized</p>
3795
+ * </li>
3796
+ * <li>
3797
+ * <p>Memory Optimized</p>
3798
+ * </li>
3799
+ * <li>
3800
+ * <p>Graphics</p>
3801
+ * </li>
3802
+ * <li>
3803
+ * <p>Graphics Design</p>
3804
+ * </li>
3805
+ * <li>
3806
+ * <p>Graphics Pro</p>
3807
+ * </li>
3808
+ * <li>
3809
+ * <p>Graphics G4</p>
3810
+ * </li>
3811
+ * <li>
3812
+ * <p>Graphics G5</p>
3813
+ * </li>
3814
+ * </ul>
3611
3815
  * @public
3612
3816
  */
3613
- StackErrors?: StackError[] | undefined;
3817
+ SupportedInstanceFamilies?: string[] | undefined;
3614
3818
  /**
3615
- * <p>The actions that are enabled or disabled for users during their streaming sessions. By default these actions are enabled.</p>
3819
+ * <p>Indicates whether dynamic app providers are enabled within an WorkSpaces Applications image or not.</p>
3616
3820
  * @public
3617
3821
  */
3618
- UserSettings?: UserSetting[] | undefined;
3822
+ DynamicAppProvidersEnabled?: DynamicAppProvidersEnabled | undefined;
3619
3823
  /**
3620
- * <p>The persistent application settings for users of the stack.</p>
3824
+ * <p>Indicates whether the image is shared with another account ID.</p>
3621
3825
  * @public
3622
3826
  */
3623
- ApplicationSettings?: ApplicationSettingsResponse | undefined;
3827
+ ImageSharedWithOthers?: ImageSharedWithOthers | undefined;
3624
3828
  /**
3625
- * <p>The list of virtual private cloud (VPC) interface endpoint objects. Users of the stack can connect to AppStream 2.0 only through the specified endpoints. </p>
3829
+ * <p>Indicates whether the image includes license-included applications.</p>
3626
3830
  * @public
3627
3831
  */
3628
- AccessEndpoints?: AccessEndpoint[] | undefined;
3832
+ ManagedSoftwareIncluded?: boolean | undefined;
3629
3833
  /**
3630
- * <p>The domains where AppStream 2.0 streaming sessions can be embedded in an iframe. You must approve the domains that you want to host embedded AppStream 2.0 streaming sessions.</p>
3834
+ * <p>The type of the image. Images created through AMI import have type "custom", while WorkSpaces Applications provided images have type "native". Custom images support additional instance types including GeneralPurpose, MemoryOptimized, ComputeOptimized, and Accelerated instance families.</p>
3631
3835
  * @public
3632
3836
  */
3633
- EmbedHostDomains?: string[] | undefined;
3837
+ ImageType?: ImageType | undefined;
3838
+ }
3839
+ /**
3840
+ * @public
3841
+ */
3842
+ export interface CreateImportedImageResult {
3634
3843
  /**
3635
- * <p>The streaming protocol you want your stack to prefer. This can be UDP or TCP. Currently, UDP is only supported in the Windows native client.</p>
3844
+ * <p>Describes an image.</p>
3636
3845
  * @public
3637
3846
  */
3638
- StreamingExperienceSettings?: StreamingExperienceSettings | undefined;
3847
+ Image?: Image | undefined;
3639
3848
  }
3640
3849
  /**
3850
+ * <p>The exception that is thrown when a dry run operation is requested. This indicates that the validation checks have been performed successfully, but no actual resources were created or modified.</p>
3641
3851
  * @public
3642
3852
  */
3643
- export interface CreateStackResult {
3853
+ export declare class DryRunOperationException extends __BaseException {
3854
+ readonly name: "DryRunOperationException";
3855
+ readonly $fault: "client";
3644
3856
  /**
3645
- * <p>Information about the stack.</p>
3857
+ * <p>The error message in the exception.</p>
3646
3858
  * @public
3647
3859
  */
3648
- Stack?: Stack | undefined;
3860
+ Message?: string | undefined;
3861
+ /**
3862
+ * @internal
3863
+ */
3864
+ constructor(opts: __ExceptionOptionType<DryRunOperationException, __BaseException>);
3649
3865
  }
3650
3866
  /**
3651
3867
  * @public
3868
+ * @enum
3652
3869
  */
3653
- export interface CreateStreamingURLRequest {
3870
+ export declare const StorageConnectorType: {
3871
+ readonly GOOGLE_DRIVE: "GOOGLE_DRIVE";
3872
+ readonly HOMEFOLDERS: "HOMEFOLDERS";
3873
+ readonly ONE_DRIVE: "ONE_DRIVE";
3874
+ };
3875
+ /**
3876
+ * @public
3877
+ */
3878
+ export type StorageConnectorType = (typeof StorageConnectorType)[keyof typeof StorageConnectorType];
3879
+ /**
3880
+ * <p>Describes a connector that enables persistent storage for users.</p>
3881
+ * @public
3882
+ */
3883
+ export interface StorageConnector {
3654
3884
  /**
3655
- * <p>The name of the stack.</p>
3885
+ * <p>The type of storage connector.</p>
3656
3886
  * @public
3657
3887
  */
3658
- StackName: string | undefined;
3888
+ ConnectorType: StorageConnectorType | undefined;
3659
3889
  /**
3660
- * <p>The name of the fleet.</p>
3890
+ * <p>The ARN of the storage connector.</p>
3661
3891
  * @public
3662
3892
  */
3663
- FleetName: string | undefined;
3893
+ ResourceIdentifier?: string | undefined;
3664
3894
  /**
3665
- * <p>The identifier of the user.</p>
3895
+ * <p>The names of the domains for the account.</p>
3666
3896
  * @public
3667
3897
  */
3668
- UserId: string | undefined;
3898
+ Domains?: string[] | undefined;
3669
3899
  /**
3670
- * <p>The name of the application to launch after the session starts. This is the name that you specified
3671
- * as <b>Name</b> in the Image Assistant. If your fleet is enabled for the <b>Desktop</b> stream view, you can also choose to launch directly to the operating system desktop. To do so, specify <b>Desktop</b>.</p>
3900
+ * <p>The OneDrive for Business domains where you require admin consent when users try to link their OneDrive account to WorkSpaces Applications. The attribute can only be specified when ConnectorType=ONE_DRIVE.</p>
3672
3901
  * @public
3673
3902
  */
3674
- ApplicationId?: string | undefined;
3903
+ DomainsRequireAdminConsent?: string[] | undefined;
3904
+ }
3905
+ /**
3906
+ * @public
3907
+ * @enum
3908
+ */
3909
+ export declare const PreferredProtocol: {
3910
+ readonly TCP: "TCP";
3911
+ readonly UDP: "UDP";
3912
+ };
3913
+ /**
3914
+ * @public
3915
+ */
3916
+ export type PreferredProtocol = (typeof PreferredProtocol)[keyof typeof PreferredProtocol];
3917
+ /**
3918
+ * <p>The streaming protocol you want your stack to prefer. This can be UDP or TCP. Currently, UDP is only supported in the Windows native client.</p>
3919
+ * @public
3920
+ */
3921
+ export interface StreamingExperienceSettings {
3922
+ /**
3923
+ * <p>The preferred protocol that you want to use while streaming your application.</p>
3924
+ * @public
3925
+ */
3926
+ PreferredProtocol?: PreferredProtocol | undefined;
3927
+ }
3928
+ /**
3929
+ * @public
3930
+ * @enum
3931
+ */
3932
+ export declare const Permission: {
3933
+ readonly DISABLED: "DISABLED";
3934
+ readonly ENABLED: "ENABLED";
3935
+ };
3936
+ /**
3937
+ * @public
3938
+ */
3939
+ export type Permission = (typeof Permission)[keyof typeof Permission];
3940
+ /**
3941
+ * <p>Describes an action and whether the action is enabled or disabled for users during their streaming sessions.</p>
3942
+ * @public
3943
+ */
3944
+ export interface UserSetting {
3945
+ /**
3946
+ * <p>The action that is enabled or disabled.</p>
3947
+ * @public
3948
+ */
3949
+ Action: Action | undefined;
3675
3950
  /**
3676
- * <p>The time that the streaming URL will be valid, in seconds.
3677
- * Specify a value between 1 and 604800 seconds. The default is 60 seconds.</p>
3951
+ * <p>Indicates whether the action is enabled or disabled.</p>
3678
3952
  * @public
3679
3953
  */
3680
- Validity?: number | undefined;
3954
+ Permission: Permission | undefined;
3681
3955
  /**
3682
- * <p>The session context. For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/managing-stacks-fleets.html#managing-stacks-fleets-parameters">Session Context</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
3956
+ * <p>Specifies the number of characters that can be copied by end users from the local device to the remote session, and to the local device from the remote session.</p>
3957
+ * <p>This can be specified only for the <code>CLIPBOARD_COPY_FROM_LOCAL_DEVICE</code> and <code>CLIPBOARD_COPY_TO_LOCAL_DEVICE</code> actions.</p>
3958
+ * <p>This defaults to 20,971,520 (20 MB) when unspecified and the permission is <code>ENABLED</code>. This can't be specified when the permission is <code>DISABLED</code>. </p>
3959
+ * <p>The value can be between 1 and 20,971,520 (20 MB).</p>
3683
3960
  * @public
3684
3961
  */
3685
- SessionContext?: string | undefined;
3962
+ MaximumLength?: number | undefined;
3686
3963
  }
3687
3964
  /**
3688
3965
  * @public
3689
3966
  */
3690
- export interface CreateStreamingURLResult {
3967
+ export interface CreateStackRequest {
3691
3968
  /**
3692
- * <p>The URL to start the AppStream 2.0 streaming session.</p>
3969
+ * <p>The name of the stack.</p>
3693
3970
  * @public
3694
3971
  */
3695
- StreamingURL?: string | undefined;
3972
+ Name: string | undefined;
3696
3973
  /**
3697
- * <p>The elapsed time, in seconds after the Unix epoch, when this URL expires.</p>
3974
+ * <p>The description to display.</p>
3698
3975
  * @public
3699
3976
  */
3700
- Expires?: Date | undefined;
3701
- }
3702
- /**
3703
- * <p>The website links that display in the catalog page footer.</p>
3704
- * @public
3705
- */
3706
- export interface ThemeFooterLink {
3977
+ Description?: string | undefined;
3707
3978
  /**
3708
- * <p>The name of the websites that display in the catalog page footer.</p>
3979
+ * <p>The stack name to display.</p>
3709
3980
  * @public
3710
3981
  */
3711
3982
  DisplayName?: string | undefined;
3712
3983
  /**
3713
- * <p>The URL of the websites that display in the catalog page footer.</p>
3984
+ * <p>The storage connectors to enable.</p>
3714
3985
  * @public
3715
3986
  */
3716
- FooterLinkURL?: string | undefined;
3717
- }
3718
- /**
3719
- * @public
3720
- * @enum
3721
- */
3722
- export declare const ThemeStyling: {
3723
- readonly BLUE: "BLUE";
3724
- readonly LIGHT_BLUE: "LIGHT_BLUE";
3725
- readonly PINK: "PINK";
3726
- readonly RED: "RED";
3727
- };
3728
- /**
3729
- * @public
3730
- */
3731
- export type ThemeStyling = (typeof ThemeStyling)[keyof typeof ThemeStyling];
3732
- /**
3733
- * @public
3734
- */
3735
- export interface CreateThemeForStackRequest {
3987
+ StorageConnectors?: StorageConnector[] | undefined;
3736
3988
  /**
3737
- * <p>The name of the stack for the theme.</p>
3989
+ * <p>The URL that users are redirected to after their streaming session ends.</p>
3738
3990
  * @public
3739
3991
  */
3740
- StackName: string | undefined;
3992
+ RedirectURL?: string | undefined;
3741
3993
  /**
3742
- * <p>The links that are displayed in the footer of the streaming application catalog page. These links are helpful resources for users, such as the organization's IT support and product marketing sites.</p>
3994
+ * <p>The URL that users are redirected to after they click the Send Feedback link. If no URL is specified, no Send Feedback link is displayed.</p>
3743
3995
  * @public
3744
3996
  */
3745
- FooterLinks?: ThemeFooterLink[] | undefined;
3997
+ FeedbackURL?: string | undefined;
3746
3998
  /**
3747
- * <p>The title that is displayed at the top of the browser tab during users' application streaming sessions.</p>
3999
+ * <p>The actions that are enabled or disabled for users during their streaming sessions. By default, these actions are enabled. </p>
3748
4000
  * @public
3749
4001
  */
3750
- TitleText: string | undefined;
4002
+ UserSettings?: UserSetting[] | undefined;
3751
4003
  /**
3752
- * <p>The color theme that is applied to website links, text, and buttons. These colors are also applied as accents in the background for the streaming application catalog page.</p>
4004
+ * <p>The persistent application settings for users of a stack. When these settings are enabled, changes that users make to applications and Windows settings are automatically saved after each session and applied to the next session.</p>
3753
4005
  * @public
3754
4006
  */
3755
- ThemeStyling: ThemeStyling | undefined;
4007
+ ApplicationSettings?: ApplicationSettings | undefined;
3756
4008
  /**
3757
- * <p>The organization logo that appears on the streaming application catalog page.</p>
4009
+ * <p>The tags to associate with the stack. A tag is a key-value pair, and the value is optional. For example, Environment=Test. If you do not specify a value, Environment=. </p>
4010
+ * <p>If you do not specify a value, the value is set to an empty string.</p>
4011
+ * <p>Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following special characters: </p>
4012
+ * <p>_ . : / = + \ - @</p>
4013
+ * <p>For more information about tags, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging Your Resources</a> in the <i>Amazon WorkSpaces Applications Administration Guide</i>.</p>
3758
4014
  * @public
3759
4015
  */
3760
- OrganizationLogoS3Location: S3Location | undefined;
4016
+ Tags?: Record<string, string> | undefined;
3761
4017
  /**
3762
- * <p>The S3 location of the favicon. The favicon enables users to recognize their application streaming site in a browser full of tabs or bookmarks. It is displayed at the top of the browser tab for the application streaming site during users' streaming sessions.</p>
4018
+ * <p>The list of interface VPC endpoint (interface endpoint) objects. Users of the stack can connect to WorkSpaces Applications only through the specified endpoints.</p>
3763
4019
  * @public
3764
4020
  */
3765
- FaviconS3Location: S3Location | undefined;
4021
+ AccessEndpoints?: AccessEndpoint[] | undefined;
4022
+ /**
4023
+ * <p>The domains where WorkSpaces Applications streaming sessions can be embedded in an iframe. You must approve the domains that you want to host embedded WorkSpaces Applications streaming sessions. </p>
4024
+ * @public
4025
+ */
4026
+ EmbedHostDomains?: string[] | undefined;
4027
+ /**
4028
+ * <p>The streaming protocol you want your stack to prefer. This can be UDP or TCP. Currently, UDP is only supported in the Windows native client.</p>
4029
+ * @public
4030
+ */
4031
+ StreamingExperienceSettings?: StreamingExperienceSettings | undefined;
3766
4032
  }
3767
4033
  /**
3768
4034
  * @public
3769
4035
  * @enum
3770
4036
  */
3771
- export declare const ThemeState: {
3772
- readonly DISABLED: "DISABLED";
3773
- readonly ENABLED: "ENABLED";
4037
+ export declare const StackErrorCode: {
4038
+ readonly INTERNAL_SERVICE_ERROR: "INTERNAL_SERVICE_ERROR";
4039
+ readonly STORAGE_CONNECTOR_ERROR: "STORAGE_CONNECTOR_ERROR";
3774
4040
  };
3775
4041
  /**
3776
4042
  * @public
3777
4043
  */
3778
- export type ThemeState = (typeof ThemeState)[keyof typeof ThemeState];
4044
+ export type StackErrorCode = (typeof StackErrorCode)[keyof typeof StackErrorCode];
3779
4045
  /**
3780
- * <p>The custom branding theme, which might include a custom logo, website links, and other branding to display to users.</p>
4046
+ * <p>Describes a stack error.</p>
3781
4047
  * @public
3782
4048
  */
3783
- export interface Theme {
4049
+ export interface StackError {
3784
4050
  /**
3785
- * <p>The stack that has the custom branding theme.</p>
4051
+ * <p>The error code.</p>
3786
4052
  * @public
3787
4053
  */
3788
- StackName?: string | undefined;
4054
+ ErrorCode?: StackErrorCode | undefined;
3789
4055
  /**
3790
- * <p>The state of the theme.</p>
4056
+ * <p>The error message.</p>
3791
4057
  * @public
3792
4058
  */
3793
- State?: ThemeState | undefined;
4059
+ ErrorMessage?: string | undefined;
4060
+ }
4061
+ /**
4062
+ * <p>Describes a stack.</p>
4063
+ * @public
4064
+ */
4065
+ export interface Stack {
3794
4066
  /**
3795
- * <p>The browser tab page title.</p>
4067
+ * <p>The ARN of the stack.</p>
3796
4068
  * @public
3797
4069
  */
3798
- ThemeTitleText?: string | undefined;
4070
+ Arn?: string | undefined;
3799
4071
  /**
3800
- * <p>The color that is used for the website links, text, buttons, and catalog page background.</p>
4072
+ * <p>The name of the stack.</p>
3801
4073
  * @public
3802
4074
  */
3803
- ThemeStyling?: ThemeStyling | undefined;
4075
+ Name: string | undefined;
3804
4076
  /**
3805
- * <p>The website links that display in the catalog page footer.</p>
4077
+ * <p>The description to display.</p>
3806
4078
  * @public
3807
4079
  */
3808
- ThemeFooterLinks?: ThemeFooterLink[] | undefined;
4080
+ Description?: string | undefined;
3809
4081
  /**
3810
- * <p>The URL of the logo that displays in the catalog page header.</p>
4082
+ * <p>The stack name to display.</p>
3811
4083
  * @public
3812
4084
  */
3813
- ThemeOrganizationLogoURL?: string | undefined;
4085
+ DisplayName?: string | undefined;
3814
4086
  /**
3815
- * <p>The URL of the icon that displays at the top of a user's browser tab during streaming sessions.</p>
4087
+ * <p>The time the stack was created.</p>
3816
4088
  * @public
3817
4089
  */
3818
- ThemeFaviconURL?: string | undefined;
4090
+ CreatedTime?: Date | undefined;
3819
4091
  /**
3820
- * <p>The time the theme was created.</p>
4092
+ * <p>The storage connectors to enable.</p>
3821
4093
  * @public
3822
4094
  */
3823
- CreatedTime?: Date | undefined;
3824
- }
3825
- /**
3826
- * @public
3827
- */
3828
- export interface CreateThemeForStackResult {
4095
+ StorageConnectors?: StorageConnector[] | undefined;
3829
4096
  /**
3830
- * <p> The theme object that contains the metadata of the custom branding.</p>
4097
+ * <p>The URL that users are redirected to after their streaming session ends.</p>
3831
4098
  * @public
3832
4099
  */
3833
- Theme?: Theme | undefined;
3834
- }
3835
- /**
3836
- * @public
3837
- */
3838
- export interface CreateUpdatedImageRequest {
4100
+ RedirectURL?: string | undefined;
3839
4101
  /**
3840
- * <p>The name of the image to update.</p>
4102
+ * <p>The URL that users are redirected to after they click the Send Feedback link. If no URL is specified, no Send Feedback link is displayed.</p>
3841
4103
  * @public
3842
4104
  */
3843
- existingImageName: string | undefined;
4105
+ FeedbackURL?: string | undefined;
3844
4106
  /**
3845
- * <p>The name of the new image. The name must be unique within the AWS account and Region.</p>
4107
+ * <p>The errors for the stack.</p>
3846
4108
  * @public
3847
4109
  */
3848
- newImageName: string | undefined;
4110
+ StackErrors?: StackError[] | undefined;
3849
4111
  /**
3850
- * <p>The description to display for the new image.</p>
4112
+ * <p>The actions that are enabled or disabled for users during their streaming sessions. By default these actions are enabled.</p>
3851
4113
  * @public
3852
4114
  */
3853
- newImageDescription?: string | undefined;
4115
+ UserSettings?: UserSetting[] | undefined;
3854
4116
  /**
3855
- * <p>The name to display for the new image.</p>
4117
+ * <p>The persistent application settings for users of the stack.</p>
3856
4118
  * @public
3857
4119
  */
3858
- newImageDisplayName?: string | undefined;
4120
+ ApplicationSettings?: ApplicationSettingsResponse | undefined;
3859
4121
  /**
3860
- * <p>The tags to associate with the new image. A tag is a key-value pair, and the value is optional. For example, Environment=Test. If you do not specify a value, Environment=. </p>
3861
- * <p>Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following special characters: </p>
3862
- * <p>_ . : / = + \ - @</p>
3863
- * <p>If you do not specify a value, the value is set to an empty string.</p>
3864
- * <p>For more information about tags, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
4122
+ * <p>The list of virtual private cloud (VPC) interface endpoint objects. Users of the stack can connect to WorkSpaces Applications only through the specified endpoints. </p>
3865
4123
  * @public
3866
4124
  */
3867
- newImageTags?: Record<string, string> | undefined;
4125
+ AccessEndpoints?: AccessEndpoint[] | undefined;
3868
4126
  /**
3869
- * <p>Indicates whether to display the status of image update availability before AppStream 2.0 initiates the process of creating a new updated image. If this value is set to <code>true</code>, AppStream 2.0 displays whether image updates are available. If this value is set to <code>false</code>, AppStream 2.0 initiates the process of creating a new updated image without displaying whether image updates are available.</p>
4127
+ * <p>The domains where WorkSpaces Applications streaming sessions can be embedded in an iframe. You must approve the domains that you want to host embedded WorkSpaces Applications streaming sessions.</p>
3870
4128
  * @public
3871
4129
  */
3872
- dryRun?: boolean | undefined;
4130
+ EmbedHostDomains?: string[] | undefined;
4131
+ /**
4132
+ * <p>The streaming protocol you want your stack to prefer. This can be UDP or TCP. Currently, UDP is only supported in the Windows native client.</p>
4133
+ * @public
4134
+ */
4135
+ StreamingExperienceSettings?: StreamingExperienceSettings | undefined;
3873
4136
  }
3874
- /**
3875
- * @public
3876
- * @enum
3877
- */
3878
- export declare const DynamicAppProvidersEnabled: {
3879
- readonly DISABLED: "DISABLED";
3880
- readonly ENABLED: "ENABLED";
3881
- };
3882
4137
  /**
3883
4138
  * @public
3884
4139
  */
3885
- export type DynamicAppProvidersEnabled = (typeof DynamicAppProvidersEnabled)[keyof typeof DynamicAppProvidersEnabled];
4140
+ export interface CreateStackResult {
4141
+ /**
4142
+ * <p>Information about the stack.</p>
4143
+ * @public
4144
+ */
4145
+ Stack?: Stack | undefined;
4146
+ }
3886
4147
  /**
3887
- * <p>Describes the permissions for an image. </p>
3888
4148
  * @public
3889
4149
  */
3890
- export interface ImagePermissions {
4150
+ export interface CreateStreamingURLRequest {
3891
4151
  /**
3892
- * <p>Indicates whether the image can be used for a fleet.</p>
4152
+ * <p>The name of the stack.</p>
3893
4153
  * @public
3894
4154
  */
3895
- allowFleet?: boolean | undefined;
4155
+ StackName: string | undefined;
3896
4156
  /**
3897
- * <p>Indicates whether the image can be used for an image builder.</p>
4157
+ * <p>The name of the fleet.</p>
3898
4158
  * @public
3899
4159
  */
3900
- allowImageBuilder?: boolean | undefined;
3901
- }
3902
- /**
3903
- * @public
3904
- * @enum
3905
- */
3906
- export declare const ImageSharedWithOthers: {
3907
- readonly FALSE: "FALSE";
3908
- readonly TRUE: "TRUE";
3909
- };
3910
- /**
3911
- * @public
3912
- */
3913
- export type ImageSharedWithOthers = (typeof ImageSharedWithOthers)[keyof typeof ImageSharedWithOthers];
3914
- /**
3915
- * @public
3916
- * @enum
3917
- */
3918
- export declare const ImageState: {
3919
- readonly AVAILABLE: "AVAILABLE";
3920
- readonly COPYING: "COPYING";
3921
- readonly CREATING: "CREATING";
3922
- readonly DELETING: "DELETING";
3923
- readonly FAILED: "FAILED";
3924
- readonly IMPORTING: "IMPORTING";
3925
- readonly PENDING: "PENDING";
3926
- };
3927
- /**
3928
- * @public
3929
- */
3930
- export type ImageState = (typeof ImageState)[keyof typeof ImageState];
3931
- /**
3932
- * @public
3933
- * @enum
3934
- */
3935
- export declare const ImageStateChangeReasonCode: {
3936
- readonly IMAGE_BUILDER_NOT_AVAILABLE: "IMAGE_BUILDER_NOT_AVAILABLE";
3937
- readonly IMAGE_COPY_FAILURE: "IMAGE_COPY_FAILURE";
3938
- readonly INTERNAL_ERROR: "INTERNAL_ERROR";
3939
- };
4160
+ FleetName: string | undefined;
4161
+ /**
4162
+ * <p>The identifier of the user.</p>
4163
+ * @public
4164
+ */
4165
+ UserId: string | undefined;
4166
+ /**
4167
+ * <p>The name of the application to launch after the session starts. This is the name that you specified
4168
+ * as <b>Name</b> in the Image Assistant. If your fleet is enabled for the <b>Desktop</b> stream view, you can also choose to launch directly to the operating system desktop. To do so, specify <b>Desktop</b>.</p>
4169
+ * @public
4170
+ */
4171
+ ApplicationId?: string | undefined;
4172
+ /**
4173
+ * <p>The time that the streaming URL will be valid, in seconds.
4174
+ * Specify a value between 1 and 604800 seconds. The default is 60 seconds.</p>
4175
+ * @public
4176
+ */
4177
+ Validity?: number | undefined;
4178
+ /**
4179
+ * <p>The session context. For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/managing-stacks-fleets.html#managing-stacks-fleets-parameters">Session Context</a> in the <i>Amazon WorkSpaces Applications Administration Guide</i>.</p>
4180
+ * @public
4181
+ */
4182
+ SessionContext?: string | undefined;
4183
+ }
3940
4184
  /**
3941
4185
  * @public
3942
4186
  */
3943
- export type ImageStateChangeReasonCode = (typeof ImageStateChangeReasonCode)[keyof typeof ImageStateChangeReasonCode];
4187
+ export interface CreateStreamingURLResult {
4188
+ /**
4189
+ * <p>The URL to start the WorkSpaces Applications streaming session.</p>
4190
+ * @public
4191
+ */
4192
+ StreamingURL?: string | undefined;
4193
+ /**
4194
+ * <p>The elapsed time, in seconds after the Unix epoch, when this URL expires.</p>
4195
+ * @public
4196
+ */
4197
+ Expires?: Date | undefined;
4198
+ }
3944
4199
  /**
3945
- * <p>Describes the reason why the last image state change occurred.</p>
4200
+ * <p>The website links that display in the catalog page footer.</p>
3946
4201
  * @public
3947
4202
  */
3948
- export interface ImageStateChangeReason {
4203
+ export interface ThemeFooterLink {
3949
4204
  /**
3950
- * <p>The state change reason code.</p>
4205
+ * <p>The name of the websites that display in the catalog page footer.</p>
3951
4206
  * @public
3952
4207
  */
3953
- Code?: ImageStateChangeReasonCode | undefined;
4208
+ DisplayName?: string | undefined;
3954
4209
  /**
3955
- * <p>The state change reason message.</p>
4210
+ * <p>The URL of the websites that display in the catalog page footer.</p>
3956
4211
  * @public
3957
4212
  */
3958
- Message?: string | undefined;
4213
+ FooterLinkURL?: string | undefined;
3959
4214
  }
3960
4215
  /**
3961
4216
  * @public
3962
4217
  * @enum
3963
4218
  */
3964
- export declare const VisibilityType: {
3965
- readonly PRIVATE: "PRIVATE";
3966
- readonly PUBLIC: "PUBLIC";
3967
- readonly SHARED: "SHARED";
4219
+ export declare const ThemeStyling: {
4220
+ readonly BLUE: "BLUE";
4221
+ readonly LIGHT_BLUE: "LIGHT_BLUE";
4222
+ readonly PINK: "PINK";
4223
+ readonly RED: "RED";
3968
4224
  };
3969
4225
  /**
3970
4226
  * @public
3971
4227
  */
3972
- export type VisibilityType = (typeof VisibilityType)[keyof typeof VisibilityType];
4228
+ export type ThemeStyling = (typeof ThemeStyling)[keyof typeof ThemeStyling];
3973
4229
  /**
3974
- * <p>Describes an image.</p>
3975
4230
  * @public
3976
4231
  */
3977
- export interface Image {
3978
- /**
3979
- * <p>The name of the image.</p>
3980
- * @public
3981
- */
3982
- Name: string | undefined;
4232
+ export interface CreateThemeForStackRequest {
3983
4233
  /**
3984
- * <p>The ARN of the image.</p>
4234
+ * <p>The name of the stack for the theme.</p>
3985
4235
  * @public
3986
4236
  */
3987
- Arn?: string | undefined;
4237
+ StackName: string | undefined;
3988
4238
  /**
3989
- * <p>The ARN of the image from which this image was created.</p>
4239
+ * <p>The links that are displayed in the footer of the streaming application catalog page. These links are helpful resources for users, such as the organization's IT support and product marketing sites.</p>
3990
4240
  * @public
3991
4241
  */
3992
- BaseImageArn?: string | undefined;
4242
+ FooterLinks?: ThemeFooterLink[] | undefined;
3993
4243
  /**
3994
- * <p>The image name to display.</p>
4244
+ * <p>The title that is displayed at the top of the browser tab during users' application streaming sessions.</p>
3995
4245
  * @public
3996
4246
  */
3997
- DisplayName?: string | undefined;
4247
+ TitleText: string | undefined;
3998
4248
  /**
3999
- * <p>The image starts in the <code>PENDING</code> state. If image creation succeeds, the
4000
- * state is <code>AVAILABLE</code>. If image creation fails, the state is <code>FAILED</code>.</p>
4249
+ * <p>The color theme that is applied to website links, text, and buttons. These colors are also applied as accents in the background for the streaming application catalog page.</p>
4001
4250
  * @public
4002
4251
  */
4003
- State?: ImageState | undefined;
4252
+ ThemeStyling: ThemeStyling | undefined;
4004
4253
  /**
4005
- * <p>Indicates whether the image is public or private.</p>
4254
+ * <p>The organization logo that appears on the streaming application catalog page.</p>
4006
4255
  * @public
4007
4256
  */
4008
- Visibility?: VisibilityType | undefined;
4257
+ OrganizationLogoS3Location: S3Location | undefined;
4009
4258
  /**
4010
- * <p>Indicates whether an image builder can be launched from this image.</p>
4259
+ * <p>The S3 location of the favicon. The favicon enables users to recognize their application streaming site in a browser full of tabs or bookmarks. It is displayed at the top of the browser tab for the application streaming site during users' streaming sessions.</p>
4011
4260
  * @public
4012
4261
  */
4013
- ImageBuilderSupported?: boolean | undefined;
4262
+ FaviconS3Location: S3Location | undefined;
4263
+ }
4264
+ /**
4265
+ * @public
4266
+ * @enum
4267
+ */
4268
+ export declare const ThemeState: {
4269
+ readonly DISABLED: "DISABLED";
4270
+ readonly ENABLED: "ENABLED";
4271
+ };
4272
+ /**
4273
+ * @public
4274
+ */
4275
+ export type ThemeState = (typeof ThemeState)[keyof typeof ThemeState];
4276
+ /**
4277
+ * <p>The custom branding theme, which might include a custom logo, website links, and other branding to display to users.</p>
4278
+ * @public
4279
+ */
4280
+ export interface Theme {
4014
4281
  /**
4015
- * <p>The name of the image builder that was used to create the private image. If the image is shared, copied, or updated by using Managed Image Updates, this value is null.</p>
4282
+ * <p>The stack that has the custom branding theme.</p>
4016
4283
  * @public
4017
4284
  */
4018
- ImageBuilderName?: string | undefined;
4285
+ StackName?: string | undefined;
4019
4286
  /**
4020
- * <p>The operating system platform of the image.</p>
4287
+ * <p>The state of the theme.</p>
4021
4288
  * @public
4022
4289
  */
4023
- Platform?: PlatformType | undefined;
4290
+ State?: ThemeState | undefined;
4024
4291
  /**
4025
- * <p>The description to display.</p>
4292
+ * <p>The browser tab page title.</p>
4026
4293
  * @public
4027
4294
  */
4028
- Description?: string | undefined;
4295
+ ThemeTitleText?: string | undefined;
4029
4296
  /**
4030
- * <p>The reason why the last state change occurred.</p>
4297
+ * <p>The color that is used for the website links, text, buttons, and catalog page background.</p>
4031
4298
  * @public
4032
4299
  */
4033
- StateChangeReason?: ImageStateChangeReason | undefined;
4300
+ ThemeStyling?: ThemeStyling | undefined;
4034
4301
  /**
4035
- * <p>The applications associated with the image.</p>
4302
+ * <p>The website links that display in the catalog page footer.</p>
4036
4303
  * @public
4037
4304
  */
4038
- Applications?: Application[] | undefined;
4305
+ ThemeFooterLinks?: ThemeFooterLink[] | undefined;
4039
4306
  /**
4040
- * <p>The time the image was created.</p>
4307
+ * <p>The URL of the logo that displays in the catalog page header.</p>
4041
4308
  * @public
4042
4309
  */
4043
- CreatedTime?: Date | undefined;
4310
+ ThemeOrganizationLogoURL?: string | undefined;
4044
4311
  /**
4045
- * <p>The release date of the public base image.
4046
- * For private images, this date is the release date of the base image from which the image was created.</p>
4312
+ * <p>The URL of the icon that displays at the top of a user's browser tab during streaming sessions.</p>
4047
4313
  * @public
4048
4314
  */
4049
- PublicBaseImageReleasedDate?: Date | undefined;
4315
+ ThemeFaviconURL?: string | undefined;
4050
4316
  /**
4051
- * <p>The version of the AppStream 2.0 agent to use for instances that are launched from this image. </p>
4317
+ * <p>The time the theme was created.</p>
4052
4318
  * @public
4053
4319
  */
4054
- AppstreamAgentVersion?: string | undefined;
4320
+ CreatedTime?: Date | undefined;
4321
+ }
4322
+ /**
4323
+ * @public
4324
+ */
4325
+ export interface CreateThemeForStackResult {
4055
4326
  /**
4056
- * <p>The permissions to provide to the destination AWS account for the specified image.</p>
4327
+ * <p> The theme object that contains the metadata of the custom branding.</p>
4057
4328
  * @public
4058
4329
  */
4059
- ImagePermissions?: ImagePermissions | undefined;
4330
+ Theme?: Theme | undefined;
4331
+ }
4332
+ /**
4333
+ * @public
4334
+ */
4335
+ export interface CreateUpdatedImageRequest {
4060
4336
  /**
4061
- * <p>Describes the errors that are returned when a new image can't be created.</p>
4337
+ * <p>The name of the image to update.</p>
4062
4338
  * @public
4063
4339
  */
4064
- ImageErrors?: ResourceError[] | undefined;
4340
+ existingImageName: string | undefined;
4065
4341
  /**
4066
- * <p>Indicates whether the image is using the latest AppStream 2.0 agent version or not.</p>
4342
+ * <p>The name of the new image. The name must be unique within the AWS account and Region.</p>
4067
4343
  * @public
4068
4344
  */
4069
- LatestAppstreamAgentVersion?: LatestAppstreamAgentVersion | undefined;
4345
+ newImageName: string | undefined;
4070
4346
  /**
4071
- * <p>The supported instances families that determine which image a customer can use when the customer launches a fleet or image builder. The following instances families are supported:</p>
4072
- * <ul>
4073
- * <li>
4074
- * <p>General Purpose</p>
4075
- * </li>
4076
- * <li>
4077
- * <p>Compute Optimized</p>
4078
- * </li>
4079
- * <li>
4080
- * <p>Memory Optimized</p>
4081
- * </li>
4082
- * <li>
4083
- * <p>Graphics</p>
4084
- * </li>
4085
- * <li>
4086
- * <p>Graphics Design</p>
4087
- * </li>
4088
- * <li>
4089
- * <p>Graphics Pro</p>
4090
- * </li>
4091
- * <li>
4092
- * <p>Graphics G4</p>
4093
- * </li>
4094
- * <li>
4095
- * <p>Graphics G5</p>
4096
- * </li>
4097
- * </ul>
4347
+ * <p>The description to display for the new image.</p>
4098
4348
  * @public
4099
4349
  */
4100
- SupportedInstanceFamilies?: string[] | undefined;
4350
+ newImageDescription?: string | undefined;
4101
4351
  /**
4102
- * <p>Indicates whether dynamic app providers are enabled within an AppStream 2.0 image or not.</p>
4352
+ * <p>The name to display for the new image.</p>
4103
4353
  * @public
4104
4354
  */
4105
- DynamicAppProvidersEnabled?: DynamicAppProvidersEnabled | undefined;
4355
+ newImageDisplayName?: string | undefined;
4106
4356
  /**
4107
- * <p>Indicates whether the image is shared with another account ID.</p>
4357
+ * <p>The tags to associate with the new image. A tag is a key-value pair, and the value is optional. For example, Environment=Test. If you do not specify a value, Environment=. </p>
4358
+ * <p>Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following special characters: </p>
4359
+ * <p>_ . : / = + \ - @</p>
4360
+ * <p>If you do not specify a value, the value is set to an empty string.</p>
4361
+ * <p>For more information about tags, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging Your Resources</a> in the <i>Amazon WorkSpaces Applications Administration Guide</i>.</p>
4108
4362
  * @public
4109
4363
  */
4110
- ImageSharedWithOthers?: ImageSharedWithOthers | undefined;
4364
+ newImageTags?: Record<string, string> | undefined;
4111
4365
  /**
4112
- * <p>Indicates whether the image includes license-included applications.</p>
4366
+ * <p>Indicates whether to display the status of image update availability before WorkSpaces Applications initiates the process of creating a new updated image. If this value is set to <code>true</code>, WorkSpaces Applications displays whether image updates are available. If this value is set to <code>false</code>, WorkSpaces Applications initiates the process of creating a new updated image without displaying whether image updates are available.</p>
4113
4367
  * @public
4114
4368
  */
4115
- ManagedSoftwareIncluded?: boolean | undefined;
4369
+ dryRun?: boolean | undefined;
4116
4370
  }
4117
4371
  /**
4118
4372
  * @public
@@ -4152,10 +4406,10 @@ export interface CreateUsageReportSubscriptionResult {
4152
4406
  /**
4153
4407
  * <p>The Amazon S3 bucket where generated reports are stored.</p>
4154
4408
  * <p>If you enabled on-instance session scripts and Amazon S3 logging for your session script
4155
- * configuration, AppStream 2.0 created an S3 bucket to store the script output. The bucket is
4156
- * unique to your account and Region. When you enable usage reporting in this case, AppStream 2.0
4409
+ * configuration, WorkSpaces Applications created an S3 bucket to store the script output. The bucket is
4410
+ * unique to your account and Region. When you enable usage reporting in this case, WorkSpaces Applications
4157
4411
  * uses the same bucket to store your usage reports. If you haven't already enabled on-instance session scripts,
4158
- * when you enable usage reports, AppStream 2.0 creates a new S3 bucket.</p>
4412
+ * when you enable usage reports, WorkSpaces Applications creates a new S3 bucket.</p>
4159
4413
  * @public
4160
4414
  */
4161
4415
  S3BucketName?: string | undefined;
@@ -5345,10 +5599,10 @@ export interface UsageReportSubscription {
5345
5599
  /**
5346
5600
  * <p>The Amazon S3 bucket where generated reports are stored.</p>
5347
5601
  * <p>If you enabled on-instance session scripts and Amazon S3 logging for your session script
5348
- * configuration, AppStream 2.0 created an S3 bucket to store the script output. The bucket is
5349
- * unique to your account and Region. When you enable usage reporting in this case, AppStream 2.0
5602
+ * configuration, WorkSpaces Applications created an S3 bucket to store the script output. The bucket is
5603
+ * unique to your account and Region. When you enable usage reporting in this case, WorkSpaces Applications
5350
5604
  * uses the same bucket to store your usage reports. If you haven't already enabled on-instance session scripts,
5351
- * when you enable usage reports, AppStream 2.0 creates a new S3 bucket.</p>
5605
+ * when you enable usage reports, WorkSpaces Applications creates a new S3 bucket.</p>
5352
5606
  * @public
5353
5607
  */
5354
5608
  S3BucketName?: string | undefined;
@@ -5784,6 +6038,22 @@ export interface ExpireSessionRequest {
5784
6038
  */
5785
6039
  export interface ExpireSessionResult {
5786
6040
  }
6041
+ /**
6042
+ * <p>A filter for narrowing down the results when listing export image tasks. Filters allow you to specify criteria such as task state or creation date.</p>
6043
+ * @public
6044
+ */
6045
+ export interface Filter {
6046
+ /**
6047
+ * <p>The name of the filter. Valid filter names depend on the operation being performed.</p>
6048
+ * @public
6049
+ */
6050
+ Name: string | undefined;
6051
+ /**
6052
+ * <p>The values for the filter. Multiple values can be specified for a single filter name.</p>
6053
+ * @public
6054
+ */
6055
+ Values: string[] | undefined;
6056
+ }
5787
6057
  /**
5788
6058
  * @public
5789
6059
  * @enum
@@ -5794,6 +6064,7 @@ export declare const FleetAttribute: {
5794
6064
  readonly MAX_SESSIONS_PER_INSTANCE: "MAX_SESSIONS_PER_INSTANCE";
5795
6065
  readonly SESSION_SCRIPT_S3_LOCATION: "SESSION_SCRIPT_S3_LOCATION";
5796
6066
  readonly USB_DEVICE_FILTER_STRINGS: "USB_DEVICE_FILTER_STRINGS";
6067
+ readonly VOLUME_CONFIGURATION: "VOLUME_CONFIGURATION";
5797
6068
  readonly VPC_CONFIGURATION: "VPC_CONFIGURATION";
5798
6069
  readonly VPC_CONFIGURATION_SECURITY_GROUP_IDS: "VPC_CONFIGURATION_SECURITY_GROUP_IDS";
5799
6070
  };
@@ -5801,6 +6072,26 @@ export declare const FleetAttribute: {
5801
6072
  * @public
5802
6073
  */
5803
6074
  export type FleetAttribute = (typeof FleetAttribute)[keyof typeof FleetAttribute];
6075
+ /**
6076
+ * @public
6077
+ */
6078
+ export interface GetExportImageTaskRequest {
6079
+ /**
6080
+ * <p>The unique identifier of the export image task to retrieve information about.</p>
6081
+ * @public
6082
+ */
6083
+ TaskId?: string | undefined;
6084
+ }
6085
+ /**
6086
+ * @public
6087
+ */
6088
+ export interface GetExportImageTaskResult {
6089
+ /**
6090
+ * <p>Information about the export image task, including its current state, created date, and any error details.</p>
6091
+ * @public
6092
+ */
6093
+ ExportImageTask?: ExportImageTask | undefined;
6094
+ }
5804
6095
  /**
5805
6096
  * @public
5806
6097
  */
@@ -5901,6 +6192,41 @@ export interface ListEntitledApplicationsResult {
5901
6192
  */
5902
6193
  NextToken?: string | undefined;
5903
6194
  }
6195
+ /**
6196
+ * @public
6197
+ */
6198
+ export interface ListExportImageTasksRequest {
6199
+ /**
6200
+ * <p>Optional filters to apply when listing export image tasks. Filters help you narrow down the results based on specific criteria.</p>
6201
+ * @public
6202
+ */
6203
+ Filters?: Filter[] | undefined;
6204
+ /**
6205
+ * <p>The maximum number of export image tasks to return in a single request. The valid range is 1-500, with a default of 50.</p>
6206
+ * @public
6207
+ */
6208
+ MaxResults?: number | undefined;
6209
+ /**
6210
+ * <p>The pagination token from a previous request. Use this to retrieve the next page of results when there are more tasks than the MaxResults limit.</p>
6211
+ * @public
6212
+ */
6213
+ NextToken?: string | undefined;
6214
+ }
6215
+ /**
6216
+ * @public
6217
+ */
6218
+ export interface ListExportImageTasksResult {
6219
+ /**
6220
+ * <p>The list of export image tasks that match the specified criteria.</p>
6221
+ * @public
6222
+ */
6223
+ ExportImageTasks?: ExportImageTask[] | undefined;
6224
+ /**
6225
+ * <p>The pagination token to use for retrieving the next page of results. This field is only present when there are more results available.</p>
6226
+ * @public
6227
+ */
6228
+ NextToken?: string | undefined;
6229
+ }
5904
6230
  /**
5905
6231
  * @public
5906
6232
  */
@@ -5966,7 +6292,7 @@ export interface StartImageBuilderRequest {
5966
6292
  */
5967
6293
  Name: string | undefined;
5968
6294
  /**
5969
- * <p>The version of the AppStream 2.0 agent to use for this image builder. To use the latest version of the AppStream 2.0 agent, specify [LATEST]. </p>
6295
+ * <p>The version of the WorkSpaces Applications agent to use for this image builder. To use the latest version of the WorkSpaces Applications agent, specify [LATEST]. </p>
5970
6296
  * @public
5971
6297
  */
5972
6298
  AppstreamAgentVersion?: string | undefined;
@@ -6164,9 +6490,9 @@ export interface UpdateAppBlockBuilderRequest {
6164
6490
  * <p>The Amazon Resource Name (ARN) of the IAM role to apply to the app block builder. To
6165
6491
  * assume a role, the app block builder calls the AWS Security Token Service (STS)
6166
6492
  * <code>AssumeRole</code> API operation and passes the ARN of the role to use. The
6167
- * operation creates a new session with temporary credentials. AppStream 2.0 retrieves the
6493
+ * operation creates a new session with temporary credentials. WorkSpaces Applications retrieves the
6168
6494
  * temporary credentials and creates the <b>appstream_machine_role</b> credential profile on the instance.</p>
6169
- * <p>For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html">Using an IAM Role to Grant Permissions to Applications and Scripts Running on AppStream 2.0 Streaming Instances</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
6495
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html">Using an IAM Role to Grant Permissions to Applications and Scripts Running on WorkSpaces Applications Streaming Instances</a> in the <i>Amazon WorkSpaces Applications Administration Guide</i>.</p>
6170
6496
  * @public
6171
6497
  */
6172
6498
  IamRoleArn?: string | undefined;
@@ -6430,9 +6756,6 @@ export interface UpdateFleetRequest {
6430
6756
  * <p>stream.graphics-design.4xlarge</p>
6431
6757
  * </li>
6432
6758
  * <li>
6433
- * <p>stream.graphics-desktop.2xlarge</p>
6434
- * </li>
6435
- * <li>
6436
6759
  * <p>stream.graphics.g4dn.xlarge</p>
6437
6760
  * </li>
6438
6761
  * <li>
@@ -6451,15 +6774,6 @@ export interface UpdateFleetRequest {
6451
6774
  * <p>stream.graphics.g4dn.16xlarge</p>
6452
6775
  * </li>
6453
6776
  * <li>
6454
- * <p>stream.graphics-pro.4xlarge</p>
6455
- * </li>
6456
- * <li>
6457
- * <p>stream.graphics-pro.8xlarge</p>
6458
- * </li>
6459
- * <li>
6460
- * <p>stream.graphics-pro.16xlarge</p>
6461
- * </li>
6462
- * <li>
6463
6777
  * <p>stream.graphics.g5.xlarge</p>
6464
6778
  * </li>
6465
6779
  * <li>
@@ -6617,13 +6931,13 @@ export interface UpdateFleetRequest {
6617
6931
  */
6618
6932
  AttributesToDelete?: FleetAttribute[] | undefined;
6619
6933
  /**
6620
- * <p>The Amazon Resource Name (ARN) of the IAM role to apply to the fleet. To assume a role, a fleet instance calls the AWS Security Token Service (STS) <code>AssumeRole</code> API operation and passes the ARN of the role to use. The operation creates a new session with temporary credentials. AppStream 2.0 retrieves the temporary credentials and creates the <b>appstream_machine_role</b> credential profile on the instance.</p>
6621
- * <p>For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html">Using an IAM Role to Grant Permissions to Applications and Scripts Running on AppStream 2.0 Streaming Instances</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>
6934
+ * <p>The Amazon Resource Name (ARN) of the IAM role to apply to the fleet. To assume a role, a fleet instance calls the AWS Security Token Service (STS) <code>AssumeRole</code> API operation and passes the ARN of the role to use. The operation creates a new session with temporary credentials. WorkSpaces Applications retrieves the temporary credentials and creates the <b>appstream_machine_role</b> credential profile on the instance.</p>
6935
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html">Using an IAM Role to Grant Permissions to Applications and Scripts Running on WorkSpaces Applications Streaming Instances</a> in the <i>Amazon WorkSpaces Applications Administration Guide</i>.</p>
6622
6936
  * @public
6623
6937
  */
6624
6938
  IamRoleArn?: string | undefined;
6625
6939
  /**
6626
- * <p>The AppStream 2.0 view that is displayed to your users when they stream from the fleet. When <code>APP</code> is specified, only the windows of applications opened by users display. When <code>DESKTOP</code> is specified, the standard desktop that is provided by the operating system displays.</p>
6940
+ * <p>The WorkSpaces Applications view that is displayed to your users when they stream from the fleet. When <code>APP</code> is specified, only the windows of applications opened by users display. When <code>DESKTOP</code> is specified, the standard desktop that is provided by the operating system displays.</p>
6627
6941
  * <p>The default value is <code>APP</code>.</p>
6628
6942
  * @public
6629
6943
  */
@@ -6653,6 +6967,11 @@ export interface UpdateFleetRequest {
6653
6967
  * @public
6654
6968
  */
6655
6969
  MaxSessionsPerInstance?: number | undefined;
6970
+ /**
6971
+ * <p>The updated configuration for the root volume of fleet instances. Note that volume size cannot be decreased below the image volume size.</p>
6972
+ * @public
6973
+ */
6974
+ RootVolumeConfig?: VolumeConfig | undefined;
6656
6975
  }
6657
6976
  /**
6658
6977
  * @public
@@ -6768,12 +7087,12 @@ export interface UpdateStackRequest {
6768
7087
  */
6769
7088
  ApplicationSettings?: ApplicationSettings | undefined;
6770
7089
  /**
6771
- * <p>The list of interface VPC endpoint (interface endpoint) objects. Users of the stack can connect to AppStream 2.0 only through the specified endpoints.</p>
7090
+ * <p>The list of interface VPC endpoint (interface endpoint) objects. Users of the stack can connect to WorkSpaces Applications only through the specified endpoints.</p>
6772
7091
  * @public
6773
7092
  */
6774
7093
  AccessEndpoints?: AccessEndpoint[] | undefined;
6775
7094
  /**
6776
- * <p>The domains where AppStream 2.0 streaming sessions can be embedded in an iframe. You must approve the domains that you want to host embedded AppStream 2.0 streaming sessions. </p>
7095
+ * <p>The domains where WorkSpaces Applications streaming sessions can be embedded in an iframe. You must approve the domains that you want to host embedded WorkSpaces Applications streaming sessions. </p>
6777
7096
  * @public
6778
7097
  */
6779
7098
  EmbedHostDomains?: string[] | undefined;