cdk-comprehend-s3olap 2.0.7 → 2.0.10
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/.jsii +5 -5
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +17 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/budgets-2016-10-20.min.json +53 -53
- package/node_modules/aws-sdk/apis/finspace-data-2020-07-13.min.json +278 -73
- package/node_modules/aws-sdk/apis/guardduty-2017-11-28.min.json +325 -98
- package/node_modules/aws-sdk/apis/lookoutmetrics-2017-07-25.min.json +105 -48
- package/node_modules/aws-sdk/apis/mediaconvert-2017-08-29.min.json +146 -143
- package/node_modules/aws-sdk/apis/metadata.json +3 -0
- package/node_modules/aws-sdk/apis/redshift-data-2019-12-20.min.json +25 -16
- package/node_modules/aws-sdk/apis/redshiftserverless-2021-04-21.examples.json +5 -0
- package/node_modules/aws-sdk/apis/redshiftserverless-2021-04-21.min.json +1206 -0
- package/node_modules/aws-sdk/apis/redshiftserverless-2021-04-21.paginators.json +40 -0
- package/node_modules/aws-sdk/apis/securityhub-2018-10-26.min.json +841 -300
- package/node_modules/aws-sdk/apis/servicecatalog-appregistry-2020-06-24.min.json +45 -0
- package/node_modules/aws-sdk/apis/servicecatalog-appregistry-2020-06-24.paginators.json +6 -0
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/budgets.d.ts +2 -1
- package/node_modules/aws-sdk/clients/finspacedata.d.ts +201 -4
- package/node_modules/aws-sdk/clients/guardduty.d.ts +186 -4
- package/node_modules/aws-sdk/clients/lookoutmetrics.d.ts +69 -2
- package/node_modules/aws-sdk/clients/mediaconvert.d.ts +6 -1
- package/node_modules/aws-sdk/clients/redshiftdata.d.ts +51 -14
- package/node_modules/aws-sdk/clients/redshiftserverless.d.ts +1525 -0
- package/node_modules/aws-sdk/clients/redshiftserverless.js +18 -0
- package/node_modules/aws-sdk/clients/secretsmanager.d.ts +6 -6
- package/node_modules/aws-sdk/clients/securityhub.d.ts +1020 -19
- package/node_modules/aws-sdk/clients/servicecatalogappregistry.d.ts +49 -2
- package/node_modules/aws-sdk/clients/workspaces.d.ts +10 -10
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +17 -9
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +80 -27
- package/node_modules/aws-sdk/dist/aws-sdk.js +21 -10
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +36 -36
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/util.js +15 -7
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/esbuild/bin/esbuild +1 -0
- package/node_modules/esbuild/install.js +5 -4
- package/node_modules/esbuild/lib/main.d.ts +3 -1
- package/node_modules/esbuild/lib/main.js +15 -10
- package/node_modules/esbuild/package.json +21 -21
- package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
- package/node_modules/esbuild-linux-64/package.json +1 -1
- package/package.json +10 -10
@@ -543,6 +543,51 @@
|
|
543
543
|
},
|
544
544
|
"idempotent": true
|
545
545
|
},
|
546
|
+
"ListAttributeGroupsForApplication": {
|
547
|
+
"http": {
|
548
|
+
"method": "GET",
|
549
|
+
"requestUri": "/applications/{application}/attribute-group-details"
|
550
|
+
},
|
551
|
+
"input": {
|
552
|
+
"type": "structure",
|
553
|
+
"required": [
|
554
|
+
"application"
|
555
|
+
],
|
556
|
+
"members": {
|
557
|
+
"application": {
|
558
|
+
"location": "uri",
|
559
|
+
"locationName": "application"
|
560
|
+
},
|
561
|
+
"nextToken": {
|
562
|
+
"location": "querystring",
|
563
|
+
"locationName": "nextToken"
|
564
|
+
},
|
565
|
+
"maxResults": {
|
566
|
+
"location": "querystring",
|
567
|
+
"locationName": "maxResults",
|
568
|
+
"type": "integer"
|
569
|
+
}
|
570
|
+
}
|
571
|
+
},
|
572
|
+
"output": {
|
573
|
+
"type": "structure",
|
574
|
+
"members": {
|
575
|
+
"attributeGroupsDetails": {
|
576
|
+
"type": "list",
|
577
|
+
"member": {
|
578
|
+
"type": "structure",
|
579
|
+
"members": {
|
580
|
+
"id": {},
|
581
|
+
"arn": {},
|
582
|
+
"name": {}
|
583
|
+
}
|
584
|
+
}
|
585
|
+
},
|
586
|
+
"nextToken": {}
|
587
|
+
}
|
588
|
+
},
|
589
|
+
"idempotent": true
|
590
|
+
},
|
546
591
|
"ListTagsForResource": {
|
547
592
|
"http": {
|
548
593
|
"method": "GET",
|
@@ -23,6 +23,12 @@
|
|
23
23
|
"output_token": "nextToken",
|
24
24
|
"limit_key": "maxResults",
|
25
25
|
"result_key": "attributeGroups"
|
26
|
+
},
|
27
|
+
"ListAttributeGroupsForApplication": {
|
28
|
+
"input_token": "nextToken",
|
29
|
+
"output_token": "nextToken",
|
30
|
+
"limit_key": "maxResults",
|
31
|
+
"result_key": "attributeGroupsDetails"
|
26
32
|
}
|
27
33
|
}
|
28
34
|
}
|
@@ -306,3 +306,4 @@ export import Ivschat = require('./ivschat');
|
|
306
306
|
export import ChimeSDKMediaPipelines = require('./chimesdkmediapipelines');
|
307
307
|
export import EMRServerless = require('./emrserverless');
|
308
308
|
export import M2 = require('./m2');
|
309
|
+
export import RedshiftServerless = require('./redshiftserverless');
|
@@ -307,5 +307,6 @@ module.exports = {
|
|
307
307
|
Ivschat: require('./ivschat'),
|
308
308
|
ChimeSDKMediaPipelines: require('./chimesdkmediapipelines'),
|
309
309
|
EMRServerless: require('./emrserverless'),
|
310
|
-
M2: require('./m2')
|
310
|
+
M2: require('./m2'),
|
311
|
+
RedshiftServerless: require('./redshiftserverless')
|
311
312
|
};
|
@@ -774,7 +774,8 @@ declare namespace Budgets {
|
|
774
774
|
*/
|
775
775
|
NextToken?: GenericString;
|
776
776
|
}
|
777
|
-
export type
|
777
|
+
export type DimensionValue = string;
|
778
|
+
export type DimensionValues = DimensionValue[];
|
778
779
|
export type EventType = "SYSTEM"|"CREATE_ACTION"|"DELETE_ACTION"|"UPDATE_ACTION"|"EXECUTE_ACTION"|string;
|
779
780
|
export interface ExecuteBudgetActionRequest {
|
780
781
|
AccountId: AccountId;
|
@@ -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
|
-
*
|
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
|
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
|
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
|
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;
|