@aws-sdk/client-appstream 3.325.0 → 3.326.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 (66) hide show
  1. package/dist-types/commands/AssociateApplicationFleetCommand.d.ts +9 -0
  2. package/dist-types/commands/AssociateApplicationToEntitlementCommand.d.ts +4 -0
  3. package/dist-types/commands/AssociateFleetCommand.d.ts +4 -0
  4. package/dist-types/commands/BatchAssociateUserStackCommand.d.ts +17 -0
  5. package/dist-types/commands/BatchDisassociateUserStackCommand.d.ts +17 -0
  6. package/dist-types/commands/CopyImageCommand.d.ts +6 -0
  7. package/dist-types/commands/CreateAppBlockCommand.d.ts +25 -0
  8. package/dist-types/commands/CreateApplicationCommand.d.ts +31 -0
  9. package/dist-types/commands/CreateDirectoryConfigCommand.d.ts +20 -0
  10. package/dist-types/commands/CreateEntitlementCommand.d.ts +19 -0
  11. package/dist-types/commands/CreateFleetCommand.d.ts +56 -0
  12. package/dist-types/commands/CreateImageBuilderCommand.d.ts +52 -0
  13. package/dist-types/commands/CreateImageBuilderStreamingURLCommand.d.ts +7 -0
  14. package/dist-types/commands/CreateStackCommand.d.ts +52 -0
  15. package/dist-types/commands/CreateStreamingURLCommand.d.ts +7 -0
  16. package/dist-types/commands/CreateUpdatedImageCommand.d.ts +64 -0
  17. package/dist-types/commands/CreateUsageReportSubscriptionCommand.d.ts +7 -0
  18. package/dist-types/commands/CreateUserCommand.d.ts +4 -0
  19. package/dist-types/commands/DeleteAppBlockCommand.d.ts +4 -0
  20. package/dist-types/commands/DeleteApplicationCommand.d.ts +4 -0
  21. package/dist-types/commands/DeleteDirectoryConfigCommand.d.ts +4 -0
  22. package/dist-types/commands/DeleteEntitlementCommand.d.ts +4 -0
  23. package/dist-types/commands/DeleteFleetCommand.d.ts +4 -0
  24. package/dist-types/commands/DeleteImageBuilderCommand.d.ts +52 -0
  25. package/dist-types/commands/DeleteImageCommand.d.ts +63 -0
  26. package/dist-types/commands/DeleteImagePermissionsCommand.d.ts +4 -0
  27. package/dist-types/commands/DeleteStackCommand.d.ts +4 -0
  28. package/dist-types/commands/DeleteUsageReportSubscriptionCommand.d.ts +4 -0
  29. package/dist-types/commands/DeleteUserCommand.d.ts +4 -0
  30. package/dist-types/commands/DescribeAppBlocksCommand.d.ts +28 -0
  31. package/dist-types/commands/DescribeApplicationFleetAssociationsCommand.d.ts +12 -0
  32. package/dist-types/commands/DescribeApplicationsCommand.d.ts +34 -0
  33. package/dist-types/commands/DescribeDirectoryConfigsCommand.d.ts +23 -0
  34. package/dist-types/commands/DescribeEntitlementsCommand.d.ts +22 -0
  35. package/dist-types/commands/DescribeFleetsCommand.d.ts +59 -0
  36. package/dist-types/commands/DescribeImageBuildersCommand.d.ts +55 -0
  37. package/dist-types/commands/DescribeImagePermissionsCommand.d.ts +16 -0
  38. package/dist-types/commands/DescribeImagesCommand.d.ts +66 -0
  39. package/dist-types/commands/DescribeSessionsCommand.d.ts +23 -0
  40. package/dist-types/commands/DescribeStacksCommand.d.ts +55 -0
  41. package/dist-types/commands/DescribeUsageReportSubscriptionsCommand.d.ts +19 -0
  42. package/dist-types/commands/DescribeUserStackAssociationsCommand.d.ts +14 -0
  43. package/dist-types/commands/DescribeUsersCommand.d.ts +18 -0
  44. package/dist-types/commands/DisableUserCommand.d.ts +4 -0
  45. package/dist-types/commands/DisassociateApplicationFleetCommand.d.ts +4 -0
  46. package/dist-types/commands/DisassociateApplicationFromEntitlementCommand.d.ts +4 -0
  47. package/dist-types/commands/DisassociateFleetCommand.d.ts +4 -0
  48. package/dist-types/commands/EnableUserCommand.d.ts +4 -0
  49. package/dist-types/commands/ExpireSessionCommand.d.ts +4 -0
  50. package/dist-types/commands/ListAssociatedFleetsCommand.d.ts +9 -0
  51. package/dist-types/commands/ListAssociatedStacksCommand.d.ts +9 -0
  52. package/dist-types/commands/ListEntitledApplicationsCommand.d.ts +11 -0
  53. package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
  54. package/dist-types/commands/StartFleetCommand.d.ts +4 -0
  55. package/dist-types/commands/StartImageBuilderCommand.d.ts +52 -0
  56. package/dist-types/commands/StopFleetCommand.d.ts +4 -0
  57. package/dist-types/commands/StopImageBuilderCommand.d.ts +52 -0
  58. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  59. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  60. package/dist-types/commands/UpdateApplicationCommand.d.ts +31 -0
  61. package/dist-types/commands/UpdateDirectoryConfigCommand.d.ts +20 -0
  62. package/dist-types/commands/UpdateEntitlementCommand.d.ts +19 -0
  63. package/dist-types/commands/UpdateFleetCommand.d.ts +56 -0
  64. package/dist-types/commands/UpdateImagePermissionsCommand.d.ts +4 -0
  65. package/dist-types/commands/UpdateStackCommand.d.ts +52 -0
  66. package/package.json +3 -3
