@aws-sdk/client-appstream 3.427.0 → 3.429.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.
@@ -20,7 +20,7 @@ export interface AccessEndpoint {
20
20
  * @public
21
21
  * <p>The type of interface endpoint.</p>
22
22
  */
23
- EndpointType: AccessEndpointType | string | undefined;
23
+ EndpointType: AccessEndpointType | undefined;
24
24
  /**
25
25
  * @public
26
26
  * <p>The identifier (ID) of the VPC in which the interface endpoint is used.</p>
@@ -206,7 +206,7 @@ export interface AppBlock {
206
206
  * @public
207
207
  * <p>The packaging type of the app block.</p>
208
208
  */
209
- PackagingType?: PackagingType | string;
209
+ PackagingType?: PackagingType;
210
210
  /**
211
211
  * @public
212
212
  * <p>The state of the app block.</p>
@@ -215,7 +215,7 @@ export interface AppBlock {
215
215
  * created by an app block builder for an app block, it becomes <code>ACTIVE</code>. </p>
216
216
  * <p>Custom app blocks are always in the <code>ACTIVE</code> state and no action is required to use them.</p>
217
217
  */
218
- State?: AppBlockState | string;
218
+ State?: AppBlockState;
219
219
  /**
220
220
  * @public
221
221
  * <p>The errors of the app block.</p>
@@ -271,7 +271,7 @@ export interface ResourceError {
271
271
  * @public
272
272
  * <p>The error code.</p>
273
273
  */
274
- ErrorCode?: FleetErrorCode | string;
274
+ ErrorCode?: FleetErrorCode;
275
275
  /**
276
276
  * @public
277
277
  * <p>The error message.</p>
@@ -328,7 +328,7 @@ export interface AppBlockBuilderStateChangeReason {
328
328
  * @public
329
329
  * <p>The state change reason code.</p>
330
330
  */
331
- Code?: AppBlockBuilderStateChangeReasonCode | string;
331
+ Code?: AppBlockBuilderStateChangeReasonCode;
332
332
  /**
333
333
  * @public
334
334
  * <p>The state change reason message.</p>
@@ -382,7 +382,7 @@ export interface AppBlockBuilder {
382
382
  * <p>
383
383
  * <code>WINDOWS_SERVER_2019</code> is the only valid value.</p>
384
384
  */
385
- Platform: AppBlockBuilderPlatformType | string | undefined;
385
+ Platform: AppBlockBuilderPlatformType | undefined;
386
386
  /**
387
387
  * @public
388
388
  * <p>The instance type of the app block builder.</p>
@@ -407,7 +407,7 @@ export interface AppBlockBuilder {
407
407
  * @public
408
408
  * <p>The state of the app block builder.</p>
409
409
  */
410
- State: AppBlockBuilderState | string | undefined;
410
+ State: AppBlockBuilderState | undefined;
411
411
  /**
412
412
  * @public
413
413
  * <p>The creation time of the app block builder.</p>
@@ -541,7 +541,7 @@ export interface Application {
541
541
  * @public
542
542
  * <p>The platforms on which the application can run.</p>
543
543
  */
544
- Platforms?: (PlatformType | string)[];
544
+ Platforms?: PlatformType[];
545
545
  /**
546
546
  * @public
547
547
  * <p>The instance families for the application.</p>
@@ -900,7 +900,7 @@ export interface UserStackAssociation {
900
900
  * @public
901
901
  * <p>The authentication type for the user.</p>
902
902
  */
903
- AuthenticationType: AuthenticationType | string | undefined;
903
+ AuthenticationType: AuthenticationType | undefined;
904
904
  /**
905
905
  * @public
906
906
  * <p>Specifies whether a welcome email is sent to a user after the user is created in the user pool.</p>
@@ -945,7 +945,7 @@ export interface UserStackAssociationError {
945
945
  * @public
946
946
  * <p>The error code for the error that is returned when a user can’t be associated with or disassociated from a stack.</p>
947
947
  */
948
- ErrorCode?: UserStackAssociationErrorCode | string;
948
+ ErrorCode?: UserStackAssociationErrorCode;
949
949
  /**
950
950
  * @public
951
951
  * <p>The error message for the error that is returned when a user can’t be associated with or disassociated from a stack.</p>
@@ -1010,7 +1010,7 @@ export interface CertificateBasedAuthProperties {
1010
1010
  * @public
1011
1011
  * <p>The status of the certificate-based authentication properties.</p>
1012
1012
  */
1013
- Status?: CertificateBasedAuthStatus | string;
1013
+ Status?: CertificateBasedAuthStatus;
1014
1014
  /**
1015
1015
  * @public
1016
1016
  * <p>The ARN of the AWS Certificate Manager Private CA resource.</p>
@@ -1169,7 +1169,7 @@ export interface CreateAppBlockRequest {
1169
1169
  * @public
1170
1170
  * <p>The packaging type of the app block.</p>
1171
1171
  */
1172
- PackagingType?: PackagingType | string;
1172
+ PackagingType?: PackagingType;
1173
1173
  }
1174
1174
  /**
1175
1175
  * @public
@@ -1217,7 +1217,7 @@ export interface CreateAppBlockBuilderRequest {
1217
1217
  * <p>
1218
1218
  * <code>WINDOWS_SERVER_2019</code> is the only valid value.</p>
1219
1219
  */
1220
- Platform: AppBlockBuilderPlatformType | string | undefined;
1220
+ Platform: AppBlockBuilderPlatformType | undefined;
1221
1221
  /**
1222
1222
  * @public
1223
1223
  * <p>The instance type to use when launching the app block builder. The following instance
@@ -1387,7 +1387,7 @@ export interface CreateApplicationRequest {
1387
1387
  * @public
1388
1388
  * <p>The platforms the application supports. WINDOWS_SERVER_2019 and AMAZON_LINUX2 are supported for Elastic fleets.</p>
1389
1389
  */
1390
- Platforms: (PlatformType | string)[] | undefined;
1390
+ Platforms: PlatformType[] | undefined;
1391
1391
  /**
1392
1392
  * @public
1393
1393
  * <p>The instance families the application supports. Valid values are GENERAL_PURPOSE and GRAPHICS_G4.</p>
@@ -1579,7 +1579,7 @@ export interface CreateEntitlementRequest {
1579
1579
  * @public
1580
1580
  * <p>Specifies whether all or selected apps are entitled.</p>
1581
1581
  */
1582
- AppVisibility: AppVisibility | string | undefined;
1582
+ AppVisibility: AppVisibility | undefined;
1583
1583
  /**
1584
1584
  * @public
1585
1585
  * <p>The attributes of the entitlement.</p>
@@ -1615,7 +1615,7 @@ export interface Entitlement {
1615
1615
  * @public
1616
1616
  * <p>Specifies whether all or selected apps are entitled.</p>
1617
1617
  */
