@aws-sdk/client-appstream 3.1040.0 → 3.1041.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.
@@ -24,6 +24,9 @@ export declare var ResourceNotFoundException$: StaticErrorSchema;
24
24
  export declare const errorTypeRegistries: TypeRegistry[];
25
25
  export declare var AccessEndpoint$: StaticStructureSchema;
26
26
  export declare var AdminAppLicenseUsageRecord$: StaticStructureSchema;
27
+ export declare var AgentAccessConfig$: StaticStructureSchema;
28
+ export declare var AgentAccessConfigForUpdate$: StaticStructureSchema;
29
+ export declare var AgentAccessSetting$: StaticStructureSchema;
27
30
  export declare var AppBlock$: StaticStructureSchema;
28
31
  export declare var AppBlockBuilder$: StaticStructureSchema;
29
32
  export declare var AppBlockBuilderAppBlockAssociation$: StaticStructureSchema;
@@ -14,6 +14,27 @@ export declare const Action: {
14
14
  readonly PRINTING_TO_LOCAL_DEVICE: "PRINTING_TO_LOCAL_DEVICE";
15
15
  };
16
16
  export type Action = (typeof Action)[keyof typeof Action];
17
+ export declare const ScreenImageFormat: {
18
+ readonly JPEG: "JPEG";
19
+ readonly PNG: "PNG";
20
+ };
21
+ export type ScreenImageFormat =
22
+ (typeof ScreenImageFormat)[keyof typeof ScreenImageFormat];
23
+ export declare const ScreenResolution: {
24
+ readonly W_1280xH_720: "W_1280xH_720";
25
+ };
26
+ export type ScreenResolution =
27
+ (typeof ScreenResolution)[keyof typeof ScreenResolution];
28
+ export declare const AgentAction: {
29
+ readonly COMPUTER_INPUT: "COMPUTER_INPUT";
30
+ readonly COMPUTER_VISION: "COMPUTER_VISION";
31
+ };
32
+ export type AgentAction = (typeof AgentAction)[keyof typeof AgentAction];
33
+ export declare const Permission: {
34
+ readonly DISABLED: "DISABLED";
35
+ readonly ENABLED: "ENABLED";
36
+ };
37
+ export type Permission = (typeof Permission)[keyof typeof Permission];
17
38
  export declare const AgentSoftwareVersion: {
18
39
  readonly ALWAYS_LATEST: "ALWAYS_LATEST";
19
40
  readonly CURRENT_LATEST: "CURRENT_LATEST";
@@ -248,11 +269,6 @@ export declare const PreferredProtocol: {
248
269
  };
249
270
  export type PreferredProtocol =
250
271
  (typeof PreferredProtocol)[keyof typeof PreferredProtocol];
251
- export declare const Permission: {
252
- readonly DISABLED: "DISABLED";
253
- readonly ENABLED: "ENABLED";
254
- };
255
- export type Permission = (typeof Permission)[keyof typeof Permission];
256
272
  export declare const StackErrorCode: {
257
273
  readonly INTERNAL_SERVICE_ERROR: "INTERNAL_SERVICE_ERROR";
258
274
  readonly STORAGE_CONNECTOR_ERROR: "STORAGE_CONNECTOR_ERROR";
@@ -332,6 +348,7 @@ export type FleetAttribute =
332
348
  (typeof FleetAttribute)[keyof typeof FleetAttribute];
333
349
  export declare const StackAttribute: {
334
350
  readonly ACCESS_ENDPOINTS: "ACCESS_ENDPOINTS";
351
+ readonly AGENT_ACCESS_CONFIG: "AGENT_ACCESS_CONFIG";
335
352
  readonly CONTENT_REDIRECTION: "CONTENT_REDIRECTION";
336
353
  readonly EMBED_HOST_DOMAINS: "EMBED_HOST_DOMAINS";
337
354
  readonly FEEDBACK_URL: "FEEDBACK_URL";
@@ -1,6 +1,7 @@
1
1
  import {
2
2
  AccessEndpointType,
3
3
  Action,
4
+ AgentAction,
4
5
  AgentSoftwareVersion,
5
6
  AppBlockBuilderAttribute,
6
7
  AppBlockBuilderPlatformType,
@@ -30,6 +31,8 @@ import {
30
31
  Permission,
31
32
  PlatformType,
32
33
  PreferredProtocol,
34
+ ScreenImageFormat,
35
+ ScreenResolution,
33
36
  SessionConnectionState,
34
37
  SessionState,
35
38
  SoftwareDeploymentStatus,
@@ -58,6 +61,24 @@ export interface AdminAppLicenseUsageRecord {
58
61
  LicenseType: string | undefined;
59
62
  UserId: string | undefined;
60
63
  }
64
+ export interface AgentAccessSetting {
65
+ AgentAction: AgentAction | undefined;
66
+ Permission: Permission | undefined;
67
+ }
68
+ export interface AgentAccessConfig {
69
+ Settings: AgentAccessSetting[] | undefined;
70
+ S3BucketArn?: string | undefined;
71
+ ScreenshotsUploadEnabled?: boolean | undefined;
72
+ ScreenResolution: ScreenResolution | undefined;
73
+ ScreenImageFormat: ScreenImageFormat | undefined;
74
+ }
75
+ export interface AgentAccessConfigForUpdate {
76
+ Settings?: AgentAccessSetting[] | undefined;
77
+ S3BucketArn?: string | undefined;
78
+ ScreenshotsUploadEnabled?: boolean | undefined;
79
+ ScreenResolution?: ScreenResolution | undefined;
80
+ ScreenImageFormat?: ScreenImageFormat | undefined;
81
+ }
61
82
  export interface ErrorDetails {
62
83
  ErrorCode?: string | undefined;
63
84
  ErrorMessage?: string | undefined;
@@ -578,6 +599,7 @@ export interface CreateStackRequest {
578
599
  EmbedHostDomains?: string[] | undefined;
579
600
  StreamingExperienceSettings?: StreamingExperienceSettings | undefined;
580
601
  ContentRedirection?: ContentRedirection | undefined;
602
+ AgentAccessConfig?: AgentAccessConfig | undefined;
581
603
  }
582
604
  export interface StackError {
583
605
  ErrorCode?: StackErrorCode | undefined;
@@ -599,6 +621,7 @@ export interface Stack {
599
621
  EmbedHostDomains?: string[] | undefined;
600
622
  StreamingExperienceSettings?: StreamingExperienceSettings | undefined;
601
623
  ContentRedirection?: ContentRedirection | undefined;
624
+ AgentAccessConfig?: AgentAccessConfig | undefined;
602
625
  }
603
626
  export interface CreateStackResult {
604
627
  Stack?: Stack | undefined;
@@ -1191,6 +1214,7 @@ export interface UpdateStackRequest {
1191
1214
  EmbedHostDomains?: string[] | undefined;
1192
1215
  StreamingExperienceSettings?: StreamingExperienceSettings | undefined;
1193
1216
  ContentRedirection?: ContentRedirection | undefined;
1217
+ AgentAccessConfig?: AgentAccessConfigForUpdate | undefined;
1194
1218
  }
1195
1219
  export interface UpdateStackResult {
1196
1220
  Stack?: Stack | undefined;
@@ -23,6 +23,9 @@ export declare var ResourceNotFoundException$: StaticErrorSchema;
23
23
  export declare const errorTypeRegistries: TypeRegistry[];
24
24
  export declare var AccessEndpoint$: StaticStructureSchema;
25
25
  export declare var AdminAppLicenseUsageRecord$: StaticStructureSchema;
26
+ export declare var AgentAccessConfig$: StaticStructureSchema;
27
+ export declare var AgentAccessConfigForUpdate$: StaticStructureSchema;
28
+ export declare var AgentAccessSetting$: StaticStructureSchema;
26
29
  export declare var AppBlock$: StaticStructureSchema;
27
30
  export declare var AppBlockBuilder$: StaticStructureSchema;
28
31
  export declare var AppBlockBuilderAppBlockAssociation$: StaticStructureSchema;
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.1040.0",
4
+ "version": "3.1041.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-appstream",
@@ -21,17 +21,17 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "5.2.0",
23
23
  "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "^3.974.7",
25
- "@aws-sdk/credential-provider-node": "^3.972.38",
24
+ "@aws-sdk/core": "^3.974.8",
25
+ "@aws-sdk/credential-provider-node": "^3.972.39",
26
26
  "@aws-sdk/middleware-host-header": "^3.972.10",
27
27
  "@aws-sdk/middleware-logger": "^3.972.10",
28
28
  "@aws-sdk/middleware-recursion-detection": "^3.972.11",
29
- "@aws-sdk/middleware-user-agent": "^3.972.37",
29
+ "@aws-sdk/middleware-user-agent": "^3.972.38",
30
30
  "@aws-sdk/region-config-resolver": "^3.972.13",
31
31
  "@aws-sdk/types": "^3.973.8",
32
32
  "@aws-sdk/util-endpoints": "^3.996.8",
33
33
  "@aws-sdk/util-user-agent-browser": "^3.972.10",
34
- "@aws-sdk/util-user-agent-node": "^3.973.23",
34
+ "@aws-sdk/util-user-agent-node": "^3.973.24",
35
35
  "@smithy/config-resolver": "^4.4.17",
36
36
  "@smithy/core": "^3.23.17",
37
37
  "@smithy/fetch-http-handler": "^5.3.17",