@@ -35,6 +35,59 @@ export interface DescribeImageBuildersCommandOutput extends DescribeImageBuilder
35
35
  * };
36
36
  * const command = new DescribeImageBuildersCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // DescribeImageBuildersResult
39
+ * // ImageBuilders: [ // ImageBuilderList
40
+ * // { // ImageBuilder
41
+ * // Name: "STRING_VALUE", // required
42
+ * // Arn: "STRING_VALUE",
43
+ * // ImageArn: "STRING_VALUE",
44
+ * // Description: "STRING_VALUE",
45
+ * // DisplayName: "STRING_VALUE",
46
+ * // VpcConfig: { // VpcConfig
47
+ * // SubnetIds: [ // SubnetIdList
48
+ * // "STRING_VALUE",
49
+ * // ],
50
+ * // SecurityGroupIds: [ // SecurityGroupIdList
51
+ * // "STRING_VALUE",
52
+ * // ],
53
+ * // },
54
+ * // InstanceType: "STRING_VALUE",
55
+ * // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "AMAZON_LINUX2",
56
+ * // IamRoleArn: "STRING_VALUE",
57
+ * // State: "PENDING" || "UPDATING_AGENT" || "RUNNING" || "STOPPING" || "STOPPED" || "REBOOTING" || "SNAPSHOTTING" || "DELETING" || "FAILED" || "UPDATING" || "PENDING_QUALIFICATION",
58
+ * // StateChangeReason: { // ImageBuilderStateChangeReason
59
+ * // Code: "INTERNAL_ERROR" || "IMAGE_UNAVAILABLE",
60
+ * // Message: "STRING_VALUE",
61
+ * // },
62
+ * // CreatedTime: new Date("TIMESTAMP"),
63
+ * // EnableDefaultInternetAccess: true || false,
64
+ * // DomainJoinInfo: { // DomainJoinInfo
65
+ * // DirectoryName: "STRING_VALUE",
66
+ * // OrganizationalUnitDistinguishedName: "STRING_VALUE",
67
+ * // },
68
+ * // NetworkAccessConfiguration: { // NetworkAccessConfiguration
69
+ * // EniPrivateIpAddress: "STRING_VALUE",
70
+ * // EniId: "STRING_VALUE",
71
+ * // },
72
+ * // ImageBuilderErrors: [ // ResourceErrors
73
+ * // { // ResourceError
74
+ * // ErrorCode: "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION" || "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION" || "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION" || "NETWORK_INTERFACE_LIMIT_EXCEEDED" || "INTERNAL_SERVICE_ERROR" || "IAM_SERVICE_ROLE_IS_MISSING" || "MACHINE_ROLE_IS_MISSING" || "STS_DISABLED_IN_REGION" || "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES" || "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION" || "SUBNET_NOT_FOUND" || "IMAGE_NOT_FOUND" || "INVALID_SUBNET_CONFIGURATION" || "SECURITY_GROUPS_NOT_FOUND" || "IGW_NOT_ATTACHED" || "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION" || "FLEET_STOPPED" || "FLEET_INSTANCE_PROVISIONING_FAILURE" || "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND" || "DOMAIN_JOIN_ERROR_ACCESS_DENIED" || "DOMAIN_JOIN_ERROR_LOGON_FAILURE" || "DOMAIN_JOIN_ERROR_INVALID_PARAMETER" || "DOMAIN_JOIN_ERROR_MORE_DATA" || "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN" || "DOMAIN_JOIN_ERROR_NOT_SUPPORTED" || "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME" || "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED" || "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED" || "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED" || "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR",
75
+ * // ErrorMessage: "STRING_VALUE",
76
+ * // ErrorTimestamp: new Date("TIMESTAMP"),
77
+ * // },
78
+ * // ],
79
+ * // AppstreamAgentVersion: "STRING_VALUE",
80
+ * // AccessEndpoints: [ // AccessEndpointList
81
+ * // { // AccessEndpoint
82
+ * // EndpointType: "STREAMING", // required
83
+ * // VpceId: "STRING_VALUE",
84
+ * // },
85
+ * // ],
86
+ * // },
87
+ * // ],
88
+ * // NextToken: "STRING_VALUE",
89
+ * // };
90
+ *
38
91
  * ```
39
92
  *
40
93
  * @param DescribeImageBuildersCommandInput - {@link DescribeImageBuildersCommandInput}
@@ -46,6 +99,8 @@ export interface DescribeImageBuildersCommandOutput extends DescribeImageBuilder
46
99
  * @throws {@link ResourceNotFoundException} (client fault)
47
100
  * <p>The specified resource was not found.</p>
48
101
  *
102
+ * @throws {@link AppStreamServiceException}
103
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
49
104
  *
50
105
  */
51
106
  export declare class DescribeImageBuildersCommand extends $Command<DescribeImageBuildersCommandInput, DescribeImageBuildersCommandOutput, AppStreamClientResolvedConfig> {
@@ -36,6 +36,20 @@ export interface DescribeImagePermissionsCommandOutput extends DescribeImagePerm
36
36
  * };
37
37
  * const command = new DescribeImagePermissionsCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // DescribeImagePermissionsResult
40
+ * // Name: "STRING_VALUE",
41
+ * // SharedImagePermissionsList: [ // SharedImagePermissionsList
42
+ * // { // SharedImagePermissions
43
+ * // sharedAccountId: "STRING_VALUE", // required
44
+ * // imagePermissions: { // ImagePermissions
45
+ * // allowFleet: true || false,
46
+ * // allowImageBuilder: true || false,
47
+ * // },
48
+ * // },
49
+ * // ],
50
+ * // NextToken: "STRING_VALUE",
51
+ * // };
52
+ *
39
53
  * ```
