aws-sdk 2.1650.0 → 2.1652.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/README.md +1 -1
  2. package/apis/apigateway-2015-07-09.min.json +7 -1
  3. package/apis/cloudhsmv2-2017-04-28.min.json +69 -17
  4. package/apis/cognito-identity-2014-06-30.min.json +23 -5
  5. package/apis/connect-2017-08-08.min.json +450 -286
  6. package/apis/connect-2017-08-08.paginators.json +6 -0
  7. package/apis/docdb-2014-10-31.min.json +7 -1
  8. package/apis/elasticmapreduce-2009-03-31.min.json +15 -3
  9. package/apis/glue-2017-03-31.min.json +93 -89
  10. package/apis/kinesisanalyticsv2-2018-05-23.min.json +4 -1
  11. package/apis/opensearch-2021-01-01.min.json +98 -141
  12. package/apis/payment-cryptography-2021-09-14.min.json +10 -1
  13. package/apis/payment-cryptography-data-2022-02-03.min.json +409 -367
  14. package/apis/payment-cryptography-data-2022-02-03.waiters2.json +5 -0
  15. package/apis/pi-2018-02-27.min.json +4 -1
  16. package/apis/states-2016-11-23.min.json +4 -1
  17. package/apis/swf-2012-01-25.min.json +4 -1
  18. package/apis/wafv2-2019-07-29.min.json +4 -1
  19. package/clients/acmpca.d.ts +3 -3
  20. package/clients/cloudhsmv2.d.ts +117 -34
  21. package/clients/connect.d.ts +213 -16
  22. package/clients/eks.d.ts +1 -1
  23. package/clients/emr.d.ts +12 -4
  24. package/clients/glue.d.ts +6 -0
  25. package/clients/kinesisanalyticsv2.d.ts +1 -1
  26. package/clients/opensearch.d.ts +0 -53
  27. package/clients/paymentcryptography.d.ts +3 -3
  28. package/clients/paymentcryptographydata.d.ts +302 -260
  29. package/clients/paymentcryptographydata.js +1 -0
  30. package/clients/pi.d.ts +2 -2
  31. package/clients/wafv2.d.ts +1 -1
  32. package/clients/workspaces.d.ts +44 -44
  33. package/dist/aws-sdk-core-react-native.js +1 -1
  34. package/dist/aws-sdk-react-native.js +303 -296
  35. package/dist/aws-sdk.js +573 -315
  36. package/dist/aws-sdk.min.js +107 -107
  37. package/lib/core.js +1 -1
  38. package/package.json +1 -1
@@ -9,6 +9,7 @@ Object.defineProperty(apiLoader.services['paymentcryptographydata'], '2022-02-03
9
9
  get: function get() {
10
10
  var model = require('../apis/payment-cryptography-data-2022-02-03.min.json');
11
11
  model.paginators = require('../apis/payment-cryptography-data-2022-02-03.paginators.json').pagination;
12
+ model.waiters = require('../apis/payment-cryptography-data-2022-02-03.waiters2.json').waiters;
12
13
  return model;
13
14
  },
14
15
  enumerable: true,
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
  }
