@aws-sdk/client-finspace-data 3.300.0 → 3.303.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/models/models_0.js +91 -105
- package/dist-es/models/models_0.js +91 -105
- package/dist-types/commands/AssociateUserToPermissionGroupCommand.d.ts +1 -1
- package/dist-types/commands/CreateChangesetCommand.d.ts +3 -3
- package/dist-types/commands/CreateDataViewCommand.d.ts +5 -5
- package/dist-types/commands/CreateDatasetCommand.d.ts +10 -10
- package/dist-types/commands/CreatePermissionGroupCommand.d.ts +2 -2
- package/dist-types/commands/CreateUserCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDatasetCommand.d.ts +1 -1
- package/dist-types/commands/DeletePermissionGroupCommand.d.ts +1 -1
- package/dist-types/commands/DisableUserCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateUserFromPermissionGroupCommand.d.ts +1 -1
- package/dist-types/commands/EnableUserCommand.d.ts +1 -1
- package/dist-types/commands/GetChangesetCommand.d.ts +1 -1
- package/dist-types/commands/GetDataViewCommand.d.ts +1 -1
- package/dist-types/commands/GetDatasetCommand.d.ts +1 -1
- package/dist-types/commands/GetExternalDataViewAccessDetailsCommand.d.ts +1 -1
- package/dist-types/commands/GetPermissionGroupCommand.d.ts +1 -1
- package/dist-types/commands/GetProgrammaticAccessCredentialsCommand.d.ts +1 -1
- package/dist-types/commands/GetUserCommand.d.ts +1 -1
- package/dist-types/commands/GetWorkingLocationCommand.d.ts +1 -1
- package/dist-types/commands/ListChangesetsCommand.d.ts +1 -1
- package/dist-types/commands/ListDataViewsCommand.d.ts +1 -1
- package/dist-types/commands/ListDatasetsCommand.d.ts +1 -1
- package/dist-types/commands/ListPermissionGroupsByUserCommand.d.ts +1 -1
- package/dist-types/commands/ListPermissionGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListUsersByPermissionGroupCommand.d.ts +1 -1
- package/dist-types/commands/ListUsersCommand.d.ts +1 -1
- package/dist-types/commands/ResetUserPasswordCommand.d.ts +1 -1
- package/dist-types/commands/UpdateChangesetCommand.d.ts +3 -3
- package/dist-types/commands/UpdateDatasetCommand.d.ts +6 -6
- package/dist-types/commands/UpdatePermissionGroupCommand.d.ts +2 -2
- package/dist-types/commands/UpdateUserCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +161 -91
- package/dist-types/ts3.4/models/models_0.d.ts +111 -91
- package/package.json +34 -34
|
@@ -16,21 +16,19 @@ class AccessDeniedException extends FinspaceDataServiceException_1.FinspaceDataS
|
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
18
|
exports.AccessDeniedException = AccessDeniedException;
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
ApplicationPermission["ViewAuditData"] = "ViewAuditData";
|
|
33
|
-
})(ApplicationPermission = exports.ApplicationPermission || (exports.ApplicationPermission = {}));
|
|
19
|
+
exports.ApiAccess = {
|
|
20
|
+
DISABLED: "DISABLED",
|
|
21
|
+
ENABLED: "ENABLED",
|
|
22
|
+
};
|
|
23
|
+
exports.ApplicationPermission = {
|
|
24
|
+
AccessNotebooks: "AccessNotebooks",
|
|
25
|
+
CreateDataset: "CreateDataset",
|
|
26
|
+
GetTemporaryCredentials: "GetTemporaryCredentials",
|
|
27
|
+
ManageAttributeSets: "ManageAttributeSets",
|
|
28
|
+
ManageClusters: "ManageClusters",
|
|
29
|
+
ManageUsersAndGroups: "ManageUsersAndGroups",
|
|
30
|
+
ViewAuditData: "ViewAuditData",
|
|
31
|
+
};
|
|
34
32
|
class ConflictException extends FinspaceDataServiceException_1.FinspaceDataServiceException {
|
|
35
33
|
constructor(opts) {
|
|
36
34
|
super({
|
|
@@ -99,12 +97,11 @@ class ValidationException extends FinspaceDataServiceException_1.FinspaceDataSer
|
|
|
99
97
|
}
|
|
100
98
|
}
|
|
101
99
|
exports.ValidationException = ValidationException;
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
})(ChangeType = exports.ChangeType || (exports.ChangeType = {}));
|
|
100
|
+
exports.ChangeType = {
|
|
101
|
+
APPEND: "APPEND",
|
|
102
|
+
MODIFY: "MODIFY",
|
|
103
|
+
REPLACE: "REPLACE",
|
|
104
|
+
};
|
|
108
105
|
class LimitExceededException extends FinspaceDataServiceException_1.FinspaceDataServiceException {
|
|
109
106
|
constructor(opts) {
|
|
110
107
|
super({
|
|
@@ -118,90 +115,79 @@ class LimitExceededException extends FinspaceDataServiceException_1.FinspaceData
|
|
|
118
115
|
}
|
|
119
116
|
}
|
|
120
117
|
exports.LimitExceededException = LimitExceededException;
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
}
|
|
194
|
-
var UserStatus;
|
|
195
|
-
(function (UserStatus) {
|
|
196
|
-
UserStatus["CREATING"] = "CREATING";
|
|
197
|
-
UserStatus["DISABLED"] = "DISABLED";
|
|
198
|
-
UserStatus["ENABLED"] = "ENABLED";
|
|
199
|
-
})(UserStatus = exports.UserStatus || (exports.UserStatus = {}));
|
|
200
|
-
var LocationType;
|
|
201
|
-
(function (LocationType) {
|
|
202
|
-
LocationType["INGESTION"] = "INGESTION";
|
|
203
|
-
LocationType["SAGEMAKER"] = "SAGEMAKER";
|
|
204
|
-
})(LocationType = exports.LocationType || (exports.LocationType = {}));
|
|
118
|
+
exports.DatasetKind = {
|
|
119
|
+
NON_TABULAR: "NON_TABULAR",
|
|
120
|
+
TABULAR: "TABULAR",
|
|
121
|
+
};
|
|
122
|
+
exports.ColumnDataType = {
|
|
123
|
+
BIGINT: "BIGINT",
|
|
124
|
+
BINARY: "BINARY",
|
|
125
|
+
BOOLEAN: "BOOLEAN",
|
|
126
|
+
CHAR: "CHAR",
|
|
127
|
+
DATE: "DATE",
|
|
128
|
+
DATETIME: "DATETIME",
|
|
129
|
+
DOUBLE: "DOUBLE",
|
|
130
|
+
FLOAT: "FLOAT",
|
|
131
|
+
INTEGER: "INTEGER",
|
|
132
|
+
SMALLINT: "SMALLINT",
|
|
133
|
+
STRING: "STRING",
|
|
134
|
+
TINYINT: "TINYINT",
|
|
135
|
+
};
|
|
136
|
+
exports.ExportFileFormat = {
|
|
137
|
+
DELIMITED_TEXT: "DELIMITED_TEXT",
|
|
138
|
+
PARQUET: "PARQUET",
|
|
139
|
+
};
|
|
140
|
+
exports.UserType = {
|
|
141
|
+
APP_USER: "APP_USER",
|
|
142
|
+
SUPER_USER: "SUPER_USER",
|
|
143
|
+
};
|
|
144
|
+
exports.ErrorCategory = {
|
|
145
|
+
ACCESS_DENIED: "ACCESS_DENIED",
|
|
146
|
+
CANCELLED: "CANCELLED",
|
|
147
|
+
INTERNAL_SERVICE_EXCEPTION: "INTERNAL_SERVICE_EXCEPTION",
|
|
148
|
+
RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND",
|
|
149
|
+
SERVICE_QUOTA_EXCEEDED: "SERVICE_QUOTA_EXCEEDED",
|
|
150
|
+
THROTTLING: "THROTTLING",
|
|
151
|
+
USER_RECOVERABLE: "USER_RECOVERABLE",
|
|
152
|
+
VALIDATION: "VALIDATION",
|
|
153
|
+
};
|
|
154
|
+
exports.IngestionStatus = {
|
|
155
|
+
FAILED: "FAILED",
|
|
156
|
+
PENDING: "PENDING",
|
|
157
|
+
RUNNING: "RUNNING",
|
|
158
|
+
STOP_REQUESTED: "STOP_REQUESTED",
|
|
159
|
+
SUCCESS: "SUCCESS",
|
|
160
|
+
};
|
|
161
|
+
exports.DatasetStatus = {
|
|
162
|
+
FAILED: "FAILED",
|
|
163
|
+
PENDING: "PENDING",
|
|
164
|
+
RUNNING: "RUNNING",
|
|
165
|
+
SUCCESS: "SUCCESS",
|
|
166
|
+
};
|
|
167
|
+
exports.DataViewStatus = {
|
|
168
|
+
CANCELLED: "CANCELLED",
|
|
169
|
+
FAILED: "FAILED",
|
|
170
|
+
FAILED_CLEANUP_FAILED: "FAILED_CLEANUP_FAILED",
|
|
171
|
+
PENDING: "PENDING",
|
|
172
|
+
RUNNING: "RUNNING",
|
|
173
|
+
STARTING: "STARTING",
|
|
174
|
+
SUCCESS: "SUCCESS",
|
|
175
|
+
TIMEOUT: "TIMEOUT",
|
|
176
|
+
};
|
|
177
|
+
exports.PermissionGroupMembershipStatus = {
|
|
178
|
+
ADDITION_IN_PROGRESS: "ADDITION_IN_PROGRESS",
|
|
179
|
+
ADDITION_SUCCESS: "ADDITION_SUCCESS",
|
|
180
|
+
REMOVAL_IN_PROGRESS: "REMOVAL_IN_PROGRESS",
|
|
181
|
+
};
|
|
182
|
+
exports.UserStatus = {
|
|
183
|
+
CREATING: "CREATING",
|
|
184
|
+
DISABLED: "DISABLED",
|
|
185
|
+
ENABLED: "ENABLED",
|
|
186
|
+
};
|
|
187
|
+
exports.LocationType = {
|
|
188
|
+
INGESTION: "INGESTION",
|
|
189
|
+
SAGEMAKER: "SAGEMAKER",
|
|
190
|
+
};
|
|
205
191
|
const AwsCredentialsFilterSensitiveLog = (obj) => ({
|
|
206
192
|
...obj,
|
|
207
193
|
...(obj.secretAccessKey && { secretAccessKey: smithy_client_1.SENSITIVE_STRING }),
|
|
@@ -12,21 +12,19 @@ export class AccessDeniedException extends __BaseException {
|
|
|
12
12
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
|
-
export
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
ApplicationPermission["ViewAuditData"] = "ViewAuditData";
|
|
29
|
-
})(ApplicationPermission || (ApplicationPermission = {}));
|
|
15
|
+
export const ApiAccess = {
|
|
16
|
+
DISABLED: "DISABLED",
|
|
17
|
+
ENABLED: "ENABLED",
|
|
18
|
+
};
|
|
19
|
+
export const ApplicationPermission = {
|
|
20
|
+
AccessNotebooks: "AccessNotebooks",
|
|
21
|
+
CreateDataset: "CreateDataset",
|
|
22
|
+
GetTemporaryCredentials: "GetTemporaryCredentials",
|
|
23
|
+
ManageAttributeSets: "ManageAttributeSets",
|
|
24
|
+
ManageClusters: "ManageClusters",
|
|
25
|
+
ManageUsersAndGroups: "ManageUsersAndGroups",
|
|
26
|
+
ViewAuditData: "ViewAuditData",
|
|
27
|
+
};
|
|
30
28
|
export class ConflictException extends __BaseException {
|
|
31
29
|
constructor(opts) {
|
|
32
30
|
super({
|
|
@@ -90,12 +88,11 @@ export class ValidationException extends __BaseException {
|
|
|
90
88
|
this.reason = opts.reason;
|
|
91
89
|
}
|
|
92
90
|
}
|
|
93
|
-
export
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
})(ChangeType || (ChangeType = {}));
|
|
91
|
+
export const ChangeType = {
|
|
92
|
+
APPEND: "APPEND",
|
|
93
|
+
MODIFY: "MODIFY",
|
|
94
|
+
REPLACE: "REPLACE",
|
|
95
|
+
};
|
|
99
96
|
export class LimitExceededException extends __BaseException {
|
|
100
97
|
constructor(opts) {
|
|
101
98
|
super({
|
|
@@ -108,90 +105,79 @@ export class LimitExceededException extends __BaseException {
|
|
|
108
105
|
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
109
106
|
}
|
|
110
107
|
}
|
|
111
|
-
export
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
}
|
|
160
|
-
export
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
}
|
|
184
|
-
export var UserStatus;
|
|
185
|
-
(function (UserStatus) {
|
|
186
|
-
UserStatus["CREATING"] = "CREATING";
|
|
187
|
-
UserStatus["DISABLED"] = "DISABLED";
|
|
188
|
-
UserStatus["ENABLED"] = "ENABLED";
|
|
189
|
-
})(UserStatus || (UserStatus = {}));
|
|
190
|
-
export var LocationType;
|
|
191
|
-
(function (LocationType) {
|
|
192
|
-
LocationType["INGESTION"] = "INGESTION";
|
|
193
|
-
LocationType["SAGEMAKER"] = "SAGEMAKER";
|
|
194
|
-
})(LocationType || (LocationType = {}));
|
|
108
|
+
export const DatasetKind = {
|
|
109
|
+
NON_TABULAR: "NON_TABULAR",
|
|
110
|
+
TABULAR: "TABULAR",
|
|
111
|
+
};
|
|
112
|
+
export const ColumnDataType = {
|
|
113
|
+
BIGINT: "BIGINT",
|
|
114
|
+
BINARY: "BINARY",
|
|
115
|
+
BOOLEAN: "BOOLEAN",
|
|
116
|
+
CHAR: "CHAR",
|
|
117
|
+
DATE: "DATE",
|
|
118
|
+
DATETIME: "DATETIME",
|
|
119
|
+
DOUBLE: "DOUBLE",
|
|
120
|
+
FLOAT: "FLOAT",
|
|
121
|
+
INTEGER: "INTEGER",
|
|
122
|
+
SMALLINT: "SMALLINT",
|
|
123
|
+
STRING: "STRING",
|
|
124
|
+
TINYINT: "TINYINT",
|
|
125
|
+
};
|
|
126
|
+
export const ExportFileFormat = {
|
|
127
|
+
DELIMITED_TEXT: "DELIMITED_TEXT",
|
|
128
|
+
PARQUET: "PARQUET",
|
|
129
|
+
};
|
|
130
|
+
export const UserType = {
|
|
131
|
+
APP_USER: "APP_USER",
|
|
132
|
+
SUPER_USER: "SUPER_USER",
|
|
133
|
+
};
|
|
134
|
+
export const ErrorCategory = {
|
|
135
|
+
ACCESS_DENIED: "ACCESS_DENIED",
|
|
136
|
+
CANCELLED: "CANCELLED",
|
|
137
|
+
INTERNAL_SERVICE_EXCEPTION: "INTERNAL_SERVICE_EXCEPTION",
|
|
138
|
+
RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND",
|
|
139
|
+
SERVICE_QUOTA_EXCEEDED: "SERVICE_QUOTA_EXCEEDED",
|
|
140
|
+
THROTTLING: "THROTTLING",
|
|
141
|
+
USER_RECOVERABLE: "USER_RECOVERABLE",
|
|
142
|
+
VALIDATION: "VALIDATION",
|
|
143
|
+
};
|
|
144
|
+
export const IngestionStatus = {
|
|
145
|
+
FAILED: "FAILED",
|
|
146
|
+
PENDING: "PENDING",
|
|
147
|
+
RUNNING: "RUNNING",
|
|
148
|
+
STOP_REQUESTED: "STOP_REQUESTED",
|
|
149
|
+
SUCCESS: "SUCCESS",
|
|
150
|
+
};
|
|
151
|
+
export const DatasetStatus = {
|
|
152
|
+
FAILED: "FAILED",
|
|
153
|
+
PENDING: "PENDING",
|
|
154
|
+
RUNNING: "RUNNING",
|
|
155
|
+
SUCCESS: "SUCCESS",
|
|
156
|
+
};
|
|
157
|
+
export const DataViewStatus = {
|
|
158
|
+
CANCELLED: "CANCELLED",
|
|
159
|
+
FAILED: "FAILED",
|
|
160
|
+
FAILED_CLEANUP_FAILED: "FAILED_CLEANUP_FAILED",
|
|
161
|
+
PENDING: "PENDING",
|
|
162
|
+
RUNNING: "RUNNING",
|
|
163
|
+
STARTING: "STARTING",
|
|
164
|
+
SUCCESS: "SUCCESS",
|
|
165
|
+
TIMEOUT: "TIMEOUT",
|
|
166
|
+
};
|
|
167
|
+
export const PermissionGroupMembershipStatus = {
|
|
168
|
+
ADDITION_IN_PROGRESS: "ADDITION_IN_PROGRESS",
|
|
169
|
+
ADDITION_SUCCESS: "ADDITION_SUCCESS",
|
|
170
|
+
REMOVAL_IN_PROGRESS: "REMOVAL_IN_PROGRESS",
|
|
171
|
+
};
|
|
172
|
+
export const UserStatus = {
|
|
173
|
+
CREATING: "CREATING",
|
|
174
|
+
DISABLED: "DISABLED",
|
|
175
|
+
ENABLED: "ENABLED",
|
|
176
|
+
};
|
|
177
|
+
export const LocationType = {
|
|
178
|
+
INGESTION: "INGESTION",
|
|
179
|
+
SAGEMAKER: "SAGEMAKER",
|
|
180
|
+
};
|
|
195
181
|
export const AwsCredentialsFilterSensitiveLog = (obj) => ({
|
|
196
182
|
...obj,
|
|
197
183
|
...(obj.secretAccessKey && { secretAccessKey: SENSITIVE_STRING }),
|
|
@@ -26,7 +26,7 @@ export interface AssociateUserToPermissionGroupCommandOutput extends AssociateUs
|
|
|
26
26
|
* import { FinspaceDataClient, AssociateUserToPermissionGroupCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
|
|
27
27
|
* // const { FinspaceDataClient, AssociateUserToPermissionGroupCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
|
|
28
28
|
* const client = new FinspaceDataClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // AssociateUserToPermissionGroupRequest
|
|
30
30
|
* permissionGroupId: "STRING_VALUE", // required
|
|
31
31
|
* userId: "STRING_VALUE", // required
|
|
32
32
|
* clientToken: "STRING_VALUE",
|
|
@@ -26,14 +26,14 @@ export interface CreateChangesetCommandOutput extends CreateChangesetResponse, _
|
|
|
26
26
|
* import { FinspaceDataClient, CreateChangesetCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
|
|
27
27
|
* // const { FinspaceDataClient, CreateChangesetCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
|
|
28
28
|
* const client = new FinspaceDataClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateChangesetRequest
|
|
30
30
|
* clientToken: "STRING_VALUE",
|
|
31
31
|
* datasetId: "STRING_VALUE", // required
|
|
32
32
|
* changeType: "STRING_VALUE", // required
|
|
33
|
-
* sourceParams: { // required
|
|
33
|
+
* sourceParams: { // SourceParams // required
|
|
34
34
|
* "<keys>": "STRING_VALUE",
|
|
35
35
|
* },
|
|
36
|
-
* formatParams: { // required
|
|
36
|
+
* formatParams: { // FormatParams // required
|
|
37
37
|
* "<keys>": "STRING_VALUE",
|
|
38
38
|
* },
|
|
39
39
|
* };
|
|
@@ -26,21 +26,21 @@ export interface CreateDataViewCommandOutput extends CreateDataViewResponse, __M
|
|
|
26
26
|
* import { FinspaceDataClient, CreateDataViewCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
|
|
27
27
|
* // const { FinspaceDataClient, CreateDataViewCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
|
|
28
28
|
* const client = new FinspaceDataClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateDataViewRequest
|
|
30
30
|
* clientToken: "STRING_VALUE",
|
|
31
31
|
* datasetId: "STRING_VALUE", // required
|
|
32
32
|
* autoUpdate: true || false,
|
|
33
|
-
* sortColumns: [
|
|
33
|
+
* sortColumns: [ // SortColumnList
|
|
34
34
|
* "STRING_VALUE",
|
|
35
35
|
* ],
|
|
36
|
-
* partitionColumns: [
|
|
36
|
+
* partitionColumns: [ // PartitionColumnList
|
|
37
37
|
* "STRING_VALUE",
|
|
38
38
|
* ],
|
|
39
39
|
* asOfTimestamp: Number("long"),
|
|
40
|
-
* destinationTypeParams: {
|
|
40
|
+
* destinationTypeParams: { // DataViewDestinationTypeParams
|
|
41
41
|
* destinationType: "STRING_VALUE", // required
|
|
42
42
|
* s3DestinationExportFileFormat: "STRING_VALUE",
|
|
43
|
-
* s3DestinationExportFileFormatOptions: {
|
|
43
|
+
* s3DestinationExportFileFormatOptions: { // S3DestinationFormatOptions
|
|
44
44
|
* "<keys>": "STRING_VALUE",
|
|
45
45
|
* },
|
|
46
46
|
* },
|
|
@@ -26,35 +26,35 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met
|
|
|
26
26
|
* import { FinspaceDataClient, CreateDatasetCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
|
|
27
27
|
* // const { FinspaceDataClient, CreateDatasetCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
|
|
28
28
|
* const client = new FinspaceDataClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateDatasetRequest
|
|
30
30
|
* clientToken: "STRING_VALUE",
|
|
31
31
|
* datasetTitle: "STRING_VALUE", // required
|
|
32
32
|
* kind: "STRING_VALUE", // required
|
|
33
33
|
* datasetDescription: "STRING_VALUE",
|
|
34
|
-
* ownerInfo: {
|
|
34
|
+
* ownerInfo: { // DatasetOwnerInfo
|
|
35
35
|
* name: "STRING_VALUE",
|
|
36
36
|
* phoneNumber: "STRING_VALUE",
|
|
37
37
|
* email: "STRING_VALUE",
|
|
38
38
|
* },
|
|
39
|
-
* permissionGroupParams: {
|
|
39
|
+
* permissionGroupParams: { // PermissionGroupParams
|
|
40
40
|
* permissionGroupId: "STRING_VALUE",
|
|
41
|
-
* datasetPermissions: [
|
|
42
|
-
* {
|
|
41
|
+
* datasetPermissions: [ // ResourcePermissionsList
|
|
42
|
+
* { // ResourcePermission
|
|
43
43
|
* permission: "STRING_VALUE",
|
|
44
44
|
* },
|
|
45
45
|
* ],
|
|
46
46
|
* },
|
|
47
47
|
* alias: "STRING_VALUE",
|
|
48
|
-
* schemaDefinition: {
|
|
49
|
-
* tabularSchemaConfig: {
|
|
50
|
-
* columns: [
|
|
51
|
-
* {
|
|
48
|
+
* schemaDefinition: { // SchemaUnion
|
|
49
|
+
* tabularSchemaConfig: { // SchemaDefinition
|
|
50
|
+
* columns: [ // ColumnList
|
|
51
|
+
* { // ColumnDefinition
|
|
52
52
|
* dataType: "STRING_VALUE",
|
|
53
53
|
* columnName: "STRING_VALUE",
|
|
54
54
|
* columnDescription: "STRING_VALUE",
|
|
55
55
|
* },
|
|
56
56
|
* ],
|
|
57
|
-
* primaryKeyColumns: [
|
|
57
|
+
* primaryKeyColumns: [ // ColumnNameList
|
|
58
58
|
* "STRING_VALUE",
|
|
59
59
|
* ],
|
|
60
60
|
* },
|
|
@@ -26,10 +26,10 @@ export interface CreatePermissionGroupCommandOutput extends CreatePermissionGrou
|
|
|
26
26
|
* import { FinspaceDataClient, CreatePermissionGroupCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
|
|
27
27
|
* // const { FinspaceDataClient, CreatePermissionGroupCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
|
|
28
28
|
* const client = new FinspaceDataClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreatePermissionGroupRequest
|
|
30
30
|
* name: "STRING_VALUE", // required
|
|
31
31
|
* description: "STRING_VALUE",
|
|
32
|
-
* applicationPermissions: [ // required
|
|
32
|
+
* applicationPermissions: [ // ApplicationPermissionList // required
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* clientToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataB
|
|
|
26
26
|
* import { FinspaceDataClient, CreateUserCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
|
|
27
27
|
* // const { FinspaceDataClient, CreateUserCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
|
|
28
28
|
* const client = new FinspaceDataClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateUserRequest
|
|
30
30
|
* emailAddress: "STRING_VALUE", // required
|
|
31
31
|
* type: "STRING_VALUE", // required
|
|
32
32
|
* firstName: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface DeleteDatasetCommandOutput extends DeleteDatasetResponse, __Met
|
|
|
26
26
|
* import { FinspaceDataClient, DeleteDatasetCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
|
|
27
27
|
* // const { FinspaceDataClient, DeleteDatasetCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
|
|
28
28
|
* const client = new FinspaceDataClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteDatasetRequest
|
|
30
30
|
* clientToken: "STRING_VALUE",
|
|
31
31
|
* datasetId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DeletePermissionGroupCommandOutput extends DeletePermissionGrou
|
|
|
26
26
|
* import { FinspaceDataClient, DeletePermissionGroupCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
|
|
27
27
|
* // const { FinspaceDataClient, DeletePermissionGroupCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
|
|
28
28
|
* const client = new FinspaceDataClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeletePermissionGroupRequest
|
|
30
30
|
* permissionGroupId: "STRING_VALUE", // required
|
|
31
31
|
* clientToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DisableUserCommandOutput extends DisableUserResponse, __Metadat
|
|
|
26
26
|
* import { FinspaceDataClient, DisableUserCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
|
|
27
27
|
* // const { FinspaceDataClient, DisableUserCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
|
|
28
28
|
* const client = new FinspaceDataClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DisableUserRequest
|
|
30
30
|
* userId: "STRING_VALUE", // required
|
|
31
31
|
* clientToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DisassociateUserFromPermissionGroupCommandOutput extends Disass
|
|
|
26
26
|
* import { FinspaceDataClient, DisassociateUserFromPermissionGroupCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
|
|
27
27
|
* // const { FinspaceDataClient, DisassociateUserFromPermissionGroupCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
|
|
28
28
|
* const client = new FinspaceDataClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DisassociateUserFromPermissionGroupRequest
|
|
30
30
|
* permissionGroupId: "STRING_VALUE", // required
|
|
31
31
|
* userId: "STRING_VALUE", // required
|
|
32
32
|
* clientToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface EnableUserCommandOutput extends EnableUserResponse, __MetadataB
|
|
|
26
26
|
* import { FinspaceDataClient, EnableUserCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
|
|
27
27
|
* // const { FinspaceDataClient, EnableUserCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
|
|
28
28
|
* const client = new FinspaceDataClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // EnableUserRequest
|
|
30
30
|
* userId: "STRING_VALUE", // required
|
|
31
31
|
* clientToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface GetChangesetCommandOutput extends GetChangesetResponse, __Metad
|
|
|
26
26
|
* import { FinspaceDataClient, GetChangesetCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
|
|
27
27
|
* // const { FinspaceDataClient, GetChangesetCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
|
|
28
28
|
* const client = new FinspaceDataClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetChangesetRequest
|
|
30
30
|
* datasetId: "STRING_VALUE", // required
|
|
31
31
|
* changesetId: "STRING_VALUE", // required
|
|
32
32
|
* };
|