40
54
  *
41
55
  * @param DescribeImagePermissionsCommandInput - {@link DescribeImagePermissionsCommandInput}
@@ -47,6 +61,8 @@ export interface DescribeImagePermissionsCommandOutput extends DescribeImagePerm
47
61
  * @throws {@link ResourceNotFoundException} (client fault)
48
62
  * <p>The specified resource was not found.</p>
49
63
  *
64
+ * @throws {@link AppStreamServiceException}
65
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
50
66
  *
51
67
  */
52
68
  export declare class DescribeImagePermissionsCommand extends $Command<DescribeImagePermissionsCommandInput, DescribeImagePermissionsCommandOutput, AppStreamClientResolvedConfig> {
@@ -39,6 +39,70 @@ export interface DescribeImagesCommandOutput extends DescribeImagesResult, __Met
39
39
  * };
40
40
  * const command = new DescribeImagesCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // { // DescribeImagesResult
43
+ * // Images: [ // ImageList
44
+ * // { // Image
45
+ * // Name: "STRING_VALUE", // required
46
+ * // Arn: "STRING_VALUE",
47
+ * // BaseImageArn: "STRING_VALUE",
48
+ * // DisplayName: "STRING_VALUE",
49
+ * // State: "PENDING" || "AVAILABLE" || "FAILED" || "COPYING" || "DELETING" || "CREATING" || "IMPORTING",
50
+ * // Visibility: "PUBLIC" || "PRIVATE" || "SHARED",
51
+ * // ImageBuilderSupported: true || false,
52
+ * // ImageBuilderName: "STRING_VALUE",
53
+ * // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "AMAZON_LINUX2",
54
+ * // Description: "STRING_VALUE",
55
+ * // StateChangeReason: { // ImageStateChangeReason
56
+ * // Code: "INTERNAL_ERROR" || "IMAGE_BUILDER_NOT_AVAILABLE" || "IMAGE_COPY_FAILURE",
57
+ * // Message: "STRING_VALUE",
58
+ * // },
59
+ * // Applications: [ // Applications
60
+ * // { // Application
61
+ * // Name: "STRING_VALUE",
62
+ * // DisplayName: "STRING_VALUE",
63
+ * // IconURL: "STRING_VALUE",
64
+ * // LaunchPath: "STRING_VALUE",
65
+ * // LaunchParameters: "STRING_VALUE",
66
+ * // Enabled: true || false,
67
+ * // Metadata: { // Metadata
68
+ * // "<keys>": "STRING_VALUE",
69
+ * // },
70
+ * // WorkingDirectory: "STRING_VALUE",
71
+ * // Description: "STRING_VALUE",
72
+ * // Arn: "STRING_VALUE",
73
+ * // AppBlockArn: "STRING_VALUE",
74
+ * // IconS3Location: { // S3Location
75
+ * // S3Bucket: "STRING_VALUE", // required
76
+ * // S3Key: "STRING_VALUE", // required
77
+ * // },
78
+ * // Platforms: [ // Platforms
79
+ * // "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "AMAZON_LINUX2",
80
+ * // ],
81
+ * // InstanceFamilies: [ // StringList
82
+ * // "STRING_VALUE",
83
+ * // ],
84
+ * // CreatedTime: new Date("TIMESTAMP"),
85
+ * // },
86
+ * // ],
87
+ * // CreatedTime: new Date("TIMESTAMP"),
88
+ * // PublicBaseImageReleasedDate: new Date("TIMESTAMP"),
89
+ * // AppstreamAgentVersion: "STRING_VALUE",
90
+ * // ImagePermissions: { // ImagePermissions
91
+ * // allowFleet: true || false,
92
+ * // allowImageBuilder: true || false,
93
+ * // },
94
+ * // ImageErrors: [ // ResourceErrors
95
+ * // { // ResourceError
96
+ * // ErrorCode: "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION" || "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION" || "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION" || "NETWORK_INTERFACE_LIMIT_EXCEEDED" || "INTERNAL_SERVICE_ERROR" || "IAM_SERVICE_ROLE_IS_MISSING" || "MACHINE_ROLE_IS_MISSING" || "STS_DISABLED_IN_REGION" || "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES" || "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION" || "SUBNET_NOT_FOUND" || "IMAGE_NOT_FOUND" || "INVALID_SUBNET_CONFIGURATION" || "SECURITY_GROUPS_NOT_FOUND" || "IGW_NOT_ATTACHED" || "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION" || "FLEET_STOPPED" || "FLEET_INSTANCE_PROVISIONING_FAILURE" || "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND" || "DOMAIN_JOIN_ERROR_ACCESS_DENIED" || "DOMAIN_JOIN_ERROR_LOGON_FAILURE" || "DOMAIN_JOIN_ERROR_INVALID_PARAMETER" || "DOMAIN_JOIN_ERROR_MORE_DATA" || "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN" || "DOMAIN_JOIN_ERROR_NOT_SUPPORTED" || "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME" || "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED" || "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED" || "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED" || "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR",
97
+ * // ErrorMessage: "STRING_VALUE",
98
+ * // ErrorTimestamp: new Date("TIMESTAMP"),
99
+ * // },
100
+ * // ],
101
+ * // },
102
+ * // ],
103
+ * // NextToken: "STRING_VALUE",
104
+ * // };
105
+ *
42
106
  * ```
43
107
  *
44
108
  * @param DescribeImagesCommandInput - {@link DescribeImagesCommandInput}
@@ -53,6 +117,8 @@ export interface DescribeImagesCommandOutput extends DescribeImagesResult, __Met
53
117
  * @throws {@link ResourceNotFoundException} (client fault)
54
118
  * <p>The specified resource was not found.</p>
55
119
  *
120
+ * @throws {@link AppStreamServiceException}
121
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
56
122
  *
57
123
  */
58
124
  export declare class DescribeImagesCommand extends $Command<DescribeImagesCommandInput, DescribeImagesCommandOutput, AppStreamClientResolvedConfig> {
@@ -38,6 +38,27 @@ export interface DescribeSessionsCommandOutput extends DescribeSessionsResult, _
38
38
  * };
39
39
  * const command = new DescribeSessionsCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // { // DescribeSessionsResult
42
+ * // Sessions: [ // SessionList
43
+ * // { // Session
44
+ * // Id: "STRING_VALUE", // required
45
+ * // UserId: "STRING_VALUE", // required
46
+ * // StackName: "STRING_VALUE", // required
47
+ * // FleetName: "STRING_VALUE", // required
48
+ * // State: "ACTIVE" || "PENDING" || "EXPIRED", // required
49
+ * // ConnectionState: "CONNECTED" || "NOT_CONNECTED",
50
+ * // StartTime: new Date("TIMESTAMP"),
51
+ * // MaxExpirationTime: new Date("TIMESTAMP"),
52
+ * // AuthenticationType: "API" || "SAML" || "USERPOOL" || "AWS_AD",
53
+ * // NetworkAccessConfiguration: { // NetworkAccessConfiguration
54
+ * // EniPrivateIpAddress: "STRING_VALUE",
55
+ * // EniId: "STRING_VALUE",
56
+ * // },
57
+ * // },
58
+ * // ],
59
+ * // NextToken: "STRING_VALUE",
60
+ * // };
61
+ *
41
62
  * ```
