@aws-sdk/client-appstream 3.299.0 → 3.301.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 +8 -8
@@ -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 = { // AssociateApplicationFleetRequest
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 = { // AssociateApplicationToEntitlementRequest
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 = { // AssociateFleetRequest
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 = { // BatchAssociateUserStackRequest
30
+ * UserStackAssociations: [ // UserStackAssociationList // required
31
+ * { // UserStackAssociation
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 = { // BatchDisassociateUserStackRequest
30
+ * UserStackAssociations: [ // UserStackAssociationList // required
31
+ * { // UserStackAssociation
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 = { // CopyImageRequest
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 = { // CreateAppBlockRequest
36
+ * Name: "STRING_VALUE", // required
37
+ * Description: "STRING_VALUE",
38
+ * DisplayName: "STRING_VALUE",
39
+ * SourceS3Location: { // S3Location
40
+ * S3Bucket: "STRING_VALUE", // required
41
+ * S3Key: "STRING_VALUE", // required
42
+ * },
43
+ * SetupScriptDetails: { // ScriptDetails
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: { // 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 = { // CreateApplicationRequest
36
+ * Name: "STRING_VALUE", // required
37
+ * DisplayName: "STRING_VALUE",
38
+ * Description: "STRING_VALUE",
39
+ * IconS3Location: { // S3Location
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: [ // Platforms // required
47
+ * "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "AMAZON_LINUX2",
48
+ * ],
49
+ * InstanceFamilies: [ // StringList // required
50
+ * "STRING_VALUE",
51
+ * ],
52
+ * AppBlockArn: "STRING_VALUE", // required
53
+ * Tags: { // 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 = { // CreateDirectoryConfigRequest
30
+ * DirectoryName: "STRING_VALUE", // required
31
+ * OrganizationalUnitDistinguishedNames: [ // OrganizationalUnitDistinguishedNamesList // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * ServiceAccountCredentials: { // ServiceAccountCredentials
35
+ * AccountName: "STRING_VALUE", // required
36
+ * AccountPassword: "STRING_VALUE", // required
37
+ * },
38
+ * CertificateBasedAuthProperties: { // 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 = { // CreateEntitlementRequest
35
+ * Name: "STRING_VALUE", // required
36
+ * StackName: "STRING_VALUE", // required
37
+ * Description: "STRING_VALUE",
38
+ * AppVisibility: "ALL" || "ASSOCIATED", // required
39
+ * Attributes: [ // EntitlementAttributeList // required
40
+ * { // EntitlementAttribute
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 = { // CreateFleetRequest
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: { // ComputeCapacity
36
+ * DesiredInstances: Number("int"), // required
37
+ * },
38
+ * VpcConfig: { // VpcConfig
39
+ * SubnetIds: [ // SubnetIdList
40
+ * "STRING_VALUE",
41
+ * ],
42
+ * SecurityGroupIds: [ // SecurityGroupIdList
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: { // DomainJoinInfo
52
+ * DirectoryName: "STRING_VALUE",
53
+ * OrganizationalUnitDistinguishedName: "STRING_VALUE",
54
+ * },
55
+ * Tags: { // 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: [ // UsbDeviceFilterStrings
64
+ * "STRING_VALUE",
65
+ * ],
66
+ * SessionScriptS3Location: { // S3Location
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 = { // CreateImageBuilderRequest
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: { // VpcConfig
38
+ * SubnetIds: [ // SubnetIdList
39
+ * "STRING_VALUE",
40
+ * ],
41
+ * SecurityGroupIds: [ // SecurityGroupIdList
42
+ * "STRING_VALUE",
43
+ * ],
44
+ * },
45
+ * IamRoleArn: "STRING_VALUE",
46
+ * EnableDefaultInternetAccess: true || false,
47
+ * DomainJoinInfo: { // DomainJoinInfo
48
+ * DirectoryName: "STRING_VALUE",
49
+ * OrganizationalUnitDistinguishedName: "STRING_VALUE",
50
+ * },
51
+ * AppstreamAgentVersion: "STRING_VALUE",
52
+ * Tags: { // Tags
53
+ * "<keys>": "STRING_VALUE",
54
+ * },
55
+ * AccessEndpoints: [ // AccessEndpointList
56
+ * { // AccessEndpoint
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 = { // CreateImageBuilderStreamingURLRequest
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 = { // CreateStackRequest
30
+ * Name: "STRING_VALUE", // required
31
+ * Description: "STRING_VALUE",
32
+ * DisplayName: "STRING_VALUE",
33
+ * StorageConnectors: [ // StorageConnectorList
34
+ * { // StorageConnector
35
+ * ConnectorType: "HOMEFOLDERS" || "GOOGLE_DRIVE" || "ONE_DRIVE", // required
36
+ * ResourceIdentifier: "STRING_VALUE",
37
+ * Domains: [ // DomainList
38
+ * "STRING_VALUE",
39
+ * ],
40
+ * },
41
+ * ],
42
+ * RedirectURL: "STRING_VALUE",
43
+ * FeedbackURL: "STRING_VALUE",
44
+ * UserSettings: [ // UserSettingList
45
+ * { // UserSetting
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: { // ApplicationSettings
51
+ * Enabled: true || false, // required
52
+ * SettingsGroup: "STRING_VALUE",
53
+ * },
54
+ * Tags: { // Tags
55
+ * "<keys>": "STRING_VALUE",
56
+ * },
57
+ * AccessEndpoints: [ // AccessEndpointList
58
+ * { // AccessEndpoint
59
+ * EndpointType: "STREAMING", // required
60
+ * VpceId: "STRING_VALUE",
61
+ * },
62
+ * ],
63
+ * EmbedHostDomains: [ // EmbedHostDomains
64
+ * "STRING_VALUE",
65
+ * ],
66
+ * StreamingExperienceSettings: { // 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 = { // CreateStreamingURLRequest
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 = { // CreateUpdatedImageRequest
32
+ * existingImageName: "STRING_VALUE", // required
33
+ * newImageName: "STRING_VALUE", // required
34
+ * newImageDescription: "STRING_VALUE",
35
+ * newImageDisplayName: "STRING_VALUE",
36
+ * newImageTags: { // Tags
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 = { // CreateUserRequest
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 = { // DeleteAppBlockRequest
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 = { // DeleteApplicationRequest
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 = { // DeleteDirectoryConfigRequest
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 = { // DeleteEntitlementRequest
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 = { // DeleteFleetRequest
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 = { // DeleteImageBuilderRequest
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 = { // DeleteImageRequest
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 = { // DeleteImagePermissionsRequest
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 = { // DeleteStackRequest
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 = { // DeleteUserRequest
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 = { // DescribeAppBlocksRequest
30
+ * Arns: [ // ArnList
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 = { // DescribeApplicationFleetAssociationsRequest
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 = { // DescribeApplicationsRequest
30
+ * Arns: [ // ArnList
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 = { // DescribeDirectoryConfigsRequest
32
+ * DirectoryNames: [ // DirectoryNameList
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 = { // DescribeEntitlementsRequest
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 = { // DescribeFleetsRequest
30
+ * Names: [ // StringList
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 = { // DescribeImageBuildersRequest
30
+ * Names: [ // StringList
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
  * ```