cdk-comprehend-s3olap 2.0.8 → 2.0.11

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 (51) hide show
  1. package/.jsii +5 -5
  2. package/lib/cdk-comprehend-s3olap.js +2 -2
  3. package/lib/comprehend-lambdas.js +2 -2
  4. package/lib/iam-roles.js +4 -4
  5. package/node_modules/aws-sdk/CHANGELOG.md +16 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/connectcampaigns-2021-01-30.examples.json +5 -0
  8. package/node_modules/aws-sdk/apis/connectcampaigns-2021-01-30.min.json +767 -0
  9. package/node_modules/aws-sdk/apis/connectcampaigns-2021-01-30.paginators.json +10 -0
  10. package/node_modules/aws-sdk/apis/finspace-data-2020-07-13.min.json +278 -73
  11. package/node_modules/aws-sdk/apis/guardduty-2017-11-28.min.json +325 -98
  12. package/node_modules/aws-sdk/apis/metadata.json +6 -0
  13. package/node_modules/aws-sdk/apis/redshift-data-2019-12-20.min.json +25 -16
  14. package/node_modules/aws-sdk/apis/redshiftserverless-2021-04-21.examples.json +5 -0
  15. package/node_modules/aws-sdk/apis/redshiftserverless-2021-04-21.min.json +1206 -0
  16. package/node_modules/aws-sdk/apis/redshiftserverless-2021-04-21.paginators.json +40 -0
  17. package/node_modules/aws-sdk/apis/securityhub-2018-10-26.min.json +841 -300
  18. package/node_modules/aws-sdk/apis/servicecatalog-appregistry-2020-06-24.min.json +45 -0
  19. package/node_modules/aws-sdk/apis/servicecatalog-appregistry-2020-06-24.paginators.json +6 -0
  20. package/node_modules/aws-sdk/clients/all.d.ts +2 -0
  21. package/node_modules/aws-sdk/clients/all.js +3 -1
  22. package/node_modules/aws-sdk/clients/connect.d.ts +1 -1
  23. package/node_modules/aws-sdk/clients/connectcampaigns.d.ts +446 -0
  24. package/node_modules/aws-sdk/clients/connectcampaigns.js +18 -0
  25. package/node_modules/aws-sdk/clients/dynamodb.d.ts +18 -18
  26. package/node_modules/aws-sdk/clients/dynamodbstreams.d.ts +1 -1
  27. package/node_modules/aws-sdk/clients/finspacedata.d.ts +201 -4
  28. package/node_modules/aws-sdk/clients/guardduty.d.ts +186 -4
  29. package/node_modules/aws-sdk/clients/redshiftdata.d.ts +51 -14
  30. package/node_modules/aws-sdk/clients/redshiftserverless.d.ts +1525 -0
  31. package/node_modules/aws-sdk/clients/redshiftserverless.js +18 -0
  32. package/node_modules/aws-sdk/clients/secretsmanager.d.ts +6 -6
  33. package/node_modules/aws-sdk/clients/securityhub.d.ts +1020 -19
  34. package/node_modules/aws-sdk/clients/servicecatalogappregistry.d.ts +49 -2
  35. package/node_modules/aws-sdk/clients/workspaces.d.ts +10 -10
  36. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  37. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +84 -10
  38. package/node_modules/aws-sdk/dist/aws-sdk.js +9 -3
  39. package/node_modules/aws-sdk/dist/aws-sdk.min.js +36 -36
  40. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +4 -0
  41. package/node_modules/aws-sdk/lib/core.js +1 -1
  42. package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +11 -11
  43. package/node_modules/aws-sdk/package.json +1 -1
  44. package/node_modules/esbuild/bin/esbuild +1 -0
  45. package/node_modules/esbuild/install.js +5 -4
  46. package/node_modules/esbuild/lib/main.d.ts +3 -1
  47. package/node_modules/esbuild/lib/main.js +15 -10
  48. package/node_modules/esbuild/package.json +21 -21
  49. package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
  50. package/node_modules/esbuild-linux-64/package.json +1 -1
  51. package/package.json +11 -11
