@aws-sdk/client-appstream 3.298.0 → 3.300.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 +4 -0
  2. package/dist-types/commands/AssociateApplicationToEntitlementCommand.d.ts +5 -0
  3. package/dist-types/commands/AssociateFleetCommand.d.ts +4 -0
  4. package/dist-types/commands/BatchAssociateUserStackCommand.d.ts +10 -0
  5. package/dist-types/commands/BatchDisassociateUserStackCommand.d.ts +10 -0
  6. package/dist-types/commands/CopyImageCommand.d.ts +6 -0
  7. package/dist-types/commands/CreateAppBlockCommand.d.ts +21 -0
  8. package/dist-types/commands/CreateApplicationCommand.d.ts +22 -0
  9. package/dist-types/commands/CreateDirectoryConfigCommand.d.ts +14 -0
  10. package/dist-types/commands/CreateEntitlementCommand.d.ts +12 -0
  11. package/dist-types/commands/CreateFleetCommand.d.ts +42 -0
  12. package/dist-types/commands/CreateImageBuilderCommand.d.ts +32 -0
  13. package/dist-types/commands/CreateImageBuilderStreamingURLCommand.d.ts +4 -0
  14. package/dist-types/commands/CreateStackCommand.d.ts +41 -0
  15. package/dist-types/commands/CreateStreamingURLCommand.d.ts +8 -0
  16. package/dist-types/commands/CreateUpdatedImageCommand.d.ts +10 -0
  17. package/dist-types/commands/CreateUsageReportSubscriptionCommand.d.ts +1 -0
  18. package/dist-types/commands/CreateUserCommand.d.ts +7 -0
  19. package/dist-types/commands/DeleteAppBlockCommand.d.ts +3 -0
  20. package/dist-types/commands/DeleteApplicationCommand.d.ts +3 -0
  21. package/dist-types/commands/DeleteDirectoryConfigCommand.d.ts +3 -0
  22. package/dist-types/commands/DeleteEntitlementCommand.d.ts +4 -0
  23. package/dist-types/commands/DeleteFleetCommand.d.ts +3 -0
  24. package/dist-types/commands/DeleteImageBuilderCommand.d.ts +3 -0
  25. package/dist-types/commands/DeleteImageCommand.d.ts +3 -0
  26. package/dist-types/commands/DeleteImagePermissionsCommand.d.ts +4 -0
  27. package/dist-types/commands/DeleteStackCommand.d.ts +3 -0
  28. package/dist-types/commands/DeleteUsageReportSubscriptionCommand.d.ts +1 -0
  29. package/dist-types/commands/DeleteUserCommand.d.ts +4 -0
  30. package/dist-types/commands/DescribeAppBlocksCommand.d.ts +7 -0
  31. package/dist-types/commands/DescribeApplicationFleetAssociationsCommand.d.ts +6 -0
  32. package/dist-types/commands/DescribeApplicationsCommand.d.ts +7 -0
  33. package/dist-types/commands/DescribeDirectoryConfigsCommand.d.ts +7 -0
  34. package/dist-types/commands/DescribeEntitlementsCommand.d.ts +6 -0
  35. package/dist-types/commands/DescribeFleetsCommand.d.ts +6 -0
  36. package/dist-types/commands/DescribeImageBuildersCommand.d.ts +7 -0
  37. package/dist-types/commands/DescribeImagePermissionsCommand.d.ts +8 -0
  38. package/dist-types/commands/DescribeImagesCommand.d.ts +11 -0
  39. package/dist-types/commands/DescribeSessionsCommand.d.ts +8 -0
  40. package/dist-types/commands/DescribeStacksCommand.d.ts +6 -0
  41. package/dist-types/commands/DescribeUsageReportSubscriptionsCommand.d.ts +4 -0
  42. package/dist-types/commands/DescribeUserStackAssociationsCommand.d.ts +7 -0
  43. package/dist-types/commands/DescribeUsersCommand.d.ts +5 -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 +5 -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 +3 -0
  50. package/dist-types/commands/ListAssociatedFleetsCommand.d.ts +4 -0
  51. package/dist-types/commands/ListAssociatedStacksCommand.d.ts +4 -0
  52. package/dist-types/commands/ListEntitledApplicationsCommand.d.ts +6 -0
  53. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  54. package/dist-types/commands/StartFleetCommand.d.ts +3 -0
  55. package/dist-types/commands/StartImageBuilderCommand.d.ts +4 -0
  56. package/dist-types/commands/StopFleetCommand.d.ts +3 -0
  57. package/dist-types/commands/StopImageBuilderCommand.d.ts +3 -0
  58. package/dist-types/commands/TagResourceCommand.d.ts +6 -0
  59. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  60. package/dist-types/commands/UpdateApplicationCommand.d.ts +16 -0
  61. package/dist-types/commands/UpdateDirectoryConfigCommand.d.ts +14 -0
  62. package/dist-types/commands/UpdateEntitlementCommand.d.ts +12 -0
  63. package/dist-types/commands/UpdateFleetCommand.d.ts +42 -0
  64. package/dist-types/commands/UpdateImagePermissionsCommand.d.ts +8 -0
  65. package/dist-types/commands/UpdateStackCommand.d.ts +42 -0
  66. package/package.json +12 -12