42
63
  *
43
64
  * @param DescribeSessionsCommandInput - {@link DescribeSessionsCommandInput}
@@ -49,6 +70,8 @@ export interface DescribeSessionsCommandOutput extends DescribeSessionsResult, _
49
70
  * @throws {@link InvalidParameterCombinationException} (client fault)
50
71
  * <p>Indicates an incorrect combination of parameters, or a missing parameter.</p>
51
72
  *
73
+ * @throws {@link AppStreamServiceException}
74
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
52
75
  *
53
76
  */
54
77
  export declare class DescribeSessionsCommand extends $Command<DescribeSessionsCommandInput, DescribeSessionsCommandOutput, AppStreamClientResolvedConfig> {
@@ -34,6 +34,59 @@ export interface DescribeStacksCommandOutput extends DescribeStacksResult, __Met
34
34
  * };
35
35
  * const command = new DescribeStacksCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // DescribeStacksResult
38
+ * // Stacks: [ // StackList
39
+ * // { // Stack
40
+ * // Arn: "STRING_VALUE",
41
+ * // Name: "STRING_VALUE", // required
42
+ * // Description: "STRING_VALUE",
43
+ * // DisplayName: "STRING_VALUE",
44
+ * // CreatedTime: new Date("TIMESTAMP"),
45
+ * // StorageConnectors: [ // StorageConnectorList
46
+ * // { // StorageConnector
47
+ * // ConnectorType: "HOMEFOLDERS" || "GOOGLE_DRIVE" || "ONE_DRIVE", // required
48
+ * // ResourceIdentifier: "STRING_VALUE",
49
+ * // Domains: [ // DomainList
50
+ * // "STRING_VALUE",
51
+ * // ],
52
+ * // },
53
+ * // ],
54
+ * // RedirectURL: "STRING_VALUE",
55
+ * // FeedbackURL: "STRING_VALUE",
56
+ * // StackErrors: [ // StackErrors
57
+ * // { // StackError
58
+ * // ErrorCode: "STORAGE_CONNECTOR_ERROR" || "INTERNAL_SERVICE_ERROR",
59
+ * // ErrorMessage: "STRING_VALUE",
60
+ * // },
61
+ * // ],
62
+ * // UserSettings: [ // UserSettingList
63
+ * // { // UserSetting
64
+ * // Action: "CLIPBOARD_COPY_FROM_LOCAL_DEVICE" || "CLIPBOARD_COPY_TO_LOCAL_DEVICE" || "FILE_UPLOAD" || "FILE_DOWNLOAD" || "PRINTING_TO_LOCAL_DEVICE" || "DOMAIN_PASSWORD_SIGNIN" || "DOMAIN_SMART_CARD_SIGNIN", // required
65
+ * // Permission: "ENABLED" || "DISABLED", // required
66
+ * // },
67
+ * // ],
68
+ * // ApplicationSettings: { // ApplicationSettingsResponse
69
+ * // Enabled: true || false,
70
+ * // SettingsGroup: "STRING_VALUE",
71
+ * // S3BucketName: "STRING_VALUE",
72
+ * // },
73
+ * // AccessEndpoints: [ // AccessEndpointList
74
+ * // { // AccessEndpoint
75
+ * // EndpointType: "STREAMING", // required
76
+ * // VpceId: "STRING_VALUE",
77
+ * // },
78
+ * // ],
79
+ * // EmbedHostDomains: [ // EmbedHostDomains
80
+ * // "STRING_VALUE",
81
+ * // ],
82
+ * // StreamingExperienceSettings: { // StreamingExperienceSettings
83
+ * // PreferredProtocol: "TCP" || "UDP",
84
+ * // },
85
+ * // },
86
+ * // ],
87
+ * // NextToken: "STRING_VALUE",
88
+ * // };
89
+ *
37
90
  * ```
38
91
  *
39
92
  * @param DescribeStacksCommandInput - {@link DescribeStacksCommandInput}
@@ -45,6 +98,8 @@ export interface DescribeStacksCommandOutput extends DescribeStacksResult, __Met
45
98
  * @throws {@link ResourceNotFoundException} (client fault)
46
99
  * <p>The specified resource was not found.</p>
47
100
  *
101
+ * @throws {@link AppStreamServiceException}
102
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
48
103
  *
49
104
  */
50
105
  export declare class DescribeStacksCommand extends $Command<DescribeStacksCommandInput, DescribeStacksCommandOutput, AppStreamClientResolvedConfig> {
@@ -32,6 +32,23 @@ export interface DescribeUsageReportSubscriptionsCommandOutput extends DescribeU
32
32
  * };
33
33
  * const command = new DescribeUsageReportSubscriptionsCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribeUsageReportSubscriptionsResult
36
+ * // UsageReportSubscriptions: [ // UsageReportSubscriptionList
37
+ * // { // UsageReportSubscription
38
+ * // S3BucketName: "STRING_VALUE",
39
+ * // Schedule: "DAILY",
40
+ * // LastGeneratedReportDate: new Date("TIMESTAMP"),
41
+ * // SubscriptionErrors: [ // LastReportGenerationExecutionErrors
42
+ * // { // LastReportGenerationExecutionError
43
+ * // ErrorCode: "RESOURCE_NOT_FOUND" || "ACCESS_DENIED" || "INTERNAL_SERVICE_ERROR",
44
+ * // ErrorMessage: "STRING_VALUE",
45
+ * // },
46
+ * // ],
47
+ * // },
48
+ * // ],
49
+ * // NextToken: "STRING_VALUE",
50
+ * // };
51
+ *
35
52
  * ```