@@ -15,11 +15,11 @@ declare class DynamoDB extends DynamoDBCustomizations {
15
15
  constructor(options?: DynamoDB.Types.ClientConfiguration)
16
16
  config: Config & DynamoDB.Types.ClientConfiguration;
17
17
  /**
18
- * This operation allows you to perform batch reads or writes on data stored in DynamoDB, using PartiQL. The entire batch must consist of either read statements or write statements, you cannot mix both in one batch.
18
+ * This operation allows you to perform batch reads or writes on data stored in DynamoDB, using PartiQL. Each read statement in a BatchExecuteStatement must specify an equality condition on all key attributes. This enforces that each SELECT statement in a batch returns at most a single item. The entire batch must consist of either read statements or write statements, you cannot mix both in one batch. A HTTP 200 response does not mean that all statements in the BatchExecuteStatement succeeded. Error details for individual statements can be found under the Error field of the BatchStatementResponse for each statement.
19
19
  */
20
20
  batchExecuteStatement(params: DynamoDB.Types.BatchExecuteStatementInput, callback?: (err: AWSError, data: DynamoDB.Types.BatchExecuteStatementOutput) => void): Request<DynamoDB.Types.BatchExecuteStatementOutput, AWSError>;
21
21
  /**
22
- * This operation allows you to perform batch reads or writes on data stored in DynamoDB, using PartiQL. The entire batch must consist of either read statements or write statements, you cannot mix both in one batch.
22
+ * This operation allows you to perform batch reads or writes on data stored in DynamoDB, using PartiQL. Each read statement in a BatchExecuteStatement must specify an equality condition on all key attributes. This enforces that each SELECT statement in a batch returns at most a single item. The entire batch must consist of either read statements or write statements, you cannot mix both in one batch. A HTTP 200 response does not mean that all statements in the BatchExecuteStatement succeeded. Error details for individual statements can be found under the Error field of the BatchStatementResponse for each statement.
23
23
  */
24
24
  batchExecuteStatement(callback?: (err: AWSError, data: DynamoDB.Types.BatchExecuteStatementOutput) => void): Request<DynamoDB.Types.BatchExecuteStatementOutput, AWSError>;
25
25
  /**
@@ -279,11 +279,11 @@ declare class DynamoDB extends DynamoDBCustomizations {
279
279
  */
280
280
  listTagsOfResource(callback?: (err: AWSError, data: DynamoDB.Types.ListTagsOfResourceOutput) => void): Request<DynamoDB.Types.ListTagsOfResourceOutput, AWSError>;
281
281
  /**
282
- * Creates a new item, or replaces an old item with a new item. If an item that has the same primary key as the new item already exists in the specified table, the new item completely replaces the existing item. You can perform a conditional put operation (add a new item if one with the specified primary key doesn't exist), or replace an existing item if it has certain attribute values. You can return the item's attribute values in the same operation, using the ReturnValues parameter. This topic provides general information about the PutItem API. For information on how to call the PutItem API using the Amazon Web Services SDK in specific languages, see the following: PutItem in the Command Line Interface PutItem in the SDK for .NET PutItem in the SDK for C++ PutItem in the SDK for Go PutItem in the SDK for Java PutItem in the SDK for JavaScript PutItem in the SDK for PHP V3 PutItem in the SDK for Python (Boto) PutItem in the SDK for Ruby V2 When you add an item, the primary key attributes are the only required attributes. Attribute values cannot be null. Empty String and Binary attribute values are allowed. Attribute values of type String and Binary must have a length greater than zero if the attribute is used as a key attribute for a table or index. Set type attributes cannot be empty. Invalid Requests with empty values will be rejected with a ValidationException exception. To prevent a new item from replacing an existing item, use a conditional expression that contains the attribute_not_exists function with the name of the attribute being used as the partition key for the table. Since every record must contain that attribute, the attribute_not_exists function will only succeed if no matching item exists. For more information about PutItem, see Working with Items in the Amazon DynamoDB Developer Guide.
282
+ * Creates a new item, or replaces an old item with a new item. If an item that has the same primary key as the new item already exists in the specified table, the new item completely replaces the existing item. You can perform a conditional put operation (add a new item if one with the specified primary key doesn't exist), or replace an existing item if it has certain attribute values. You can return the item's attribute values in the same operation, using the ReturnValues parameter. When you add an item, the primary key attributes are the only required attributes. Attribute values cannot be null. Empty String and Binary attribute values are allowed. Attribute values of type String and Binary must have a length greater than zero if the attribute is used as a key attribute for a table or index. Set type attributes cannot be empty. Invalid Requests with empty values will be rejected with a ValidationException exception. To prevent a new item from replacing an existing item, use a conditional expression that contains the attribute_not_exists function with the name of the attribute being used as the partition key for the table. Since every record must contain that attribute, the attribute_not_exists function will only succeed if no matching item exists. For more information about PutItem, see Working with Items in the Amazon DynamoDB Developer Guide.
283
283
  */
284
284
  putItem(params: DynamoDB.Types.PutItemInput, callback?: (err: AWSError, data: DynamoDB.Types.PutItemOutput) => void): Request<DynamoDB.Types.PutItemOutput, AWSError>;
285
285
  /**
286
- * Creates a new item, or replaces an old item with a new item. If an item that has the same primary key as the new item already exists in the specified table, the new item completely replaces the existing item. You can perform a conditional put operation (add a new item if one with the specified primary key doesn't exist), or replace an existing item if it has certain attribute values. You can return the item's attribute values in the same operation, using the ReturnValues parameter. This topic provides general information about the PutItem API. For information on how to call the PutItem API using the Amazon Web Services SDK in specific languages, see the following: PutItem in the Command Line Interface PutItem in the SDK for .NET PutItem in the SDK for C++ PutItem in the SDK for Go PutItem in the SDK for Java PutItem in the SDK for JavaScript PutItem in the SDK for PHP V3 PutItem in the SDK for Python (Boto) PutItem in the SDK for Ruby V2 When you add an item, the primary key attributes are the only required attributes. Attribute values cannot be null. Empty String and Binary attribute values are allowed. Attribute values of type String and Binary must have a length greater than zero if the attribute is used as a key attribute for a table or index. Set type attributes cannot be empty. Invalid Requests with empty values will be rejected with a ValidationException exception. To prevent a new item from replacing an existing item, use a conditional expression that contains the attribute_not_exists function with the name of the attribute being used as the partition key for the table. Since every record must contain that attribute, the attribute_not_exists function will only succeed if no matching item exists. For more information about PutItem, see Working with Items in the Amazon DynamoDB Developer Guide.
286
+ * Creates a new item, or replaces an old item with a new item. If an item that has the same primary key as the new item already exists in the specified table, the new item completely replaces the existing item. You can perform a conditional put operation (add a new item if one with the specified primary key doesn't exist), or replace an existing item if it has certain attribute values. You can return the item's attribute values in the same operation, using the ReturnValues parameter. When you add an item, the primary key attributes are the only required attributes. Attribute values cannot be null. Empty String and Binary attribute values are allowed. Attribute values of type String and Binary must have a length greater than zero if the attribute is used as a key attribute for a table or index. Set type attributes cannot be empty. Invalid Requests with empty values will be rejected with a ValidationException exception. To prevent a new item from replacing an existing item, use a conditional expression that contains the attribute_not_exists function with the name of the attribute being used as the partition key for the table. Since every record must contain that attribute, the attribute_not_exists function will only succeed if no matching item exists. For more information about PutItem, see Working with Items in the Amazon DynamoDB Developer Guide.
287
287
  */
288
288
  putItem(callback?: (err: AWSError, data: DynamoDB.Types.PutItemOutput) => void): Request<DynamoDB.Types.PutItemOutput, AWSError>;
289
289
  /**
@@ -391,11 +391,11 @@ declare class DynamoDB extends DynamoDBCustomizations {
391
391
  */
392
392
  updateItem(callback?: (err: AWSError, data: DynamoDB.Types.UpdateItemOutput) => void): Request<DynamoDB.Types.UpdateItemOutput, AWSError>;
393
393
  /**
394
- * Modifies the provisioned throughput settings, global secondary indexes, or DynamoDB Streams settings for a given table. You can only perform one of the following operations at once: Modify the provisioned throughput settings of the table. Enable or disable DynamoDB Streams on the table. Remove a global secondary index from the table. Create a new global secondary index on the table. After the index begins backfilling, you can use UpdateTable to perform other operations. UpdateTable is an asynchronous operation; while it is executing, the table status changes from ACTIVE to UPDATING. While it is UPDATING, you cannot issue another UpdateTable request. When the table returns to the ACTIVE state, the UpdateTable operation is complete.
394
+ * Modifies the provisioned throughput settings, global secondary indexes, or DynamoDB Streams settings for a given table. You can only perform one of the following operations at once: Modify the provisioned throughput settings of the table. Remove a global secondary index from the table. Create a new global secondary index on the table. After the index begins backfilling, you can use UpdateTable to perform other operations. UpdateTable is an asynchronous operation; while it is executing, the table status changes from ACTIVE to UPDATING. While it is UPDATING, you cannot issue another UpdateTable request. When the table returns to the ACTIVE state, the UpdateTable operation is complete.
395
395
  */
396
396
  updateTable(params: DynamoDB.Types.UpdateTableInput, callback?: (err: AWSError, data: DynamoDB.Types.UpdateTableOutput) => void): Request<DynamoDB.Types.UpdateTableOutput, AWSError>;
397
397
  /**
398
- * Modifies the provisioned throughput settings, global secondary indexes, or DynamoDB Streams settings for a given table. You can only perform one of the following operations at once: Modify the provisioned throughput settings of the table. Enable or disable DynamoDB Streams on the table. Remove a global secondary index from the table. Create a new global secondary index on the table. After the index begins backfilling, you can use UpdateTable to perform other operations. UpdateTable is an asynchronous operation; while it is executing, the table status changes from ACTIVE to UPDATING. While it is UPDATING, you cannot issue another UpdateTable request. When the table returns to the ACTIVE state, the UpdateTable operation is complete.
398
+ * Modifies the provisioned throughput settings, global secondary indexes, or DynamoDB Streams settings for a given table. You can only perform one of the following operations at once: Modify the provisioned throughput settings of the table. Remove a global secondary index from the table. Create a new global secondary index on the table. After the index begins backfilling, you can use UpdateTable to perform other operations. UpdateTable is an asynchronous operation; while it is executing, the table status changes from ACTIVE to UPDATING. While it is UPDATING, you cannot issue another UpdateTable request. When the table returns to the ACTIVE state, the UpdateTable operation is complete.
399
399
  */
400
400
  updateTable(callback?: (err: AWSError, data: DynamoDB.Types.UpdateTableOutput) => void): Request<DynamoDB.Types.UpdateTableOutput, AWSError>;
401
401
  /**
@@ -497,7 +497,7 @@ declare namespace DynamoDB {
497
497
  */
498
498
  M?: MapAttributeValue;
499
499
  /**
500
- * An attribute of type List. For example: "L": [ {"S": "Cookies"} , {"S": "Coffee"}, {"N", "3.14159"}]
500
+ * An attribute of type List. For example: "L": [ {"S": "Cookies"} , {"S": "Coffee"}, {"N": "3.14159"}]
501
501
  */
502
502
  L?: ListAttributeValue;
503
503
  /**
@@ -516,7 +516,7 @@ declare namespace DynamoDB {
516
516
  */
517
517
  Value?: AttributeValue;
518
518
  /**
519
- * Specifies how to perform the update. Valid values are PUT (default), DELETE, and ADD. The behavior depends on whether the specified primary key already exists in the table. If an item with the specified Key is found in the table: PUT - Adds the specified attribute to the item. If the attribute already exists, it is replaced by the new value. DELETE - If no value is specified, the attribute and its value are removed from the item. The data type of the specified value must match the existing value's data type. If a set of values is specified, then those values are subtracted from the old set. For example, if the attribute value was the set [a,b,c] and the DELETE action specified [a,c], then the final attribute value would be [b]. Specifying an empty set is an error. ADD - If the attribute does not already exist, then the attribute and its values are added to the item. If the attribute does exist, then the behavior of ADD depends on the data type of the attribute: If the existing attribute is a number, and if Value is also a number, then the Value is mathematically added to the existing attribute. If Value is a negative number, then it is subtracted from the existing attribute. If you use ADD to increment or decrement a number value for an item that doesn't exist before the update, DynamoDB uses 0 as the initial value. In addition, if you use ADD to update an existing item, and intend to increment or decrement an attribute value which does not yet exist, DynamoDB uses 0 as the initial value. For example, suppose that the item you want to update does not yet have an attribute named itemcount, but you decide to ADD the number 3 to this attribute anyway, even though it currently does not exist. DynamoDB will create the itemcount attribute, set its initial value to 0, and finally add 3 to it. The result will be a new itemcount attribute in the item, with a value of 3. If the existing data type is a set, and if the Value is also a set, then the Value is added to the existing set. (This is a set operation, not mathematical addition.) For example, if the attribute value was the set [1,2], and the ADD action specified [3], then the final attribute value would be [1,2,3]. An error occurs if an Add action is specified for a set attribute and the attribute type specified does not match the existing set type. Both sets must have the same primitive data type. For example, if the existing data type is a set of strings, the Value must also be a set of strings. The same holds true for number sets and binary sets. This action is only valid for an existing attribute whose data type is number or is a set. Do not use ADD for any other data types. If no item with the specified Key is found: PUT - DynamoDB creates a new item with the specified primary key, and then adds the attribute. DELETE - Nothing happens; there is no attribute to delete. ADD - DynamoDB creates an item with the supplied primary key and number (or set of numbers) for the attribute value. The only data types allowed are number and number set; no other data types can be specified.
519
+ * Specifies how to perform the update. Valid values are PUT (default), DELETE, and ADD. The behavior depends on whether the specified primary key already exists in the table. If an item with the specified Key is found in the table: PUT - Adds the specified attribute to the item. If the attribute already exists, it is replaced by the new value. DELETE - If no value is specified, the attribute and its value are removed from the item. The data type of the specified value must match the existing value's data type. If a set of values is specified, then those values are subtracted from the old set. For example, if the attribute value was the set [a,b,c] and the DELETE action specified [a,c], then the final attribute value would be [b]. Specifying an empty set is an error. ADD - If the attribute does not already exist, then the attribute and its values are added to the item. If the attribute does exist, then the behavior of ADD depends on the data type of the attribute: If the existing attribute is a number, and if Value is also a number, then the Value is mathematically added to the existing attribute. If Value is a negative number, then it is subtracted from the existing attribute. If you use ADD to increment or decrement a number value for an item that doesn't exist before the update, DynamoDB uses 0 as the initial value. In addition, if you use ADD to update an existing item, and intend to increment or decrement an attribute value which does not yet exist, DynamoDB uses 0 as the initial value. For example, suppose that the item you want to update does not yet have an attribute named itemcount, but you decide to ADD the number 3 to this attribute anyway, even though it currently does not exist. DynamoDB will create the itemcount attribute, set its initial value to 0, and finally add 3 to it. The result will be a new itemcount attribute in the item, with a value of 3. If the existing data type is a set, and if the Value is also a set, then the Value is added to the existing set. (This is a set operation, not mathematical addition.) For example, if the attribute value was the set [1,2], and the ADD action specified [3], then the final attribute value would be [1,2,3]. An error occurs if an Add action is specified for a set attribute and the attribute type specified does not match the existing set type. Both sets must have the same primitive data type. For example, if the existing data type is a set of strings, the Value must also be a set of strings. The same holds true for number sets and binary sets. This action is only valid for an existing attribute whose data type is number or is a set. Do not use ADD for any other data types. If no item with the specified Key is found: PUT - DynamoDB creates a new item with the specified primary key, and then adds the attribute. DELETE - Nothing happens; there is no attribute to delete. ADD - DynamoDB creates a new item with the supplied primary key and number (or set) for the attribute value. The only data types allowed are number, number set, string set or binary set.
520
520
  */
521
521
  Action?: AttributeAction;
522
522
  }