@@ -26,6 +26,10 @@ export interface AssociateApplicationFleetCommandOutput extends AssociateApplica
26
26
  * import { AppStreamClient, AssociateApplicationFleetCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, AssociateApplicationFleetCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * FleetName: "STRING_VALUE", // required
31
+ * ApplicationArn: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new AssociateApplicationFleetCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,11 @@ export interface AssociateApplicationToEntitlementCommandOutput extends Associat
26
26
  * import { AppStreamClient, AssociateApplicationToEntitlementCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, AssociateApplicationToEntitlementCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * StackName: "STRING_VALUE", // required
31
+ * EntitlementName: "STRING_VALUE", // required
32
+ * ApplicationIdentifier: "STRING_VALUE", // required
33
+ * };
29
34
  * const command = new AssociateApplicationToEntitlementCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,10 @@ export interface AssociateFleetCommandOutput extends AssociateFleetResult, __Met
26
26
  * import { AppStreamClient, AssociateFleetCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, AssociateFleetCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * FleetName: "STRING_VALUE", // required
31
+ * StackName: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new AssociateFleetCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,16 @@ export interface BatchAssociateUserStackCommandOutput extends BatchAssociateUser
26
26
  * import { AppStreamClient, BatchAssociateUserStackCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, BatchAssociateUserStackCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * UserStackAssociations: [ // required
31
+ * {
32
+ * StackName: "STRING_VALUE", // required
33
+ * UserName: "STRING_VALUE", // required
34
+ * AuthenticationType: "API" || "SAML" || "USERPOOL" || "AWS_AD", // required
35
+ * SendEmailNotification: true || false,
36
+ * },
37
+ * ],
38
+ * };
29
39
  * const command = new BatchAssociateUserStackCommand(input);
30
40
  * const response = await client.send(command);
31
41
  * ```
@@ -26,6 +26,16 @@ export interface BatchDisassociateUserStackCommandOutput extends BatchDisassocia
26
26
  * import { AppStreamClient, BatchDisassociateUserStackCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, BatchDisassociateUserStackCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * UserStackAssociations: [ // required
31
+ * {
32
+ * StackName: "STRING_VALUE", // required
33
+ * UserName: "STRING_VALUE", // required
34
+ * AuthenticationType: "API" || "SAML" || "USERPOOL" || "AWS_AD", // required
35
+ * SendEmailNotification: true || false,
36
+ * },
37
+ * ],
38
+ * };
29
39
  * const command = new BatchDisassociateUserStackCommand(input);
30
40
  * const response = await client.send(command);
31
41
  * ```
@@ -26,6 +26,12 @@ export interface CopyImageCommandOutput extends CopyImageResponse, __MetadataBea
26
26
  * import { AppStreamClient, CopyImageCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, CopyImageCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * SourceImageName: "STRING_VALUE", // required
31
+ * DestinationImageName: "STRING_VALUE", // required
32
+ * DestinationRegion: "STRING_VALUE", // required
33
+ * DestinationImageDescription: "STRING_VALUE",
34
+ * };
29
35
  * const command = new CopyImageCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -32,6 +32,27 @@ export interface CreateAppBlockCommandOutput extends CreateAppBlockResult, __Met
32
32
  * import { AppStreamClient, CreateAppBlockCommand } from "@aws-sdk/client-appstream"; // ES Modules import
33
33
  * // const { AppStreamClient, CreateAppBlockCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
34
34
  * const client = new AppStreamClient(config);
35
+ * const input = {
36
+ * Name: "STRING_VALUE", // required
37
+ * Description: "STRING_VALUE",
38
+ * DisplayName: "STRING_VALUE",
39
+ * SourceS3Location: {
40
+ * S3Bucket: "STRING_VALUE", // required
41
+ * S3Key: "STRING_VALUE", // required
42
+ * },
43
+ * SetupScriptDetails: {
44
+ * ScriptS3Location: {
45
+ * S3Bucket: "STRING_VALUE", // required
46
+ * S3Key: "STRING_VALUE", // required
47
+ * },
48
+ * ExecutablePath: "STRING_VALUE", // required
49
+ * ExecutableParameters: "STRING_VALUE",
50
+ * TimeoutInSeconds: Number("int"), // required
51
+ * },
52
+ * Tags: {
53
+ * "<keys>": "STRING_VALUE",
54
+ * },
55
+ * };
35
56
  * const command = new CreateAppBlockCommand(input);
36
57
  * const response = await client.send(command);
37
58
  * ```
@@ -32,6 +32,28 @@ export interface CreateApplicationCommandOutput extends CreateApplicationResult,
32
32
  * import { AppStreamClient, CreateApplicationCommand } from "@aws-sdk/client-appstream"; // ES Modules import
33
33
  * // const { AppStreamClient, CreateApplicationCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
34
34
  * const client = new AppStreamClient(config);
35
+ * const input = {
36
+ * Name: "STRING_VALUE", // required
37
+ * DisplayName: "STRING_VALUE",
38
+ * Description: "STRING_VALUE",
39
+ * IconS3Location: {
40
+ * S3Bucket: "STRING_VALUE", // required
41
+ * S3Key: "STRING_VALUE", // required
42
+ * },
43
+ * LaunchPath: "STRING_VALUE", // required
44
+ * WorkingDirectory: "STRING_VALUE",
45
+ * LaunchParameters: "STRING_VALUE",
46
+ * Platforms: [ // required
47
+ * "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "AMAZON_LINUX2",
48
+ * ],
49
+ * InstanceFamilies: [ // required
50
+ * "STRING_VALUE",
51
+ * ],
52
+ * AppBlockArn: "STRING_VALUE", // required
53
+ * Tags: {
54
+ * "<keys>": "STRING_VALUE",
55
+ * },
56
+ * };
35
57
  * const command = new CreateApplicationCommand(input);
36
58
  * const response = await client.send(command);
37
59
  * ```
@@ -26,6 +26,20 @@ export interface CreateDirectoryConfigCommandOutput extends CreateDirectoryConfi
26
26
  * import { AppStreamClient, CreateDirectoryConfigCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, CreateDirectoryConfigCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * DirectoryName: "STRING_VALUE", // required
31
+ * OrganizationalUnitDistinguishedNames: [ // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * ServiceAccountCredentials: {
35
+ * AccountName: "STRING_VALUE", // required
36
+ * AccountPassword: "STRING_VALUE", // required
37
+ * },
38
+ * CertificateBasedAuthProperties: {
39
+ * Status: "DISABLED" || "ENABLED" || "ENABLED_NO_DIRECTORY_LOGIN_FALLBACK",
40
+ * CertificateAuthorityArn: "STRING_VALUE",
41
+ * },
42
+ * };
29
43
  * const command = new CreateDirectoryConfigCommand(input);
30
44
  * const response = await client.send(command);
31
45
  * ```
@@ -31,6 +31,18 @@ export interface CreateEntitlementCommandOutput extends CreateEntitlementResult,
31
31
  * import { AppStreamClient, CreateEntitlementCommand } from "@aws-sdk/client-appstream"; // ES Modules import
32
32
  * // const { AppStreamClient, CreateEntitlementCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
33
33
  * const client = new AppStreamClient(config);
34
+ * const input = {
35
+ * Name: "STRING_VALUE", // required
36
+ * StackName: "STRING_VALUE", // required
37
+ * Description: "STRING_VALUE",
38
+ * AppVisibility: "ALL" || "ASSOCIATED", // required
39
+ * Attributes: [ // required
40
+ * {
41
+ * Name: "STRING_VALUE", // required
42
+ * Value: "STRING_VALUE", // required
43
+ * },
44
+ * ],
45
+ * };
34
46
  * const command = new CreateEntitlementCommand(input);
35
47
  * const response = await client.send(command);
36
48
  * ```
@@ -26,6 +26,48 @@ export interface CreateFleetCommandOutput extends CreateFleetResult, __MetadataB
26
26
  * import { AppStreamClient, CreateFleetCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, CreateFleetCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * Name: "STRING_VALUE", // required
31
+ * ImageName: "STRING_VALUE",
32
+ * ImageArn: "STRING_VALUE",
33
+ * InstanceType: "STRING_VALUE", // required
34
+ * FleetType: "ALWAYS_ON" || "ON_DEMAND" || "ELASTIC",
35
+ * ComputeCapacity: {
36
+ * DesiredInstances: Number("int"), // required
37
+ * },
38
+ * VpcConfig: {
39
+ * SubnetIds: [
40
+ * "STRING_VALUE",
41
+ * ],
42
+ * SecurityGroupIds: [
43
+ * "STRING_VALUE",
44
+ * ],
45
+ * },
46
+ * MaxUserDurationInSeconds: Number("int"),
47
+ * DisconnectTimeoutInSeconds: Number("int"),
48
+ * Description: "STRING_VALUE",
49
+ * DisplayName: "STRING_VALUE",
50
+ * EnableDefaultInternetAccess: true || false,
51
+ * DomainJoinInfo: {
52
+ * DirectoryName: "STRING_VALUE",
53
+ * OrganizationalUnitDistinguishedName: "STRING_VALUE",
54
+ * },
55
+ * Tags: {
56
+ * "<keys>": "STRING_VALUE",
57
+ * },
58
+ * IdleDisconnectTimeoutInSeconds: Number("int"),
59
+ * IamRoleArn: "STRING_VALUE",
60
+ * StreamView: "APP" || "DESKTOP",
61
+ * Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "AMAZON_LINUX2",
62
+ * MaxConcurrentSessions: Number("int"),
63
+ * UsbDeviceFilterStrings: [
64
+ * "STRING_VALUE",
65
+ * ],
66
+ * SessionScriptS3Location: {
67
+ * S3Bucket: "STRING_VALUE", // required
68
+ * S3Key: "STRING_VALUE", // required
69
+ * },
70
+ * };
29
71
  * const command = new CreateFleetCommand(input);
30
72
  * const response = await client.send(command);
31
73
  * ```
@@ -27,6 +27,38 @@ export interface CreateImageBuilderCommandOutput extends CreateImageBuilderResul
27
27
  * import { AppStreamClient, CreateImageBuilderCommand } from "@aws-sdk/client-appstream"; // ES Modules import
28
28
  * // const { AppStreamClient, CreateImageBuilderCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
29
29
  * const client = new AppStreamClient(config);
30
+ * const input = {
31
+ * Name: "STRING_VALUE", // required
32
+ * ImageName: "STRING_VALUE",
33
+ * ImageArn: "STRING_VALUE",
34
+ * InstanceType: "STRING_VALUE", // required
35
+ * Description: "STRING_VALUE",
36
+ * DisplayName: "STRING_VALUE",
37
+ * VpcConfig: {
38
+ * SubnetIds: [
39
+ * "STRING_VALUE",
40
+ * ],
41
+ * SecurityGroupIds: [
42
+ * "STRING_VALUE",
43
+ * ],
44
+ * },
45
+ * IamRoleArn: "STRING_VALUE",
46
+ * EnableDefaultInternetAccess: true || false,
47
+ * DomainJoinInfo: {
48
+ * DirectoryName: "STRING_VALUE",
49
+ * OrganizationalUnitDistinguishedName: "STRING_VALUE",
50
+ * },
51
+ * AppstreamAgentVersion: "STRING_VALUE",
52
+ * Tags: {
53
+ * "<keys>": "STRING_VALUE",
54
+ * },
55
+ * AccessEndpoints: [
56
+ * {
57
+ * EndpointType: "STREAMING", // required
58
+ * VpceId: "STRING_VALUE",
59
+ * },
60
+ * ],
61
+ * };
30
62
  * const command = new CreateImageBuilderCommand(input);
31
63
  * const response = await client.send(command);
32
64
  * ```
@@ -26,6 +26,10 @@ export interface CreateImageBuilderStreamingURLCommandOutput extends CreateImage
26
26
  * import { AppStreamClient, CreateImageBuilderStreamingURLCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, CreateImageBuilderStreamingURLCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * Name: "STRING_VALUE", // required
31
+ * Validity: Number("long"),
32
+ * };
29
33
  * const command = new CreateImageBuilderStreamingURLCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,47 @@ export interface CreateStackCommandOutput extends CreateStackResult, __MetadataB
26
26
  * import { AppStreamClient, CreateStackCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, CreateStackCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * Name: "STRING_VALUE", // required
31
+ * Description: "STRING_VALUE",
32
+ * DisplayName: "STRING_VALUE",
33
+ * StorageConnectors: [
34
+ * {
35
+ * ConnectorType: "HOMEFOLDERS" || "GOOGLE_DRIVE" || "ONE_DRIVE", // required
36
+ * ResourceIdentifier: "STRING_VALUE",
37
+ * Domains: [
38
+ * "STRING_VALUE",
39
+ * ],
40
+ * },
41
+ * ],
42
+ * RedirectURL: "STRING_VALUE",
43
+ * FeedbackURL: "STRING_VALUE",
44
+ * UserSettings: [
45
+ * {
46
+ * 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
47
+ * Permission: "ENABLED" || "DISABLED", // required
48
+ * },
49
+ * ],
50
+ * ApplicationSettings: {
51
+ * Enabled: true || false, // required
52
+ * SettingsGroup: "STRING_VALUE",
53
+ * },
54
+ * Tags: {
55
+ * "<keys>": "STRING_VALUE",
56
+ * },
57
+ * AccessEndpoints: [
58
+ * {
59
+ * EndpointType: "STREAMING", // required
60
+ * VpceId: "STRING_VALUE",
61
+ * },
62
+ * ],
63
+ * EmbedHostDomains: [
64
+ * "STRING_VALUE",
65
+ * ],
66
+ * StreamingExperienceSettings: {
67
+ * PreferredProtocol: "TCP" || "UDP",
68
+ * },
69
+ * };
29
70
  * const command = new CreateStackCommand(input);
30
71
  * const response = await client.send(command);
31
72
  * ```
@@ -26,6 +26,14 @@ export interface CreateStreamingURLCommandOutput extends CreateStreamingURLResul
26
26
  * import { AppStreamClient, CreateStreamingURLCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, CreateStreamingURLCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * StackName: "STRING_VALUE", // required
31
+ * FleetName: "STRING_VALUE", // required
32
+ * UserId: "STRING_VALUE", // required
33
+ * ApplicationId: "STRING_VALUE",
34
+ * Validity: Number("long"),
35
+ * SessionContext: "STRING_VALUE",
36
+ * };
29
37
  * const command = new CreateStreamingURLCommand(input);
30
38
  * const response = await client.send(command);
31
39
  * ```
@@ -28,6 +28,16 @@ export interface CreateUpdatedImageCommandOutput extends CreateUpdatedImageResul
28
28
  * import { AppStreamClient, CreateUpdatedImageCommand } from "@aws-sdk/client-appstream"; // ES Modules import
29
29
  * // const { AppStreamClient, CreateUpdatedImageCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
30
30
  * const client = new AppStreamClient(config);
31
+ * const input = {
32
+ * existingImageName: "STRING_VALUE", // required
33
+ * newImageName: "STRING_VALUE", // required
34
+ * newImageDescription: "STRING_VALUE",
35
+ * newImageDisplayName: "STRING_VALUE",
36
+ * newImageTags: {
37
+ * "<keys>": "STRING_VALUE",
38
+ * },
39
+ * dryRun: true || false,
40
+ * };
31
41
  * const command = new CreateUpdatedImageCommand(input);
32
42
  * const response = await client.send(command);
33
43
  * ```
@@ -26,6 +26,7 @@ export interface CreateUsageReportSubscriptionCommandOutput extends CreateUsageR
26
26
  * import { AppStreamClient, CreateUsageReportSubscriptionCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, CreateUsageReportSubscriptionCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {};
29
30
  * const command = new CreateUsageReportSubscriptionCommand(input);
30
31
  * const response = await client.send(command);
31
32
  * ```
@@ -26,6 +26,13 @@ export interface CreateUserCommandOutput extends CreateUserResult, __MetadataBea
26
26
  * import { AppStreamClient, CreateUserCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, CreateUserCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * UserName: "STRING_VALUE", // required
31
+ * MessageAction: "SUPPRESS" || "RESEND",
32
+ * FirstName: "STRING_VALUE",
33
+ * LastName: "STRING_VALUE",
34
+ * AuthenticationType: "API" || "SAML" || "USERPOOL" || "AWS_AD", // required
35
+ * };
29
36
  * const command = new CreateUserCommand(input);
30
37
  * const response = await client.send(command);
31
38
  * ```
@@ -26,6 +26,9 @@ export interface DeleteAppBlockCommandOutput extends DeleteAppBlockResult, __Met
26
26
  * import { AppStreamClient, DeleteAppBlockCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, DeleteAppBlockCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteAppBlockCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationResult,
26
26
  * import { AppStreamClient, DeleteApplicationCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, DeleteApplicationCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteApplicationCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface DeleteDirectoryConfigCommandOutput extends DeleteDirectoryConfi
26
26
  * import { AppStreamClient, DeleteDirectoryConfigCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, DeleteDirectoryConfigCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * DirectoryName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteDirectoryConfigCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,10 @@ export interface DeleteEntitlementCommandOutput extends DeleteEntitlementResult,
26
26
  * import { AppStreamClient, DeleteEntitlementCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, DeleteEntitlementCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * Name: "STRING_VALUE", // required
31
+ * StackName: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DeleteEntitlementCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,9 @@ export interface DeleteFleetCommandOutput extends DeleteFleetResult, __MetadataB
26
26
  * import { AppStreamClient, DeleteFleetCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, DeleteFleetCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteFleetCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface DeleteImageBuilderCommandOutput extends DeleteImageBuilderResul
26
26
  * import { AppStreamClient, DeleteImageBuilderCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, DeleteImageBuilderCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteImageBuilderCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -27,6 +27,9 @@ export interface DeleteImageCommandOutput extends DeleteImageResult, __MetadataB
27
27
  * import { AppStreamClient, DeleteImageCommand } from "@aws-sdk/client-appstream"; // ES Modules import
28
28
  * // const { AppStreamClient, DeleteImageCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
29
29
  * const client = new AppStreamClient(config);
30
+ * const input = {
31
+ * Name: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new DeleteImageCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -26,6 +26,10 @@ export interface DeleteImagePermissionsCommandOutput extends DeleteImagePermissi
26
26
  * import { AppStreamClient, DeleteImagePermissionsCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, DeleteImagePermissionsCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * Name: "STRING_VALUE", // required
31
+ * SharedAccountId: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DeleteImagePermissionsCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,9 @@ export interface DeleteStackCommandOutput extends DeleteStackResult, __MetadataB
26
26
  * import { AppStreamClient, DeleteStackCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, DeleteStackCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteStackCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,7 @@ export interface DeleteUsageReportSubscriptionCommandOutput extends DeleteUsageR
26
26
  * import { AppStreamClient, DeleteUsageReportSubscriptionCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, DeleteUsageReportSubscriptionCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {};
29
30
  * const command = new DeleteUsageReportSubscriptionCommand(input);
30
31
  * const response = await client.send(command);
31
32
  * ```
@@ -26,6 +26,10 @@ export interface DeleteUserCommandOutput extends DeleteUserResult, __MetadataBea
26
26
  * import { AppStreamClient, DeleteUserCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, DeleteUserCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * UserName: "STRING_VALUE", // required
31
+ * AuthenticationType: "API" || "SAML" || "USERPOOL" || "AWS_AD", // required
32
+ * };
29
33
  * const command = new DeleteUserCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,13 @@ export interface DescribeAppBlocksCommandOutput extends DescribeAppBlocksResult,
26
26
  * import { AppStreamClient, DescribeAppBlocksCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, DescribeAppBlocksCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * Arns: [
31
+ * "STRING_VALUE",
32
+ * ],
33
+ * NextToken: "STRING_VALUE",
34
+ * MaxResults: Number("int"),
35
+ * };
29
36
  * const command = new DescribeAppBlocksCommand(input);
30
37
  * const response = await client.send(command);
31
38
  * ```
@@ -26,6 +26,12 @@ export interface DescribeApplicationFleetAssociationsCommandOutput extends Descr
26
26
  * import { AppStreamClient, DescribeApplicationFleetAssociationsCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, DescribeApplicationFleetAssociationsCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * FleetName: "STRING_VALUE",
31
+ * ApplicationArn: "STRING_VALUE",
32
+ * MaxResults: Number("int"),
33
+ * NextToken: "STRING_VALUE",
34
+ * };
29
35
  * const command = new DescribeApplicationFleetAssociationsCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,13 @@ export interface DescribeApplicationsCommandOutput extends DescribeApplicationsR
26
26
  * import { AppStreamClient, DescribeApplicationsCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, DescribeApplicationsCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * Arns: [
31
+ * "STRING_VALUE",
32
+ * ],
33
+ * NextToken: "STRING_VALUE",
34
+ * MaxResults: Number("int"),
35
+ * };
29
36
  * const command = new DescribeApplicationsCommand(input);
30
37
  * const response = await client.send(command);
31
38
  * ```
@@ -28,6 +28,13 @@ export interface DescribeDirectoryConfigsCommandOutput extends DescribeDirectory
28
28
  * import { AppStreamClient, DescribeDirectoryConfigsCommand } from "@aws-sdk/client-appstream"; // ES Modules import
29
29
  * // const { AppStreamClient, DescribeDirectoryConfigsCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
30
30
  * const client = new AppStreamClient(config);
31
+ * const input = {
32
+ * DirectoryNames: [
33
+ * "STRING_VALUE",
34
+ * ],
35
+ * MaxResults: Number("int"),
36
+ * NextToken: "STRING_VALUE",
37
+ * };
31
38
  * const command = new DescribeDirectoryConfigsCommand(input);
32
39
  * const response = await client.send(command);
33
40
  * ```
@@ -26,6 +26,12 @@ export interface DescribeEntitlementsCommandOutput extends DescribeEntitlementsR
26
26
  * import { AppStreamClient, DescribeEntitlementsCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, DescribeEntitlementsCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * Name: "STRING_VALUE",
31
+ * StackName: "STRING_VALUE", // required
32
+ * NextToken: "STRING_VALUE",
33
+ * MaxResults: Number("int"),
34
+ * };
29
35
  * const command = new DescribeEntitlementsCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,12 @@ export interface DescribeFleetsCommandOutput extends DescribeFleetsResult, __Met
26
26
  * import { AppStreamClient, DescribeFleetsCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, DescribeFleetsCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * Names: [
31
+ * "STRING_VALUE",
32
+ * ],
33
+ * NextToken: "STRING_VALUE",
34
+ * };
29
35
  * const command = new DescribeFleetsCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,13 @@ export interface DescribeImageBuildersCommandOutput extends DescribeImageBuilder
26
26
  * import { AppStreamClient, DescribeImageBuildersCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, DescribeImageBuildersCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * Names: [
31
+ * "STRING_VALUE",
32
+ * ],
33
+ * MaxResults: Number("int"),
34
+ * NextToken: "STRING_VALUE",
35
+ * };
29
36
  * const command = new DescribeImageBuildersCommand(input);
30
37
  * const response = await client.send(command);
31
38
  * ```
@@ -26,6 +26,14 @@ export interface DescribeImagePermissionsCommandOutput extends DescribeImagePerm
26
26
  * import { AppStreamClient, DescribeImagePermissionsCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, DescribeImagePermissionsCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * Name: "STRING_VALUE", // required
31
+ * MaxResults: Number("int"),
32
+ * SharedAwsAccountIds: [
33
+ * "STRING_VALUE",
34
+ * ],
35
+ * NextToken: "STRING_VALUE",
36
+ * };
29
37
  * const command = new DescribeImagePermissionsCommand(input);
30
38
  * const response = await client.send(command);
31
39
  * ```
@@ -26,6 +26,17 @@ export interface DescribeImagesCommandOutput extends DescribeImagesResult, __Met
26
26
  * import { AppStreamClient, DescribeImagesCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, DescribeImagesCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * Names: [
31
+ * "STRING_VALUE",
32
+ * ],
33
+ * Arns: [
34
+ * "STRING_VALUE",
35
+ * ],
36
+ * Type: "PUBLIC" || "PRIVATE" || "SHARED",
37
+ * NextToken: "STRING_VALUE",
38
+ * MaxResults: Number("int"),
39
+ * };
29
40
  * const command = new DescribeImagesCommand(input);
30
41
  * const response = await client.send(command);
31
42
  * ```
@@ -28,6 +28,14 @@ export interface DescribeSessionsCommandOutput extends DescribeSessionsResult, _
28
28
  * import { AppStreamClient, DescribeSessionsCommand } from "@aws-sdk/client-appstream"; // ES Modules import
29
29
  * // const { AppStreamClient, DescribeSessionsCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
30
30
  * const client = new AppStreamClient(config);
31
+ * const input = {
32
+ * StackName: "STRING_VALUE", // required
33
+ * FleetName: "STRING_VALUE", // required
34
+ * UserId: "STRING_VALUE",
35
+ * NextToken: "STRING_VALUE",
36
+ * Limit: Number("int"),
37
+ * AuthenticationType: "API" || "SAML" || "USERPOOL" || "AWS_AD",
38
+ * };
31
39
  * const command = new DescribeSessionsCommand(input);
32
40
  * const response = await client.send(command);
33
41
  * ```
@@ -26,6 +26,12 @@ export interface DescribeStacksCommandOutput extends DescribeStacksResult, __Met
26
26
  * import { AppStreamClient, DescribeStacksCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, DescribeStacksCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * Names: [
31
+ * "STRING_VALUE",
32
+ * ],
33
+ * NextToken: "STRING_VALUE",
34
+ * };
29
35
  * const command = new DescribeStacksCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,10 @@ export interface DescribeUsageReportSubscriptionsCommandOutput extends DescribeU
26
26
  * import { AppStreamClient, DescribeUsageReportSubscriptionsCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, DescribeUsageReportSubscriptionsCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * };
29
33
  * const command = new DescribeUsageReportSubscriptionsCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -34,6 +34,13 @@ export interface DescribeUserStackAssociationsCommandOutput extends DescribeUser
34
34
  * import { AppStreamClient, DescribeUserStackAssociationsCommand } from "@aws-sdk/client-appstream"; // ES Modules import
35
35
  * // const { AppStreamClient, DescribeUserStackAssociationsCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
36
36
  * const client = new AppStreamClient(config);
37
+ * const input = {
38
+ * StackName: "STRING_VALUE",
39
+ * UserName: "STRING_VALUE",
40
+ * AuthenticationType: "API" || "SAML" || "USERPOOL" || "AWS_AD",
41
+ * MaxResults: Number("int"),
42
+ * NextToken: "STRING_VALUE",
43
+ * };
37
44
  * const command = new DescribeUserStackAssociationsCommand(input);
38
45
  * const response = await client.send(command);
39
46
  * ```
@@ -26,6 +26,11 @@ export interface DescribeUsersCommandOutput extends DescribeUsersResult, __Metad
26
26
  * import { AppStreamClient, DescribeUsersCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, DescribeUsersCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * AuthenticationType: "API" || "SAML" || "USERPOOL" || "AWS_AD", // required
31
+ * MaxResults: Number("int"),
32
+ * NextToken: "STRING_VALUE",
33
+ * };
29
34
  * const command = new DescribeUsersCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,10 @@ export interface DisableUserCommandOutput extends DisableUserResult, __MetadataB
26
26
  * import { AppStreamClient, DisableUserCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, DisableUserCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * UserName: "STRING_VALUE", // required
31
+ * AuthenticationType: "API" || "SAML" || "USERPOOL" || "AWS_AD", // required
32
+ * };
29
33
  * const command = new DisableUserCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,10 @@ export interface DisassociateApplicationFleetCommandOutput extends DisassociateA
26
26
  * import { AppStreamClient, DisassociateApplicationFleetCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, DisassociateApplicationFleetCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * FleetName: "STRING_VALUE", // required
31
+ * ApplicationArn: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DisassociateApplicationFleetCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,11 @@ export interface DisassociateApplicationFromEntitlementCommandOutput extends Dis
26
26
  * import { AppStreamClient, DisassociateApplicationFromEntitlementCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, DisassociateApplicationFromEntitlementCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * StackName: "STRING_VALUE", // required
31
+ * EntitlementName: "STRING_VALUE", // required
32
+ * ApplicationIdentifier: "STRING_VALUE", // required
33
+ * };
29
34
  * const command = new DisassociateApplicationFromEntitlementCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,10 @@ export interface DisassociateFleetCommandOutput extends DisassociateFleetResult,
26
26
  * import { AppStreamClient, DisassociateFleetCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, DisassociateFleetCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * FleetName: "STRING_VALUE", // required
31
+ * StackName: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DisassociateFleetCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,10 @@ export interface EnableUserCommandOutput extends EnableUserResult, __MetadataBea
26
26
  * import { AppStreamClient, EnableUserCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, EnableUserCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * UserName: "STRING_VALUE", // required
31
+ * AuthenticationType: "API" || "SAML" || "USERPOOL" || "AWS_AD", // required
32
+ * };
29
33
  * const command = new EnableUserCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,9 @@ export interface ExpireSessionCommandOutput extends ExpireSessionResult, __Metad
26
26
  * import { AppStreamClient, ExpireSessionCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, ExpireSessionCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * SessionId: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new ExpireSessionCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,10 @@ export interface ListAssociatedFleetsCommandOutput extends ListAssociatedFleetsR
26
26
  * import { AppStreamClient, ListAssociatedFleetsCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, ListAssociatedFleetsCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * StackName: "STRING_VALUE", // required
31
+ * NextToken: "STRING_VALUE",
32
+ * };
29
33
  * const command = new ListAssociatedFleetsCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,10 @@ export interface ListAssociatedStacksCommandOutput extends ListAssociatedStacksR
26
26
  * import { AppStreamClient, ListAssociatedStacksCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, ListAssociatedStacksCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * FleetName: "STRING_VALUE", // required
31
+ * NextToken: "STRING_VALUE",
32
+ * };
29
33
  * const command = new ListAssociatedStacksCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,12 @@ export interface ListEntitledApplicationsCommandOutput extends ListEntitledAppli
26
26
  * import { AppStreamClient, ListEntitledApplicationsCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, ListEntitledApplicationsCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * StackName: "STRING_VALUE", // required
31
+ * EntitlementName: "STRING_VALUE", // required
32
+ * NextToken: "STRING_VALUE",
33
+ * MaxResults: Number("int"),
34
+ * };
29
35
  * const command = new ListEntitledApplicationsCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -27,6 +27,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
27
27
  * import { AppStreamClient, ListTagsForResourceCommand } from "@aws-sdk/client-appstream"; // ES Modules import
28
28
  * // const { AppStreamClient, ListTagsForResourceCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
29
29
  * const client = new AppStreamClient(config);
30
+ * const input = {
31
+ * ResourceArn: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new ListTagsForResourceCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -26,6 +26,9 @@ export interface StartFleetCommandOutput extends StartFleetResult, __MetadataBea
26
26
  * import { AppStreamClient, StartFleetCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, StartFleetCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new StartFleetCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,10 @@ export interface StartImageBuilderCommandOutput extends StartImageBuilderResult,
26
26
  * import { AppStreamClient, StartImageBuilderCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, StartImageBuilderCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * Name: "STRING_VALUE", // required
31
+ * AppstreamAgentVersion: "STRING_VALUE",
32
+ * };
29
33
  * const command = new StartImageBuilderCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,9 @@ export interface StopFleetCommandOutput extends StopFleetResult, __MetadataBeare
26
26
  * import { AppStreamClient, StopFleetCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, StopFleetCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new StopFleetCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface StopImageBuilderCommandOutput extends StopImageBuilderResult, _
26
26
  * import { AppStreamClient, StopImageBuilderCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, StopImageBuilderCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new StopImageBuilderCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -31,6 +31,12 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
31
31
  * import { AppStreamClient, TagResourceCommand } from "@aws-sdk/client-appstream"; // ES Modules import
32
32
  * // const { AppStreamClient, TagResourceCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
33
33
  * const client = new AppStreamClient(config);
34
+ * const input = {
35
+ * ResourceArn: "STRING_VALUE", // required
36
+ * Tags: { // required
37
+ * "<keys>": "STRING_VALUE",
38
+ * },
39
+ * };
34
40
  * const command = new TagResourceCommand(input);
35
41
  * const response = await client.send(command);
36
42
  * ```
@@ -28,6 +28,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
28
28
  * import { AppStreamClient, UntagResourceCommand } from "@aws-sdk/client-appstream"; // ES Modules import
29
29
  * // const { AppStreamClient, UntagResourceCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
30
30
  * const client = new AppStreamClient(config);
31
+ * const input = {
32
+ * ResourceArn: "STRING_VALUE", // required
33
+ * TagKeys: [ // required
34
+ * "STRING_VALUE",
35
+ * ],
36
+ * };
31
37
  * const command = new UntagResourceCommand(input);
32
38
  * const response = await client.send(command);
33
39
  * ```
@@ -26,6 +26,22 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationResult,
26
26
  * import { AppStreamClient, UpdateApplicationCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, UpdateApplicationCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * Name: "STRING_VALUE", // required
31
+ * DisplayName: "STRING_VALUE",
32
+ * Description: "STRING_VALUE",
33
+ * IconS3Location: {
34
+ * S3Bucket: "STRING_VALUE", // required
35
+ * S3Key: "STRING_VALUE", // required
36
+ * },
37
+ * LaunchPath: "STRING_VALUE",
38
+ * WorkingDirectory: "STRING_VALUE",
39
+ * LaunchParameters: "STRING_VALUE",
40
+ * AppBlockArn: "STRING_VALUE",
41
+ * AttributesToDelete: [
42
+ * "LAUNCH_PARAMETERS" || "WORKING_DIRECTORY",
43
+ * ],
44
+ * };
29
45
  * const command = new UpdateApplicationCommand(input);
30
46
  * const response = await client.send(command);
31
47
  * ```
@@ -26,6 +26,20 @@ export interface UpdateDirectoryConfigCommandOutput extends UpdateDirectoryConfi
26
26
  * import { AppStreamClient, UpdateDirectoryConfigCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, UpdateDirectoryConfigCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * DirectoryName: "STRING_VALUE", // required
31
+ * OrganizationalUnitDistinguishedNames: [
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * ServiceAccountCredentials: {
35
+ * AccountName: "STRING_VALUE", // required
36
+ * AccountPassword: "STRING_VALUE", // required
37
+ * },
38
+ * CertificateBasedAuthProperties: {
39
+ * Status: "DISABLED" || "ENABLED" || "ENABLED_NO_DIRECTORY_LOGIN_FALLBACK",
40
+ * CertificateAuthorityArn: "STRING_VALUE",
41
+ * },
42
+ * };
29
43
  * const command = new UpdateDirectoryConfigCommand(input);
30
44
  * const response = await client.send(command);
31
45
  * ```
@@ -26,6 +26,18 @@ export interface UpdateEntitlementCommandOutput extends UpdateEntitlementResult,
26
26
  * import { AppStreamClient, UpdateEntitlementCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, UpdateEntitlementCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * Name: "STRING_VALUE", // required
31
+ * StackName: "STRING_VALUE", // required
32
+ * Description: "STRING_VALUE",
33
+ * AppVisibility: "ALL" || "ASSOCIATED",
34
+ * Attributes: [
35
+ * {
36
+ * Name: "STRING_VALUE", // required
37
+ * Value: "STRING_VALUE", // required
38
+ * },
39
+ * ],
40
+ * };
29
41
  * const command = new UpdateEntitlementCommand(input);
30
42
  * const response = await client.send(command);
31
43
  * ```
@@ -47,6 +47,48 @@ export interface UpdateFleetCommandOutput extends UpdateFleetResult, __MetadataB
47
47
  * import { AppStreamClient, UpdateFleetCommand } from "@aws-sdk/client-appstream"; // ES Modules import
48
48
  * // const { AppStreamClient, UpdateFleetCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
49
49
  * const client = new AppStreamClient(config);
50
+ * const input = {
51
+ * ImageName: "STRING_VALUE",
52
+ * ImageArn: "STRING_VALUE",
53
+ * Name: "STRING_VALUE",
54
+ * InstanceType: "STRING_VALUE",
55
+ * ComputeCapacity: {
56
+ * DesiredInstances: Number("int"), // required
57
+ * },
58
+ * VpcConfig: {
59
+ * SubnetIds: [
60
+ * "STRING_VALUE",
61
+ * ],
62
+ * SecurityGroupIds: [
63
+ * "STRING_VALUE",
64
+ * ],
65
+ * },
66
+ * MaxUserDurationInSeconds: Number("int"),
67
+ * DisconnectTimeoutInSeconds: Number("int"),
68
+ * DeleteVpcConfig: true || false,
69
+ * Description: "STRING_VALUE",
70
+ * DisplayName: "STRING_VALUE",
71
+ * EnableDefaultInternetAccess: true || false,
72
+ * DomainJoinInfo: {
73
+ * DirectoryName: "STRING_VALUE",
74
+ * OrganizationalUnitDistinguishedName: "STRING_VALUE",
75
+ * },
76
+ * IdleDisconnectTimeoutInSeconds: Number("int"),
77
+ * AttributesToDelete: [
78
+ * "VPC_CONFIGURATION" || "VPC_CONFIGURATION_SECURITY_GROUP_IDS" || "DOMAIN_JOIN_INFO" || "IAM_ROLE_ARN" || "USB_DEVICE_FILTER_STRINGS" || "SESSION_SCRIPT_S3_LOCATION",
79
+ * ],
80
+ * IamRoleArn: "STRING_VALUE",
81
+ * StreamView: "APP" || "DESKTOP",
82
+ * Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "AMAZON_LINUX2",
83
+ * MaxConcurrentSessions: Number("int"),
84
+ * UsbDeviceFilterStrings: [
85
+ * "STRING_VALUE",
86
+ * ],
87
+ * SessionScriptS3Location: {
88
+ * S3Bucket: "STRING_VALUE", // required
89
+ * S3Key: "STRING_VALUE", // required
90
+ * },
91
+ * };
50
92
  * const command = new UpdateFleetCommand(input);
51
93
  * const response = await client.send(command);
52
94
  * ```
@@ -26,6 +26,14 @@ export interface UpdateImagePermissionsCommandOutput extends UpdateImagePermissi
26
26
  * import { AppStreamClient, UpdateImagePermissionsCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, UpdateImagePermissionsCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * Name: "STRING_VALUE", // required
31
+ * SharedAccountId: "STRING_VALUE", // required
32
+ * ImagePermissions: {
33
+ * allowFleet: true || false,
34
+ * allowImageBuilder: true || false,
35
+ * },
36
+ * };
29
37
  * const command = new UpdateImagePermissionsCommand(input);
30
38
  * const response = await client.send(command);
31
39
  * ```
@@ -26,6 +26,48 @@ export interface UpdateStackCommandOutput extends UpdateStackResult, __MetadataB
26
26
  * import { AppStreamClient, UpdateStackCommand } from "@aws-sdk/client-appstream"; // ES Modules import
27
27
  * // const { AppStreamClient, UpdateStackCommand } = require("@aws-sdk/client-appstream"); // CommonJS import
28
28
  * const client = new AppStreamClient(config);
29
+ * const input = {
30
+ * DisplayName: "STRING_VALUE",
31
+ * Description: "STRING_VALUE",
32
+ * Name: "STRING_VALUE", // required
33
+ * StorageConnectors: [
34
+ * {
35
+ * ConnectorType: "HOMEFOLDERS" || "GOOGLE_DRIVE" || "ONE_DRIVE", // required
36
+ * ResourceIdentifier: "STRING_VALUE",
37
+ * Domains: [
38
+ * "STRING_VALUE",
39
+ * ],
40
+ * },
41
+ * ],
42
+ * DeleteStorageConnectors: true || false,
43
+ * RedirectURL: "STRING_VALUE",
44
+ * FeedbackURL: "STRING_VALUE",
45
+ * AttributesToDelete: [
46
+ * "STORAGE_CONNECTORS" || "STORAGE_CONNECTOR_HOMEFOLDERS" || "STORAGE_CONNECTOR_GOOGLE_DRIVE" || "STORAGE_CONNECTOR_ONE_DRIVE" || "REDIRECT_URL" || "FEEDBACK_URL" || "THEME_NAME" || "USER_SETTINGS" || "EMBED_HOST_DOMAINS" || "IAM_ROLE_ARN" || "ACCESS_ENDPOINTS" || "STREAMING_EXPERIENCE_SETTINGS",
47
+ * ],
48
+ * UserSettings: [
49
+ * {
50
+ * 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
51
+ * Permission: "ENABLED" || "DISABLED", // required
52
+ * },
53
+ * ],
54
+ * ApplicationSettings: {
55
+ * Enabled: true || false, // required
56
+ * SettingsGroup: "STRING_VALUE",
57
+ * },
58
+ * AccessEndpoints: [
59
+ * {
60
+ * EndpointType: "STREAMING", // required
61
+ * VpceId: "STRING_VALUE",
62
+ * },
63
+ * ],
64
+ * EmbedHostDomains: [
65
+ * "STRING_VALUE",
66
+ * ],
67
+ * StreamingExperienceSettings: {
68
+ * PreferredProtocol: "TCP" || "UDP",
69
+ * },
70
+ * };
29
71
  * const command = new UpdateStackCommand(input);
30
72
  * const response = await client.send(command);
31
73
  * ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-appstream",
3
3
  "description": "AWS SDK for JavaScript Appstream Client for Node.js, Browser and React Native",
4
- "version": "3.298.0",
4
+ "version": "3.300.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,23 +21,23 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.298.0",
25
- "@aws-sdk/config-resolver": "3.296.0",
26
- "@aws-sdk/credential-provider-node": "3.298.0",
24
+ "@aws-sdk/client-sts": "3.300.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.300.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",
30
30
  "@aws-sdk/middleware-content-length": "3.296.0",
31
- "@aws-sdk/middleware-endpoint": "3.296.0",
31
+ "@aws-sdk/middleware-endpoint": "3.299.0",
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
- "@aws-sdk/middleware-signing": "3.296.0",
37
+ "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
- "@aws-sdk/middleware-user-agent": "3.296.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
39
+ "@aws-sdk/middleware-user-agent": "3.299.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.296.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
- "@aws-sdk/util-user-agent-browser": "3.296.0",
54
- "@aws-sdk/util-user-agent-node": "3.296.0",
53
+ "@aws-sdk/util-user-agent-browser": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "@aws-sdk/util-waiter": "3.296.0",
57
57
  "tslib": "^2.5.0"