1618
- AppVisibility: AppVisibility | string | undefined;
1618
+ AppVisibility: AppVisibility | undefined;
1619
1619
  /**
1620
1620
  * @public
1621
1621
  * <p>The attributes of the entitlement.</p>
@@ -1866,7 +1866,7 @@ export interface CreateFleetRequest {
1866
1866
  * </dd>
1867
1867
  * </dl>
1868
1868
  */
1869
- FleetType?: FleetType | string;
1869
+ FleetType?: FleetType;
1870
1870
  /**
1871
1871
  * @public
1872
1872
  * <p>The desired capacity for the fleet. This is not allowed for Elastic fleets. For Elastic fleets, specify MaxConcurrentSessions instead.</p>
@@ -1947,13 +1947,13 @@ export interface CreateFleetRequest {
1947
1947
  * <p>The AppStream 2.0 view that is displayed to your users when they stream from the fleet. When <code>APP</code> is specified, only the windows of applications opened by users display. When <code>DESKTOP</code> is specified, the standard desktop that is provided by the operating system displays.</p>
1948
1948
  * <p>The default value is <code>APP</code>.</p>
1949
1949
  */
1950
- StreamView?: StreamView | string;
1950
+ StreamView?: StreamView;
1951
1951
  /**
1952
1952
  * @public
1953
1953
  * <p>The fleet platform. WINDOWS_SERVER_2019 and AMAZON_LINUX2 are supported for Elastic
1954
1954
  * fleets. </p>
1955
1955
  */
1956
- Platform?: PlatformType | string;
1956
+ Platform?: PlatformType;
1957
1957
  /**
1958
1958
  * @public
1959
1959
  * <p>The maximum concurrent sessions of the Elastic fleet. This is required for Elastic
@@ -1980,7 +1980,7 @@ export interface FleetError {
1980
1980
  * @public
1981
1981
  * <p>The error code.</p>
1982
1982
  */
1983
- ErrorCode?: FleetErrorCode | string;
1983
+ ErrorCode?: FleetErrorCode;
1984
1984
  /**
1985
1985
  * @public
1986
1986
  * <p>The error message.</p>
@@ -2159,7 +2159,7 @@ export interface Fleet {
2159
2159
  * </dd>
2160
2160
  * </dl>
2161
2161
  */
2162
- FleetType?: FleetType | string;
2162
+ FleetType?: FleetType;
2163
2163
  /**
2164
2164
  * @public
2165
2165
  * <p>The capacity status for the fleet.</p>
@@ -2181,7 +2181,7 @@ export interface Fleet {
2181
2181
  * @public
2182
2182
  * <p>The current state for the fleet.</p>
2183
2183
  */
2184
- State: FleetState | string | undefined;
2184
+ State: FleetState | undefined;
2185
2185
  /**
2186
2186
  * @public
2187
2187
  * <p>The VPC configuration for the fleet.</p>
@@ -2236,12 +2236,12 @@ export interface Fleet {
2236
2236
  * <p>The AppStream 2.0 view that is displayed to your users when they stream from the fleet. When <code>APP</code> is specified, only the windows of applications opened by users display. When <code>DESKTOP</code> is specified, the standard desktop that is provided by the operating system displays.</p>
2237
2237
  * <p>The default value is <code>APP</code>.</p>
2238
2238
  */
2239
- StreamView?: StreamView | string;
2239
+ StreamView?: StreamView;
2240
2240
  /**
2241
2241
  * @public
2242
2242
  * <p>The platform of the fleet.</p>
2243
2243
  */
2244
- Platform?: PlatformType | string;
2244
+ Platform?: PlatformType;
2245
2245
  /**
2246
2246
  * @public
2247
2247
  * <p>The maximum number of concurrent sessions for the fleet.</p>
@@ -2502,7 +2502,7 @@ export interface ImageBuilderStateChangeReason {
2502
2502
  * @public
2503
2503
  * <p>The state change reason code.</p>
2504
2504
  */
2505
- Code?: ImageBuilderStateChangeReasonCode | string;
2505
+ Code?: ImageBuilderStateChangeReasonCode;
2506
2506
  /**
2507
2507
  * @public
2508
2508
  * <p>The state change reason message.</p>
@@ -2654,7 +2654,7 @@ export interface ImageBuilder {
2654
2654
  * @public
2655
2655
  * <p>The operating system platform of the image builder.</p>
2656
2656
  */
2657
- Platform?: PlatformType | string;
2657
+ Platform?: PlatformType;
2658
2658
  /**
2659
2659
  * @public
2660
2660
  * <p>The ARN of the IAM role that is applied to the image builder. To assume a role, the image builder calls the AWS Security Token Service (STS) <code>AssumeRole</code> API operation and passes the ARN of the role to use. The operation creates a new session with temporary credentials. AppStream 2.0 retrieves the temporary credentials and creates the <b>appstream_machine_role</b> credential profile on the instance.</p>
@@ -2665,7 +2665,7 @@ export interface ImageBuilder {
2665
2665
  * @public
2666
2666
  * <p>The state of the image builder.</p>
2667
2667
  */
2668
- State?: ImageBuilderState | string;
2668
+ State?: ImageBuilderState;
2669
2669
  /**
2670
2670
  * @public
2671
2671
  * <p>The reason why the last state change occurred.</p>
@@ -2770,7 +2770,7 @@ export interface StorageConnector {
2770
2770
  * @public
2771
2771
  * <p>The type of storage connector.</p>
2772
2772
  */
2773
- ConnectorType: StorageConnectorType | string | undefined;
2773
+ ConnectorType: StorageConnectorType | undefined;
2774
2774
  /**
2775
2775
  * @public
2776
2776
  * <p>The ARN of the storage connector.</p>
@@ -2803,7 +2803,7 @@ export interface StreamingExperienceSettings {
2803
2803
  * @public
2804
2804
  * <p>The preferred protocol that you want to use while streaming your application.</p>
2805
2805
  */
2806
- PreferredProtocol?: PreferredProtocol | string;
2806
+ PreferredProtocol?: PreferredProtocol;
2807
2807
  }
2808
2808
  /**
2809
2809
  * @public
@@ -2826,12 +2826,12 @@ export interface UserSetting {
2826
2826
  * @public
2827
2827
  * <p>The action that is enabled or disabled.</p>
2828
2828
  */
2829
- Action: Action | string | undefined;
2829
+ Action: Action | undefined;
2830
2830
  /**
2831
2831
  * @public
2832
2832
  * <p>Indicates whether the action is enabled or disabled.</p>
2833
2833
  */
2834
- Permission: Permission | string | undefined;
2834
+ Permission: Permission | undefined;
2835
2835
  }