36
53
  *
37
54
  * @param DescribeUsageReportSubscriptionsCommandInput - {@link DescribeUsageReportSubscriptionsCommandInput}
@@ -46,6 +63,8 @@ export interface DescribeUsageReportSubscriptionsCommandOutput extends DescribeU
46
63
  * @throws {@link ResourceNotFoundException} (client fault)
47
64
  * <p>The specified resource was not found.</p>
48
65
  *
66
+ * @throws {@link AppStreamServiceException}
67
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
49
68
  *
50
69
  */
51
70
  export declare class DescribeUsageReportSubscriptionsCommand extends $Command<DescribeUsageReportSubscriptionsCommandInput, DescribeUsageReportSubscriptionsCommandOutput, AppStreamClientResolvedConfig> {
@@ -43,6 +43,18 @@ export interface DescribeUserStackAssociationsCommandOutput extends DescribeUser
43
43
  * };
44
44
  * const command = new DescribeUserStackAssociationsCommand(input);
45
45
  * const response = await client.send(command);
46
+ * // { // DescribeUserStackAssociationsResult
47
+ * // UserStackAssociations: [ // UserStackAssociationList
48
+ * // { // UserStackAssociation
49
+ * // StackName: "STRING_VALUE", // required
50
+ * // UserName: "STRING_VALUE", // required
51
+ * // AuthenticationType: "API" || "SAML" || "USERPOOL" || "AWS_AD", // required
52
+ * // SendEmailNotification: true || false,
53
+ * // },
54
+ * // ],
55
+ * // NextToken: "STRING_VALUE",
56
+ * // };
57
+ *
46
58
  * ```
47
59
  *
48
60
  * @param DescribeUserStackAssociationsCommandInput - {@link DescribeUserStackAssociationsCommandInput}
@@ -57,6 +69,8 @@ export interface DescribeUserStackAssociationsCommandOutput extends DescribeUser
57
69
  * @throws {@link OperationNotPermittedException} (client fault)
58
70
  * <p>The attempted operation is not permitted.</p>
59
71
  *
72
+ * @throws {@link AppStreamServiceException}
73
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
60
74
  *
61
75
  */
62
76
  export declare class DescribeUserStackAssociationsCommand extends $Command<DescribeUserStackAssociationsCommandInput, DescribeUserStackAssociationsCommandOutput, AppStreamClientResolvedConfig> {
@@ -33,6 +33,22 @@ export interface DescribeUsersCommandOutput extends DescribeUsersResult, __Metad
33
33
  * };
34
34
  * const command = new DescribeUsersCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // DescribeUsersResult
37
+ * // Users: [ // UserList
38
+ * // { // User
39
+ * // Arn: "STRING_VALUE",
40
+ * // UserName: "STRING_VALUE",
41
+ * // Enabled: true || false,
42
+ * // Status: "STRING_VALUE",
43
+ * // FirstName: "STRING_VALUE",
44
+ * // LastName: "STRING_VALUE",
45
+ * // CreatedTime: new Date("TIMESTAMP"),
46
+ * // AuthenticationType: "API" || "SAML" || "USERPOOL" || "AWS_AD", // required
47
+ * // },
48
+ * // ],
49
+ * // NextToken: "STRING_VALUE",
50
+ * // };
51
+ *
36
52
  * ```
