@aws-sdk/client-appstream 3.325.0 → 3.327.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.
- package/dist-types/commands/AssociateApplicationFleetCommand.d.ts +9 -0
- package/dist-types/commands/AssociateApplicationToEntitlementCommand.d.ts +4 -0
- package/dist-types/commands/AssociateFleetCommand.d.ts +4 -0
- package/dist-types/commands/BatchAssociateUserStackCommand.d.ts +17 -0
- package/dist-types/commands/BatchDisassociateUserStackCommand.d.ts +17 -0
- package/dist-types/commands/CopyImageCommand.d.ts +6 -0
- package/dist-types/commands/CreateAppBlockCommand.d.ts +25 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +31 -0
- package/dist-types/commands/CreateDirectoryConfigCommand.d.ts +20 -0
- package/dist-types/commands/CreateEntitlementCommand.d.ts +19 -0
- package/dist-types/commands/CreateFleetCommand.d.ts +56 -0
- package/dist-types/commands/CreateImageBuilderCommand.d.ts +52 -0
- package/dist-types/commands/CreateImageBuilderStreamingURLCommand.d.ts +7 -0
- package/dist-types/commands/CreateStackCommand.d.ts +52 -0
- package/dist-types/commands/CreateStreamingURLCommand.d.ts +7 -0
- package/dist-types/commands/CreateUpdatedImageCommand.d.ts +64 -0
- package/dist-types/commands/CreateUsageReportSubscriptionCommand.d.ts +7 -0
- package/dist-types/commands/CreateUserCommand.d.ts +4 -0
- package/dist-types/commands/DeleteAppBlockCommand.d.ts +4 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +4 -0
- package/dist-types/commands/DeleteDirectoryConfigCommand.d.ts +4 -0
- package/dist-types/commands/DeleteEntitlementCommand.d.ts +4 -0
- package/dist-types/commands/DeleteFleetCommand.d.ts +4 -0
- package/dist-types/commands/DeleteImageBuilderCommand.d.ts +52 -0
- package/dist-types/commands/DeleteImageCommand.d.ts +63 -0
- package/dist-types/commands/DeleteImagePermissionsCommand.d.ts +4 -0
- package/dist-types/commands/DeleteStackCommand.d.ts +4 -0
- package/dist-types/commands/DeleteUsageReportSubscriptionCommand.d.ts +4 -0
- package/dist-types/commands/DeleteUserCommand.d.ts +4 -0
- package/dist-types/commands/DescribeAppBlocksCommand.d.ts +28 -0
- package/dist-types/commands/DescribeApplicationFleetAssociationsCommand.d.ts +12 -0
- package/dist-types/commands/DescribeApplicationsCommand.d.ts +34 -0
- package/dist-types/commands/DescribeDirectoryConfigsCommand.d.ts +23 -0
- package/dist-types/commands/DescribeEntitlementsCommand.d.ts +22 -0
- package/dist-types/commands/DescribeFleetsCommand.d.ts +59 -0
- package/dist-types/commands/DescribeImageBuildersCommand.d.ts +55 -0
- package/dist-types/commands/DescribeImagePermissionsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeImagesCommand.d.ts +66 -0
- package/dist-types/commands/DescribeSessionsCommand.d.ts +23 -0
- package/dist-types/commands/DescribeStacksCommand.d.ts +55 -0
- package/dist-types/commands/DescribeUsageReportSubscriptionsCommand.d.ts +19 -0
- package/dist-types/commands/DescribeUserStackAssociationsCommand.d.ts +14 -0
- package/dist-types/commands/DescribeUsersCommand.d.ts +18 -0
- package/dist-types/commands/DisableUserCommand.d.ts +4 -0
- package/dist-types/commands/DisassociateApplicationFleetCommand.d.ts +4 -0
- package/dist-types/commands/DisassociateApplicationFromEntitlementCommand.d.ts +4 -0
- package/dist-types/commands/DisassociateFleetCommand.d.ts +4 -0
- package/dist-types/commands/EnableUserCommand.d.ts +4 -0
- package/dist-types/commands/ExpireSessionCommand.d.ts +4 -0
- package/dist-types/commands/ListAssociatedFleetsCommand.d.ts +9 -0
- package/dist-types/commands/ListAssociatedStacksCommand.d.ts +9 -0
- package/dist-types/commands/ListEntitledApplicationsCommand.d.ts +11 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/StartFleetCommand.d.ts +4 -0
- package/dist-types/commands/StartImageBuilderCommand.d.ts +52 -0
- package/dist-types/commands/StopFleetCommand.d.ts +4 -0
- package/dist-types/commands/StopImageBuilderCommand.d.ts +52 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +31 -0
- package/dist-types/commands/UpdateDirectoryConfigCommand.d.ts +20 -0
- package/dist-types/commands/UpdateEntitlementCommand.d.ts +19 -0
- package/dist-types/commands/UpdateFleetCommand.d.ts +56 -0
- package/dist-types/commands/UpdateImagePermissionsCommand.d.ts +4 -0
- package/dist-types/commands/UpdateStackCommand.d.ts +52 -0
- package/package.json +7 -7
|
@@ -32,6 +32,13 @@ export interface AssociateApplicationFleetCommandOutput extends AssociateApplica
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new AssociateApplicationFleetCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // AssociateApplicationFleetResult
|
|
36
|
+
* // ApplicationFleetAssociation: { // ApplicationFleetAssociation
|
|
37
|
+
* // FleetName: "STRING_VALUE", // required
|
|
38
|
+
* // ApplicationArn: "STRING_VALUE", // required
|
|
39
|
+
* // },
|
|
40
|
+
* // };
|
|
41
|
+
*
|
|
35
42
|
* ```
|
|
36
43
|
*
|
|
37
44
|
* @param AssociateApplicationFleetCommandInput - {@link AssociateApplicationFleetCommandInput}
|
|
@@ -55,6 +62,8 @@ export interface AssociateApplicationFleetCommandOutput extends AssociateApplica
|
|
|
55
62
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
56
63
|
* <p>The specified resource was not found.</p>
|
|
57
64
|
*
|
|
65
|
+
* @throws {@link AppStreamServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from AppStream service.</p>
|
|
58
67
|
*
|
|
59
68
|
*/
|
|
60
69
|
export declare class AssociateApplicationFleetCommand extends $Command<AssociateApplicationFleetCommandInput, AssociateApplicationFleetCommandOutput, AppStreamClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface AssociateApplicationToEntitlementCommandOutput extends Associat
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new AssociateApplicationToEntitlementCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param AssociateApplicationToEntitlementCommandInput - {@link AssociateApplicationToEntitlementCommandInput}
|
|
@@ -53,6 +55,8 @@ export interface AssociateApplicationToEntitlementCommandOutput extends Associat
|
|
|
53
55
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
54
56
|
* <p>The specified resource was not found.</p>
|
|
55
57
|
*
|
|
58
|
+
* @throws {@link AppStreamServiceException}
|
|
59
|
+
* <p>Base exception class for all service exceptions from AppStream service.</p>
|
|
56
60
|
*
|
|
57
61
|
*/
|
|
58
62
|
export declare class AssociateApplicationToEntitlementCommand extends $Command<AssociateApplicationToEntitlementCommandInput, AssociateApplicationToEntitlementCommandOutput, AppStreamClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface AssociateFleetCommandOutput extends AssociateFleetResult, __Met
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new AssociateFleetCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param AssociateFleetCommandInput - {@link AssociateFleetCommandInput}
|
|
@@ -58,6 +60,8 @@ export interface AssociateFleetCommandOutput extends AssociateFleetResult, __Met
|
|
|
58
60
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
59
61
|
* <p>The specified resource was not found.</p>
|
|
60
62
|
*
|
|
63
|
+
* @throws {@link AppStreamServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from AppStream service.</p>
|
|
61
65
|
*
|
|
62
66
|
*/
|
|
63
67
|
export declare class AssociateFleetCommand extends $Command<AssociateFleetCommandInput, AssociateFleetCommandOutput, AppStreamClientResolvedConfig> {
|
|
@@ -38,6 +38,21 @@ export interface BatchAssociateUserStackCommandOutput extends BatchAssociateUser
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new BatchAssociateUserStackCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // BatchAssociateUserStackResult
|
|
42
|
+
* // errors: [ // UserStackAssociationErrorList
|
|
43
|
+
* // { // UserStackAssociationError
|
|
44
|
+
* // UserStackAssociation: { // UserStackAssociation
|
|
45
|
+
* // StackName: "STRING_VALUE", // required
|
|
46
|
+
* // UserName: "STRING_VALUE", // required
|
|
47
|
+
* // AuthenticationType: "API" || "SAML" || "USERPOOL" || "AWS_AD", // required
|
|
48
|
+
* // SendEmailNotification: true || false,
|
|
49
|
+
* // },
|
|
50
|
+
* // ErrorCode: "STACK_NOT_FOUND" || "USER_NAME_NOT_FOUND" || "DIRECTORY_NOT_FOUND" || "INTERNAL_ERROR",
|
|
51
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
41
56
|
* ```
|
|
42
57
|
*
|
|
43
58
|
* @param BatchAssociateUserStackCommandInput - {@link BatchAssociateUserStackCommandInput}
|
|
@@ -52,6 +67,8 @@ export interface BatchAssociateUserStackCommandOutput extends BatchAssociateUser
|
|
|
52
67
|
* @throws {@link OperationNotPermittedException} (client fault)
|
|
53
68
|
* <p>The attempted operation is not permitted.</p>
|
|
54
69
|
*
|
|
70
|
+
* @throws {@link AppStreamServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from AppStream service.</p>
|
|
55
72
|
*
|
|
56
73
|
*/
|
|
57
74
|
export declare class BatchAssociateUserStackCommand extends $Command<BatchAssociateUserStackCommandInput, BatchAssociateUserStackCommandOutput, AppStreamClientResolvedConfig> {
|
|
@@ -38,6 +38,21 @@ export interface BatchDisassociateUserStackCommandOutput extends BatchDisassocia
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new BatchDisassociateUserStackCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // BatchDisassociateUserStackResult
|
|
42
|
+
* // errors: [ // UserStackAssociationErrorList
|
|
43
|
+
* // { // UserStackAssociationError
|
|
44
|
+
* // UserStackAssociation: { // UserStackAssociation
|
|
45
|
+
* // StackName: "STRING_VALUE", // required
|
|
46
|
+
* // UserName: "STRING_VALUE", // required
|
|
47
|
+
* // AuthenticationType: "API" || "SAML" || "USERPOOL" || "AWS_AD", // required
|
|
48
|
+
* // SendEmailNotification: true || false,
|
|
49
|
+
* // },
|
|
50
|
+
* // ErrorCode: "STACK_NOT_FOUND" || "USER_NAME_NOT_FOUND" || "DIRECTORY_NOT_FOUND" || "INTERNAL_ERROR",
|
|
51
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
41
56
|
* ```
|
|
42
57
|
*
|
|
43
58
|
* @param BatchDisassociateUserStackCommandInput - {@link BatchDisassociateUserStackCommandInput}
|
|
@@ -52,6 +67,8 @@ export interface BatchDisassociateUserStackCommandOutput extends BatchDisassocia
|
|
|
52
67
|
* @throws {@link OperationNotPermittedException} (client fault)
|
|
53
68
|
* <p>The attempted operation is not permitted.</p>
|
|
54
69
|
*
|
|
70
|
+
* @throws {@link AppStreamServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from AppStream service.</p>
|
|
55
72
|
*
|
|
56
73
|
*/
|
|
57
74
|
export declare class BatchDisassociateUserStackCommand extends $Command<BatchDisassociateUserStackCommandInput, BatchDisassociateUserStackCommandOutput, AppStreamClientResolvedConfig> {
|
|
@@ -34,6 +34,10 @@ export interface CopyImageCommandOutput extends CopyImageResponse, __MetadataBea
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new CopyImageCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // CopyImageResponse
|
|
38
|
+
* // DestinationImageName: "STRING_VALUE",
|
|
39
|
+
* // };
|
|
40
|
+
*
|
|
37
41
|
* ```
|
|
38
42
|
*
|
|
39
43
|
* @param CopyImageCommandInput - {@link CopyImageCommandInput}
|
|
@@ -60,6 +64,8 @@ export interface CopyImageCommandOutput extends CopyImageResponse, __MetadataBea
|
|
|
60
64
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
61
65
|
* <p>The specified resource was not found.</p>
|
|
62
66
|
*
|
|
67
|
+
* @throws {@link AppStreamServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from AppStream service.</p>
|
|
63
69
|
*
|
|
64
70
|
*/
|
|
65
71
|
export declare class CopyImageCommand extends $Command<CopyImageCommandInput, CopyImageCommandOutput, AppStreamClientResolvedConfig> {
|
|
@@ -55,6 +55,29 @@ export interface CreateAppBlockCommandOutput extends CreateAppBlockResult, __Met
|
|
|
55
55
|
* };
|
|
56
56
|
* const command = new CreateAppBlockCommand(input);
|
|
57
57
|
* const response = await client.send(command);
|
|
58
|
+
* // { // CreateAppBlockResult
|
|
59
|
+
* // AppBlock: { // AppBlock
|
|
60
|
+
* // Name: "STRING_VALUE", // required
|
|
61
|
+
* // Arn: "STRING_VALUE", // required
|
|
62
|
+
* // Description: "STRING_VALUE",
|
|
63
|
+
* // DisplayName: "STRING_VALUE",
|
|
64
|
+
* // SourceS3Location: { // S3Location
|
|
65
|
+
* // S3Bucket: "STRING_VALUE", // required
|
|
66
|
+
* // S3Key: "STRING_VALUE", // required
|
|
67
|
+
* // },
|
|
68
|
+
* // SetupScriptDetails: { // ScriptDetails
|
|
69
|
+
* // ScriptS3Location: {
|
|
70
|
+
* // S3Bucket: "STRING_VALUE", // required
|
|
71
|
+
* // S3Key: "STRING_VALUE", // required
|
|
72
|
+
* // },
|
|
73
|
+
* // ExecutablePath: "STRING_VALUE", // required
|
|
74
|
+
* // ExecutableParameters: "STRING_VALUE",
|
|
75
|
+
* // TimeoutInSeconds: Number("int"), // required
|
|
76
|
+
* // },
|
|
77
|
+
* // CreatedTime: new Date("TIMESTAMP"),
|
|
78
|
+
* // },
|
|
79
|
+
* // };
|
|
80
|
+
*
|
|
58
81
|
* ```
|
|
59
82
|
*
|
|
60
83
|
* @param CreateAppBlockCommandInput - {@link CreateAppBlockCommandInput}
|
|
@@ -75,6 +98,8 @@ export interface CreateAppBlockCommandOutput extends CreateAppBlockResult, __Met
|
|
|
75
98
|
* @throws {@link ResourceAlreadyExistsException} (client fault)
|
|
76
99
|
* <p>The specified resource already exists.</p>
|
|
77
100
|
*
|
|
101
|
+
* @throws {@link AppStreamServiceException}
|
|
102
|
+
* <p>Base exception class for all service exceptions from AppStream service.</p>
|
|
78
103
|
*
|
|
79
104
|
*/
|
|
80
105
|
export declare class CreateAppBlockCommand extends $Command<CreateAppBlockCommandInput, CreateAppBlockCommandOutput, AppStreamClientResolvedConfig> {
|
|
@@ -56,6 +56,35 @@ export interface CreateApplicationCommandOutput extends CreateApplicationResult,
|
|
|
56
56
|
* };
|
|
57
57
|
* const command = new CreateApplicationCommand(input);
|
|
58
58
|
* const response = await client.send(command);
|
|
59
|
+
* // { // CreateApplicationResult
|
|
60
|
+
* // Application: { // 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
|
+
*
|
|
59
88
|
* ```
|
|
60
89
|
*
|
|
61
90
|
* @param CreateApplicationCommandInput - {@link CreateApplicationCommandInput}
|
|
@@ -79,6 +108,8 @@ export interface CreateApplicationCommandOutput extends CreateApplicationResult,
|
|
|
79
108
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
80
109
|
* <p>The specified resource was not found.</p>
|
|
81
110
|
*
|
|
111
|
+
* @throws {@link AppStreamServiceException}
|
|
112
|
+
* <p>Base exception class for all service exceptions from AppStream service.</p>
|
|
82
113
|
*
|
|
83
114
|
*/
|
|
84
115
|
export declare class CreateApplicationCommand extends $Command<CreateApplicationCommandInput, CreateApplicationCommandOutput, AppStreamClientResolvedConfig> {
|
|
@@ -42,6 +42,24 @@ export interface CreateDirectoryConfigCommandOutput extends CreateDirectoryConfi
|
|
|
42
42
|
* };
|
|
43
43
|
* const command = new CreateDirectoryConfigCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
45
|
+
* // { // CreateDirectoryConfigResult
|
|
46
|
+
* // DirectoryConfig: { // DirectoryConfig
|
|
47
|
+
* // DirectoryName: "STRING_VALUE", // required
|
|
48
|
+
* // OrganizationalUnitDistinguishedNames: [ // OrganizationalUnitDistinguishedNamesList
|
|
49
|
+
* // "STRING_VALUE",
|
|
50
|
+
* // ],
|
|
51
|
+
* // ServiceAccountCredentials: { // ServiceAccountCredentials
|
|
52
|
+
* // AccountName: "STRING_VALUE", // required
|
|
53
|
+
* // AccountPassword: "STRING_VALUE", // required
|
|
54
|
+
* // },
|
|
55
|
+
* // CreatedTime: new Date("TIMESTAMP"),
|
|
56
|
+
* // CertificateBasedAuthProperties: { // CertificateBasedAuthProperties
|
|
57
|
+
* // Status: "DISABLED" || "ENABLED" || "ENABLED_NO_DIRECTORY_LOGIN_FALLBACK",
|
|
58
|
+
* // CertificateAuthorityArn: "STRING_VALUE",
|
|
59
|
+
* // },
|
|
60
|
+
* // },
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
45
63
|
* ```
|
|
46
64
|
*
|
|
47
65
|
* @param CreateDirectoryConfigCommandInput - {@link CreateDirectoryConfigCommandInput}
|
|
@@ -68,6 +86,8 @@ export interface CreateDirectoryConfigCommandOutput extends CreateDirectoryConfi
|
|
|
68
86
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
69
87
|
* <p>The specified resource was not found.</p>
|
|
70
88
|
*
|
|
89
|
+
* @throws {@link AppStreamServiceException}
|
|
90
|
+
* <p>Base exception class for all service exceptions from AppStream service.</p>
|
|
71
91
|
*
|
|
72
92
|
*/
|
|
73
93
|
export declare class CreateDirectoryConfigCommand extends $Command<CreateDirectoryConfigCommandInput, CreateDirectoryConfigCommandOutput, AppStreamClientResolvedConfig> {
|
|
@@ -45,6 +45,23 @@ export interface CreateEntitlementCommandOutput extends CreateEntitlementResult,
|
|
|
45
45
|
* };
|
|
46
46
|
* const command = new CreateEntitlementCommand(input);
|
|
47
47
|
* const response = await client.send(command);
|
|
48
|
+
* // { // CreateEntitlementResult
|
|
49
|
+
* // Entitlement: { // Entitlement
|
|
50
|
+
* // Name: "STRING_VALUE", // required
|
|
51
|
+
* // StackName: "STRING_VALUE", // required
|
|
52
|
+
* // Description: "STRING_VALUE",
|
|
53
|
+
* // AppVisibility: "ALL" || "ASSOCIATED", // required
|
|
54
|
+
* // Attributes: [ // EntitlementAttributeList // required
|
|
55
|
+
* // { // EntitlementAttribute
|
|
56
|
+
* // Name: "STRING_VALUE", // required
|
|
57
|
+
* // Value: "STRING_VALUE", // required
|
|
58
|
+
* // },
|
|
59
|
+
* // ],
|
|
60
|
+
* // CreatedTime: new Date("TIMESTAMP"),
|
|
61
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
62
|
+
* // },
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
48
65
|
* ```
|
|
49
66
|
*
|
|
50
67
|
* @param CreateEntitlementCommandInput - {@link CreateEntitlementCommandInput}
|
|
@@ -65,6 +82,8 @@ export interface CreateEntitlementCommandOutput extends CreateEntitlementResult,
|
|
|
65
82
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
66
83
|
* <p>The specified resource was not found.</p>
|
|
67
84
|
*
|
|
85
|
+
* @throws {@link AppStreamServiceException}
|
|
86
|
+
* <p>Base exception class for all service exceptions from AppStream service.</p>
|
|
68
87
|
*
|
|
69
88
|
*/
|
|
70
89
|
export declare class CreateEntitlementCommand extends $Command<CreateEntitlementCommandInput, CreateEntitlementCommandOutput, AppStreamClientResolvedConfig> {
|
|
@@ -70,6 +70,60 @@ export interface CreateFleetCommandOutput extends CreateFleetResult, __MetadataB
|
|
|
70
70
|
* };
|
|
71
71
|
* const command = new CreateFleetCommand(input);
|
|
72
72
|
* const response = await client.send(command);
|
|
73
|
+
* // { // CreateFleetResult
|
|
74
|
+
* // Fleet: { // Fleet
|
|
75
|
+
* // Arn: "STRING_VALUE", // required
|
|
76
|
+
* // Name: "STRING_VALUE", // required
|
|
77
|
+
* // DisplayName: "STRING_VALUE",
|
|
78
|
+
* // Description: "STRING_VALUE",
|
|
79
|
+
* // ImageName: "STRING_VALUE",
|
|
80
|
+
* // ImageArn: "STRING_VALUE",
|
|
81
|
+
* // InstanceType: "STRING_VALUE", // required
|
|
82
|
+
* // FleetType: "ALWAYS_ON" || "ON_DEMAND" || "ELASTIC",
|
|
83
|
+
* // ComputeCapacityStatus: { // ComputeCapacityStatus
|
|
84
|
+
* // Desired: Number("int"), // required
|
|
85
|
+
* // Running: Number("int"),
|
|
86
|
+
* // InUse: Number("int"),
|
|
87
|
+
* // Available: Number("int"),
|
|
88
|
+
* // },
|
|
89
|
+
* // MaxUserDurationInSeconds: Number("int"),
|
|
90
|
+
* // DisconnectTimeoutInSeconds: Number("int"),
|
|
91
|
+
* // State: "STARTING" || "RUNNING" || "STOPPING" || "STOPPED", // required
|
|
92
|
+
* // VpcConfig: { // VpcConfig
|
|
93
|
+
* // SubnetIds: [ // SubnetIdList
|
|
94
|
+
* // "STRING_VALUE",
|
|
95
|
+
* // ],
|
|
96
|
+
* // SecurityGroupIds: [ // SecurityGroupIdList
|
|
97
|
+
* // "STRING_VALUE",
|
|
98
|
+
* // ],
|
|
99
|
+
* // },
|
|
100
|
+
* // CreatedTime: new Date("TIMESTAMP"),
|
|
101
|
+
* // FleetErrors: [ // FleetErrors
|
|
102
|
+
* // { // FleetError
|
|
103
|
+
* // 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",
|
|
104
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
105
|
+
* // },
|
|
106
|
+
* // ],
|
|
107
|
+
* // EnableDefaultInternetAccess: true || false,
|
|
108
|
+
* // DomainJoinInfo: { // DomainJoinInfo
|
|
109
|
+
* // DirectoryName: "STRING_VALUE",
|
|
110
|
+
* // OrganizationalUnitDistinguishedName: "STRING_VALUE",
|
|
111
|
+
* // },
|
|
112
|
+
* // IdleDisconnectTimeoutInSeconds: Number("int"),
|
|
113
|
+
* // IamRoleArn: "STRING_VALUE",
|
|
114
|
+
* // StreamView: "APP" || "DESKTOP",
|
|
115
|
+
* // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "AMAZON_LINUX2",
|
|
116
|
+
* // MaxConcurrentSessions: Number("int"),
|
|
117
|
+
* // UsbDeviceFilterStrings: [ // UsbDeviceFilterStrings
|
|
118
|
+
* // "STRING_VALUE",
|
|
119
|
+
* // ],
|
|
120
|
+
* // SessionScriptS3Location: { // S3Location
|
|
121
|
+
* // S3Bucket: "STRING_VALUE", // required
|
|
122
|
+
* // S3Key: "STRING_VALUE", // required
|
|
123
|
+
* // },
|
|
124
|
+
* // },
|
|
125
|
+
* // };
|
|
126
|
+
*
|
|
73
127
|
* ```
|
|
74
128
|
*
|
|
75
129
|
* @param CreateFleetCommandInput - {@link CreateFleetCommandInput}
|
|
@@ -111,6 +165,8 @@ export interface CreateFleetCommandOutput extends CreateFleetResult, __MetadataB
|
|
|
111
165
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
112
166
|
* <p>The specified resource was not found.</p>
|
|
113
167
|
*
|
|
168
|
+
* @throws {@link AppStreamServiceException}
|
|
169
|
+
* <p>Base exception class for all service exceptions from AppStream service.</p>
|
|
114
170
|
*
|
|
115
171
|
*/
|
|
116
172
|
export declare class CreateFleetCommand extends $Command<CreateFleetCommandInput, CreateFleetCommandOutput, AppStreamClientResolvedConfig> {
|
|
@@ -61,6 +61,56 @@ export interface CreateImageBuilderCommandOutput extends CreateImageBuilderResul
|
|
|
61
61
|
* };
|
|
62
62
|
* const command = new CreateImageBuilderCommand(input);
|
|
63
63
|
* const response = await client.send(command);
|
|
64
|
+
* // { // CreateImageBuilderResult
|
|
65
|
+
* // ImageBuilder: { // ImageBuilder
|
|
66
|
+
* // Name: "STRING_VALUE", // required
|
|
67
|
+
* // Arn: "STRING_VALUE",
|
|
68
|
+
* // ImageArn: "STRING_VALUE",
|
|
69
|
+
* // Description: "STRING_VALUE",
|
|
70
|
+
* // DisplayName: "STRING_VALUE",
|
|
71
|
+
* // VpcConfig: { // VpcConfig
|
|
72
|
+
* // SubnetIds: [ // SubnetIdList
|
|
73
|
+
* // "STRING_VALUE",
|
|
74
|
+
* // ],
|
|
75
|
+
* // SecurityGroupIds: [ // SecurityGroupIdList
|
|
76
|
+
* // "STRING_VALUE",
|
|
77
|
+
* // ],
|
|
78
|
+
* // },
|
|
79
|
+
* // InstanceType: "STRING_VALUE",
|
|
80
|
+
* // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "AMAZON_LINUX2",
|
|
81
|
+
* // IamRoleArn: "STRING_VALUE",
|
|
82
|
+
* // State: "PENDING" || "UPDATING_AGENT" || "RUNNING" || "STOPPING" || "STOPPED" || "REBOOTING" || "SNAPSHOTTING" || "DELETING" || "FAILED" || "UPDATING" || "PENDING_QUALIFICATION",
|
|
83
|
+
* // StateChangeReason: { // ImageBuilderStateChangeReason
|
|
84
|
+
* // Code: "INTERNAL_ERROR" || "IMAGE_UNAVAILABLE",
|
|
85
|
+
* // Message: "STRING_VALUE",
|
|
86
|
+
* // },
|
|
87
|
+
* // CreatedTime: new Date("TIMESTAMP"),
|
|
88
|
+
* // EnableDefaultInternetAccess: true || false,
|
|
89
|
+
* // DomainJoinInfo: { // DomainJoinInfo
|
|
90
|
+
* // DirectoryName: "STRING_VALUE",
|
|
91
|
+
* // OrganizationalUnitDistinguishedName: "STRING_VALUE",
|
|
92
|
+
* // },
|
|
93
|
+
* // NetworkAccessConfiguration: { // NetworkAccessConfiguration
|
|
94
|
+
* // EniPrivateIpAddress: "STRING_VALUE",
|
|
95
|
+
* // EniId: "STRING_VALUE",
|
|
96
|
+
* // },
|
|
97
|
+
* // ImageBuilderErrors: [ // ResourceErrors
|
|
98
|
+
* // { // ResourceError
|
|
99
|
+
* // 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",
|
|
100
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
101
|
+
* // ErrorTimestamp: new Date("TIMESTAMP"),
|
|
102
|
+
* // },
|
|
103
|
+
* // ],
|
|
104
|
+
* // AppstreamAgentVersion: "STRING_VALUE",
|
|
105
|
+
* // AccessEndpoints: [ // AccessEndpointList
|
|
106
|
+
* // { // AccessEndpoint
|
|
107
|
+
* // EndpointType: "STREAMING", // required
|
|
108
|
+
* // VpceId: "STRING_VALUE",
|
|
109
|
+
* // },
|
|
110
|
+
* // ],
|
|
111
|
+
* // },
|
|
112
|
+
* // };
|
|
113
|
+
*
|
|
64
114
|
* ```
|
|
65
115
|
*
|
|
66
116
|
* @param CreateImageBuilderCommandInput - {@link CreateImageBuilderCommandInput}
|
|
@@ -102,6 +152,8 @@ export interface CreateImageBuilderCommandOutput extends CreateImageBuilderResul
|
|
|
102
152
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
103
153
|
* <p>The specified resource was not found.</p>
|
|
104
154
|
*
|
|
155
|
+
* @throws {@link AppStreamServiceException}
|
|
156
|
+
* <p>Base exception class for all service exceptions from AppStream service.</p>
|
|
105
157
|
*
|
|
106
158
|
*/
|
|
107
159
|
export declare class CreateImageBuilderCommand extends $Command<CreateImageBuilderCommandInput, CreateImageBuilderCommandOutput, AppStreamClientResolvedConfig> {
|
|
@@ -32,6 +32,11 @@ export interface CreateImageBuilderStreamingURLCommandOutput extends CreateImage
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new CreateImageBuilderStreamingURLCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // CreateImageBuilderStreamingURLResult
|
|
36
|
+
* // StreamingURL: "STRING_VALUE",
|
|
37
|
+
* // Expires: new Date("TIMESTAMP"),
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
37
42
|
* @param CreateImageBuilderStreamingURLCommandInput - {@link CreateImageBuilderStreamingURLCommandInput}
|
|
@@ -46,6 +51,8 @@ export interface CreateImageBuilderStreamingURLCommandOutput extends CreateImage
|
|
|
46
51
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
47
52
|
* <p>The specified resource was not found.</p>
|
|
48
53
|
*
|
|
54
|
+
* @throws {@link AppStreamServiceException}
|
|
55
|
+
* <p>Base exception class for all service exceptions from AppStream service.</p>
|
|
49
56
|
*
|
|
50
57
|
*/
|
|
51
58
|
export declare class CreateImageBuilderStreamingURLCommand extends $Command<CreateImageBuilderStreamingURLCommandInput, CreateImageBuilderStreamingURLCommandOutput, AppStreamClientResolvedConfig> {
|
|
@@ -69,6 +69,56 @@ export interface CreateStackCommandOutput extends CreateStackResult, __MetadataB
|
|
|
69
69
|
* };
|
|
70
70
|
* const command = new CreateStackCommand(input);
|
|
71
71
|
* const response = await client.send(command);
|
|
72
|
+
* // { // CreateStackResult
|
|
73
|
+
* // Stack: { // Stack
|
|
74
|
+
* // Arn: "STRING_VALUE",
|
|
75
|
+
* // Name: "STRING_VALUE", // required
|
|
76
|
+
* // Description: "STRING_VALUE",
|
|
77
|
+
* // DisplayName: "STRING_VALUE",
|
|
78
|
+
* // CreatedTime: new Date("TIMESTAMP"),
|
|
79
|
+
* // StorageConnectors: [ // StorageConnectorList
|
|
80
|
+
* // { // StorageConnector
|
|
81
|
+
* // ConnectorType: "HOMEFOLDERS" || "GOOGLE_DRIVE" || "ONE_DRIVE", // required
|
|
82
|
+
* // ResourceIdentifier: "STRING_VALUE",
|
|
83
|
+
* // Domains: [ // DomainList
|
|
84
|
+
* // "STRING_VALUE",
|
|
85
|
+
* // ],
|
|
86
|
+
* // },
|
|
87
|
+
* // ],
|
|
88
|
+
* // RedirectURL: "STRING_VALUE",
|
|
89
|
+
* // FeedbackURL: "STRING_VALUE",
|
|
90
|
+
* // StackErrors: [ // StackErrors
|
|
91
|
+
* // { // StackError
|
|
92
|
+
* // ErrorCode: "STORAGE_CONNECTOR_ERROR" || "INTERNAL_SERVICE_ERROR",
|
|
93
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
94
|
+
* // },
|
|
95
|
+
* // ],
|
|
96
|
+
* // UserSettings: [ // UserSettingList
|
|
97
|
+
* // { // UserSetting
|
|
98
|
+
* // 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
|
|
99
|
+
* // Permission: "ENABLED" || "DISABLED", // required
|
|
100
|
+
* // },
|
|
101
|
+
* // ],
|
|
102
|
+
* // ApplicationSettings: { // ApplicationSettingsResponse
|
|
103
|
+
* // Enabled: true || false,
|
|
104
|
+
* // SettingsGroup: "STRING_VALUE",
|
|
105
|
+
* // S3BucketName: "STRING_VALUE",
|
|
106
|
+
* // },
|
|
107
|
+
* // AccessEndpoints: [ // AccessEndpointList
|
|
108
|
+
* // { // AccessEndpoint
|
|
109
|
+
* // EndpointType: "STREAMING", // required
|
|
110
|
+
* // VpceId: "STRING_VALUE",
|
|
111
|
+
* // },
|
|
112
|
+
* // ],
|
|
113
|
+
* // EmbedHostDomains: [ // EmbedHostDomains
|
|
114
|
+
* // "STRING_VALUE",
|
|
115
|
+
* // ],
|
|
116
|
+
* // StreamingExperienceSettings: { // StreamingExperienceSettings
|
|
117
|
+
* // PreferredProtocol: "TCP" || "UDP",
|
|
118
|
+
* // },
|
|
119
|
+
* // },
|
|
120
|
+
* // };
|
|
121
|
+
*
|
|
72
122
|
* ```
|
|
73
123
|
*
|
|
74
124
|
* @param CreateStackCommandInput - {@link CreateStackCommandInput}
|
|
@@ -98,6 +148,8 @@ export interface CreateStackCommandOutput extends CreateStackResult, __MetadataB
|
|
|
98
148
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
99
149
|
* <p>The specified resource was not found.</p>
|
|
100
150
|
*
|
|
151
|
+
* @throws {@link AppStreamServiceException}
|
|
152
|
+
* <p>Base exception class for all service exceptions from AppStream service.</p>
|
|
101
153
|
*
|
|
102
154
|
*/
|
|
103
155
|
export declare class CreateStackCommand extends $Command<CreateStackCommandInput, CreateStackCommandOutput, AppStreamClientResolvedConfig> {
|
|
@@ -36,6 +36,11 @@ export interface CreateStreamingURLCommandOutput extends CreateStreamingURLResul
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new CreateStreamingURLCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // CreateStreamingURLResult
|
|
40
|
+
* // StreamingURL: "STRING_VALUE",
|
|
41
|
+
* // Expires: new Date("TIMESTAMP"),
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
39
44
|
* ```
|
|
40
45
|
*
|
|
41
46
|
* @param CreateStreamingURLCommandInput - {@link CreateStreamingURLCommandInput}
|
|
@@ -56,6 +61,8 @@ export interface CreateStreamingURLCommandOutput extends CreateStreamingURLResul
|
|
|
56
61
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
57
62
|
* <p>The specified resource was not found.</p>
|
|
58
63
|
*
|
|
64
|
+
* @throws {@link AppStreamServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from AppStream service.</p>
|
|
59
66
|
*
|
|
60
67
|
*/
|
|
61
68
|
export declare class CreateStreamingURLCommand extends $Command<CreateStreamingURLCommandInput, CreateStreamingURLCommandOutput, AppStreamClientResolvedConfig> {
|
|
@@ -40,6 +40,68 @@ export interface CreateUpdatedImageCommandOutput extends CreateUpdatedImageResul
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new CreateUpdatedImageCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // CreateUpdatedImageResult
|
|
44
|
+
* // image: { // 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
|
+
* // canUpdateImage: true || false,
|
|
103
|
+
* // };
|
|
104
|
+
*
|
|
43
105
|
* ```
|
|
44
106
|
*
|
|
45
107
|
* @param CreateUpdatedImageCommandInput - {@link CreateUpdatedImageCommandInput}
|
|
@@ -69,6 +131,8 @@ export interface CreateUpdatedImageCommandOutput extends CreateUpdatedImageResul
|
|
|
69
131
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
70
132
|
* <p>The specified resource was not found.</p>
|
|
71
133
|
*
|
|
134
|
+
* @throws {@link AppStreamServiceException}
|
|
135
|
+
* <p>Base exception class for all service exceptions from AppStream service.</p>
|
|
72
136
|
*
|
|
73
137
|
*/
|
|
74
138
|
export declare class CreateUpdatedImageCommand extends $Command<CreateUpdatedImageCommandInput, CreateUpdatedImageCommandOutput, AppStreamClientResolvedConfig> {
|
|
@@ -29,6 +29,11 @@ export interface CreateUsageReportSubscriptionCommandOutput extends CreateUsageR
|
|
|
29
29
|
* const input = {};
|
|
30
30
|
* const command = new CreateUsageReportSubscriptionCommand(input);
|
|
31
31
|
* const response = await client.send(command);
|
|
32
|
+
* // { // CreateUsageReportSubscriptionResult
|
|
33
|
+
* // S3BucketName: "STRING_VALUE",
|
|
34
|
+
* // Schedule: "DAILY",
|
|
35
|
+
* // };
|
|
36
|
+
*
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
34
39
|
* @param CreateUsageReportSubscriptionCommandInput - {@link CreateUsageReportSubscriptionCommandInput}
|
|
@@ -46,6 +51,8 @@ export interface CreateUsageReportSubscriptionCommandOutput extends CreateUsageR
|
|
|
46
51
|
* @throws {@link LimitExceededException} (client fault)
|
|
47
52
|
* <p>The requested limit exceeds the permitted limit for an account.</p>
|
|
48
53
|
*
|
|
54
|
+
* @throws {@link AppStreamServiceException}
|
|
55
|
+
* <p>Base exception class for all service exceptions from AppStream service.</p>
|
|
49
56
|
*
|
|
50
57
|
*/
|
|
51
58
|
export declare class CreateUsageReportSubscriptionCommand extends $Command<CreateUsageReportSubscriptionCommandInput, CreateUsageReportSubscriptionCommandOutput, AppStreamClientResolvedConfig> {
|