2836
2836
  /**
2837
2837
  * @public
@@ -2923,7 +2923,7 @@ export interface StackError {
2923
2923
  * @public
2924
2924
  * <p>The error code.</p>
2925
2925
  */
2926
- ErrorCode?: StackErrorCode | string;
2926
+ ErrorCode?: StackErrorCode;
2927
2927
  /**
2928
2928
  * @public
2929
2929
  * <p>The error message.</p>
@@ -3162,7 +3162,7 @@ export interface ImageStateChangeReason {
3162
3162
  * @public
3163
3163
  * <p>The state change reason code.</p>
3164
3164
  */
3165
- Code?: ImageStateChangeReasonCode | string;
3165
+ Code?: ImageStateChangeReasonCode;
3166
3166
  /**
3167
3167
  * @public
3168
3168
  * <p>The state change reason message.</p>
@@ -3212,12 +3212,12 @@ export interface Image {
3212
3212
  * <p>The image starts in the <code>PENDING</code> state. If image creation succeeds, the
3213
3213
  * state is <code>AVAILABLE</code>. If image creation fails, the state is <code>FAILED</code>.</p>
3214
3214
  */
3215
- State?: ImageState | string;
3215
+ State?: ImageState;
3216
3216
  /**
3217
3217
  * @public
3218
3218
  * <p>Indicates whether the image is public or private.</p>
3219
3219
  */
3220
- Visibility?: VisibilityType | string;
3220
+ Visibility?: VisibilityType;
3221
3221
  /**
3222
3222
  * @public
3223
3223
  * <p>Indicates whether an image builder can be launched from this image.</p>
@@ -3232,7 +3232,7 @@ export interface Image {
3232
3232
  * @public
3233
3233
  * <p>The operating system platform of the image.</p>
3234
3234
  */
3235
- Platform?: PlatformType | string;
3235
+ Platform?: PlatformType;
3236
3236
  /**
3237
3237
  * @public
3238
3238
  * <p>The description to display.</p>
@@ -3324,7 +3324,7 @@ export interface CreateUsageReportSubscriptionResult {
3324
3324
  * @public
3325
3325
  * <p>The schedule for generating usage reports.</p>
3326
3326
  */
3327
- Schedule?: UsageReportSchedule | string;
3327
+ Schedule?: UsageReportSchedule;
3328
3328
  }
3329
3329
  /**
3330
3330
  * @public
@@ -3357,7 +3357,7 @@ export interface CreateUserRequest {
3357
3357
  * <p>The temporary password in the welcome email is valid for only 7 days. If users don’t set their passwords within 7 days, you must send them a new welcome email.</p>
3358
3358
  * </note>
3359
3359
  */
3360
- MessageAction?: MessageAction | string;
3360
+ MessageAction?: MessageAction;
3361
3361
  /**
3362
3362
  * @public
3363
3363
  * <p>The first name, or given name, of the user.</p>
@@ -3372,7 +3372,7 @@ export interface CreateUserRequest {
3372
3372
  * @public
3373
3373
  * <p>The authentication type for the user. You must specify USERPOOL. </p>
3374
3374
  */
3375
- AuthenticationType: AuthenticationType | string | undefined;
3375
+ AuthenticationType: AuthenticationType | undefined;
3376
3376
  }
3377
3377
  /**
3378
3378
  * @public
@@ -3592,7 +3592,7 @@ export interface DeleteUserRequest {
3592
3592
  * @public
3593
3593
  * <p>The authentication type for the user. You must specify USERPOOL.</p>
3594
3594
  */
3595
- AuthenticationType: AuthenticationType | string | undefined;
3595
+ AuthenticationType: AuthenticationType | undefined;
3596
3596
  }
3597
3597
  /**
3598
3598
  * @public
@@ -4014,7 +4014,7 @@ export interface DescribeImagesRequest {
4014
4014
  * @public
4015
4015
  * <p>The type of image (public, private, or shared) to describe. </p>
4016
4016
  */
4017
- Type?: VisibilityType | string;
4017
+ Type?: VisibilityType;
4018
4018
  /**
4019
4019
  * @public
4020
4020
  * <p>The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.</p>
@@ -4076,7 +4076,7 @@ export interface DescribeSessionsRequest {
4076
4076
  * authenticated using a streaming URL or <code>SAML</code> for a SAML federated user.
4077
4077
  * The default is to authenticate users using a streaming URL.</p>
4078
4078
  */
4079
- AuthenticationType?: AuthenticationType | string;
4079
+ AuthenticationType?: AuthenticationType;
4080
4080
  }
4081
4081
  /**
4082
4082
  * @public
@@ -4132,12 +4132,12 @@ export interface Session {
4132
4132
  * @public
4133
4133
  * <p>The current state of the streaming session.</p>
4134
4134
  */
4135
- State: SessionState | string | undefined;
4135
+ State: SessionState | undefined;
4136
4136
  /**
4137
4137
  * @public
4138
4138
  * <p>Specifies whether a user is connected to the streaming session.</p>
4139
4139
  */
4140
- ConnectionState?: SessionConnectionState | string;
4140
+ ConnectionState?: SessionConnectionState;
4141
4141
  /**
4142
4142
  * @public
4143
4143
  * <p>The time when a streaming instance is dedicated for the user.</p>
@@ -4153,7 +4153,7 @@ export interface Session {
4153
4153
  * <p>The authentication method. The user is authenticated using a streaming URL
4154
4154
  * (<code>API</code>) or SAML 2.0 federation (<code>SAML</code>).</p>
4155
4155
  */
4156
- AuthenticationType?: AuthenticationType | string;
4156
+ AuthenticationType?: AuthenticationType;
4157
4157
  /**
4158
4158
  * @public
4159
4159
  * <p>The network details for the streaming session.</p>
@@ -4242,7 +4242,7 @@ export interface LastReportGenerationExecutionError {
4242
4242
  * @public
4243
4243
  * <p>The error code for the error that is returned when a usage report can't be generated.</p>
4244
4244
  */
4245
- ErrorCode?: UsageReportExecutionErrorCode | string;
4245
+ ErrorCode?: UsageReportExecutionErrorCode;
4246
4246
  /**
4247
4247
  * @public
4248
4248
  * <p>The error message for the error that is returned when a usage report can't be generated.</p>
@@ -4268,7 +4268,7 @@ export interface UsageReportSubscription {
4268
4268
  * @public
4269
4269
  * <p>The schedule for generating usage reports.</p>
4270
4270
  */
4271
- Schedule?: UsageReportSchedule | string;
4271
+ Schedule?: UsageReportSchedule;
4272
4272
  /**
4273
4273
  * @public
4274
4274
  * <p>The time when the last usage report was generated.</p>
@@ -4303,7 +4303,7 @@ export interface DescribeUsersRequest {
4303
4303
  * @public
4304
4304
  * <p>The authentication type for the users in the user pool to describe. You must specify USERPOOL.</p>
4305
4305
  */