37
53
  *
38
54
  * @param DescribeUsersCommandInput - {@link DescribeUsersCommandInput}
@@ -50,6 +66,8 @@ export interface DescribeUsersCommandOutput extends DescribeUsersResult, __Metad
50
66
  * @throws {@link ResourceNotFoundException} (client fault)
51
67
  * <p>The specified resource was not found.</p>
52
68
  *
69
+ * @throws {@link AppStreamServiceException}
70
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
53
71
  *
54
72
  */
55
73
  export declare class DescribeUsersCommand extends $Command<DescribeUsersCommandInput, DescribeUsersCommandOutput, AppStreamClientResolvedConfig> {
@@ -32,6 +32,8 @@ export interface DisableUserCommandOutput extends DisableUserResult, __MetadataB
32
32
  * };
33
33
  * const command = new DisableUserCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // {};
36
+ *
35
37
  * ```
36
38
  *
37
39
  * @param DisableUserCommandInput - {@link DisableUserCommandInput}
@@ -43,6 +45,8 @@ export interface DisableUserCommandOutput extends DisableUserResult, __MetadataB
43
45
  * @throws {@link ResourceNotFoundException} (client fault)
44
46
  * <p>The specified resource was not found.</p>
45
47
  *
48
+ * @throws {@link AppStreamServiceException}
49
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
46
50
  *
47
51
  */
48
52
  export declare class DisableUserCommand extends $Command<DisableUserCommandInput, DisableUserCommandOutput, AppStreamClientResolvedConfig> {
@@ -32,6 +32,8 @@ export interface DisassociateApplicationFleetCommandOutput extends DisassociateA
32
32
  * };
33
33
  * const command = new DisassociateApplicationFleetCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // {};
36
+ *
35
37
  * ```