@@ -1777,7 +1777,7 @@ declare namespace WAFV2 {
1777
1777
  */
1778
1778
  MatchScope: JsonMatchScope;
1779
1779
  /**
1780
- * What WAF should do if it fails to completely parse the JSON body. The options are the following: EVALUATE_AS_STRING - Inspect the body as plain text. WAF applies the text transformations and inspection criteria that you defined for the JSON inspection to the body text string. MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request. NO_MATCH - Treat the web request as not matching the rule statement. If you don't provide this setting, WAF parses and evaluates the content only up to the first parsing failure that it encounters. WAF does its best to parse the entire JSON body, but might be forced to stop for reasons such as invalid characters, duplicate keys, truncation, and any content whose root node isn't an object or an array. WAF parses the JSON in the following examples as two valid key, value pairs: Missing comma: {"key1":"value1""key2":"value2"} Missing colon: {"key1":"value1","key2""value2"} Extra colons: {"key1"::"value1","key2""value2"}
1780
+ * What WAF should do if it fails to completely parse the JSON body. The options are the following: EVALUATE_AS_STRING - Inspect the body as plain text. WAF applies the text transformations and inspection criteria that you defined for the JSON inspection to the body text string. MATCH - Treat the web request as matching the rule statement. WAF applies the rule action to the request. NO_MATCH - Treat the web request as not matching the rule statement. If you don't provide this setting, WAF parses and evaluates the content only up to the first parsing failure that it encounters. WAF parsing doesn't fully validate the input JSON string, so parsing can succeed even for invalid JSON. When parsing succeeds, WAF doesn't apply the fallback behavior. For more information, see JSON body in the WAF Developer Guide.
1781
1781
  */
1782
1782
  InvalidFallbackBehavior?: BodyParsingFallbackBehavior;
1783
1783
  /**
@@ -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 WorkSpaces pool.
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 WorkSpaces pool.
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 pool.
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 pool.
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 WorkSpaces pool. You cannot start a WorkSpace pool unless it has a running mode of AutoStop and a state of STOPPED.
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 WorkSpaces pool. You cannot start a WorkSpace pool unless it has a running mode of AutoStop and a state of STOPPED.
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 specifiedWorkSpaces pool. You cannot stop a WorkSpace pool unless it has a running mode of AutoStop and a state of AVAILABLE, IMPAIRED, UNHEALTHY, or ERROR.
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 specifiedWorkSpaces pool. You cannot stop a WorkSpace pool unless it has a running mode of AutoStop and a state of AVAILABLE, IMPAIRED, UNHEALTHY, or ERROR.
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 WorkSpaces pool.
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 WorkSpaces pool.
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 WorkSpaces pool session.
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 WorkSpaces pool session.
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 WorkSpaces pool.
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 WorkSpaces pool.
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 pools.
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 WorkSpaces pool.
1361
+ * The name of the pool.
1362
1362
  */
1363
1363
  PoolName: WorkspacesPoolName;
1364
1364
  /**
1365
- * The WorkSpaces pool description.
1365
+ * The pool description.
1366
1366
  */
1367
1367
  Description: UpdateDescription;
1368
1368
  /**
1369
- * The identifier of the bundle for the WorkSpaces pool.
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 WorkSpaces pool.
1373
+ * The identifier of the directory for the pool.
1374
1374
  */
1375
1375
  DirectoryId: DirectoryId;
1376
1376
  /**
1377
- * The user capacity of the WorkSpaces pool.
1377
+ * The user capacity of the pool.
1378
1378
  */
1379
1379
  Capacity: Capacity;
1380
1380
  /**
1381
- * The tags for the WorkSpaces pool.
1381
+ * The tags for the pool.
1382
1382
  */
1383
1383
  Tags?: TagList;
1384
1384
  /**
1385
- * Indicates the application settings of the WorkSpaces pool.
1385
+ * Indicates the application settings of the pool.
1386
1386
  */
1387
1387
  ApplicationSettings?: ApplicationSettingsRequest;
1388
1388
  /**
1389
- * Indicates the timeout settings of the WorkSpaces pool.
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 WorkSpaces pool to create.
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 WorkSpaces pool.
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 WorkSpaces pool sessions.
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 pools.
2106
+ * The values for filtering WorkSpaces Pools.
2107
2107
  */
2108
2108
  Values: DescribeWorkspacesPoolsFilterValues;
2109
2109
  /**
2110
- * The operator values for filtering WorkSpaces pools.
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 pool.
2121
+ * The identifier of the WorkSpaces Pools.
2122
2122
  */
2123
2123
  PoolIds?: WorkspacesPoolIds;
2124
2124
  /**
2125
- * The filter conditions for the WorkSpaces pool to return.
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 pools.
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 WorkSpaces pool.
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 WorkSpaces pool.
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 WorkSpaces pool.
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 WorkSpaces pool session.
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 WorkSpaces pool to update.
3276
+ * The identifier of the specified pool to update.
3277
3277
  */
3278
3278
  PoolId: WorkspacesPoolId;
3279
3279
  /**
3280
- * Describes the specified WorkSpaces pool to update.
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 WorkSpaces pool.
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 WorkSpaces pool.
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 WorkSpaces pool.
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 WorkSpaces pool.
3898
+ * The identifier of a pool.
3899
3899
  */
3900
3900
  PoolId: WorkspacesPoolId;
3901
3901
  /**
3902
- * The Amazon Resource Name (ARN) for the WorkSpaces pool.
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 pool URL (API) or SAML 2.0 federation (SAML).
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
  /**
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1650.0',
86
+ VERSION: '2.1652.0',
87
87
 
88
88
  /**
89
89
  * @api private