4306
- AuthenticationType: AuthenticationType | string | undefined;
4306
+ AuthenticationType: AuthenticationType | undefined;
4307
4307
  /**
4308
4308
  * @public
4309
4309
  * <p>The maximum size of each page of results.</p>
@@ -4379,7 +4379,7 @@ export interface User {
4379
4379
  * @public
4380
4380
  * <p>The authentication type for the user.</p>
4381
4381
  */
4382
- AuthenticationType: AuthenticationType | string | undefined;
4382
+ AuthenticationType: AuthenticationType | undefined;
4383
4383
  }
4384
4384
  /**
4385
4385
  * @public
@@ -4417,7 +4417,7 @@ export interface DescribeUserStackAssociationsRequest {
4417
4417
  * @public
4418
4418
  * <p>The authentication type for the user who is associated with the stack. You must specify USERPOOL.</p>
4419
4419
  */
4420
- AuthenticationType?: AuthenticationType | string;
4420
+ AuthenticationType?: AuthenticationType;
4421
4421
  /**
4422
4422
  * @public
4423
4423
  * <p>The maximum size of each page of results.</p>
@@ -4460,7 +4460,7 @@ export interface DisableUserRequest {
4460
4460
  * @public
4461
4461
  * <p>The authentication type for the user. You must specify USERPOOL.</p>
4462
4462
  */
4463
- AuthenticationType: AuthenticationType | string | undefined;
4463
+ AuthenticationType: AuthenticationType | undefined;
4464
4464
  }
4465
4465
  /**
4466
4466
  * @public
@@ -4568,7 +4568,7 @@ export interface EnableUserRequest {
4568
4568
  * @public
4569
4569
  * <p>The authentication type for the user. You must specify USERPOOL.</p>
4570
4570
  */
4571
- AuthenticationType: AuthenticationType | string | undefined;
4571
+ AuthenticationType: AuthenticationType | undefined;
4572
4572
  }
4573
4573
  /**
4574
4574
  * @public
@@ -4920,7 +4920,7 @@ export interface UpdateAppBlockBuilderRequest {
4920
4920
  * <p>
4921
4921
  * <code>WINDOWS_SERVER_2019</code> is the only valid value.</p>
4922
4922
  */
4923
- Platform?: PlatformType | string;
4923
+ Platform?: PlatformType;
4924
4924
  /**
4925
4925
  * @public
4926
4926
  * <p>The instance type to use when launching the app block builder. The following instance
@@ -4975,7 +4975,7 @@ export interface UpdateAppBlockBuilderRequest {
4975
4975
  * @public
4976
4976
  * <p>The attributes to delete from the app block builder.</p>
4977
4977
  */
4978
- AttributesToDelete?: (AppBlockBuilderAttribute | string)[];
4978
+ AttributesToDelete?: AppBlockBuilderAttribute[];
4979
4979
  }
4980
4980
  /**
4981
4981
  * @public
@@ -5035,7 +5035,7 @@ export interface UpdateApplicationRequest {
5035
5035
  * @public
5036
5036
  * <p>The attributes to delete for an application.</p>
5037
5037
  */
5038
- AttributesToDelete?: (ApplicationAttribute | string)[];
5038
+ AttributesToDelete?: ApplicationAttribute[];
5039
5039
  }
5040
5040
  /**
5041
5041
  * @public
@@ -5111,7 +5111,7 @@ export interface UpdateEntitlementRequest {
5111
5111
  * @public
5112
5112
  * <p>Specifies whether all or only selected apps are entitled.</p>
5113
5113
  */
5114
- AppVisibility?: AppVisibility | string;
5114
+ AppVisibility?: AppVisibility;
5115
5115
  /**
5116
5116
  * @public
5117
5117
  * <p>The attributes of the entitlement.</p>
@@ -5348,7 +5348,7 @@ export interface UpdateFleetRequest {
5348
5348
  * @public
5349
5349
  * <p>The fleet attributes to delete.</p>
5350
5350
  */
5351
- AttributesToDelete?: (FleetAttribute | string)[];
5351
+ AttributesToDelete?: FleetAttribute[];
5352
5352
  /**
5353
5353
  * @public
5354
5354
  * <p>The Amazon Resource Name (ARN) of the IAM role to apply to the fleet. To assume a role, a fleet instance calls the AWS Security Token Service (STS) <code>AssumeRole</code> API operation and passes the ARN of the role to use. The operation creates a new session with temporary credentials. AppStream 2.0 retrieves the temporary credentials and creates the <b>appstream_machine_role</b> credential profile on the instance.</p>
@@ -5360,12 +5360,12 @@ export interface UpdateFleetRequest {
5360
5360
  * <p>The AppStream 2.0 view that is displayed to your users when they stream from the fleet. When <code>APP</code> is specified, only the windows of applications opened by users display. When <code>DESKTOP</code> is specified, the standard desktop that is provided by the operating system displays.</p>
5361
5361
  * <p>The default value is <code>APP</code>.</p>
5362
5362
  */
5363
- StreamView?: StreamView | string;
5363
+ StreamView?: StreamView;
5364
5364
  /**
5365
5365
  * @public
5366
5366
  * <p>The platform of the fleet. WINDOWS_SERVER_2019 and AMAZON_LINUX2 are supported for Elastic fleets. </p>
5367
5367
  */
5368
- Platform?: PlatformType | string;
5368
+ Platform?: PlatformType;
5369
5369
  /**
5370
5370
  * @public
5371
5371
  * <p>The maximum number of concurrent sessions for a fleet.</p>
@@ -5484,7 +5484,7 @@ export interface UpdateStackRequest {
5484
5484
  * @public
5485
5485
  * <p>The stack attributes to delete.</p>
5486
5486
  */
