aws-sdk 2.1650.0 → 2.1651.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/README.md +1 -1
- package/apis/cloudhsmv2-2017-04-28.min.json +69 -17
- package/apis/connect-2017-08-08.min.json +272 -255
- package/apis/elasticmapreduce-2009-03-31.min.json +15 -3
- package/apis/glue-2017-03-31.min.json +93 -89
- package/apis/kinesisanalyticsv2-2018-05-23.min.json +4 -1
- package/apis/opensearch-2021-01-01.min.json +98 -141
- package/apis/pi-2018-02-27.min.json +4 -1
- package/clients/acmpca.d.ts +3 -3
- package/clients/cloudhsmv2.d.ts +117 -34
- package/clients/connect.d.ts +29 -10
- package/clients/emr.d.ts +12 -4
- package/clients/glue.d.ts +6 -0
- package/clients/kinesisanalyticsv2.d.ts +1 -1
- package/clients/opensearch.d.ts +0 -53
- package/clients/pi.d.ts +2 -2
- package/clients/workspaces.d.ts +44 -44
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +8 -8
- package/dist/aws-sdk.js +359 -278
- package/dist/aws-sdk.min.js +93 -93
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/emr.d.ts
CHANGED
@@ -2119,6 +2119,10 @@ declare namespace EMR {
|
|
2119
2119
|
* The custom AMI ID to use for the instance type.
|
2120
2120
|
*/
|
2121
2121
|
CustomAmiId?: XmlStringMaxLen256;
|
2122
|
+
/**
|
2123
|
+
* The priority at which Amazon EMR launches the Amazon EC2 instances with this instance type. Priority starts at 0, which is the highest priority. Amazon EMR considers the highest priority first.
|
2124
|
+
*/
|
2125
|
+
Priority?: NonNegativeDouble;
|
2122
2126
|
}
|
2123
2127
|
export type InstanceTypeConfigList = InstanceTypeConfig[];
|
2124
2128
|
export interface InstanceTypeSpecification {
|
@@ -2154,6 +2158,10 @@ declare namespace EMR {
|
|
2154
2158
|
* The custom AMI ID to use for the instance type.
|
2155
2159
|
*/
|
2156
2160
|
CustomAmiId?: XmlStringMaxLen256;
|
2161
|
+
/**
|
2162
|
+
* The priority at which Amazon EMR launches the Amazon EC2 instances with this instance type. Priority starts at 0, which is the highest priority. Amazon EMR considers the highest priority first.
|
2163
|
+
*/
|
2164
|
+
Priority?: NonNegativeDouble;
|
2157
2165
|
}
|
2158
2166
|
export type InstanceTypeSpecificationList = InstanceTypeSpecification[];
|
2159
2167
|
export type Integer = number;
|
@@ -2913,10 +2921,10 @@ declare namespace EMR {
|
|
2913
2921
|
}
|
2914
2922
|
export type OnDemandCapacityReservationPreference = "open"|"none"|string;
|
2915
2923
|
export type OnDemandCapacityReservationUsageStrategy = "use-capacity-reservations-first"|string;
|
2916
|
-
export type OnDemandProvisioningAllocationStrategy = "lowest-price"|string;
|
2924
|
+
export type OnDemandProvisioningAllocationStrategy = "lowest-price"|"prioritized"|string;
|
2917
2925
|
export interface OnDemandProvisioningSpecification {
|
2918
2926
|
/**
|
2919
|
-
* Specifies the strategy to use in launching On-Demand instance fleets.
|
2927
|
+
* Specifies the strategy to use in launching On-Demand instance fleets. Available options are lowest-price and prioritized. lowest-price specifies to launch the instances with the lowest price first, and prioritized specifies that Amazon EMR should launch the instances with the highest priority first. The default is lowest-price.
|
2920
2928
|
*/
|
2921
2929
|
AllocationStrategy: OnDemandProvisioningAllocationStrategy;
|
2922
2930
|
/**
|
@@ -3436,7 +3444,7 @@ declare namespace EMR {
|
|
3436
3444
|
Version?: String;
|
3437
3445
|
}
|
3438
3446
|
export type SimplifiedApplicationList = SimplifiedApplication[];
|
3439
|
-
export type SpotProvisioningAllocationStrategy = "capacity-optimized"|"price-capacity-optimized"|"lowest-price"|"diversified"|string;
|
3447
|
+
export type SpotProvisioningAllocationStrategy = "capacity-optimized"|"price-capacity-optimized"|"lowest-price"|"diversified"|"capacity-optimized-prioritized"|string;
|
3440
3448
|
export interface SpotProvisioningSpecification {
|
3441
3449
|
/**
|
3442
3450
|
* The Spot provisioning timeout period in minutes. If Spot Instances are not provisioned within this time period, the TimeOutAction is taken. Minimum value is 5 and maximum value is 1440. The timeout applies only during initial provisioning, when the cluster is first created.
|
@@ -3451,7 +3459,7 @@ declare namespace EMR {
|
|
3451
3459
|
*/
|
3452
3460
|
BlockDurationMinutes?: WholeNumber;
|
3453
3461
|
/**
|
3454
|
-
* Specifies one of the following strategies to launch Spot Instance fleets:
|
3462
|
+
* Specifies one of the following strategies to launch Spot Instance fleets: capacity-optimized, price-capacity-optimized, lowest-price, or diversified, and capacity-optimized-prioritized. For more information on the provisioning strategies, see Allocation strategies for Spot Instances in the Amazon EC2 User Guide for Linux Instances. When you launch a Spot Instance fleet with the old console, it automatically launches with the capacity-optimized strategy. You can't change the allocation strategy from the old console.
|
3455
3463
|
*/
|
3456
3464
|
AllocationStrategy?: SpotProvisioningAllocationStrategy;
|
3457
3465
|
}
|
package/clients/glue.d.ts
CHANGED
@@ -5542,6 +5542,8 @@ declare namespace Glue {
|
|
5542
5542
|
*/
|
5543
5543
|
FederatedDatabase?: FederatedDatabase;
|
5544
5544
|
}
|
5545
|
+
export type DatabaseAttributes = "NAME"|string;
|
5546
|
+
export type DatabaseAttributesList = DatabaseAttributes[];
|
5545
5547
|
export interface DatabaseIdentifier {
|
5546
5548
|
/**
|
5547
5549
|
* The ID of the Data Catalog in which the database resides.
|
@@ -7321,6 +7323,10 @@ declare namespace Glue {
|
|
7321
7323
|
* Allows you to specify that you want to list the databases shared with your account. The allowable values are FEDERATED, FOREIGN or ALL. If set to FEDERATED, will list the federated databases (referencing an external entity) shared with your account. If set to FOREIGN, will list the databases shared with your account. If set to ALL, will list the databases shared with your account, as well as the databases in yor local account.
|
7322
7324
|
*/
|
7323
7325
|
ResourceShareType?: ResourceShareType;
|
7326
|
+
/**
|
7327
|
+
* Specifies the database fields returned by the GetDatabases call. This parameter doesn’t accept an empty list. The request must include the NAME.
|
7328
|
+
*/
|
7329
|
+
AttributesToGet?: DatabaseAttributesList;
|
7324
7330
|
}
|
7325
7331
|
export interface GetDatabasesResponse {
|
7326
7332
|
/**
|
@@ -2229,7 +2229,7 @@ declare namespace KinesisAnalyticsV2 {
|
|
2229
2229
|
*/
|
2230
2230
|
ApplicationRestoreConfiguration?: ApplicationRestoreConfiguration;
|
2231
2231
|
}
|
2232
|
-
export type RuntimeEnvironment = "SQL-1_0"|"FLINK-1_6"|"FLINK-1_8"|"ZEPPELIN-FLINK-1_0"|"FLINK-1_11"|"FLINK-1_13"|"ZEPPELIN-FLINK-2_0"|"FLINK-1_15"|"ZEPPELIN-FLINK-3_0"|"FLINK-1_18"|string;
|
2232
|
+
export type RuntimeEnvironment = "SQL-1_0"|"FLINK-1_6"|"FLINK-1_8"|"ZEPPELIN-FLINK-1_0"|"FLINK-1_11"|"FLINK-1_13"|"ZEPPELIN-FLINK-2_0"|"FLINK-1_15"|"ZEPPELIN-FLINK-3_0"|"FLINK-1_18"|"FLINK-1_19"|string;
|
2233
2233
|
export interface S3ApplicationCodeLocationDescription {
|
2234
2234
|
/**
|
2235
2235
|
* The Amazon Resource Name (ARN) for the S3 bucket containing the application code.
|
package/clients/opensearch.d.ts
CHANGED
@@ -517,25 +517,6 @@ declare class OpenSearch extends Service {
|
|
517
517
|
upgradeDomain(callback?: (err: AWSError, data: OpenSearch.Types.UpgradeDomainResponse) => void): Request<OpenSearch.Types.UpgradeDomainResponse, AWSError>;
|
518
518
|
}
|
519
519
|
declare namespace OpenSearch {
|
520
|
-
export interface AIMLOptionsInput {
|
521
|
-
/**
|
522
|
-
* Container for parameters required for natural language query generation on the specified domain.
|
523
|
-
*/
|
524
|
-
NaturalLanguageQueryGenerationOptions?: NaturalLanguageQueryGenerationOptionsInput;
|
525
|
-
}
|
526
|
-
export interface AIMLOptionsOutput {
|
527
|
-
/**
|
528
|
-
* Container for parameters required for natural language query generation on the specified domain.
|
529
|
-
*/
|
530
|
-
NaturalLanguageQueryGenerationOptions?: NaturalLanguageQueryGenerationOptionsOutput;
|
531
|
-
}
|
532
|
-
export interface AIMLOptionsStatus {
|
533
|
-
/**
|
534
|
-
* Machine learning options on the specified domain.
|
535
|
-
*/
|
536
|
-
Options?: AIMLOptionsOutput;
|
537
|
-
Status?: OptionStatus;
|
538
|
-
}
|
539
520
|
export type ARN = string;
|
540
521
|
export type AWSAccount = string;
|
541
522
|
export interface AWSDomainInformation {
|
@@ -1224,10 +1205,6 @@ declare namespace OpenSearch {
|
|
1224
1205
|
* Software update options for the domain.
|
1225
1206
|
*/
|
1226
1207
|
SoftwareUpdateOptions?: SoftwareUpdateOptions;
|
1227
|
-
/**
|
1228
|
-
* Options for all machine learning features for the specified domain.
|
1229
|
-
*/
|
1230
|
-
AIMLOptions?: AIMLOptionsInput;
|
1231
1208
|
}
|
1232
1209
|
export interface CreateDomainResponse {
|
1233
1210
|
/**
|
@@ -1887,10 +1864,6 @@ declare namespace OpenSearch {
|
|
1887
1864
|
* Information about the domain properties that are currently being modified.
|
1888
1865
|
*/
|
1889
1866
|
ModifyingProperties?: ModifyingPropertiesList;
|
1890
|
-
/**
|
1891
|
-
* Container for parameters required to enable all machine learning features.
|
1892
|
-
*/
|
1893
|
-
AIMLOptions?: AIMLOptionsStatus;
|
1894
1867
|
}
|
1895
1868
|
export interface DomainEndpointOptions {
|
1896
1869
|
/**
|
@@ -2187,10 +2160,6 @@ declare namespace OpenSearch {
|
|
2187
2160
|
* Information about the domain properties that are currently being modified.
|
2188
2161
|
*/
|
2189
2162
|
ModifyingProperties?: ModifyingPropertiesList;
|
2190
|
-
/**
|
2191
|
-
* Container for parameters required to enable all machine learning features.
|
2192
|
-
*/
|
2193
|
-
AIMLOptions?: AIMLOptionsOutput;
|
2194
2163
|
}
|
2195
2164
|
export type DomainStatusList = DomainStatus[];
|
2196
2165
|
export type Double = number;
|
@@ -2951,24 +2920,6 @@ declare namespace OpenSearch {
|
|
2951
2920
|
ValueType?: PropertyValueType;
|
2952
2921
|
}
|
2953
2922
|
export type ModifyingPropertiesList = ModifyingProperties[];
|
2954
|
-
export type NaturalLanguageQueryGenerationCurrentState = "NOT_ENABLED"|"ENABLE_COMPLETE"|"ENABLE_IN_PROGRESS"|"ENABLE_FAILED"|"DISABLE_COMPLETE"|"DISABLE_IN_PROGRESS"|"DISABLE_FAILED"|string;
|
2955
|
-
export type NaturalLanguageQueryGenerationDesiredState = "ENABLED"|"DISABLED"|string;
|
2956
|
-
export interface NaturalLanguageQueryGenerationOptionsInput {
|
2957
|
-
/**
|
2958
|
-
* The desired state of the natural language query generation feature. Valid values are ENABLED and DISABLED.
|
2959
|
-
*/
|
2960
|
-
DesiredState?: NaturalLanguageQueryGenerationDesiredState;
|
2961
|
-
}
|
2962
|
-
export interface NaturalLanguageQueryGenerationOptionsOutput {
|
2963
|
-
/**
|
2964
|
-
* The desired state of the natural language query generation feature. Valid values are ENABLED and DISABLED.
|
2965
|
-
*/
|
2966
|
-
DesiredState?: NaturalLanguageQueryGenerationDesiredState;
|
2967
|
-
/**
|
2968
|
-
* The current state of the natural language query generation feature, indicating completion, in progress, or failure.
|
2969
|
-
*/
|
2970
|
-
CurrentState?: NaturalLanguageQueryGenerationCurrentState;
|
2971
|
-
}
|
2972
2923
|
export type NextToken = string;
|
2973
2924
|
export type NodeId = string;
|
2974
2925
|
export type NodeStatus = "Active"|"StandBy"|"NotAvailable"|string;
|
@@ -3771,10 +3722,6 @@ declare namespace OpenSearch {
|
|
3771
3722
|
* Service software update options for the domain.
|
3772
3723
|
*/
|
3773
3724
|
SoftwareUpdateOptions?: SoftwareUpdateOptions;
|
3774
|
-
/**
|
3775
|
-
* Options for all machine learning features for the specified domain.
|
3776
|
-
*/
|
3777
|
-
AIMLOptions?: AIMLOptionsInput;
|
3778
3725
|
}
|
3779
3726
|
export interface UpdateDomainConfigResponse {
|
3780
3727
|
/**
|
package/clients/pi.d.ts
CHANGED
@@ -287,7 +287,7 @@ declare namespace PI {
|
|
287
287
|
*/
|
288
288
|
PartitionBy?: DimensionGroup;
|
289
289
|
/**
|
290
|
-
* One or more filters to apply in the request. Restrictions: Any number of filters by the same dimension, as specified in the GroupBy or Partition parameters. A single filter for any other dimension in this dimension group.
|
290
|
+
* One or more filters to apply in the request. Restrictions: Any number of filters by the same dimension, as specified in the GroupBy or Partition parameters. A single filter for any other dimension in this dimension group. The db.sql.db_id filter isn't available for RDS for SQL Server DB instances.
|
291
291
|
*/
|
292
292
|
Filter?: MetricQueryFilterMap;
|
293
293
|
/**
|
@@ -740,7 +740,7 @@ declare namespace PI {
|
|
740
740
|
*/
|
741
741
|
GroupBy?: DimensionGroup;
|
742
742
|
/**
|
743
|
-
* One or more filters to apply in the request. Restrictions: Any number of filters by the same dimension, as specified in the GroupBy parameter. A single filter for any other dimension in this dimension group.
|
743
|
+
* One or more filters to apply in the request. Restrictions: Any number of filters by the same dimension, as specified in the GroupBy parameter. A single filter for any other dimension in this dimension group. The db.sql.db_id filter isn't available for RDS for SQL Server DB instances.
|
744
744
|
*/
|
745
745
|
Filter?: MetricQueryFilterMap;
|
746
746
|
}
|
package/clients/workspaces.d.ts
CHANGED
@@ -396,19 +396,19 @@ declare class WorkSpaces extends Service {
|
|
396
396
|
*/
|
397
397
|
describeWorkspacesConnectionStatus(callback?: (err: AWSError, data: WorkSpaces.Types.DescribeWorkspacesConnectionStatusResult) => void): Request<WorkSpaces.Types.DescribeWorkspacesConnectionStatusResult, AWSError>;
|
398
398
|
/**
|
399
|
-
* Retrieves a list that describes the streaming sessions for a specified
|
399
|
+
* Retrieves a list that describes the streaming sessions for a specified pool.
|
400
400
|
*/
|
401
401
|
describeWorkspacesPoolSessions(params: WorkSpaces.Types.DescribeWorkspacesPoolSessionsRequest, callback?: (err: AWSError, data: WorkSpaces.Types.DescribeWorkspacesPoolSessionsResult) => void): Request<WorkSpaces.Types.DescribeWorkspacesPoolSessionsResult, AWSError>;
|
402
402
|
/**
|
403
|
-
* Retrieves a list that describes the streaming sessions for a specified
|
403
|
+
* Retrieves a list that describes the streaming sessions for a specified pool.
|
404
404
|
*/
|
405
405
|
describeWorkspacesPoolSessions(callback?: (err: AWSError, data: WorkSpaces.Types.DescribeWorkspacesPoolSessionsResult) => void): Request<WorkSpaces.Types.DescribeWorkspacesPoolSessionsResult, AWSError>;
|
406
406
|
/**
|
407
|
-
* Describes the specified WorkSpaces
|
407
|
+
* Describes the specified WorkSpaces Pools.
|
408
408
|
*/
|
409
409
|
describeWorkspacesPools(params: WorkSpaces.Types.DescribeWorkspacesPoolsRequest, callback?: (err: AWSError, data: WorkSpaces.Types.DescribeWorkspacesPoolsResult) => void): Request<WorkSpaces.Types.DescribeWorkspacesPoolsResult, AWSError>;
|
410
410
|
/**
|
411
|
-
* Describes the specified WorkSpaces
|
411
|
+
* Describes the specified WorkSpaces Pools.
|
412
412
|
*/
|
413
413
|
describeWorkspacesPools(callback?: (err: AWSError, data: WorkSpaces.Types.DescribeWorkspacesPoolsResult) => void): Request<WorkSpaces.Types.DescribeWorkspacesPoolsResult, AWSError>;
|
414
414
|
/**
|
@@ -620,11 +620,11 @@ declare class WorkSpaces extends Service {
|
|
620
620
|
*/
|
621
621
|
startWorkspaces(callback?: (err: AWSError, data: WorkSpaces.Types.StartWorkspacesResult) => void): Request<WorkSpaces.Types.StartWorkspacesResult, AWSError>;
|
622
622
|
/**
|
623
|
-
* Starts the specified
|
623
|
+
* Starts the specified pool. You cannot start a pool unless it has a running mode of AutoStop and a state of STOPPED.
|
624
624
|
*/
|
625
625
|
startWorkspacesPool(params: WorkSpaces.Types.StartWorkspacesPoolRequest, callback?: (err: AWSError, data: WorkSpaces.Types.StartWorkspacesPoolResult) => void): Request<WorkSpaces.Types.StartWorkspacesPoolResult, AWSError>;
|
626
626
|
/**
|
627
|
-
* Starts the specified
|
627
|
+
* Starts the specified pool. You cannot start a pool unless it has a running mode of AutoStop and a state of STOPPED.
|
628
628
|
*/
|
629
629
|
startWorkspacesPool(callback?: (err: AWSError, data: WorkSpaces.Types.StartWorkspacesPoolResult) => void): Request<WorkSpaces.Types.StartWorkspacesPoolResult, AWSError>;
|
630
630
|
/**
|
@@ -636,11 +636,11 @@ declare class WorkSpaces extends Service {
|
|
636
636
|
*/
|
637
637
|
stopWorkspaces(callback?: (err: AWSError, data: WorkSpaces.Types.StopWorkspacesResult) => void): Request<WorkSpaces.Types.StopWorkspacesResult, AWSError>;
|
638
638
|
/**
|
639
|
-
* Stops the
|
639
|
+
* Stops the specified pool. You cannot stop a WorkSpace pool unless it has a running mode of AutoStop and a state of AVAILABLE, IMPAIRED, UNHEALTHY, or ERROR.
|
640
640
|
*/
|
641
641
|
stopWorkspacesPool(params: WorkSpaces.Types.StopWorkspacesPoolRequest, callback?: (err: AWSError, data: WorkSpaces.Types.StopWorkspacesPoolResult) => void): Request<WorkSpaces.Types.StopWorkspacesPoolResult, AWSError>;
|
642
642
|
/**
|
643
|
-
* Stops the
|
643
|
+
* Stops the specified pool. You cannot stop a WorkSpace pool unless it has a running mode of AutoStop and a state of AVAILABLE, IMPAIRED, UNHEALTHY, or ERROR.
|
644
644
|
*/
|
645
645
|
stopWorkspacesPool(callback?: (err: AWSError, data: WorkSpaces.Types.StopWorkspacesPoolResult) => void): Request<WorkSpaces.Types.StopWorkspacesPoolResult, AWSError>;
|
646
646
|
/**
|
@@ -652,19 +652,19 @@ declare class WorkSpaces extends Service {
|
|
652
652
|
*/
|
653
653
|
terminateWorkspaces(callback?: (err: AWSError, data: WorkSpaces.Types.TerminateWorkspacesResult) => void): Request<WorkSpaces.Types.TerminateWorkspacesResult, AWSError>;
|
654
654
|
/**
|
655
|
-
* Terminates the specified
|
655
|
+
* Terminates the specified pool.
|
656
656
|
*/
|
657
657
|
terminateWorkspacesPool(params: WorkSpaces.Types.TerminateWorkspacesPoolRequest, callback?: (err: AWSError, data: WorkSpaces.Types.TerminateWorkspacesPoolResult) => void): Request<WorkSpaces.Types.TerminateWorkspacesPoolResult, AWSError>;
|
658
658
|
/**
|
659
|
-
* Terminates the specified
|
659
|
+
* Terminates the specified pool.
|
660
660
|
*/
|
661
661
|
terminateWorkspacesPool(callback?: (err: AWSError, data: WorkSpaces.Types.TerminateWorkspacesPoolResult) => void): Request<WorkSpaces.Types.TerminateWorkspacesPoolResult, AWSError>;
|
662
662
|
/**
|
663
|
-
* Terminates the
|
663
|
+
* Terminates the pool session.
|
664
664
|
*/
|
665
665
|
terminateWorkspacesPoolSession(params: WorkSpaces.Types.TerminateWorkspacesPoolSessionRequest, callback?: (err: AWSError, data: WorkSpaces.Types.TerminateWorkspacesPoolSessionResult) => void): Request<WorkSpaces.Types.TerminateWorkspacesPoolSessionResult, AWSError>;
|
666
666
|
/**
|
667
|
-
* Terminates the
|
667
|
+
* Terminates the pool session.
|
668
668
|
*/
|
669
669
|
terminateWorkspacesPoolSession(callback?: (err: AWSError, data: WorkSpaces.Types.TerminateWorkspacesPoolSessionResult) => void): Request<WorkSpaces.Types.TerminateWorkspacesPoolSessionResult, AWSError>;
|
670
670
|
/**
|
@@ -708,11 +708,11 @@ declare class WorkSpaces extends Service {
|
|
708
708
|
*/
|
709
709
|
updateWorkspaceImagePermission(callback?: (err: AWSError, data: WorkSpaces.Types.UpdateWorkspaceImagePermissionResult) => void): Request<WorkSpaces.Types.UpdateWorkspaceImagePermissionResult, AWSError>;
|
710
710
|
/**
|
711
|
-
* Updates the specified
|
711
|
+
* Updates the specified pool.
|
712
712
|
*/
|
713
713
|
updateWorkspacesPool(params: WorkSpaces.Types.UpdateWorkspacesPoolRequest, callback?: (err: AWSError, data: WorkSpaces.Types.UpdateWorkspacesPoolResult) => void): Request<WorkSpaces.Types.UpdateWorkspacesPoolResult, AWSError>;
|
714
714
|
/**
|
715
|
-
* Updates the specified
|
715
|
+
* Updates the specified pool.
|
716
716
|
*/
|
717
717
|
updateWorkspacesPool(callback?: (err: AWSError, data: WorkSpaces.Types.UpdateWorkspacesPoolResult) => void): Request<WorkSpaces.Types.UpdateWorkspacesPoolResult, AWSError>;
|
718
718
|
}
|
@@ -985,7 +985,7 @@ declare namespace WorkSpaces {
|
|
985
985
|
*/
|
986
986
|
DesiredUserSessions: DesiredUserSessions;
|
987
987
|
/**
|
988
|
-
* The total number of session slots that are available for WorkSpaces
|
988
|
+
* The total number of session slots that are available for a pool of WorkSpaces.
|
989
989
|
*/
|
990
990
|
ActualUserSessions: ActualUserSessions;
|
991
991
|
/**
|
@@ -1358,41 +1358,41 @@ declare namespace WorkSpaces {
|
|
1358
1358
|
}
|
1359
1359
|
export interface CreateWorkspacesPoolRequest {
|
1360
1360
|
/**
|
1361
|
-
* The name of the
|
1361
|
+
* The name of the pool.
|
1362
1362
|
*/
|
1363
1363
|
PoolName: WorkspacesPoolName;
|
1364
1364
|
/**
|
1365
|
-
* The
|
1365
|
+
* The pool description.
|
1366
1366
|
*/
|
1367
1367
|
Description: UpdateDescription;
|
1368
1368
|
/**
|
1369
|
-
* The identifier of the bundle for the
|
1369
|
+
* The identifier of the bundle for the pool.
|
1370
1370
|
*/
|
1371
1371
|
BundleId: BundleId;
|
1372
1372
|
/**
|
1373
|
-
* The identifier of the directory for the
|
1373
|
+
* The identifier of the directory for the pool.
|
1374
1374
|
*/
|
1375
1375
|
DirectoryId: DirectoryId;
|
1376
1376
|
/**
|
1377
|
-
* The user capacity of the
|
1377
|
+
* The user capacity of the pool.
|
1378
1378
|
*/
|
1379
1379
|
Capacity: Capacity;
|
1380
1380
|
/**
|
1381
|
-
* The tags for the
|
1381
|
+
* The tags for the pool.
|
1382
1382
|
*/
|
1383
1383
|
Tags?: TagList;
|
1384
1384
|
/**
|
1385
|
-
* Indicates the application settings of the
|
1385
|
+
* Indicates the application settings of the pool.
|
1386
1386
|
*/
|
1387
1387
|
ApplicationSettings?: ApplicationSettingsRequest;
|
1388
1388
|
/**
|
1389
|
-
* Indicates the timeout settings of the
|
1389
|
+
* Indicates the timeout settings of the pool.
|
1390
1390
|
*/
|
1391
1391
|
TimeoutSettings?: TimeoutSettings;
|
1392
1392
|
}
|
1393
1393
|
export interface CreateWorkspacesPoolResult {
|
1394
1394
|
/**
|
1395
|
-
* Indicates the
|
1395
|
+
* Indicates the pool to create.
|
1396
1396
|
*/
|
1397
1397
|
WorkspacesPool?: WorkspacesPool;
|
1398
1398
|
}
|
@@ -2071,7 +2071,7 @@ declare namespace WorkSpaces {
|
|
2071
2071
|
}
|
2072
2072
|
export interface DescribeWorkspacesPoolSessionsRequest {
|
2073
2073
|
/**
|
2074
|
-
* The identifier of the
|
2074
|
+
* The identifier of the pool.
|
2075
2075
|
*/
|
2076
2076
|
PoolId: WorkspacesPoolId;
|
2077
2077
|
/**
|
@@ -2089,7 +2089,7 @@ declare namespace WorkSpaces {
|
|
2089
2089
|
}
|
2090
2090
|
export interface DescribeWorkspacesPoolSessionsResult {
|
2091
2091
|
/**
|
2092
|
-
* Describes the
|
2092
|
+
* Describes the pool sessions.
|
2093
2093
|
*/
|
2094
2094
|
Sessions?: WorkspacesPoolSessions;
|
2095
2095
|
/**
|
@@ -2103,11 +2103,11 @@ declare namespace WorkSpaces {
|
|
2103
2103
|
*/
|
2104
2104
|
Name: DescribeWorkspacesPoolsFilterName;
|
2105
2105
|
/**
|
2106
|
-
* The values for filtering WorkSpaces
|
2106
|
+
* The values for filtering WorkSpaces Pools.
|
2107
2107
|
*/
|
2108
2108
|
Values: DescribeWorkspacesPoolsFilterValues;
|
2109
2109
|
/**
|
2110
|
-
* The operator values for filtering WorkSpaces
|
2110
|
+
* The operator values for filtering WorkSpaces Pools.
|
2111
2111
|
*/
|
2112
2112
|
Operator: DescribeWorkspacesPoolsFilterOperator;
|
2113
2113
|
}
|
@@ -2118,11 +2118,11 @@ declare namespace WorkSpaces {
|
|
2118
2118
|
export type DescribeWorkspacesPoolsFilters = DescribeWorkspacesPoolsFilter[];
|
2119
2119
|
export interface DescribeWorkspacesPoolsRequest {
|
2120
2120
|
/**
|
2121
|
-
* The identifier of the WorkSpaces
|
2121
|
+
* The identifier of the WorkSpaces Pools.
|
2122
2122
|
*/
|
2123
2123
|
PoolIds?: WorkspacesPoolIds;
|
2124
2124
|
/**
|
2125
|
-
* The filter conditions for the WorkSpaces
|
2125
|
+
* The filter conditions for the WorkSpaces Pool to return.
|
2126
2126
|
*/
|
2127
2127
|
Filters?: DescribeWorkspacesPoolsFilters;
|
2128
2128
|
/**
|
@@ -2136,7 +2136,7 @@ declare namespace WorkSpaces {
|
|
2136
2136
|
}
|
2137
2137
|
export interface DescribeWorkspacesPoolsResult {
|
2138
2138
|
/**
|
2139
|
-
* Information about the WorkSpaces
|
2139
|
+
* Information about the WorkSpaces Pools.
|
2140
2140
|
*/
|
2141
2141
|
WorkspacesPools?: WorkspacesPools;
|
2142
2142
|
/**
|
@@ -2760,7 +2760,7 @@ declare namespace WorkSpaces {
|
|
2760
2760
|
*/
|
2761
2761
|
Type?: OperatingSystemType;
|
2762
2762
|
}
|
2763
|
-
export type OperatingSystemName = "AMAZON_LINUX_2"|"UBUNTU_18_04"|"UBUNTU_20_04"|"UBUNTU_22_04"|"UNKNOWN"|"WINDOWS_10"|"WINDOWS_11"|"WINDOWS_7"|"WINDOWS_SERVER_2016"|"WINDOWS_SERVER_2019"|"WINDOWS_SERVER_2022"|string;
|
2763
|
+
export type OperatingSystemName = "AMAZON_LINUX_2"|"UBUNTU_18_04"|"UBUNTU_20_04"|"UBUNTU_22_04"|"UNKNOWN"|"WINDOWS_10"|"WINDOWS_11"|"WINDOWS_7"|"WINDOWS_SERVER_2016"|"WINDOWS_SERVER_2019"|"WINDOWS_SERVER_2022"|"RHEL_8"|string;
|
2764
2764
|
export type OperatingSystemNameList = OperatingSystemName[];
|
2765
2765
|
export type OperatingSystemType = "WINDOWS"|"LINUX"|string;
|
2766
2766
|
export type PaginationToken = string;
|
@@ -3046,7 +3046,7 @@ declare namespace WorkSpaces {
|
|
3046
3046
|
export type StartWorkspaceRequests = StartRequest[];
|
3047
3047
|
export interface StartWorkspacesPoolRequest {
|
3048
3048
|
/**
|
3049
|
-
* The identifier of the
|
3049
|
+
* The identifier of the pool.
|
3050
3050
|
*/
|
3051
3051
|
PoolId: WorkspacesPoolId;
|
3052
3052
|
}
|
@@ -3073,7 +3073,7 @@ declare namespace WorkSpaces {
|
|
3073
3073
|
export type StopWorkspaceRequests = StopRequest[];
|
3074
3074
|
export interface StopWorkspacesPoolRequest {
|
3075
3075
|
/**
|
3076
|
-
* The identifier of the
|
3076
|
+
* The identifier of the pool.
|
3077
3077
|
*/
|
3078
3078
|
PoolId: WorkspacesPoolId;
|
3079
3079
|
}
|
@@ -3147,7 +3147,7 @@ declare namespace WorkSpaces {
|
|
3147
3147
|
export type TerminateWorkspaceRequests = TerminateRequest[];
|
3148
3148
|
export interface TerminateWorkspacesPoolRequest {
|
3149
3149
|
/**
|
3150
|
-
* The identifier of the
|
3150
|
+
* The identifier of the pool.
|
3151
3151
|
*/
|
3152
3152
|
PoolId: WorkspacesPoolId;
|
3153
3153
|
}
|
@@ -3155,7 +3155,7 @@ declare namespace WorkSpaces {
|
|
3155
3155
|
}
|
3156
3156
|
export interface TerminateWorkspacesPoolSessionRequest {
|
3157
3157
|
/**
|
3158
|
-
* The identifier of the
|
3158
|
+
* The identifier of the pool session.
|
3159
3159
|
*/
|
3160
3160
|
SessionId: AmazonUuid;
|
3161
3161
|
}
|
@@ -3273,11 +3273,11 @@ declare namespace WorkSpaces {
|
|
3273
3273
|
}
|
3274
3274
|
export interface UpdateWorkspacesPoolRequest {
|
3275
3275
|
/**
|
3276
|
-
* The identifier of the specified
|
3276
|
+
* The identifier of the specified pool to update.
|
3277
3277
|
*/
|
3278
3278
|
PoolId: WorkspacesPoolId;
|
3279
3279
|
/**
|
3280
|
-
* Describes the specified
|
3280
|
+
* Describes the specified pool to update.
|
3281
3281
|
*/
|
3282
3282
|
Description?: UpdateDescription;
|
3283
3283
|
/**
|
@@ -3289,7 +3289,7 @@ declare namespace WorkSpaces {
|
|
3289
3289
|
*/
|
3290
3290
|
DirectoryId?: DirectoryId;
|
3291
3291
|
/**
|
3292
|
-
* The desired capacity for the
|
3292
|
+
* The desired capacity for the pool.
|
3293
3293
|
*/
|
3294
3294
|
Capacity?: Capacity;
|
3295
3295
|
/**
|
@@ -3297,13 +3297,13 @@ declare namespace WorkSpaces {
|
|
3297
3297
|
*/
|
3298
3298
|
ApplicationSettings?: ApplicationSettingsRequest;
|
3299
3299
|
/**
|
3300
|
-
* Indicates the timeout settings of the specified
|
3300
|
+
* Indicates the timeout settings of the specified pool.
|
3301
3301
|
*/
|
3302
3302
|
TimeoutSettings?: TimeoutSettings;
|
3303
3303
|
}
|
3304
3304
|
export interface UpdateWorkspacesPoolResult {
|
3305
3305
|
/**
|
3306
|
-
* Describes the specified
|
3306
|
+
* Describes the specified pool.
|
3307
3307
|
*/
|
3308
3308
|
WorkspacesPool?: WorkspacesPool;
|
3309
3309
|
}
|
@@ -3895,11 +3895,11 @@ declare namespace WorkSpaces {
|
|
3895
3895
|
export type WorkspacesIpGroupsList = WorkspacesIpGroup[];
|
3896
3896
|
export interface WorkspacesPool {
|
3897
3897
|
/**
|
3898
|
-
* The identifier of a
|
3898
|
+
* The identifier of a pool.
|
3899
3899
|
*/
|
3900
3900
|
PoolId: WorkspacesPoolId;
|
3901
3901
|
/**
|
3902
|
-
* The Amazon Resource Name (ARN) for the
|
3902
|
+
* The Amazon Resource Name (ARN) for the pool.
|
3903
3903
|
*/
|
3904
3904
|
PoolArn: ARN;
|
3905
3905
|
/**
|
@@ -3960,7 +3960,7 @@ declare namespace WorkSpaces {
|
|
3960
3960
|
export type WorkspacesPoolName = string;
|
3961
3961
|
export interface WorkspacesPoolSession {
|
3962
3962
|
/**
|
3963
|
-
* The authentication method. The user is authenticated using a WorkSpaces
|
3963
|
+
* The authentication method. The user is authenticated using a WorkSpaces Pools URL (API) or SAML 2.0 federation (SAML).
|
3964
3964
|
*/
|
3965
3965
|
AuthenticationType?: AuthenticationType;
|
3966
3966
|
/**
|