@@ -650,7 +650,7 @@ declare namespace DynamoDB {
650
650
  */
651
651
  BackupName: BackupName;
652
652
  /**
653
- * Size of the backup in bytes.
653
+ * Size of the backup in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.
654
654
  */
655
655
  BackupSizeBytes?: BackupSizeBytes;
656
656
  /**
@@ -1151,7 +1151,7 @@ declare namespace DynamoDB {
1151
1151
  */
1152
1152
  ConditionalOperator?: ConditionalOperator;
1153
1153
  /**
1154
- * Use ReturnValues if you want to get the item attributes as they appeared before they were deleted. For DeleteItem, the valid values are: NONE - If ReturnValues is not specified, or if its value is NONE, then nothing is returned. (This setting is the default for ReturnValues.) ALL_OLD - The content of the old item is returned. The ReturnValues parameter is used by several DynamoDB operations; however, DeleteItem does not recognize any values other than NONE or ALL_OLD.
1154
+ * Use ReturnValues if you want to get the item attributes as they appeared before they were deleted. For DeleteItem, the valid values are: NONE - If ReturnValues is not specified, or if its value is NONE, then nothing is returned. (This setting is the default for ReturnValues.) ALL_OLD - The content of the old item is returned. There is no additional cost associated with requesting a return value aside from the small network and processing overhead of receiving a larger response. No read capacity units are consumed. The ReturnValues parameter is used by several DynamoDB operations; however, DeleteItem does not recognize any values other than NONE or ALL_OLD.
1155
1155
  */
1156
1156
  ReturnValues?: ReturnValue;
1157
1157
  ReturnConsumedCapacity?: ReturnConsumedCapacity;
@@ -1594,7 +1594,7 @@ declare namespace DynamoDB {
1594
1594
  */
1595
1595
  TableArn: TableArn;
1596
1596
  /**
1597
- * Time in the past from which to export table data. The table export will be a snapshot of the table's state at this point in time.
1597
+ * Time in the past from which to export table data, counted in seconds from the start of the Unix epoch. The table export will be a snapshot of the table's state at this point in time.
1598
1598
  */
1599
1599
  ExportTime?: ExportTime;
1600
1600
  /**
@@ -1987,7 +1987,7 @@ declare namespace DynamoDB {
1987
1987
  */
1988
1988
  ExclusiveStartBackupArn?: BackupArn;
1989
1989
  /**
1990
- * The backups from the table specified by BackupType are listed. Where BackupType can be: USER - On-demand backup created by you. SYSTEM - On-demand backup automatically created by DynamoDB. ALL - All types of on-demand backups (USER and SYSTEM).
1990
+ * The backups from the table specified by BackupType are listed. Where BackupType can be: USER - On-demand backup created by you. (The default setting if no other backup types are specified.) SYSTEM - On-demand backup automatically created by DynamoDB. ALL - All types of on-demand backups (USER and SYSTEM).
1991
1991
  */
1992
1992
  BackupType?: BackupTypeFilter;
1993
1993
  }
@@ -2227,7 +2227,7 @@ declare namespace DynamoDB {
2227
2227
  */
2228
2228
  ProjectionType?: ProjectionType;
2229
2229
  /**
2230
- * Represents the non-key attribute names which will be projected into the index. For local secondary indexes, the total count of NonKeyAttributes summed across all of the local secondary indexes, must not exceed 20. If you project the same attribute into two different indexes, this counts as two distinct attributes when determining the total.
2230
+ * Represents the non-key attribute names which will be projected into the index. For local secondary indexes, the total count of NonKeyAttributes summed across all of the local secondary indexes, must not exceed 100. If you project the same attribute into two different indexes, this counts as two distinct attributes when determining the total.
2231
2231
  */
2232
2232
  NonKeyAttributes?: NonKeyAttributeNameList;
2233
2233
  }
@@ -2311,7 +2311,7 @@ declare namespace DynamoDB {
2311
2311
  */
2312
2312
  Expected?: ExpectedAttributeMap;
2313
2313
  /**
2314
- * Use ReturnValues if you want to get the item attributes as they appeared before they were updated with the PutItem request. For PutItem, the valid values are: NONE - If ReturnValues is not specified, or if its value is NONE, then nothing is returned. (This setting is the default for ReturnValues.) ALL_OLD - If PutItem overwrote an attribute name-value pair, then the content of the old item is returned. The values returned are strongly consistent. The ReturnValues parameter is used by several DynamoDB operations; however, PutItem does not recognize any values other than NONE or ALL_OLD.
2314
+ * Use ReturnValues if you want to get the item attributes as they appeared before they were updated with the PutItem request. For PutItem, the valid values are: NONE - If ReturnValues is not specified, or if its value is NONE, then nothing is returned. (This setting is the default for ReturnValues.) ALL_OLD - If PutItem overwrote an attribute name-value pair, then the content of the old item is returned. The values returned are strongly consistent. There is no additional cost associated with requesting a return value aside from the small network and processing overhead of receiving a larger response. No read capacity units are consumed. The ReturnValues parameter is used by several DynamoDB operations; however, PutItem does not recognize any values other than NONE or ALL_OLD.
2315
2315
  */
2316
2316
  ReturnValues?: ReturnValue;
2317
2317
  ReturnConsumedCapacity?: ReturnConsumedCapacity;
@@ -2367,7 +2367,7 @@ declare namespace DynamoDB {
2367
2367
  */
2368
2368
  IndexName?: IndexName;
2369
2369
  /**
2370
- * The attributes to be returned in the result. You can retrieve all item attributes, specific item attributes, the count of matching items, or in the case of an index, some or all of the attributes projected into the index. ALL_ATTRIBUTES - Returns all of the item attributes from the specified table or index. If you query a local secondary index, then for each matching item in the index, DynamoDB fetches the entire item from the parent table. If the index is configured to project all item attributes, then all of the data can be obtained from the local secondary index, and no fetching is required. ALL_PROJECTED_ATTRIBUTES - Allowed only when querying an index. Retrieves all attributes that have been projected into the index. If the index is configured to project all attributes, this return value is equivalent to specifying ALL_ATTRIBUTES. COUNT - Returns the number of matching items, rather than the matching items themselves. SPECIFIC_ATTRIBUTES - Returns only the attributes listed in AttributesToGet. This return value is equivalent to specifying AttributesToGet without specifying any value for Select. If you query or scan a local secondary index and request only attributes that are projected into that index, the operation will read only the index and not the table. If any of the requested attributes are not projected into the local secondary index, DynamoDB fetches each of these attributes from the parent table. This extra fetching incurs additional throughput cost and latency. If you query or scan a global secondary index, you can only request attributes that are projected into the index. Global secondary index queries cannot fetch attributes from the parent table. If neither Select nor AttributesToGet are specified, DynamoDB defaults to ALL_ATTRIBUTES when accessing a table, and ALL_PROJECTED_ATTRIBUTES when accessing an index. You cannot use both Select and AttributesToGet together in a single request, unless the value for Select is SPECIFIC_ATTRIBUTES. (This usage is equivalent to specifying AttributesToGet without any value for Select.) If you use the ProjectionExpression parameter, then the value for Select can only be SPECIFIC_ATTRIBUTES. Any other value for Select will return an error.
2370
+ * The attributes to be returned in the result. You can retrieve all item attributes, specific item attributes, the count of matching items, or in the case of an index, some or all of the attributes projected into the index. ALL_ATTRIBUTES - Returns all of the item attributes from the specified table or index. If you query a local secondary index, then for each matching item in the index, DynamoDB fetches the entire item from the parent table. If the index is configured to project all item attributes, then all of the data can be obtained from the local secondary index, and no fetching is required. ALL_PROJECTED_ATTRIBUTES - Allowed only when querying an index. Retrieves all attributes that have been projected into the index. If the index is configured to project all attributes, this return value is equivalent to specifying ALL_ATTRIBUTES. COUNT - Returns the number of matching items, rather than the matching items themselves. SPECIFIC_ATTRIBUTES - Returns only the attributes listed in ProjectionExpression. This return value is equivalent to specifying ProjectionExpression without specifying any value for Select. If you query or scan a local secondary index and request only attributes that are projected into that index, the operation will read only the index and not the table. If any of the requested attributes are not projected into the local secondary index, DynamoDB fetches each of these attributes from the parent table. This extra fetching incurs additional throughput cost and latency. If you query or scan a global secondary index, you can only request attributes that are projected into the index. Global secondary index queries cannot fetch attributes from the parent table. If neither Select nor ProjectionExpression are specified, DynamoDB defaults to ALL_ATTRIBUTES when accessing a table, and ALL_PROJECTED_ATTRIBUTES when accessing an index. You cannot use both Select and ProjectionExpression together in a single request, unless the value for Select is SPECIFIC_ATTRIBUTES. (This usage is equivalent to specifying ProjectionExpression without any value for Select.) If you use the ProjectionExpression parameter, then the value for Select can only be SPECIFIC_ATTRIBUTES. Any other value for Select will return an error.
2371
2371
  */
2372
2372
  Select?: Select;
2373
2373
  /**
@@ -2859,7 +2859,7 @@ declare namespace DynamoDB {
2859
2859
  */
2860
2860
  Limit?: PositiveIntegerObject;
2861
2861
  /**
2862
- * The attributes to be returned in the result. You can retrieve all item attributes, specific item attributes, the count of matching items, or in the case of an index, some or all of the attributes projected into the index. ALL_ATTRIBUTES - Returns all of the item attributes from the specified table or index. If you query a local secondary index, then for each matching item in the index, DynamoDB fetches the entire item from the parent table. If the index is configured to project all item attributes, then all of the data can be obtained from the local secondary index, and no fetching is required. ALL_PROJECTED_ATTRIBUTES - Allowed only when querying an index. Retrieves all attributes that have been projected into the index. If the index is configured to project all attributes, this return value is equivalent to specifying ALL_ATTRIBUTES. COUNT - Returns the number of matching items, rather than the matching items themselves. SPECIFIC_ATTRIBUTES - Returns only the attributes listed in AttributesToGet. This return value is equivalent to specifying AttributesToGet without specifying any value for Select. If you query or scan a local secondary index and request only attributes that are projected into that index, the operation reads only the index and not the table. If any of the requested attributes are not projected into the local secondary index, DynamoDB fetches each of these attributes from the parent table. This extra fetching incurs additional throughput cost and latency. If you query or scan a global secondary index, you can only request attributes that are projected into the index. Global secondary index queries cannot fetch attributes from the parent table. If neither Select nor AttributesToGet are specified, DynamoDB defaults to ALL_ATTRIBUTES when accessing a table, and ALL_PROJECTED_ATTRIBUTES when accessing an index. You cannot use both Select and AttributesToGet together in a single request, unless the value for Select is SPECIFIC_ATTRIBUTES. (This usage is equivalent to specifying AttributesToGet without any value for Select.) If you use the ProjectionExpression parameter, then the value for Select can only be SPECIFIC_ATTRIBUTES. Any other value for Select will return an error.
2862
+ * The attributes to be returned in the result. You can retrieve all item attributes, specific item attributes, the count of matching items, or in the case of an index, some or all of the attributes projected into the index. ALL_ATTRIBUTES - Returns all of the item attributes from the specified table or index. If you query a local secondary index, then for each matching item in the index, DynamoDB fetches the entire item from the parent table. If the index is configured to project all item attributes, then all of the data can be obtained from the local secondary index, and no fetching is required. ALL_PROJECTED_ATTRIBUTES - Allowed only when querying an index. Retrieves all attributes that have been projected into the index. If the index is configured to project all attributes, this return value is equivalent to specifying ALL_ATTRIBUTES. COUNT - Returns the number of matching items, rather than the matching items themselves. SPECIFIC_ATTRIBUTES - Returns only the attributes listed in ProjectionExpression. This return value is equivalent to specifying ProjectionExpression without specifying any value for Select. If you query or scan a local secondary index and request only attributes that are projected into that index, the operation reads only the index and not the table. If any of the requested attributes are not projected into the local secondary index, DynamoDB fetches each of these attributes from the parent table. This extra fetching incurs additional throughput cost and latency. If you query or scan a global secondary index, you can only request attributes that are projected into the index. Global secondary index queries cannot fetch attributes from the parent table. If neither Select nor ProjectionExpression are specified, DynamoDB defaults to ALL_ATTRIBUTES when accessing a table, and ALL_PROJECTED_ATTRIBUTES when accessing an index. You cannot use both Select and ProjectionExpression together in a single request, unless the value for Select is SPECIFIC_ATTRIBUTES. (This usage is equivalent to specifying ProjectionExpression without any value for Select.) If you use the ProjectionExpression parameter, then the value for Select can only be SPECIFIC_ATTRIBUTES. Any other value for Select will return an error.
2863
2863
  */
2864
2864
  Select?: Select;
2865
2865
  /**
@@ -3079,11 +3079,11 @@ declare namespace DynamoDB {
3079
3079
  */
3080
3080
  BillingModeSummary?: BillingModeSummary;
3081
3081
  /**
3082
- * Represents one or more local secondary indexes on the table. Each index is scoped to a given partition key value. Tables with one or more local secondary indexes are subject to an item collection size limit, where the amount of data within a given item collection cannot exceed 10 GB. Each element is composed of: IndexName - The name of the local secondary index. KeySchema - Specifies the complete index key schema. The attribute names in the key schema must be between 1 and 255 characters (inclusive). The key schema must begin with the same partition key as the table. Projection - Specifies attributes that are copied (projected) from the table into the index. These are in addition to the primary key attributes and index key attributes, which are automatically projected. Each attribute specification is composed of: ProjectionType - One of the following: KEYS_ONLY - Only the index and primary keys are projected into the index. INCLUDE - Only the specified table attributes are projected into the index. The list of projected attributes is in NonKeyAttributes. ALL - All of the table attributes are projected into the index. NonKeyAttributes - A list of one or more non-key attribute names that are projected into the secondary index. The total count of attributes provided in NonKeyAttributes, summed across all of the secondary indexes, must not exceed 20. If you project the same attribute into two different indexes, this counts as two distinct attributes when determining the total. IndexSizeBytes - Represents the total size of the index, in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value. ItemCount - Represents the number of items in the index. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value. If the table is in the DELETING state, no information about indexes will be returned.
3082
+ * Represents one or more local secondary indexes on the table. Each index is scoped to a given partition key value. Tables with one or more local secondary indexes are subject to an item collection size limit, where the amount of data within a given item collection cannot exceed 10 GB. Each element is composed of: IndexName - The name of the local secondary index. KeySchema - Specifies the complete index key schema. The attribute names in the key schema must be between 1 and 255 characters (inclusive). The key schema must begin with the same partition key as the table. Projection - Specifies attributes that are copied (projected) from the table into the index. These are in addition to the primary key attributes and index key attributes, which are automatically projected. Each attribute specification is composed of: ProjectionType - One of the following: KEYS_ONLY - Only the index and primary keys are projected into the index. INCLUDE - Only the specified table attributes are projected into the index. The list of projected attributes is in NonKeyAttributes. ALL - All of the table attributes are projected into the index. NonKeyAttributes - A list of one or more non-key attribute names that are projected into the secondary index. The total count of attributes provided in NonKeyAttributes, summed across all of the secondary indexes, must not exceed 100. If you project the same attribute into two different indexes, this counts as two distinct attributes when determining the total. IndexSizeBytes - Represents the total size of the index, in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value. ItemCount - Represents the number of items in the index. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value. If the table is in the DELETING state, no information about indexes will be returned.
3083
3083
  */
3084
3084
  LocalSecondaryIndexes?: LocalSecondaryIndexDescriptionList;
3085
3085
  /**
3086
- * The global secondary indexes, if any, on the table. Each index is scoped to a given partition key value. Each element is composed of: Backfilling - If true, then the index is currently in the backfilling phase. Backfilling occurs only when a new global secondary index is added to the table. It is the process by which DynamoDB populates the new index with data from the table. (This attribute does not appear for indexes that were created during a CreateTable operation.) You can delete an index that is being created during the Backfilling phase when IndexStatus is set to CREATING and Backfilling is true. You can't delete the index that is being created when IndexStatus is set to CREATING and Backfilling is false. (This attribute does not appear for indexes that were created during a CreateTable operation.) IndexName - The name of the global secondary index. IndexSizeBytes - The total size of the global secondary index, in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value. IndexStatus - The current status of the global secondary index: CREATING - The index is being created. UPDATING - The index is being updated. DELETING - The index is being deleted. ACTIVE - The index is ready for use. ItemCount - The number of items in the global secondary index. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value. KeySchema - Specifies the complete index key schema. The attribute names in the key schema must be between 1 and 255 characters (inclusive). The key schema must begin with the same partition key as the table. Projection - Specifies attributes that are copied (projected) from the table into the index. These are in addition to the primary key attributes and index key attributes, which are automatically projected. Each attribute specification is composed of: ProjectionType - One of the following: KEYS_ONLY - Only the index and primary keys are projected into the index. INCLUDE - In addition to the attributes described in KEYS_ONLY, the secondary index will include other non-key attributes that you specify. ALL - All of the table attributes are projected into the index. NonKeyAttributes - A list of one or more non-key attribute names that are projected into the secondary index. The total count of attributes provided in NonKeyAttributes, summed across all of the secondary indexes, must not exceed 20. If you project the same attribute into two different indexes, this counts as two distinct attributes when determining the total. ProvisionedThroughput - The provisioned throughput settings for the global secondary index, consisting of read and write capacity units, along with data about increases and decreases. If the table is in the DELETING state, no information about indexes will be returned.
3086
+ * The global secondary indexes, if any, on the table. Each index is scoped to a given partition key value. Each element is composed of: Backfilling - If true, then the index is currently in the backfilling phase. Backfilling occurs only when a new global secondary index is added to the table. It is the process by which DynamoDB populates the new index with data from the table. (This attribute does not appear for indexes that were created during a CreateTable operation.) You can delete an index that is being created during the Backfilling phase when IndexStatus is set to CREATING and Backfilling is true. You can't delete the index that is being created when IndexStatus is set to CREATING and Backfilling is false. (This attribute does not appear for indexes that were created during a CreateTable operation.) IndexName - The name of the global secondary index. IndexSizeBytes - The total size of the global secondary index, in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value. IndexStatus - The current status of the global secondary index: CREATING - The index is being created. UPDATING - The index is being updated. DELETING - The index is being deleted. ACTIVE - The index is ready for use. ItemCount - The number of items in the global secondary index. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value. KeySchema - Specifies the complete index key schema. The attribute names in the key schema must be between 1 and 255 characters (inclusive). The key schema must begin with the same partition key as the table. Projection - Specifies attributes that are copied (projected) from the table into the index. These are in addition to the primary key attributes and index key attributes, which are automatically projected. Each attribute specification is composed of: ProjectionType - One of the following: KEYS_ONLY - Only the index and primary keys are projected into the index. INCLUDE - In addition to the attributes described in KEYS_ONLY, the secondary index will include other non-key attributes that you specify. ALL - All of the table attributes are projected into the index. NonKeyAttributes - A list of one or more non-key attribute names that are projected into the secondary index. The total count of attributes provided in NonKeyAttributes, summed across all of the secondary indexes, must not exceed 100. If you project the same attribute into two different indexes, this counts as two distinct attributes when determining the total. ProvisionedThroughput - The provisioned throughput settings for the global secondary index, consisting of read and write capacity units, along with data about increases and decreases. If the table is in the DELETING state, no information about indexes will be returned.
3087
3087
  */
3088
3088
  GlobalSecondaryIndexes?: GlobalSecondaryIndexDescriptionList;
3089
3089
  /**
@@ -77,7 +77,7 @@ declare namespace DynamoDBStreams {
77
77
  */
78
78
  M?: MapAttributeValue;
79
79
  /**
80
- * An attribute of type List. For example: "L": [ {"S": "Cookies"} , {"S": "Coffee"}, {"N", "3.14159"}]
80
+ * An attribute of type List. For example: "L": [ {"S": "Cookies"} , {"S": "Coffee"}, {"N": "3.14159"}]
81
81
  */
82
82
  L?: ListAttributeValue;
83
83
  /**
@@ -11,6 +11,14 @@ declare class Finspacedata extends Service {
11
11
  */
12
12
  constructor(options?: Finspacedata.Types.ClientConfiguration)
13
13
  config: Config & Finspacedata.Types.ClientConfiguration;
14
+ /**
15
+ * Adds a user account to a permission group to grant permissions for actions a user can perform in FinSpace.
16
+ */
17
+ associateUserToPermissionGroup(params: Finspacedata.Types.AssociateUserToPermissionGroupRequest, callback?: (err: AWSError, data: Finspacedata.Types.AssociateUserToPermissionGroupResponse) => void): Request<Finspacedata.Types.AssociateUserToPermissionGroupResponse, AWSError>;
18
+ /**
19
+ * Adds a user account to a permission group to grant permissions for actions a user can perform in FinSpace.
20
+ */
21
+ associateUserToPermissionGroup(callback?: (err: AWSError, data: Finspacedata.Types.AssociateUserToPermissionGroupResponse) => void): Request<Finspacedata.Types.AssociateUserToPermissionGroupResponse, AWSError>;
14
22
  /**
15
23
  * Creates a new Changeset in a FinSpace Dataset.
16
24
  */
@@ -75,6 +83,14 @@ declare class Finspacedata extends Service {
75
83
  * Denies access to the FinSpace web application and API for the specified user.
76
84
  */
77
85
  disableUser(callback?: (err: AWSError, data: Finspacedata.Types.DisableUserResponse) => void): Request<Finspacedata.Types.DisableUserResponse, AWSError>;
86
+ /**
87
+ * Removes a user account from a permission group.
88
+ */
89
+ disassociateUserFromPermissionGroup(params: Finspacedata.Types.DisassociateUserFromPermissionGroupRequest, callback?: (err: AWSError, data: Finspacedata.Types.DisassociateUserFromPermissionGroupResponse) => void): Request<Finspacedata.Types.DisassociateUserFromPermissionGroupResponse, AWSError>;
90
+ /**
91
+ * Removes a user account from a permission group.
92
+ */
93
+ disassociateUserFromPermissionGroup(callback?: (err: AWSError, data: Finspacedata.Types.DisassociateUserFromPermissionGroupResponse) => void): Request<Finspacedata.Types.DisassociateUserFromPermissionGroupResponse, AWSError>;
78
94
  /**
79
95
  * Allows the specified user to access the FinSpace web application and API.
80
96
  */
@@ -107,6 +123,14 @@ declare class Finspacedata extends Service {
107
123
  * Returns information about a Dataset.
108
124
  */
109
125
  getDataset(callback?: (err: AWSError, data: Finspacedata.Types.GetDatasetResponse) => void): Request<Finspacedata.Types.GetDatasetResponse, AWSError>;
126
+ /**
127
+ * Retrieves the details of a specific permission group.
128
+ */
129
+ getPermissionGroup(params: Finspacedata.Types.GetPermissionGroupRequest, callback?: (err: AWSError, data: Finspacedata.Types.GetPermissionGroupResponse) => void): Request<Finspacedata.Types.GetPermissionGroupResponse, AWSError>;
130
+ /**
131
+ * Retrieves the details of a specific permission group.
132
+ */
133
+ getPermissionGroup(callback?: (err: AWSError, data: Finspacedata.Types.GetPermissionGroupResponse) => void): Request<Finspacedata.Types.GetPermissionGroupResponse, AWSError>;
110
134
  /**
111
135
  * Request programmatic credentials to use with FinSpace SDK.
112
136
  */
@@ -163,6 +187,14 @@ declare class Finspacedata extends Service {
163
187
  * Lists all available permission groups in FinSpace.
164
188
  */
165
189
  listPermissionGroups(callback?: (err: AWSError, data: Finspacedata.Types.ListPermissionGroupsResponse) => void): Request<Finspacedata.Types.ListPermissionGroupsResponse, AWSError>;
190
+ /**
191
+ * Lists all the permission groups that are associated with a specific user account.
192
+ */
193
+ listPermissionGroupsByUser(params: Finspacedata.Types.ListPermissionGroupsByUserRequest, callback?: (err: AWSError, data: Finspacedata.Types.ListPermissionGroupsByUserResponse) => void): Request<Finspacedata.Types.ListPermissionGroupsByUserResponse, AWSError>;
194
+ /**
195
+ * Lists all the permission groups that are associated with a specific user account.
196
+ */
197
+ listPermissionGroupsByUser(callback?: (err: AWSError, data: Finspacedata.Types.ListPermissionGroupsByUserResponse) => void): Request<Finspacedata.Types.ListPermissionGroupsByUserResponse, AWSError>;
166
198
  /**
167
199
  * Lists all available user accounts in FinSpace.
168
200
  */
@@ -171,6 +203,14 @@ declare class Finspacedata extends Service {
171
203
  * Lists all available user accounts in FinSpace.
172
204
  */
173
205
  listUsers(callback?: (err: AWSError, data: Finspacedata.Types.ListUsersResponse) => void): Request<Finspacedata.Types.ListUsersResponse, AWSError>;
206
+ /**
207
+ * Lists details of all the users in a specific permission group.
208
+ */
209
+ listUsersByPermissionGroup(params: Finspacedata.Types.ListUsersByPermissionGroupRequest, callback?: (err: AWSError, data: Finspacedata.Types.ListUsersByPermissionGroupResponse) => void): Request<Finspacedata.Types.ListUsersByPermissionGroupResponse, AWSError>;
210
+ /**
211
+ * Lists details of all the users in a specific permission group.
212
+ */
213
+ listUsersByPermissionGroup(callback?: (err: AWSError, data: Finspacedata.Types.ListUsersByPermissionGroupResponse) => void): Request<Finspacedata.Types.ListUsersByPermissionGroupResponse, AWSError>;
174
214
  /**
175
215
  * Resets the password for a specified user ID and generates a temporary one. Only a superuser can reset password for other users. Resetting the password immediately invalidates the previous password associated with the user.
176
216
  */
@@ -217,6 +257,26 @@ declare namespace Finspacedata {
217
257
  export type ApiAccess = "ENABLED"|"DISABLED"|string;
218
258
  export type ApplicationPermission = "CreateDataset"|"ManageClusters"|"ManageUsersAndGroups"|"ManageAttributeSets"|"ViewAuditData"|"AccessNotebooks"|"GetTemporaryCredentials"|string;
219
259
  export type ApplicationPermissionList = ApplicationPermission[];
260
+ export interface AssociateUserToPermissionGroupRequest {
261
+ /**
262
+ * The unique identifier for the permission group.
263
+ */
264
+ permissionGroupId: PermissionGroupId;
265
+ /**
266
+ * The unique identifier for the user.
267
+ */
268
+ userId: UserId;
269
+ /**
270
+ * A token that ensures idempotency. This token expires in 10 minutes.
271
+ */
272
+ clientToken?: ClientToken;
273
+ }
274
+ export interface AssociateUserToPermissionGroupResponse {
275
+ /**
276
+ * The returned status code of the response.
277
+ */
278
+ statusCode?: StatusCode;
279
+ }
220
280
  export type Boolean = boolean;
221
281
  export type ChangeType = "REPLACE"|"APPEND"|"MODIFY"|string;
222
282
  export type ChangesetArn = string;
@@ -500,7 +560,7 @@ declare namespace Finspacedata {
500
560
  */
501
561
  destinationType: DataViewDestinationType;
502
562
  /**
503
- * Data view export file format. PARQUET – Parquet export file format. DELIMITED_TEXT – Delimited text export file format.
563
+ * Dataview export file format. PARQUET – Parquet export file format. DELIMITED_TEXT – Delimited text export file format.
504
564
  */
505
565
  s3DestinationExportFileFormat?: ExportFileFormat;
506
566
  /**
@@ -682,6 +742,26 @@ declare namespace Finspacedata {
682
742
  */
683
743
  userId?: UserId;
684
744
  }
745
+ export interface DisassociateUserFromPermissionGroupRequest {
746
+ /**
747
+ * The unique identifier for the permission group.
748
+ */
749
+ permissionGroupId: PermissionGroupId;
750
+ /**
751
+ * The unique identifier for the user.
752
+ */
753
+ userId: UserId;
754
+ /**
755
+ * A token that ensures idempotency. This token expires in 10 minutes.
756
+ */
757
+ clientToken?: ClientToken;
758
+ }
759
+ export interface DisassociateUserFromPermissionGroupResponse {
760
+ /**
761
+ * The returned status code of the response.
762
+ */
763
+ statusCode?: StatusCode;
764
+ }
685
765
  export type Email = string;
686
766
  export interface EnableUserRequest {
687
767
  /**
@@ -876,6 +956,15 @@ declare namespace Finspacedata {
876
956
  */
877
957
  status?: DatasetStatus;
878
958
  }
959
+ export interface GetPermissionGroupRequest {
960
+ /**
961
+ * The unique identifier for the permission group.
962
+ */
963
+ permissionGroupId: PermissionGroupId;
964
+ }
965
+ export interface GetPermissionGroupResponse {
966
+ permissionGroup?: PermissionGroup;
967
+ }
879
968
  export interface GetProgrammaticAccessCredentialsRequest {
880
969
  /**
881
970
  * The time duration in which the credentials remain valid.
@@ -924,7 +1013,7 @@ declare namespace Finspacedata {
924
1013
  */
925
1014
  emailAddress?: Email;
926
1015
  /**
927
- * Indicates the type of user. SUPER_USER – A user with permission to all the functionality and data in FinSpace. APP_USER – A user with specific permissions in FinSpace. The users are assigned permissions by adding them to a permissions group.
1016
+ * Indicates the type of user. SUPER_USER – A user with permission to all the functionality and data in FinSpace. APP_USER – A user with specific permissions in FinSpace. The users are assigned permissions by adding them to a permission group.
928
1017
  */
929
1018
  type?: UserType;
930
1019
  /**
@@ -1047,6 +1136,30 @@ declare namespace Finspacedata {
1047
1136
  */
1048
1137
  nextToken?: PaginationToken;
1049
1138
  }
1139
+ export interface ListPermissionGroupsByUserRequest {
1140
+ /**
1141
+ * The unique identifier for the user.
1142
+ */
1143
+ userId: UserId;
1144
+ /**
1145
+ * A token that indicates where a results page should begin.
1146
+ */
1147
+ nextToken?: PaginationToken;
1148
+ /**
1149
+ * The maximum number of results per page.
1150
+ */
1151
+ maxResults: ResultLimit;
1152
+ }
1153
+ export interface ListPermissionGroupsByUserResponse {
1154
+ /**
1155
+ * A list of returned permission groups.
1156
+ */
1157
+ permissionGroups?: PermissionGroupByUserList;
1158
+ /**
1159
+ * A token that indicates where a results page should begin.
1160
+ */
1161
+ nextToken?: PaginationToken;
1162
+ }
1050
1163
  export interface ListPermissionGroupsRequest {
1051
1164
  /**
1052
1165
  * A token that indicates where a results page should begin.
@@ -1067,6 +1180,30 @@ declare namespace Finspacedata {
1067
1180
  */
1068
1181
  nextToken?: PaginationToken;
1069
1182
  }
1183
+ export interface ListUsersByPermissionGroupRequest {
1184
+ /**
1185
+ * The unique identifier for the permission group.
1186
+ */
1187
+ permissionGroupId: PermissionGroupId;
1188
+ /**
1189
+ * A token that indicates where a results page should begin.
1190
+ */
1191
+ nextToken?: PaginationToken;
1192
+ /**
1193
+ * The maximum number of results per page.
1194
+ */
1195
+ maxResults: ResultLimit;
1196
+ }
1197
+ export interface ListUsersByPermissionGroupResponse {
1198
+ /**
1199
+ * Lists details of all users in a specific permission group.
1200
+ */
1201
+ users?: UserByPermissionGroupList;
1202
+ /**
1203
+ * A token that indicates where a results page should begin.
1204
+ */
1205
+ nextToken?: PaginationToken;
1206
+ }
1070
1207
  export interface ListUsersRequest {
1071
1208
  /**
1072
1209
  * A token that indicates where a results page should begin.
@@ -1116,10 +1253,30 @@ declare namespace Finspacedata {
1116
1253
  * Describes the last time the permission group was updated. The value is determined as epoch time in milliseconds.
1117
1254
  */
1118
1255
  lastModifiedTime?: TimestampEpoch;
1256
+ /**
1257
+ * Indicates the status of the user account within a permission group. ADDITION_IN_PROGRESS – The user account is currently being added to the permission group. ADDITION_SUCCESS – The user account is successfully added to the permission group. REMOVAL_IN_PROGRESS – The user is currently being removed from the permission group.
1258
+ */
1259
+ membershipStatus?: PermissionGroupMembershipStatus;
1119
1260
  }
1261
+ export interface PermissionGroupByUser {
1262
+ /**
1263
+ * The unique identifier for the permission group.
1264
+ */
1265
+ permissionGroupId?: PermissionGroupId;
1266
+ /**
1267
+ * The name of the permission group.
1268
+ */
1269
+ name?: PermissionGroupName;
1270
+ /**
1271
+ * Indicates the status of the user account within a permission group. ADDITION_IN_PROGRESS – The user account is currently being added to the permission group. ADDITION_SUCCESS – The user account is successfully added to the permission group. REMOVAL_IN_PROGRESS – The user is currently being removed from the permission group.
1272
+ */
1273
+ membershipStatus?: PermissionGroupMembershipStatus;
1274
+ }
1275
+ export type PermissionGroupByUserList = PermissionGroupByUser[];
1120
1276
  export type PermissionGroupDescription = string;
1121
1277
  export type PermissionGroupId = string;
1122
1278
  export type PermissionGroupList = PermissionGroup[];
1279
+ export type PermissionGroupMembershipStatus = "ADDITION_IN_PROGRESS"|"ADDITION_SUCCESS"|"REMOVAL_IN_PROGRESS"|string;
1123
1280
  export type PermissionGroupName = string;
1124
1281
  export interface PermissionGroupParams {
1125
1282
  /**
@@ -1181,6 +1338,7 @@ declare namespace Finspacedata {
1181
1338
  export type SessionDuration = number;
1182
1339
  export type SortColumnList = StringValueLength1to255[];
1183
1340
  export type SourceParams = {[key: string]: StringMapValue};
1341
+ export type StatusCode = number;
1184
1342
  export type StringMapKey = string;
1185
1343
  export type StringMapValue = string;
1186
1344
  export type StringValueLength1to250 = string;
@@ -1288,7 +1446,7 @@ declare namespace Finspacedata {
1288
1446
  */
1289
1447
  userId: UserId;
1290
1448
  /**
1291
- * The option to indicate the type of user. SUPER_USER– A user with permission to all the functionality and data in FinSpace. APP_USER – A user with specific permissions in FinSpace. The users are assigned permissions by adding them to a permissions group.
1449
+ * The option to indicate the type of user. SUPER_USER– A user with permission to all the functionality and data in FinSpace. APP_USER – A user with specific permissions in FinSpace. The users are assigned permissions by adding them to a permission group.
1292
1450
  */
1293
1451
  type?: UserType;
1294
1452
  /**
@@ -1340,7 +1498,7 @@ declare namespace Finspacedata {
1340
1498
  */
1341
1499
  emailAddress?: Email;
1342
1500
  /**
1343
- * Indicates the type of user. SUPER_USER – A user with permission to all the functionality and data in FinSpace. APP_USER – A user with specific permissions in FinSpace. The users are assigned permissions by adding them to a permissions group.
1501
+ * Indicates the type of user. SUPER_USER – A user with permission to all the functionality and data in FinSpace. APP_USER – A user with specific permissions in FinSpace. The users are assigned permissions by adding them to a permission group.
1344
1502
  */
1345
1503
  type?: UserType;
1346
1504
  /**
@@ -1372,6 +1530,45 @@ declare namespace Finspacedata {
1372
1530
  */
1373
1531
  lastLoginTime?: TimestampEpoch;
1374
1532
  }
1533
+ export interface UserByPermissionGroup {
1534
+ /**
1535
+ * The unique identifier for the user.
1536
+ */
1537
+ userId?: UserId;
1538
+ /**
1539
+ * The current status of the user account. CREATING – The user account creation is in progress. ENABLED – The user account is created and is currently active. DISABLED – The user account is currently inactive.
1540
+ */
1541
+ status?: UserStatus;
1542
+ /**
1543
+ * The first name of the user.
1544
+ */
1545
+ firstName?: FirstName;
1546
+ /**
1547
+ * The last name of the user.
1548
+ */
1549
+ lastName?: LastName;
1550
+ /**
1551
+ * The email address of the user. The email address serves as a unique identifier for each user and cannot be changed after it's created.
1552
+ */
1553
+ emailAddress?: Email;
1554
+ /**
1555
+ * Indicates the type of user. SUPER_USER – A user with permission to all the functionality and data in FinSpace. APP_USER – A user with specific permissions in FinSpace. The users are assigned permissions by adding them to a permission group.
1556
+ */
1557
+ type?: UserType;
1558
+ /**
1559
+ * Indicates whether the user can access FinSpace API operations. ENABLED – The user has permissions to use the API operations. DISABLED – The user does not have permissions to use any API operations.
1560
+ */
1561
+ apiAccess?: ApiAccess;
1562
+ /**
1563
+ * The IAM ARN identifier that is attached to FinSpace API calls.
1564
+ */
1565
+ apiAccessPrincipalArn?: RoleArn;
1566
+ /**
1567
+ * Indicates the status of the user account within a permission group. ADDITION_IN_PROGRESS – The user account is currently being added to the permission group. ADDITION_SUCCESS – The user account is successfully added to the permission group. REMOVAL_IN_PROGRESS – The user is currently being removed from the permission group.
1568
+ */
1569
+ membershipStatus?: PermissionGroupMembershipStatus;
1570
+ }
1571
+ export type UserByPermissionGroupList = UserByPermissionGroup[];
1375
1572
  export type UserId = string;
1376
1573
  export type UserList = User[];
1377
1574
  export type UserStatus = "CREATING"|"ENABLED"|"DISABLED"|string;