5487
- AttributesToDelete?: (StackAttribute | string)[];
5487
+ AttributesToDelete?: StackAttribute[];
5488
5488
  /**
5489
5489
  * @public
5490
5490
  * <p>The actions that are enabled or disabled for users during their streaming sessions. By default, these actions are enabled.</p>
@@ -6,7 +6,7 @@ export declare const AccessEndpointType: {
6
6
  export type AccessEndpointType =
7
7
  (typeof AccessEndpointType)[keyof typeof AccessEndpointType];
8
8
  export interface AccessEndpoint {
9
- EndpointType: AccessEndpointType | string | undefined;
9
+ EndpointType: AccessEndpointType | undefined;
10
10
  VpceId?: string;
11
11
  }
12
12
  export declare const Action: {
@@ -52,8 +52,8 @@ export interface AppBlock {
52
52
  SetupScriptDetails?: ScriptDetails;
53
53
  CreatedTime?: Date;
54
54
  PostSetupScriptDetails?: ScriptDetails;
55
- PackagingType?: PackagingType | string;
56
- State?: AppBlockState | string;
55
+ PackagingType?: PackagingType;
56
+ State?: AppBlockState;
57
57
  AppBlockErrors?: ErrorDetails[];
58
58
  }
59
59
  export declare const FleetErrorCode: {
@@ -91,7 +91,7 @@ export declare const FleetErrorCode: {
91
91
  export type FleetErrorCode =
92
92
  (typeof FleetErrorCode)[keyof typeof FleetErrorCode];
93
93
  export interface ResourceError {
94
- ErrorCode?: FleetErrorCode | string;
94
+ ErrorCode?: FleetErrorCode;
95
95
  ErrorMessage?: string;
96
96
  ErrorTimestamp?: Date;
97
97
  }
@@ -114,7 +114,7 @@ export declare const AppBlockBuilderStateChangeReasonCode: {
114
114
  export type AppBlockBuilderStateChangeReasonCode =
115
115
  (typeof AppBlockBuilderStateChangeReasonCode)[keyof typeof AppBlockBuilderStateChangeReasonCode];
116
116
  export interface AppBlockBuilderStateChangeReason {
117
- Code?: AppBlockBuilderStateChangeReasonCode | string;
117
+ Code?: AppBlockBuilderStateChangeReasonCode;
118
118
  Message?: string;
119
119
  }
120
120
  export interface VpcConfig {
@@ -126,12 +126,12 @@ export interface AppBlockBuilder {
126
126
  Name: string | undefined;
127
127
  DisplayName?: string;
128
128
  Description?: string;
129
- Platform: AppBlockBuilderPlatformType | string | undefined;
129
+ Platform: AppBlockBuilderPlatformType | undefined;
130
130
  InstanceType: string | undefined;
131
131
  EnableDefaultInternetAccess?: boolean;
132
132
  IamRoleArn?: string;
133
133
  VpcConfig: VpcConfig | undefined;
134
- State: AppBlockBuilderState | string | undefined;
134
+ State: AppBlockBuilderState | undefined;
135
135
  CreatedTime?: Date;
136
136
  AppBlockBuilderErrors?: ResourceError[];
137
137
  StateChangeReason?: AppBlockBuilderStateChangeReason;
@@ -168,7 +168,7 @@ export interface Application {
168
168
  Arn?: string;
169
169
  AppBlockArn?: string;
170
170
  IconS3Location?: S3Location;
171
- Platforms?: (PlatformType | string)[];
171
+ Platforms?: PlatformType[];
172
172
  InstanceFamilies?: string[];
173
173
  CreatedTime?: Date;
174
174
  }
@@ -302,7 +302,7 @@ export type AuthenticationType =
302
302
  export interface UserStackAssociation {
303
303
  StackName: string | undefined;
304
304
  UserName: string | undefined;
305
- AuthenticationType: AuthenticationType | string | undefined;
305
+ AuthenticationType: AuthenticationType | undefined;
306
306
  SendEmailNotification?: boolean;
307
307
  }
308
308
  export interface BatchAssociateUserStackRequest {
@@ -318,7 +318,7 @@ export type UserStackAssociationErrorCode =
318
318
  (typeof UserStackAssociationErrorCode)[keyof typeof UserStackAssociationErrorCode];
319
319
  export interface UserStackAssociationError {
320
320
  UserStackAssociation?: UserStackAssociation;
321
- ErrorCode?: UserStackAssociationErrorCode | string;
321
+ ErrorCode?: UserStackAssociationErrorCode;
322
322
  ErrorMessage?: string;
323
323
  }
324
324
  export interface BatchAssociateUserStackResult {
@@ -338,7 +338,7 @@ export declare const CertificateBasedAuthStatus: {
338
338
  export type CertificateBasedAuthStatus =
339
339
  (typeof CertificateBasedAuthStatus)[keyof typeof CertificateBasedAuthStatus];
340
340
  export interface CertificateBasedAuthProperties {
341
- Status?: CertificateBasedAuthStatus | string;
341
+ Status?: CertificateBasedAuthStatus;
342
342
  CertificateAuthorityArn?: string;
343
343
  }
344
344
  export interface ComputeCapacity {
@@ -383,7 +383,7 @@ export interface CreateAppBlockRequest {
383
383
  SetupScriptDetails?: ScriptDetails;
384
384
  Tags?: Record<string, string>;
385
385
  PostSetupScriptDetails?: ScriptDetails;
386
- PackagingType?: PackagingType | string;
386
+ PackagingType?: PackagingType;
387
387
  }
388
388
  export interface CreateAppBlockResult {
389
389
  AppBlock?: AppBlock;
@@ -393,7 +393,7 @@ export interface CreateAppBlockBuilderRequest {
393
393
  Description?: string;
394
394
  DisplayName?: string;
395
395
  Tags?: Record<string, string>;
396
- Platform: AppBlockBuilderPlatformType | string | undefined;
396
+ Platform: AppBlockBuilderPlatformType | undefined;
397
397
  InstanceType: string | undefined;
398
398
  VpcConfig: VpcConfig | undefined;
399
399
  EnableDefaultInternetAccess?: boolean;
@@ -435,7 +435,7 @@ export interface CreateApplicationRequest {
435
435
  LaunchPath: string | undefined;
436
436
  WorkingDirectory?: string;
437
437
  LaunchParameters?: string;
438
- Platforms: (PlatformType | string)[] | undefined;
438
+ Platforms: PlatformType[] | undefined;
439
439
  InstanceFamilies: string[] | undefined;
440
440
  AppBlockArn: string | undefined;
441
441
  Tags?: Record<string, string>;
@@ -471,14 +471,14 @@ export interface CreateEntitlementRequest {
471
471
  Name: string | undefined;
472
472
  StackName: string | undefined;
473
473
  Description?: string;
474
- AppVisibility: AppVisibility | string | undefined;
474
+ AppVisibility: AppVisibility | undefined;
475
475
  Attributes: EntitlementAttribute[] | undefined;
476
476
  }
477
477
  export interface Entitlement {
478
478
  Name: string | undefined;
479
479
  StackName: string | undefined;
480
480
  Description?: string;
481
- AppVisibility: AppVisibility | string | undefined;
481
+ AppVisibility: AppVisibility | undefined;
482
482
  Attributes: EntitlementAttribute[] | undefined;
483
483
  CreatedTime?: Date;
484
484
  LastModifiedTime?: Date;
@@ -517,7 +517,7 @@ export interface CreateFleetRequest {
517
517
  ImageName?: string;
518
518
  ImageArn?: string;
519
519
  InstanceType: string | undefined;
520
- FleetType?: FleetType | string;
520
+ FleetType?: FleetType;
521
521
  ComputeCapacity?: ComputeCapacity;
522
522
  VpcConfig?: VpcConfig;
523
523
  MaxUserDurationInSeconds?: number;
@@ -529,14 +529,14 @@ export interface CreateFleetRequest {
529
529
  Tags?: Record<string, string>;
530
530
  IdleDisconnectTimeoutInSeconds?: number;
531
531
  IamRoleArn?: string;
532
- StreamView?: StreamView | string;
533
- Platform?: PlatformType | string;
532
+ StreamView?: StreamView;
533
+ Platform?: PlatformType;
534
534
  MaxConcurrentSessions?: number;
535
535
  UsbDeviceFilterStrings?: string[];
536
536
  SessionScriptS3Location?: S3Location;
537
537
  }
538
538
  export interface FleetError {
539
- ErrorCode?: FleetErrorCode | string;
539
+ ErrorCode?: FleetErrorCode;
540
540
  ErrorMessage?: string;
541
541
  }
542
542
  export declare const FleetState: {
@@ -554,11 +554,11 @@ export interface Fleet {
554
554
  ImageName?: string;
555
555
  ImageArn?: string;
556
556
  InstanceType: string | undefined;
557
- FleetType?: FleetType | string;
557
+ FleetType?: FleetType;
558
558
  ComputeCapacityStatus: ComputeCapacityStatus | undefined;
559
559
  MaxUserDurationInSeconds?: number;
560
560
  DisconnectTimeoutInSeconds?: number;
561
- State: FleetState | string | undefined;
561
+ State: FleetState | undefined;
562
562
  VpcConfig?: VpcConfig;
563
563
  CreatedTime?: Date;
564
564
  FleetErrors?: FleetError[];
@@ -566,8 +566,8 @@ export interface Fleet {
566
566
  DomainJoinInfo?: DomainJoinInfo;
567
567
  IdleDisconnectTimeoutInSeconds?: number;
568
568
  IamRoleArn?: string;
569
- StreamView?: StreamView | string;
570
- Platform?: PlatformType | string;
569
+ StreamView?: StreamView;
570
+ Platform?: PlatformType;
571
571
  MaxConcurrentSessions?: number;
572
572
  UsbDeviceFilterStrings?: string[];
573
573
  SessionScriptS3Location?: S3Location;
@@ -616,7 +616,7 @@ export declare const ImageBuilderStateChangeReasonCode: {
616
616
  export type ImageBuilderStateChangeReasonCode =
617
617
  (typeof ImageBuilderStateChangeReasonCode)[keyof typeof ImageBuilderStateChangeReasonCode];
618
618
  export interface ImageBuilderStateChangeReason {
619
- Code?: ImageBuilderStateChangeReasonCode | string;
619
+ Code?: ImageBuilderStateChangeReasonCode;
620
620
  Message?: string;
621
621
  }
622
622
  export interface ImageBuilder {
@@ -627,9 +627,9 @@ export interface ImageBuilder {
627
627
  DisplayName?: string;
628
628
  VpcConfig?: VpcConfig;
629
629
  InstanceType?: string;
630
- Platform?: PlatformType | string;
630
+ Platform?: PlatformType;
631
631
  IamRoleArn?: string;
632
- State?: ImageBuilderState | string;
632
+ State?: ImageBuilderState;
633
633
  StateChangeReason?: ImageBuilderStateChangeReason;
634
634
  CreatedTime?: Date;
635
635
  EnableDefaultInternetAccess?: boolean;
@@ -658,7 +658,7 @@ export declare const StorageConnectorType: {
658
658
  export type StorageConnectorType =
659
659
  (typeof StorageConnectorType)[keyof typeof StorageConnectorType];
660
660
  export interface StorageConnector {
661
- ConnectorType: StorageConnectorType | string | undefined;
661
+ ConnectorType: StorageConnectorType | undefined;
662
662
  ResourceIdentifier?: string;
663
663
  Domains?: string[];
664
664
  }
@@ -669,7 +669,7 @@ export declare const PreferredProtocol: {
669
669
  export type PreferredProtocol =
670
670
  (typeof PreferredProtocol)[keyof typeof PreferredProtocol];
671
671
  export interface StreamingExperienceSettings {
672
- PreferredProtocol?: PreferredProtocol | string;
672
+ PreferredProtocol?: PreferredProtocol;
673
673
  }
674
674
  export declare const Permission: {
675
675
  readonly DISABLED: "DISABLED";
@@ -677,8 +677,8 @@ export declare const Permission: {
677
677
  };
678
678
  export type Permission = (typeof Permission)[keyof typeof Permission];
679
679
  export interface UserSetting {
680
- Action: Action | string | undefined;
681
- Permission: Permission | string | undefined;
680
+ Action: Action | undefined;
681
+ Permission: Permission | undefined;
682
682
  }
683
683
  export interface CreateStackRequest {
684
684
  Name: string | undefined;
@@ -701,7 +701,7 @@ export declare const StackErrorCode: {
701
701
  export type StackErrorCode =
702
702
  (typeof StackErrorCode)[keyof typeof StackErrorCode];
703
703
  export interface StackError {
704
- ErrorCode?: StackErrorCode | string;
704
+ ErrorCode?: StackErrorCode;
705
705
  ErrorMessage?: string;
706
706
  }
707
707
  export interface Stack {
@@ -765,7 +765,7 @@ export declare const ImageStateChangeReasonCode: {
765
765
  export type ImageStateChangeReasonCode =
766
766
  (typeof ImageStateChangeReasonCode)[keyof typeof ImageStateChangeReasonCode];
767
767
  export interface ImageStateChangeReason {
768
- Code?: ImageStateChangeReasonCode | string;
768
+ Code?: ImageStateChangeReasonCode;
769
769
  Message?: string;
770
770
  }
771
771
  export declare const VisibilityType: {
@@ -780,11 +780,11 @@ export interface Image {
780
780
  Arn?: string;
781
781
  BaseImageArn?: string;
782
782
  DisplayName?: string;
783
- State?: ImageState | string;
784
- Visibility?: VisibilityType | string;
783
+ State?: ImageState;
784
+ Visibility?: VisibilityType;
785
785
  ImageBuilderSupported?: boolean;
786
786
  ImageBuilderName?: string;
787
- Platform?: PlatformType | string;
787
+ Platform?: PlatformType;
788
788
  Description?: string;
789
789
  StateChangeReason?: ImageStateChangeReason;
790
790
  Applications?: Application[];
@@ -806,7 +806,7 @@ export type UsageReportSchedule =
806
806
  (typeof UsageReportSchedule)[keyof typeof UsageReportSchedule];
807
807
  export interface CreateUsageReportSubscriptionResult {
808
808
  S3BucketName?: string;
809
- Schedule?: UsageReportSchedule | string;
809
+ Schedule?: UsageReportSchedule;
810
810
  }
811
811
  export declare const MessageAction: {
812
812
  readonly RESEND: "RESEND";
@@ -815,10 +815,10 @@ export declare const MessageAction: {
815
815
  export type MessageAction = (typeof MessageAction)[keyof typeof MessageAction];
816
816
  export interface CreateUserRequest {
817
817
  UserName: string | undefined;
818
- MessageAction?: MessageAction | string;
818
+ MessageAction?: MessageAction;
819
819
  FirstName?: string;
820
820
  LastName?: string;
821
- AuthenticationType: AuthenticationType | string | undefined;
821
+ AuthenticationType: AuthenticationType | undefined;
822
822
  }
823
823
  export interface CreateUserResult {}
824
824
  export interface DeleteAppBlockRequest {
@@ -879,7 +879,7 @@ export interface DeleteUsageReportSubscriptionRequest {}
879
879
  export interface DeleteUsageReportSubscriptionResult {}
880
880
  export interface DeleteUserRequest {
881
881
  UserName: string | undefined;
882
- AuthenticationType: AuthenticationType | string | undefined;
882
+ AuthenticationType: AuthenticationType | undefined;
883
883
  }
884
884
  export interface DeleteUserResult {}
885
885
  export interface DescribeAppBlockBuilderAppBlockAssociationsRequest {
@@ -983,7 +983,7 @@ export interface DescribeImagePermissionsResult {
983
983
  export interface DescribeImagesRequest {
984
984
  Names?: string[];
985
985
  Arns?: string[];
986
- Type?: VisibilityType | string;
986
+ Type?: VisibilityType;
987
987
  NextToken?: string;
988
988
  MaxResults?: number;
989
989
  }
@@ -997,7 +997,7 @@ export interface DescribeSessionsRequest {
997
997
  UserId?: string;
998
998
  NextToken?: string;
999
999
  Limit?: number;
1000
- AuthenticationType?: AuthenticationType | string;
1000
+ AuthenticationType?: AuthenticationType;
1001
1001
  }
1002
1002
  export declare const SessionConnectionState: {
1003
1003
  readonly CONNECTED: "CONNECTED";
@@ -1016,11 +1016,11 @@ export interface Session {
1016
1016
  UserId: string | undefined;
1017
1017
  StackName: string | undefined;
1018
1018
  FleetName: string | undefined;
1019
- State: SessionState | string | undefined;
1020
- ConnectionState?: SessionConnectionState | string;
1019
+ State: SessionState | undefined;
1020
+ ConnectionState?: SessionConnectionState;
1021
1021
  StartTime?: Date;
1022
1022
  MaxExpirationTime?: Date;
1023
- AuthenticationType?: AuthenticationType | string;
1023
+ AuthenticationType?: AuthenticationType;
1024
1024
  NetworkAccessConfiguration?: NetworkAccessConfiguration;
1025
1025
  }
1026
1026
  export interface DescribeSessionsResult {
@@ -1047,12 +1047,12 @@ export declare const UsageReportExecutionErrorCode: {
1047
1047
  export type UsageReportExecutionErrorCode =
1048
1048
  (typeof UsageReportExecutionErrorCode)[keyof typeof UsageReportExecutionErrorCode];
1049
1049
  export interface LastReportGenerationExecutionError {
1050
- ErrorCode?: UsageReportExecutionErrorCode | string;
1050
+ ErrorCode?: UsageReportExecutionErrorCode;
1051
1051
  ErrorMessage?: string;
1052
1052
  }
1053
1053
  export interface UsageReportSubscription {
1054
1054
  S3BucketName?: string;
1055
- Schedule?: UsageReportSchedule | string;
1055
+ Schedule?: UsageReportSchedule;
1056
1056
  LastGeneratedReportDate?: Date;
1057
1057
  SubscriptionErrors?: LastReportGenerationExecutionError[];
1058
1058
  }
@@ -1061,7 +1061,7 @@ export interface DescribeUsageReportSubscriptionsResult {
1061
1061
  NextToken?: string;
1062
1062
  }
1063
1063
  export interface DescribeUsersRequest {
1064
- AuthenticationType: AuthenticationType | string | undefined;
1064
+ AuthenticationType: AuthenticationType | undefined;
1065
1065
  MaxResults?: number;
1066
1066
  NextToken?: string;
1067
1067
  }
@@ -1073,7 +1073,7 @@ export interface User {
1073
1073
  FirstName?: string;
1074
1074
  LastName?: string;
1075
1075
  CreatedTime?: Date;
1076
- AuthenticationType: AuthenticationType | string | undefined;
1076
+ AuthenticationType: AuthenticationType | undefined;
1077
1077
  }
1078
1078
  export interface DescribeUsersResult {
1079
1079
  Users?: User[];
@@ -1082,7 +1082,7 @@ export interface DescribeUsersResult {
1082
1082
  export interface DescribeUserStackAssociationsRequest {
1083
1083
  StackName?: string;
1084
1084
  UserName?: string;
1085
- AuthenticationType?: AuthenticationType | string;
1085
+ AuthenticationType?: AuthenticationType;
1086
1086
  MaxResults?: number;
1087
1087
  NextToken?: string;
1088
1088
  }
@@ -1092,7 +1092,7 @@ export interface DescribeUserStackAssociationsResult {
1092
1092
  }
1093
1093
  export interface DisableUserRequest {
1094
1094
  UserName: string | undefined;
1095
- AuthenticationType: AuthenticationType | string | undefined;
1095
+ AuthenticationType: AuthenticationType | undefined;
1096
1096
  }
1097
1097
  export interface DisableUserResult {}
1098
1098
  export interface DisassociateAppBlockBuilderAppBlockRequest {
@@ -1118,7 +1118,7 @@ export interface DisassociateFleetRequest {
1118
1118
  export interface DisassociateFleetResult {}
1119
1119
  export interface EnableUserRequest {
1120
1120
  UserName: string | undefined;
1121
- AuthenticationType: AuthenticationType | string | undefined;
1121
+ AuthenticationType: AuthenticationType | undefined;
1122
1122
  }
1123
1123
  export interface EnableUserResult {}
1124
1124
  export interface EntitledApplication {
@@ -1217,13 +1217,13 @@ export interface UpdateAppBlockBuilderRequest {
1217
1217
  Name: string | undefined;
1218
1218
  Description?: string;
1219
1219
  DisplayName?: string;
1220
- Platform?: PlatformType | string;
1220
+ Platform?: PlatformType;
1221
1221
  InstanceType?: string;
1222
1222
  VpcConfig?: VpcConfig;
1223
1223
  EnableDefaultInternetAccess?: boolean;
1224
1224
  IamRoleArn?: string;
1225
1225
  AccessEndpoints?: AccessEndpoint[];
1226
- AttributesToDelete?: (AppBlockBuilderAttribute | string)[];
1226
+ AttributesToDelete?: AppBlockBuilderAttribute[];
1227
1227
  }
1228
1228
  export interface UpdateAppBlockBuilderResult {
1229
1229
  AppBlockBuilder?: AppBlockBuilder;
@@ -1237,7 +1237,7 @@ export interface UpdateApplicationRequest {
1237
1237
  WorkingDirectory?: string;
1238
1238
  LaunchParameters?: string;
1239
1239
  AppBlockArn?: string;
1240
- AttributesToDelete?: (ApplicationAttribute | string)[];
1240
+ AttributesToDelete?: ApplicationAttribute[];
1241
1241
  }
1242
1242
  export interface UpdateApplicationResult {
1243
1243
  Application?: Application;
@@ -1255,7 +1255,7 @@ export interface UpdateEntitlementRequest {
1255
1255
  Name: string | undefined;
1256
1256
  StackName: string | undefined;
1257
1257
  Description?: string;
1258
- AppVisibility?: AppVisibility | string;
1258
+ AppVisibility?: AppVisibility;
1259
1259
  Attributes?: EntitlementAttribute[];
1260
1260
  }
1261
1261
  export interface UpdateEntitlementResult {
@@ -1276,10 +1276,10 @@ export interface UpdateFleetRequest {
1276
1276
  EnableDefaultInternetAccess?: boolean;
1277
1277
  DomainJoinInfo?: DomainJoinInfo;
1278
1278
  IdleDisconnectTimeoutInSeconds?: number;
1279
- AttributesToDelete?: (FleetAttribute | string)[];
1279
+ AttributesToDelete?: FleetAttribute[];
1280
1280
  IamRoleArn?: string;
1281
- StreamView?: StreamView | string;
1282
- Platform?: PlatformType | string;
1281
+ StreamView?: StreamView;
1282
+ Platform?: PlatformType;
1283
1283
  MaxConcurrentSessions?: number;
1284
1284
  UsbDeviceFilterStrings?: string[];
1285
1285
  SessionScriptS3Location?: S3Location;
@@ -1317,7 +1317,7 @@ export interface UpdateStackRequest {
1317
1317
  DeleteStorageConnectors?: boolean;
1318
1318
  RedirectURL?: string;
1319
1319
  FeedbackURL?: string;
1320
- AttributesToDelete?: (StackAttribute | string)[];
1320
+ AttributesToDelete?: StackAttribute[];
1321
1321
  UserSettings?: UserSetting[];
1322
1322
  ApplicationSettings?: ApplicationSettings;
1323
1323
  AccessEndpoints?: AccessEndpoint[];
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.427.0",
4
+ "version": "3.429.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,41 +21,41 @@
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.427.0",
25
- "@aws-sdk/credential-provider-node": "3.427.0",
26
- "@aws-sdk/middleware-host-header": "3.425.0",
27
- "@aws-sdk/middleware-logger": "3.425.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.425.0",
29
- "@aws-sdk/middleware-signing": "3.425.0",
30
- "@aws-sdk/middleware-user-agent": "3.427.0",
31
- "@aws-sdk/region-config-resolver": "3.425.0",
32
- "@aws-sdk/types": "3.425.0",
33
- "@aws-sdk/util-endpoints": "3.427.0",
34
- "@aws-sdk/util-user-agent-browser": "3.425.0",
35
- "@aws-sdk/util-user-agent-node": "3.425.0",
36
- "@smithy/config-resolver": "^2.0.11",
37
- "@smithy/fetch-http-handler": "^2.2.1",
38
- "@smithy/hash-node": "^2.0.10",
39
- "@smithy/invalid-dependency": "^2.0.10",
40
- "@smithy/middleware-content-length": "^2.0.12",
41
- "@smithy/middleware-endpoint": "^2.0.10",
42
- "@smithy/middleware-retry": "^2.0.13",
43
- "@smithy/middleware-serde": "^2.0.10",
44
- "@smithy/middleware-stack": "^2.0.4",
45
- "@smithy/node-config-provider": "^2.0.13",
46
- "@smithy/node-http-handler": "^2.1.6",
47
- "@smithy/protocol-http": "^3.0.6",
48
- "@smithy/smithy-client": "^2.1.9",
49
- "@smithy/types": "^2.3.4",
50
- "@smithy/url-parser": "^2.0.10",
24
+ "@aws-sdk/client-sts": "3.429.0",
25
+ "@aws-sdk/credential-provider-node": "3.429.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
+ "@aws-sdk/middleware-logger": "3.428.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
+ "@aws-sdk/middleware-signing": "3.428.0",
30
+ "@aws-sdk/middleware-user-agent": "3.428.0",
31
+ "@aws-sdk/region-config-resolver": "3.428.0",
32
+ "@aws-sdk/types": "3.428.0",
33
+ "@aws-sdk/util-endpoints": "3.428.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.428.0",
35
+ "@aws-sdk/util-user-agent-node": "3.428.0",
36
+ "@smithy/config-resolver": "^2.0.14",
37
+ "@smithy/fetch-http-handler": "^2.2.3",
38
+ "@smithy/hash-node": "^2.0.11",
39
+ "@smithy/invalid-dependency": "^2.0.11",
40
+ "@smithy/middleware-content-length": "^2.0.13",
41
+ "@smithy/middleware-endpoint": "^2.1.1",
42
+ "@smithy/middleware-retry": "^2.0.16",
43
+ "@smithy/middleware-serde": "^2.0.11",
44
+ "@smithy/middleware-stack": "^2.0.5",
45
+ "@smithy/node-config-provider": "^2.1.1",
46
+ "@smithy/node-http-handler": "^2.1.7",
47
+ "@smithy/protocol-http": "^3.0.7",
48
+ "@smithy/smithy-client": "^2.1.11",
49
+ "@smithy/types": "^2.3.5",
50
+ "@smithy/url-parser": "^2.0.11",
51
51
  "@smithy/util-base64": "^2.0.0",
52
52
  "@smithy/util-body-length-browser": "^2.0.0",
53
53
  "@smithy/util-body-length-node": "^2.1.0",
54
- "@smithy/util-defaults-mode-browser": "^2.0.13",
55
- "@smithy/util-defaults-mode-node": "^2.0.15",
56
- "@smithy/util-retry": "^2.0.3",
54
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
55
+ "@smithy/util-defaults-mode-node": "^2.0.19",
56
+ "@smithy/util-retry": "^2.0.4",
57
57
  "@smithy/util-utf8": "^2.0.0",
58
- "@smithy/util-waiter": "^2.0.10",
58
+ "@smithy/util-waiter": "^2.0.11",
59
59
  "tslib": "^2.5.0"
60
60
  },
61
61
  "devDependencies": {