36
38
  *
37
39
  * @param DisassociateApplicationFleetCommandInput - {@link DisassociateApplicationFleetCommandInput}
@@ -49,6 +51,8 @@ export interface DisassociateApplicationFleetCommandOutput extends DisassociateA
49
51
  * @throws {@link OperationNotPermittedException} (client fault)
50
52
  * <p>The attempted operation is not permitted.</p>
51
53
  *
54
+ * @throws {@link AppStreamServiceException}
55
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
52
56
  *
53
57
  */
54
58
  export declare class DisassociateApplicationFleetCommand extends $Command<DisassociateApplicationFleetCommandInput, DisassociateApplicationFleetCommandOutput, AppStreamClientResolvedConfig> {
@@ -33,6 +33,8 @@ export interface DisassociateApplicationFromEntitlementCommandOutput extends Dis
33
33
  * };
34
34
  * const command = new DisassociateApplicationFromEntitlementCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // {};
37
+ *
36
38
  * ```
37
39
  *
38
40
  * @param DisassociateApplicationFromEntitlementCommandInput - {@link DisassociateApplicationFromEntitlementCommandInput}
@@ -50,6 +52,8 @@ export interface DisassociateApplicationFromEntitlementCommandOutput extends Dis
50
52
  * @throws {@link ResourceNotFoundException} (client fault)
51
53
  * <p>The specified resource was not found.</p>
52
54
  *
55
+ * @throws {@link AppStreamServiceException}
56
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
53
57
  *
54
58
  */
55
59
  export declare class DisassociateApplicationFromEntitlementCommand extends $Command<DisassociateApplicationFromEntitlementCommandInput, DisassociateApplicationFromEntitlementCommandOutput, AppStreamClientResolvedConfig> {
@@ -32,6 +32,8 @@ export interface DisassociateFleetCommandOutput extends DisassociateFleetResult,
32
32
  * };
33
33
  * const command = new DisassociateFleetCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // {};
36
+ *
35
37
  * ```
36
38
  *
37
39
  * @param DisassociateFleetCommandInput - {@link DisassociateFleetCommandInput}
@@ -52,6 +54,8 @@ export interface DisassociateFleetCommandOutput extends DisassociateFleetResult,
52
54
  * @throws {@link ResourceNotFoundException} (client fault)
53
55
  * <p>The specified resource was not found.</p>
54
56
  *
57
+ * @throws {@link AppStreamServiceException}
58
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
55
59
  *
56
60
  */
57
61
  export declare class DisassociateFleetCommand extends $Command<DisassociateFleetCommandInput, DisassociateFleetCommandOutput, AppStreamClientResolvedConfig> {
@@ -32,6 +32,8 @@ export interface EnableUserCommandOutput extends EnableUserResult, __MetadataBea
32
32
  * };
33
33
  * const command = new EnableUserCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // {};
36
+ *
35
37
  * ```
36
38
  *
37
39
  * @param EnableUserCommandInput - {@link EnableUserCommandInput}
@@ -46,6 +48,8 @@ export interface EnableUserCommandOutput extends EnableUserResult, __MetadataBea
46
48
  * @throws {@link ResourceNotFoundException} (client fault)
47
49
  * <p>The specified resource was not found.</p>
48
50
  *
51
+ * @throws {@link AppStreamServiceException}
52
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
49
53
  *
50
54
  */
51
55
  export declare class EnableUserCommand extends $Command<EnableUserCommandInput, EnableUserCommandOutput, AppStreamClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface ExpireSessionCommandOutput extends ExpireSessionResult, __Metad
31
31
  * };
32
32
  * const command = new ExpireSessionCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param ExpireSessionCommandInput - {@link ExpireSessionCommandInput}
@@ -39,6 +41,8 @@ export interface ExpireSessionCommandOutput extends ExpireSessionResult, __Metad
39
41
  * @see {@link ExpireSessionCommandOutput} for command's `response` shape.
40
42
  * @see {@link AppStreamClientResolvedConfig | config} for AppStreamClient's `config` shape.
41
43
  *
44
+ * @throws {@link AppStreamServiceException}
45
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
42
46
  *
43
47
  */
44
48
  export declare class ExpireSessionCommand extends $Command<ExpireSessionCommandInput, ExpireSessionCommandOutput, AppStreamClientResolvedConfig> {
@@ -32,6 +32,13 @@ export interface ListAssociatedFleetsCommandOutput extends ListAssociatedFleetsR
32
32
  * };
33
33
  * const command = new ListAssociatedFleetsCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // ListAssociatedFleetsResult
36
+ * // Names: [ // StringList
37
+ * // "STRING_VALUE",
38
+ * // ],
39
+ * // NextToken: "STRING_VALUE",
40
+ * // };
41
+ *
35
42
  * ```
