@aws-sdk/client-appstream 3.300.0 → 3.303.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/models/models_0.js +186 -214
- package/dist-es/models/models_0.js +186 -214
- package/dist-types/commands/AssociateApplicationFleetCommand.d.ts +1 -1
- package/dist-types/commands/AssociateApplicationToEntitlementCommand.d.ts +1 -1
- package/dist-types/commands/AssociateFleetCommand.d.ts +1 -1
- package/dist-types/commands/BatchAssociateUserStackCommand.d.ts +3 -3
- package/dist-types/commands/BatchDisassociateUserStackCommand.d.ts +3 -3
- package/dist-types/commands/CopyImageCommand.d.ts +1 -1
- package/dist-types/commands/CreateAppBlockCommand.d.ts +4 -4
- package/dist-types/commands/CreateApplicationCommand.d.ts +5 -5
- package/dist-types/commands/CreateDirectoryConfigCommand.d.ts +4 -4
- package/dist-types/commands/CreateEntitlementCommand.d.ts +3 -3
- package/dist-types/commands/CreateFleetCommand.d.ts +9 -9
- package/dist-types/commands/CreateImageBuilderCommand.d.ts +8 -8
- package/dist-types/commands/CreateImageBuilderStreamingURLCommand.d.ts +1 -1
- package/dist-types/commands/CreateStackCommand.d.ts +12 -12
- package/dist-types/commands/CreateStreamingURLCommand.d.ts +1 -1
- package/dist-types/commands/CreateUpdatedImageCommand.d.ts +2 -2
- package/dist-types/commands/CreateUserCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAppBlockCommand.d.ts +1 -1
- package/dist-types/commands/DeleteApplicationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDirectoryConfigCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEntitlementCommand.d.ts +1 -1
- package/dist-types/commands/DeleteFleetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteImageBuilderCommand.d.ts +1 -1
- package/dist-types/commands/DeleteImageCommand.d.ts +1 -1
- package/dist-types/commands/DeleteImagePermissionsCommand.d.ts +1 -1
- package/dist-types/commands/DeleteStackCommand.d.ts +1 -1
- package/dist-types/commands/DeleteUserCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAppBlocksCommand.d.ts +2 -2
- package/dist-types/commands/DescribeApplicationFleetAssociationsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeApplicationsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeDirectoryConfigsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeEntitlementsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFleetsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeImageBuildersCommand.d.ts +2 -2
- package/dist-types/commands/DescribeImagePermissionsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeImagesCommand.d.ts +3 -3
- package/dist-types/commands/DescribeSessionsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeStacksCommand.d.ts +2 -2
- package/dist-types/commands/DescribeUsageReportSubscriptionsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeUserStackAssociationsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeUsersCommand.d.ts +1 -1
- package/dist-types/commands/DisableUserCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateApplicationFleetCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateApplicationFromEntitlementCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateFleetCommand.d.ts +1 -1
- package/dist-types/commands/EnableUserCommand.d.ts +1 -1
- package/dist-types/commands/ExpireSessionCommand.d.ts +1 -1
- package/dist-types/commands/ListAssociatedFleetsCommand.d.ts +1 -1
- package/dist-types/commands/ListAssociatedStacksCommand.d.ts +1 -1
- package/dist-types/commands/ListEntitledApplicationsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/StartFleetCommand.d.ts +1 -1
- package/dist-types/commands/StartImageBuilderCommand.d.ts +1 -1
- package/dist-types/commands/StopFleetCommand.d.ts +1 -1
- package/dist-types/commands/StopImageBuilderCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateApplicationCommand.d.ts +3 -3
- package/dist-types/commands/UpdateDirectoryConfigCommand.d.ts +4 -4
- package/dist-types/commands/UpdateEntitlementCommand.d.ts +3 -3
- package/dist-types/commands/UpdateFleetCommand.d.ts +9 -9
- package/dist-types/commands/UpdateImagePermissionsCommand.d.ts +2 -2
- package/dist-types/commands/UpdateStackCommand.d.ts +12 -12
- package/dist-types/models/models_0.d.ts +327 -187
- package/dist-types/ts3.4/models/models_0.d.ts +232 -186
- package/package.json +35 -35
|
@@ -26,20 +26,20 @@ 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 = {
|
|
29
|
+
* const input = { // CreateFleetRequest
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* ImageName: "STRING_VALUE",
|
|
32
32
|
* ImageArn: "STRING_VALUE",
|
|
33
33
|
* InstanceType: "STRING_VALUE", // required
|
|
34
34
|
* FleetType: "ALWAYS_ON" || "ON_DEMAND" || "ELASTIC",
|
|
35
|
-
* ComputeCapacity: {
|
|
35
|
+
* ComputeCapacity: { // ComputeCapacity
|
|
36
36
|
* DesiredInstances: Number("int"), // required
|
|
37
37
|
* },
|
|
38
|
-
* VpcConfig: {
|
|
39
|
-
* SubnetIds: [
|
|
38
|
+
* VpcConfig: { // VpcConfig
|
|
39
|
+
* SubnetIds: [ // SubnetIdList
|
|
40
40
|
* "STRING_VALUE",
|
|
41
41
|
* ],
|
|
42
|
-
* SecurityGroupIds: [
|
|
42
|
+
* SecurityGroupIds: [ // SecurityGroupIdList
|
|
43
43
|
* "STRING_VALUE",
|
|
44
44
|
* ],
|
|
45
45
|
* },
|
|
@@ -48,11 +48,11 @@ export interface CreateFleetCommandOutput extends CreateFleetResult, __MetadataB
|
|
|
48
48
|
* Description: "STRING_VALUE",
|
|
49
49
|
* DisplayName: "STRING_VALUE",
|
|
50
50
|
* EnableDefaultInternetAccess: true || false,
|
|
51
|
-
* DomainJoinInfo: {
|
|
51
|
+
* DomainJoinInfo: { // DomainJoinInfo
|
|
52
52
|
* DirectoryName: "STRING_VALUE",
|
|
53
53
|
* OrganizationalUnitDistinguishedName: "STRING_VALUE",
|
|
54
54
|
* },
|
|
55
|
-
* Tags: {
|
|
55
|
+
* Tags: { // Tags
|
|
56
56
|
* "<keys>": "STRING_VALUE",
|
|
57
57
|
* },
|
|
58
58
|
* IdleDisconnectTimeoutInSeconds: Number("int"),
|
|
@@ -60,10 +60,10 @@ export interface CreateFleetCommandOutput extends CreateFleetResult, __MetadataB
|
|
|
60
60
|
* StreamView: "APP" || "DESKTOP",
|
|
61
61
|
* Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "AMAZON_LINUX2",
|
|
62
62
|
* MaxConcurrentSessions: Number("int"),
|
|
63
|
-
* UsbDeviceFilterStrings: [
|
|
63
|
+
* UsbDeviceFilterStrings: [ // UsbDeviceFilterStrings
|
|
64
64
|
* "STRING_VALUE",
|
|
65
65
|
* ],
|
|
66
|
-
* SessionScriptS3Location: {
|
|
66
|
+
* SessionScriptS3Location: { // S3Location
|
|
67
67
|
* S3Bucket: "STRING_VALUE", // required
|
|
68
68
|
* S3Key: "STRING_VALUE", // required
|
|
69
69
|
* },
|
|
@@ -27,33 +27,33 @@ 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 = {
|
|
30
|
+
* const input = { // CreateImageBuilderRequest
|
|
31
31
|
* Name: "STRING_VALUE", // required
|
|
32
32
|
* ImageName: "STRING_VALUE",
|
|
33
33
|
* ImageArn: "STRING_VALUE",
|
|
34
34
|
* InstanceType: "STRING_VALUE", // required
|
|
35
35
|
* Description: "STRING_VALUE",
|
|
36
36
|
* DisplayName: "STRING_VALUE",
|
|
37
|
-
* VpcConfig: {
|
|
38
|
-
* SubnetIds: [
|
|
37
|
+
* VpcConfig: { // VpcConfig
|
|
38
|
+
* SubnetIds: [ // SubnetIdList
|
|
39
39
|
* "STRING_VALUE",
|
|
40
40
|
* ],
|
|
41
|
-
* SecurityGroupIds: [
|
|
41
|
+
* SecurityGroupIds: [ // SecurityGroupIdList
|
|
42
42
|
* "STRING_VALUE",
|
|
43
43
|
* ],
|
|
44
44
|
* },
|
|
45
45
|
* IamRoleArn: "STRING_VALUE",
|
|
46
46
|
* EnableDefaultInternetAccess: true || false,
|
|
47
|
-
* DomainJoinInfo: {
|
|
47
|
+
* DomainJoinInfo: { // DomainJoinInfo
|
|
48
48
|
* DirectoryName: "STRING_VALUE",
|
|
49
49
|
* OrganizationalUnitDistinguishedName: "STRING_VALUE",
|
|
50
50
|
* },
|
|
51
51
|
* AppstreamAgentVersion: "STRING_VALUE",
|
|
52
|
-
* Tags: {
|
|
52
|
+
* Tags: { // Tags
|
|
53
53
|
* "<keys>": "STRING_VALUE",
|
|
54
54
|
* },
|
|
55
|
-
* AccessEndpoints: [
|
|
56
|
-
* {
|
|
55
|
+
* AccessEndpoints: [ // AccessEndpointList
|
|
56
|
+
* { // AccessEndpoint
|
|
57
57
|
* EndpointType: "STREAMING", // required
|
|
58
58
|
* VpceId: "STRING_VALUE",
|
|
59
59
|
* },
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // CreateImageBuilderStreamingURLRequest
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* Validity: Number("long"),
|
|
32
32
|
* };
|
|
@@ -26,44 +26,44 @@ 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 = {
|
|
29
|
+
* const input = { // CreateStackRequest
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* Description: "STRING_VALUE",
|
|
32
32
|
* DisplayName: "STRING_VALUE",
|
|
33
|
-
* StorageConnectors: [
|
|
34
|
-
* {
|
|
33
|
+
* StorageConnectors: [ // StorageConnectorList
|
|
34
|
+
* { // StorageConnector
|
|
35
35
|
* ConnectorType: "HOMEFOLDERS" || "GOOGLE_DRIVE" || "ONE_DRIVE", // required
|
|
36
36
|
* ResourceIdentifier: "STRING_VALUE",
|
|
37
|
-
* Domains: [
|
|
37
|
+
* Domains: [ // DomainList
|
|
38
38
|
* "STRING_VALUE",
|
|
39
39
|
* ],
|
|
40
40
|
* },
|
|
41
41
|
* ],
|
|
42
42
|
* RedirectURL: "STRING_VALUE",
|
|
43
43
|
* FeedbackURL: "STRING_VALUE",
|
|
44
|
-
* UserSettings: [
|
|
45
|
-
* {
|
|
44
|
+
* UserSettings: [ // UserSettingList
|
|
45
|
+
* { // UserSetting
|
|
46
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
47
|
* Permission: "ENABLED" || "DISABLED", // required
|
|
48
48
|
* },
|
|
49
49
|
* ],
|
|
50
|
-
* ApplicationSettings: {
|
|
50
|
+
* ApplicationSettings: { // ApplicationSettings
|
|
51
51
|
* Enabled: true || false, // required
|
|
52
52
|
* SettingsGroup: "STRING_VALUE",
|
|
53
53
|
* },
|
|
54
|
-
* Tags: {
|
|
54
|
+
* Tags: { // Tags
|
|
55
55
|
* "<keys>": "STRING_VALUE",
|
|
56
56
|
* },
|
|
57
|
-
* AccessEndpoints: [
|
|
58
|
-
* {
|
|
57
|
+
* AccessEndpoints: [ // AccessEndpointList
|
|
58
|
+
* { // AccessEndpoint
|
|
59
59
|
* EndpointType: "STREAMING", // required
|
|
60
60
|
* VpceId: "STRING_VALUE",
|
|
61
61
|
* },
|
|
62
62
|
* ],
|
|
63
|
-
* EmbedHostDomains: [
|
|
63
|
+
* EmbedHostDomains: [ // EmbedHostDomains
|
|
64
64
|
* "STRING_VALUE",
|
|
65
65
|
* ],
|
|
66
|
-
* StreamingExperienceSettings: {
|
|
66
|
+
* StreamingExperienceSettings: { // StreamingExperienceSettings
|
|
67
67
|
* PreferredProtocol: "TCP" || "UDP",
|
|
68
68
|
* },
|
|
69
69
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // CreateStreamingURLRequest
|
|
30
30
|
* StackName: "STRING_VALUE", // required
|
|
31
31
|
* FleetName: "STRING_VALUE", // required
|
|
32
32
|
* UserId: "STRING_VALUE", // required
|
|
@@ -28,12 +28,12 @@ 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 = {
|
|
31
|
+
* const input = { // CreateUpdatedImageRequest
|
|
32
32
|
* existingImageName: "STRING_VALUE", // required
|
|
33
33
|
* newImageName: "STRING_VALUE", // required
|
|
34
34
|
* newImageDescription: "STRING_VALUE",
|
|
35
35
|
* newImageDisplayName: "STRING_VALUE",
|
|
36
|
-
* newImageTags: {
|
|
36
|
+
* newImageTags: { // Tags
|
|
37
37
|
* "<keys>": "STRING_VALUE",
|
|
38
38
|
* },
|
|
39
39
|
* dryRun: true || false,
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // CreateUserRequest
|
|
30
30
|
* UserName: "STRING_VALUE", // required
|
|
31
31
|
* MessageAction: "SUPPRESS" || "RESEND",
|
|
32
32
|
* FirstName: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteAppBlockRequest
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteAppBlockCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteApplicationRequest
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteApplicationCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteDirectoryConfigRequest
|
|
30
30
|
* DirectoryName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteDirectoryConfigCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteEntitlementRequest
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* StackName: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteFleetRequest
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteFleetCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteImageBuilderRequest
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteImageBuilderCommand(input);
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // DeleteImageRequest
|
|
31
31
|
* Name: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteImageCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteImagePermissionsRequest
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* SharedAccountId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteStackRequest
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteStackCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteUserRequest
|
|
30
30
|
* UserName: "STRING_VALUE", // required
|
|
31
31
|
* AuthenticationType: "API" || "SAML" || "USERPOOL" || "AWS_AD", // required
|
|
32
32
|
* };
|
|
@@ -26,8 +26,8 @@ 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: [
|
|
29
|
+
* const input = { // DescribeAppBlocksRequest
|
|
30
|
+
* Arns: [ // ArnList
|
|
31
31
|
* "STRING_VALUE",
|
|
32
32
|
* ],
|
|
33
33
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DescribeApplicationFleetAssociationsRequest
|
|
30
30
|
* FleetName: "STRING_VALUE",
|
|
31
31
|
* ApplicationArn: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
@@ -26,8 +26,8 @@ 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: [
|
|
29
|
+
* const input = { // DescribeApplicationsRequest
|
|
30
|
+
* Arns: [ // ArnList
|
|
31
31
|
* "STRING_VALUE",
|
|
32
32
|
* ],
|
|
33
33
|
* NextToken: "STRING_VALUE",
|
|
@@ -28,8 +28,8 @@ 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: [
|
|
31
|
+
* const input = { // DescribeDirectoryConfigsRequest
|
|
32
|
+
* DirectoryNames: [ // DirectoryNameList
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DescribeEntitlementsRequest
|
|
30
30
|
* Name: "STRING_VALUE",
|
|
31
31
|
* StackName: "STRING_VALUE", // required
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,8 +26,8 @@ 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: [
|
|
29
|
+
* const input = { // DescribeFleetsRequest
|
|
30
|
+
* Names: [ // StringList
|
|
31
31
|
* "STRING_VALUE",
|
|
32
32
|
* ],
|
|
33
33
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,8 +26,8 @@ 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: [
|
|
29
|
+
* const input = { // DescribeImageBuildersRequest
|
|
30
|
+
* Names: [ // StringList
|
|
31
31
|
* "STRING_VALUE",
|
|
32
32
|
* ],
|
|
33
33
|
* MaxResults: Number("int"),
|
|
@@ -26,10 +26,10 @@ 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 = {
|
|
29
|
+
* const input = { // DescribeImagePermissionsRequest
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
|
-
* SharedAwsAccountIds: [
|
|
32
|
+
* SharedAwsAccountIds: [ // AwsAccountIdList
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,11 +26,11 @@ 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: [
|
|
29
|
+
* const input = { // DescribeImagesRequest
|
|
30
|
+
* Names: [ // StringList
|
|
31
31
|
* "STRING_VALUE",
|
|
32
32
|
* ],
|
|
33
|
-
* Arns: [
|
|
33
|
+
* Arns: [ // ArnList
|
|
34
34
|
* "STRING_VALUE",
|
|
35
35
|
* ],
|
|
36
36
|
* Type: "PUBLIC" || "PRIVATE" || "SHARED",
|
|
@@ -28,7 +28,7 @@ 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 = {
|
|
31
|
+
* const input = { // DescribeSessionsRequest
|
|
32
32
|
* StackName: "STRING_VALUE", // required
|
|
33
33
|
* FleetName: "STRING_VALUE", // required
|
|
34
34
|
* UserId: "STRING_VALUE",
|
|
@@ -26,8 +26,8 @@ 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: [
|
|
29
|
+
* const input = { // DescribeStacksRequest
|
|
30
|
+
* Names: [ // StringList
|
|
31
31
|
* "STRING_VALUE",
|
|
32
32
|
* ],
|
|
33
33
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DescribeUsageReportSubscriptionsRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -34,7 +34,7 @@ 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 = {
|
|
37
|
+
* const input = { // DescribeUserStackAssociationsRequest
|
|
38
38
|
* StackName: "STRING_VALUE",
|
|
39
39
|
* UserName: "STRING_VALUE",
|
|
40
40
|
* AuthenticationType: "API" || "SAML" || "USERPOOL" || "AWS_AD",
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DescribeUsersRequest
|
|
30
30
|
* AuthenticationType: "API" || "SAML" || "USERPOOL" || "AWS_AD", // required
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DisableUserRequest
|
|
30
30
|
* UserName: "STRING_VALUE", // required
|
|
31
31
|
* AuthenticationType: "API" || "SAML" || "USERPOOL" || "AWS_AD", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DisassociateApplicationFleetRequest
|
|
30
30
|
* FleetName: "STRING_VALUE", // required
|
|
31
31
|
* ApplicationArn: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DisassociateApplicationFromEntitlementRequest
|
|
30
30
|
* StackName: "STRING_VALUE", // required
|
|
31
31
|
* EntitlementName: "STRING_VALUE", // required
|
|
32
32
|
* ApplicationIdentifier: "STRING_VALUE", // required
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DisassociateFleetRequest
|
|
30
30
|
* FleetName: "STRING_VALUE", // required
|
|
31
31
|
* StackName: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // EnableUserRequest
|
|
30
30
|
* UserName: "STRING_VALUE", // required
|
|
31
31
|
* AuthenticationType: "API" || "SAML" || "USERPOOL" || "AWS_AD", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ExpireSessionRequest
|
|
30
30
|
* SessionId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ExpireSessionCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListAssociatedFleetsRequest
|
|
30
30
|
* StackName: "STRING_VALUE", // required
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListAssociatedStacksRequest
|
|
30
30
|
* FleetName: "STRING_VALUE", // required
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListEntitledApplicationsRequest
|
|
30
30
|
* StackName: "STRING_VALUE", // required
|
|
31
31
|
* EntitlementName: "STRING_VALUE", // required
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // ListTagsForResourceRequest
|
|
31
31
|
* ResourceArn: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // StartFleetRequest
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StartFleetCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // StartImageBuilderRequest
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* AppstreamAgentVersion: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // StopFleetRequest
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StopFleetCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // StopImageBuilderRequest
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StopImageBuilderCommand(input);
|