36
43
  *
37
44
  * @param ListAssociatedFleetsCommandInput - {@link ListAssociatedFleetsCommandInput}
@@ -40,6 +47,8 @@ export interface ListAssociatedFleetsCommandOutput extends ListAssociatedFleetsR
40
47
  * @see {@link ListAssociatedFleetsCommandOutput} for command's `response` shape.
41
48
  * @see {@link AppStreamClientResolvedConfig | config} for AppStreamClient's `config` shape.
42
49
  *
50
+ * @throws {@link AppStreamServiceException}
51
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
43
52
  *
44
53
  */
45
54
  export declare class ListAssociatedFleetsCommand extends $Command<ListAssociatedFleetsCommandInput, ListAssociatedFleetsCommandOutput, AppStreamClientResolvedConfig> {
@@ -32,6 +32,13 @@ export interface ListAssociatedStacksCommandOutput extends ListAssociatedStacksR
32
32
  * };
33
33
  * const command = new ListAssociatedStacksCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // ListAssociatedStacksResult
36
+ * // Names: [ // StringList
37
+ * // "STRING_VALUE",
38
+ * // ],
39
+ * // NextToken: "STRING_VALUE",
40
+ * // };
41
+ *
35
42
  * ```
36
43
  *
37
44
  * @param ListAssociatedStacksCommandInput - {@link ListAssociatedStacksCommandInput}
@@ -40,6 +47,8 @@ export interface ListAssociatedStacksCommandOutput extends ListAssociatedStacksR
40
47
  * @see {@link ListAssociatedStacksCommandOutput} for command's `response` shape.
41
48
  * @see {@link AppStreamClientResolvedConfig | config} for AppStreamClient's `config` shape.
42
49
  *
50
+ * @throws {@link AppStreamServiceException}
51
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
43
52
  *
44
53
  */
45
54
  export declare class ListAssociatedStacksCommand extends $Command<ListAssociatedStacksCommandInput, ListAssociatedStacksCommandOutput, AppStreamClientResolvedConfig> {
@@ -34,6 +34,15 @@ export interface ListEntitledApplicationsCommandOutput extends ListEntitledAppli
34
34
  * };
35
35
  * const command = new ListEntitledApplicationsCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // ListEntitledApplicationsResult
38
+ * // EntitledApplications: [ // EntitledApplicationList
39
+ * // { // EntitledApplication
40
+ * // ApplicationIdentifier: "STRING_VALUE", // required
41
+ * // },
42
+ * // ],
43
+ * // NextToken: "STRING_VALUE",
44
+ * // };
45
+ *
37
46
  * ```
38
47
  *
39
48
  * @param ListEntitledApplicationsCommandInput - {@link ListEntitledApplicationsCommandInput}
@@ -51,6 +60,8 @@ export interface ListEntitledApplicationsCommandOutput extends ListEntitledAppli
51
60
  * @throws {@link ResourceNotFoundException} (client fault)
52
61
  * <p>The specified resource was not found.</p>
53
62
  *
63
+ * @throws {@link AppStreamServiceException}
64
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
54
65
  *
55
66
  */
56
67
  export declare class ListEntitledApplicationsCommand extends $Command<ListEntitledApplicationsCommandInput, ListEntitledApplicationsCommandOutput, AppStreamClientResolvedConfig> {
@@ -32,6 +32,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
32
32
  * };
33
33
  * const command = new ListTagsForResourceCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // ListTagsForResourceResponse
36
+ * // Tags: { // Tags
37
+ * // "<keys>": "STRING_VALUE",
38
+ * // },
39
+ * // };
40
+ *
35
41
  * ```
36
42
  *
37
43
  * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
@@ -43,6 +49,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
43
49
  * @throws {@link ResourceNotFoundException} (client fault)
44
50
  * <p>The specified resource was not found.</p>
45
51
  *
52
+ * @throws {@link AppStreamServiceException}
53
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
46
54
  *
47
55
  */
48
56
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, AppStreamClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface StartFleetCommandOutput extends StartFleetResult, __MetadataBea
31
31
  * };
32
32
  * const command = new StartFleetCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param StartFleetCommandInput - {@link StartFleetCommandInput}
@@ -63,6 +65,8 @@ export interface StartFleetCommandOutput extends StartFleetResult, __MetadataBea
63
65
  * @throws {@link ResourceNotFoundException} (client fault)
64
66
  * <p>The specified resource was not found.</p>
65
67
  *
68
+ * @throws {@link AppStreamServiceException}
69
+ * <p>Base exception class for all service exceptions from AppStream service.</p>
66
70
  *
67
71
  */
68
72
  export declare class StartFleetCommand extends $Command<StartFleetCommandInput, StartFleetCommandOutput, AppStreamClientResolvedConfig> {