@aws-sdk/client-quicksight 3.691.0 → 3.692.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +143 -7
- package/dist-cjs/index.js +1116 -216
- package/dist-es/QuickSight.js +34 -0
- package/dist-es/commands/CreateBrandCommand.js +22 -0
- package/dist-es/commands/CreateCustomPermissionsCommand.js +22 -0
- package/dist-es/commands/DeleteBrandAssignmentCommand.js +22 -0
- package/dist-es/commands/DeleteBrandCommand.js +22 -0
- package/dist-es/commands/DeleteCustomPermissionsCommand.js +22 -0
- package/dist-es/commands/DeleteUserCustomPermissionCommand.js +22 -0
- package/dist-es/commands/DescribeBrandAssignmentCommand.js +22 -0
- package/dist-es/commands/DescribeBrandCommand.js +22 -0
- package/dist-es/commands/DescribeBrandPublishedVersionCommand.js +22 -0
- package/dist-es/commands/DescribeCustomPermissionsCommand.js +22 -0
- package/dist-es/commands/DescribeTemplateDefinitionCommand.js +1 -1
- package/dist-es/commands/DescribeTopicCommand.js +1 -1
- package/dist-es/commands/ListBrandsCommand.js +22 -0
- package/dist-es/commands/ListCustomPermissionsCommand.js +22 -0
- package/dist-es/commands/UpdateBrandAssignmentCommand.js +22 -0
- package/dist-es/commands/UpdateBrandCommand.js +22 -0
- package/dist-es/commands/UpdateBrandPublishedVersionCommand.js +22 -0
- package/dist-es/commands/UpdateCustomPermissionsCommand.js +22 -0
- package/dist-es/commands/UpdateUserCustomPermissionCommand.js +22 -0
- package/dist-es/commands/index.js +17 -0
- package/dist-es/models/models_2.js +52 -107
- package/dist-es/models/models_3.js +108 -29
- package/dist-es/models/models_4.js +30 -16
- package/dist-es/pagination/ListBrandsPaginator.js +4 -0
- package/dist-es/pagination/ListCustomPermissionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +540 -6
- package/dist-types/QuickSight.d.ts +119 -0
- package/dist-types/QuickSightClient.d.ts +19 -2
- package/dist-types/commands/CreateBrandCommand.d.ts +268 -0
- package/dist-types/commands/CreateCustomPermissionsCommand.d.ts +132 -0
- package/dist-types/commands/DeleteBrandAssignmentCommand.d.ts +92 -0
- package/dist-types/commands/DeleteBrandCommand.d.ts +93 -0
- package/dist-types/commands/DeleteCustomPermissionsCommand.d.ts +104 -0
- package/dist-types/commands/DeleteUserCustomPermissionCommand.d.ts +101 -0
- package/dist-types/commands/DescribeBrandAssignmentCommand.d.ts +93 -0
- package/dist-types/commands/DescribeBrandCommand.d.ts +204 -0
- package/dist-types/commands/DescribeBrandPublishedVersionCommand.d.ts +203 -0
- package/dist-types/commands/DescribeCustomPermissionsCommand.d.ts +120 -0
- package/dist-types/commands/DescribeIngestionCommand.d.ts +2 -1
- package/dist-types/commands/DescribeIpRestrictionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeKeyRegistrationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeNamespaceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeQPersonalizationConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeRefreshScheduleCommand.d.ts +1 -1
- package/dist-types/commands/DescribeRoleCustomPermissionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTemplateAliasCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTemplateCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTemplatePermissionsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeThemeAliasCommand.d.ts +1 -1
- package/dist-types/commands/DescribeThemeCommand.d.ts +1 -1
- package/dist-types/commands/DescribeThemePermissionsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTopicCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTopicPermissionsCommand.d.ts +1 -2
- package/dist-types/commands/ListBrandsCommand.d.ts +99 -0
- package/dist-types/commands/ListCustomPermissionsCommand.d.ts +124 -0
- package/dist-types/commands/UpdateBrandAssignmentCommand.d.ts +94 -0
- package/dist-types/commands/UpdateBrandCommand.d.ts +262 -0
- package/dist-types/commands/UpdateBrandPublishedVersionCommand.d.ts +95 -0
- package/dist-types/commands/UpdateCustomPermissionsCommand.d.ts +120 -0
- package/dist-types/commands/UpdateUserCustomPermissionCommand.d.ts +102 -0
- package/dist-types/commands/index.d.ts +17 -0
- package/dist-types/models/models_2.d.ts +1343 -1408
- package/dist-types/models/models_3.d.ts +4131 -4269
- package/dist-types/models/models_4.d.ts +1387 -21
- package/dist-types/pagination/ListBrandsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListCustomPermissionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +153 -0
- package/dist-types/ts3.4/QuickSight.d.ts +289 -0
- package/dist-types/ts3.4/QuickSightClient.d.ts +102 -0
- package/dist-types/ts3.4/commands/CreateBrandCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateCustomPermissionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteBrandAssignmentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteBrandCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteCustomPermissionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteUserCustomPermissionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeBrandAssignmentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeBrandCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DescribeBrandPublishedVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeCustomPermissionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeIngestionCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeIpRestrictionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeKeyRegistrationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeNamespaceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeQPersonalizationConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeRefreshScheduleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeRoleCustomPermissionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTemplateAliasCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTemplateCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTemplateDefinitionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTemplatePermissionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeThemeAliasCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeThemeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeThemePermissionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTopicCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTopicPermissionsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListBrandsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListCustomPermissionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateBrandAssignmentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateBrandCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateBrandPublishedVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateCustomPermissionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateUserCustomPermissionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +17 -0
- package/dist-types/ts3.4/models/models_2.d.ts +188 -311
- package/dist-types/ts3.4/models/models_3.d.ts +389 -267
- package/dist-types/ts3.4/models/models_4.d.ts +342 -18
- package/dist-types/ts3.4/pagination/ListBrandsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCustomPermissionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +204 -0
- package/package.json +35 -35
|
@@ -39,6 +39,10 @@ import {
|
|
|
39
39
|
AssignmentStatus,
|
|
40
40
|
AuthorSpecifiedAggregation,
|
|
41
41
|
BorderStyle,
|
|
42
|
+
BrandDefinition,
|
|
43
|
+
BrandDetail,
|
|
44
|
+
Capabilities,
|
|
45
|
+
CastColumnTypeOperation,
|
|
42
46
|
CategoryFilterFunction,
|
|
43
47
|
CategoryFilterType,
|
|
44
48
|
CellValueSynonym,
|
|
@@ -50,26 +54,22 @@ import {
|
|
|
50
54
|
ColumnGroupSchema,
|
|
51
55
|
ColumnLevelPermissionRule,
|
|
52
56
|
ColumnSchema,
|
|
57
|
+
ColumnTag,
|
|
58
|
+
ColumnTagName,
|
|
53
59
|
ComparativeOrder,
|
|
54
60
|
ConstantType,
|
|
61
|
+
CreateColumnsOperation,
|
|
55
62
|
DashboardPublishOptions,
|
|
56
63
|
DashboardVersionDefinition,
|
|
57
|
-
DataSetImportMode,
|
|
58
64
|
DatasetParameter,
|
|
59
65
|
DataSetReference,
|
|
60
|
-
DataSetUsageConfiguration,
|
|
61
66
|
DataSourceParameters,
|
|
62
67
|
DisplayFormat,
|
|
63
68
|
DisplayFormatOptions,
|
|
64
|
-
FieldFolder,
|
|
65
69
|
FilterClass,
|
|
66
70
|
FilterOperator,
|
|
67
71
|
LinkSharingConfiguration,
|
|
68
|
-
LogicalTable,
|
|
69
|
-
PhysicalTable,
|
|
70
72
|
ResourcePermission,
|
|
71
|
-
RowLevelPermissionFormatVersion,
|
|
72
|
-
RowLevelPermissionPolicy,
|
|
73
73
|
ServiceType,
|
|
74
74
|
SheetDefinition,
|
|
75
75
|
SnapshotFile,
|
|
@@ -80,6 +80,307 @@ import {
|
|
|
80
80
|
VpcConnectionProperties,
|
|
81
81
|
} from "./models_2";
|
|
82
82
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
83
|
+
export interface DataSetUsageConfiguration {
|
|
84
|
+
DisableUseAsDirectQuerySource?: boolean | undefined;
|
|
85
|
+
DisableUseAsImportedSource?: boolean | undefined;
|
|
86
|
+
}
|
|
87
|
+
export interface FieldFolder {
|
|
88
|
+
description?: string | undefined;
|
|
89
|
+
columns?: string[] | undefined;
|
|
90
|
+
}
|
|
91
|
+
export declare const DataSetImportMode: {
|
|
92
|
+
readonly DIRECT_QUERY: "DIRECT_QUERY";
|
|
93
|
+
readonly SPICE: "SPICE";
|
|
94
|
+
};
|
|
95
|
+
export type DataSetImportMode =
|
|
96
|
+
(typeof DataSetImportMode)[keyof typeof DataSetImportMode];
|
|
97
|
+
export interface FilterOperation {
|
|
98
|
+
ConditionExpression: string | undefined;
|
|
99
|
+
}
|
|
100
|
+
export interface NewDefaultValues {
|
|
101
|
+
StringStaticValues?: string[] | undefined;
|
|
102
|
+
DecimalStaticValues?: number[] | undefined;
|
|
103
|
+
DateTimeStaticValues?: Date[] | undefined;
|
|
104
|
+
IntegerStaticValues?: number[] | undefined;
|
|
105
|
+
}
|
|
106
|
+
export interface OverrideDatasetParameterOperation {
|
|
107
|
+
ParameterName: string | undefined;
|
|
108
|
+
NewParameterName?: string | undefined;
|
|
109
|
+
NewDefaultValues?: NewDefaultValues | undefined;
|
|
110
|
+
}
|
|
111
|
+
export interface ProjectOperation {
|
|
112
|
+
ProjectedColumns: string[] | undefined;
|
|
113
|
+
}
|
|
114
|
+
export interface RenameColumnOperation {
|
|
115
|
+
ColumnName: string | undefined;
|
|
116
|
+
NewColumnName: string | undefined;
|
|
117
|
+
}
|
|
118
|
+
export interface TagColumnOperation {
|
|
119
|
+
ColumnName: string | undefined;
|
|
120
|
+
Tags: ColumnTag[] | undefined;
|
|
121
|
+
}
|
|
122
|
+
export interface UntagColumnOperation {
|
|
123
|
+
ColumnName: string | undefined;
|
|
124
|
+
TagNames: ColumnTagName[] | undefined;
|
|
125
|
+
}
|
|
126
|
+
export type TransformOperation =
|
|
127
|
+
| TransformOperation.CastColumnTypeOperationMember
|
|
128
|
+
| TransformOperation.CreateColumnsOperationMember
|
|
129
|
+
| TransformOperation.FilterOperationMember
|
|
130
|
+
| TransformOperation.OverrideDatasetParameterOperationMember
|
|
131
|
+
| TransformOperation.ProjectOperationMember
|
|
132
|
+
| TransformOperation.RenameColumnOperationMember
|
|
133
|
+
| TransformOperation.TagColumnOperationMember
|
|
134
|
+
| TransformOperation.UntagColumnOperationMember
|
|
135
|
+
| TransformOperation.$UnknownMember;
|
|
136
|
+
export declare namespace TransformOperation {
|
|
137
|
+
interface ProjectOperationMember {
|
|
138
|
+
ProjectOperation: ProjectOperation;
|
|
139
|
+
FilterOperation?: never;
|
|
140
|
+
CreateColumnsOperation?: never;
|
|
141
|
+
RenameColumnOperation?: never;
|
|
142
|
+
CastColumnTypeOperation?: never;
|
|
143
|
+
TagColumnOperation?: never;
|
|
144
|
+
UntagColumnOperation?: never;
|
|
145
|
+
OverrideDatasetParameterOperation?: never;
|
|
146
|
+
$unknown?: never;
|
|
147
|
+
}
|
|
148
|
+
interface FilterOperationMember {
|
|
149
|
+
ProjectOperation?: never;
|
|
150
|
+
FilterOperation: FilterOperation;
|
|
151
|
+
CreateColumnsOperation?: never;
|
|
152
|
+
RenameColumnOperation?: never;
|
|
153
|
+
CastColumnTypeOperation?: never;
|
|
154
|
+
TagColumnOperation?: never;
|
|
155
|
+
UntagColumnOperation?: never;
|
|
156
|
+
OverrideDatasetParameterOperation?: never;
|
|
157
|
+
$unknown?: never;
|
|
158
|
+
}
|
|
159
|
+
interface CreateColumnsOperationMember {
|
|
160
|
+
ProjectOperation?: never;
|
|
161
|
+
FilterOperation?: never;
|
|
162
|
+
CreateColumnsOperation: CreateColumnsOperation;
|
|
163
|
+
RenameColumnOperation?: never;
|
|
164
|
+
CastColumnTypeOperation?: never;
|
|
165
|
+
TagColumnOperation?: never;
|
|
166
|
+
UntagColumnOperation?: never;
|
|
167
|
+
OverrideDatasetParameterOperation?: never;
|
|
168
|
+
$unknown?: never;
|
|
169
|
+
}
|
|
170
|
+
interface RenameColumnOperationMember {
|
|
171
|
+
ProjectOperation?: never;
|
|
172
|
+
FilterOperation?: never;
|
|
173
|
+
CreateColumnsOperation?: never;
|
|
174
|
+
RenameColumnOperation: RenameColumnOperation;
|
|
175
|
+
CastColumnTypeOperation?: never;
|
|
176
|
+
TagColumnOperation?: never;
|
|
177
|
+
UntagColumnOperation?: never;
|
|
178
|
+
OverrideDatasetParameterOperation?: never;
|
|
179
|
+
$unknown?: never;
|
|
180
|
+
}
|
|
181
|
+
interface CastColumnTypeOperationMember {
|
|
182
|
+
ProjectOperation?: never;
|
|
183
|
+
FilterOperation?: never;
|
|
184
|
+
CreateColumnsOperation?: never;
|
|
185
|
+
RenameColumnOperation?: never;
|
|
186
|
+
CastColumnTypeOperation: CastColumnTypeOperation;
|
|
187
|
+
TagColumnOperation?: never;
|
|
188
|
+
UntagColumnOperation?: never;
|
|
189
|
+
OverrideDatasetParameterOperation?: never;
|
|
190
|
+
$unknown?: never;
|
|
191
|
+
}
|
|
192
|
+
interface TagColumnOperationMember {
|
|
193
|
+
ProjectOperation?: never;
|
|
194
|
+
FilterOperation?: never;
|
|
195
|
+
CreateColumnsOperation?: never;
|
|
196
|
+
RenameColumnOperation?: never;
|
|
197
|
+
CastColumnTypeOperation?: never;
|
|
198
|
+
TagColumnOperation: TagColumnOperation;
|
|
199
|
+
UntagColumnOperation?: never;
|
|
200
|
+
OverrideDatasetParameterOperation?: never;
|
|
201
|
+
$unknown?: never;
|
|
202
|
+
}
|
|
203
|
+
interface UntagColumnOperationMember {
|
|
204
|
+
ProjectOperation?: never;
|
|
205
|
+
FilterOperation?: never;
|
|
206
|
+
CreateColumnsOperation?: never;
|
|
207
|
+
RenameColumnOperation?: never;
|
|
208
|
+
CastColumnTypeOperation?: never;
|
|
209
|
+
TagColumnOperation?: never;
|
|
210
|
+
UntagColumnOperation: UntagColumnOperation;
|
|
211
|
+
OverrideDatasetParameterOperation?: never;
|
|
212
|
+
$unknown?: never;
|
|
213
|
+
}
|
|
214
|
+
interface OverrideDatasetParameterOperationMember {
|
|
215
|
+
ProjectOperation?: never;
|
|
216
|
+
FilterOperation?: never;
|
|
217
|
+
CreateColumnsOperation?: never;
|
|
218
|
+
RenameColumnOperation?: never;
|
|
219
|
+
CastColumnTypeOperation?: never;
|
|
220
|
+
TagColumnOperation?: never;
|
|
221
|
+
UntagColumnOperation?: never;
|
|
222
|
+
OverrideDatasetParameterOperation: OverrideDatasetParameterOperation;
|
|
223
|
+
$unknown?: never;
|
|
224
|
+
}
|
|
225
|
+
interface $UnknownMember {
|
|
226
|
+
ProjectOperation?: never;
|
|
227
|
+
FilterOperation?: never;
|
|
228
|
+
CreateColumnsOperation?: never;
|
|
229
|
+
RenameColumnOperation?: never;
|
|
230
|
+
CastColumnTypeOperation?: never;
|
|
231
|
+
TagColumnOperation?: never;
|
|
232
|
+
UntagColumnOperation?: never;
|
|
233
|
+
OverrideDatasetParameterOperation?: never;
|
|
234
|
+
$unknown: [string, any];
|
|
235
|
+
}
|
|
236
|
+
interface Visitor<T> {
|
|
237
|
+
ProjectOperation: (value: ProjectOperation) => T;
|
|
238
|
+
FilterOperation: (value: FilterOperation) => T;
|
|
239
|
+
CreateColumnsOperation: (value: CreateColumnsOperation) => T;
|
|
240
|
+
RenameColumnOperation: (value: RenameColumnOperation) => T;
|
|
241
|
+
CastColumnTypeOperation: (value: CastColumnTypeOperation) => T;
|
|
242
|
+
TagColumnOperation: (value: TagColumnOperation) => T;
|
|
243
|
+
UntagColumnOperation: (value: UntagColumnOperation) => T;
|
|
244
|
+
OverrideDatasetParameterOperation: (
|
|
245
|
+
value: OverrideDatasetParameterOperation
|
|
246
|
+
) => T;
|
|
247
|
+
_: (name: string, value: any) => T;
|
|
248
|
+
}
|
|
249
|
+
const visit: <T>(value: TransformOperation, visitor: Visitor<T>) => T;
|
|
250
|
+
}
|
|
251
|
+
export interface JoinKeyProperties {
|
|
252
|
+
UniqueKey?: boolean | undefined;
|
|
253
|
+
}
|
|
254
|
+
export declare const JoinType: {
|
|
255
|
+
readonly INNER: "INNER";
|
|
256
|
+
readonly LEFT: "LEFT";
|
|
257
|
+
readonly OUTER: "OUTER";
|
|
258
|
+
readonly RIGHT: "RIGHT";
|
|
259
|
+
};
|
|
260
|
+
export type JoinType = (typeof JoinType)[keyof typeof JoinType];
|
|
261
|
+
export interface JoinInstruction {
|
|
262
|
+
LeftOperand: string | undefined;
|
|
263
|
+
RightOperand: string | undefined;
|
|
264
|
+
LeftJoinKeyProperties?: JoinKeyProperties | undefined;
|
|
265
|
+
RightJoinKeyProperties?: JoinKeyProperties | undefined;
|
|
266
|
+
Type: JoinType | undefined;
|
|
267
|
+
OnClause: string | undefined;
|
|
268
|
+
}
|
|
269
|
+
export interface LogicalTableSource {
|
|
270
|
+
JoinInstruction?: JoinInstruction | undefined;
|
|
271
|
+
PhysicalTableId?: string | undefined;
|
|
272
|
+
DataSetArn?: string | undefined;
|
|
273
|
+
}
|
|
274
|
+
export interface LogicalTable {
|
|
275
|
+
Alias: string | undefined;
|
|
276
|
+
DataTransforms?: TransformOperation[] | undefined;
|
|
277
|
+
Source: LogicalTableSource | undefined;
|
|
278
|
+
}
|
|
279
|
+
export declare const InputColumnDataType: {
|
|
280
|
+
readonly BIT: "BIT";
|
|
281
|
+
readonly BOOLEAN: "BOOLEAN";
|
|
282
|
+
readonly DATETIME: "DATETIME";
|
|
283
|
+
readonly DECIMAL: "DECIMAL";
|
|
284
|
+
readonly INTEGER: "INTEGER";
|
|
285
|
+
readonly JSON: "JSON";
|
|
286
|
+
readonly STRING: "STRING";
|
|
287
|
+
};
|
|
288
|
+
export type InputColumnDataType =
|
|
289
|
+
(typeof InputColumnDataType)[keyof typeof InputColumnDataType];
|
|
290
|
+
export interface InputColumn {
|
|
291
|
+
Name: string | undefined;
|
|
292
|
+
Type: InputColumnDataType | undefined;
|
|
293
|
+
SubType?: ColumnDataSubType | undefined;
|
|
294
|
+
}
|
|
295
|
+
export interface CustomSql {
|
|
296
|
+
DataSourceArn: string | undefined;
|
|
297
|
+
Name: string | undefined;
|
|
298
|
+
SqlQuery: string | undefined;
|
|
299
|
+
Columns?: InputColumn[] | undefined;
|
|
300
|
+
}
|
|
301
|
+
export interface RelationalTable {
|
|
302
|
+
DataSourceArn: string | undefined;
|
|
303
|
+
Catalog?: string | undefined;
|
|
304
|
+
Schema?: string | undefined;
|
|
305
|
+
Name: string | undefined;
|
|
306
|
+
InputColumns: InputColumn[] | undefined;
|
|
307
|
+
}
|
|
308
|
+
export declare const FileFormat: {
|
|
309
|
+
readonly CLF: "CLF";
|
|
310
|
+
readonly CSV: "CSV";
|
|
311
|
+
readonly ELF: "ELF";
|
|
312
|
+
readonly JSON: "JSON";
|
|
313
|
+
readonly TSV: "TSV";
|
|
314
|
+
readonly XLSX: "XLSX";
|
|
315
|
+
};
|
|
316
|
+
export type FileFormat = (typeof FileFormat)[keyof typeof FileFormat];
|
|
317
|
+
export declare const TextQualifier: {
|
|
318
|
+
readonly DOUBLE_QUOTE: "DOUBLE_QUOTE";
|
|
319
|
+
readonly SINGLE_QUOTE: "SINGLE_QUOTE";
|
|
320
|
+
};
|
|
321
|
+
export type TextQualifier = (typeof TextQualifier)[keyof typeof TextQualifier];
|
|
322
|
+
export interface UploadSettings {
|
|
323
|
+
Format?: FileFormat | undefined;
|
|
324
|
+
StartFromRow?: number | undefined;
|
|
325
|
+
ContainsHeader?: boolean | undefined;
|
|
326
|
+
TextQualifier?: TextQualifier | undefined;
|
|
327
|
+
Delimiter?: string | undefined;
|
|
328
|
+
}
|
|
329
|
+
export interface S3Source {
|
|
330
|
+
DataSourceArn: string | undefined;
|
|
331
|
+
UploadSettings?: UploadSettings | undefined;
|
|
332
|
+
InputColumns: InputColumn[] | undefined;
|
|
333
|
+
}
|
|
334
|
+
export type PhysicalTable =
|
|
335
|
+
| PhysicalTable.CustomSqlMember
|
|
336
|
+
| PhysicalTable.RelationalTableMember
|
|
337
|
+
| PhysicalTable.S3SourceMember
|
|
338
|
+
| PhysicalTable.$UnknownMember;
|
|
339
|
+
export declare namespace PhysicalTable {
|
|
340
|
+
interface RelationalTableMember {
|
|
341
|
+
RelationalTable: RelationalTable;
|
|
342
|
+
CustomSql?: never;
|
|
343
|
+
S3Source?: never;
|
|
344
|
+
$unknown?: never;
|
|
345
|
+
}
|
|
346
|
+
interface CustomSqlMember {
|
|
347
|
+
RelationalTable?: never;
|
|
348
|
+
CustomSql: CustomSql;
|
|
349
|
+
S3Source?: never;
|
|
350
|
+
$unknown?: never;
|
|
351
|
+
}
|
|
352
|
+
interface S3SourceMember {
|
|
353
|
+
RelationalTable?: never;
|
|
354
|
+
CustomSql?: never;
|
|
355
|
+
S3Source: S3Source;
|
|
356
|
+
$unknown?: never;
|
|
357
|
+
}
|
|
358
|
+
interface $UnknownMember {
|
|
359
|
+
RelationalTable?: never;
|
|
360
|
+
CustomSql?: never;
|
|
361
|
+
S3Source?: never;
|
|
362
|
+
$unknown: [string, any];
|
|
363
|
+
}
|
|
364
|
+
interface Visitor<T> {
|
|
365
|
+
RelationalTable: (value: RelationalTable) => T;
|
|
366
|
+
CustomSql: (value: CustomSql) => T;
|
|
367
|
+
S3Source: (value: S3Source) => T;
|
|
368
|
+
_: (name: string, value: any) => T;
|
|
369
|
+
}
|
|
370
|
+
const visit: <T>(value: PhysicalTable, visitor: Visitor<T>) => T;
|
|
371
|
+
}
|
|
372
|
+
export declare const RowLevelPermissionFormatVersion: {
|
|
373
|
+
readonly VERSION_1: "VERSION_1";
|
|
374
|
+
readonly VERSION_2: "VERSION_2";
|
|
375
|
+
};
|
|
376
|
+
export type RowLevelPermissionFormatVersion =
|
|
377
|
+
(typeof RowLevelPermissionFormatVersion)[keyof typeof RowLevelPermissionFormatVersion];
|
|
378
|
+
export declare const RowLevelPermissionPolicy: {
|
|
379
|
+
readonly DENY_ACCESS: "DENY_ACCESS";
|
|
380
|
+
readonly GRANT_ACCESS: "GRANT_ACCESS";
|
|
381
|
+
};
|
|
382
|
+
export type RowLevelPermissionPolicy =
|
|
383
|
+
(typeof RowLevelPermissionPolicy)[keyof typeof RowLevelPermissionPolicy];
|
|
83
384
|
export declare const Status: {
|
|
84
385
|
readonly DISABLED: "DISABLED";
|
|
85
386
|
readonly ENABLED: "ENABLED";
|
|
@@ -894,6 +1195,11 @@ export interface CreateVPCConnectionResponse {
|
|
|
894
1195
|
RequestId?: string | undefined;
|
|
895
1196
|
Status?: number | undefined;
|
|
896
1197
|
}
|
|
1198
|
+
export interface CustomPermissions {
|
|
1199
|
+
Arn?: string | undefined;
|
|
1200
|
+
CustomPermissionsName?: string | undefined;
|
|
1201
|
+
Capabilities?: Capabilities | undefined;
|
|
1202
|
+
}
|
|
897
1203
|
export declare const DashboardErrorType: {
|
|
898
1204
|
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
899
1205
|
readonly COLUMN_GEOGRAPHIC_ROLE_MISMATCH: "COLUMN_GEOGRAPHIC_ROLE_MISMATCH";
|
|
@@ -1122,6 +1428,28 @@ export interface DeleteAnalysisResponse {
|
|
|
1122
1428
|
DeletionTime?: Date | undefined;
|
|
1123
1429
|
RequestId?: string | undefined;
|
|
1124
1430
|
}
|
|
1431
|
+
export interface DeleteBrandRequest {
|
|
1432
|
+
AwsAccountId: string | undefined;
|
|
1433
|
+
BrandId: string | undefined;
|
|
1434
|
+
}
|
|
1435
|
+
export interface DeleteBrandResponse {
|
|
1436
|
+
RequestId?: string | undefined;
|
|
1437
|
+
}
|
|
1438
|
+
export interface DeleteBrandAssignmentRequest {
|
|
1439
|
+
AwsAccountId: string | undefined;
|
|
1440
|
+
}
|
|
1441
|
+
export interface DeleteBrandAssignmentResponse {
|
|
1442
|
+
RequestId?: string | undefined;
|
|
1443
|
+
}
|
|
1444
|
+
export interface DeleteCustomPermissionsRequest {
|
|
1445
|
+
AwsAccountId: string | undefined;
|
|
1446
|
+
CustomPermissionsName: string | undefined;
|
|
1447
|
+
}
|
|
1448
|
+
export interface DeleteCustomPermissionsResponse {
|
|
1449
|
+
Status?: number | undefined;
|
|
1450
|
+
Arn?: string | undefined;
|
|
1451
|
+
RequestId?: string | undefined;
|
|
1452
|
+
}
|
|
1125
1453
|
export interface DeleteDashboardRequest {
|
|
1126
1454
|
AwsAccountId: string | undefined;
|
|
1127
1455
|
DashboardId: string | undefined;
|
|
@@ -1342,6 +1670,15 @@ export interface DeleteUserByPrincipalIdResponse {
|
|
|
1342
1670
|
RequestId?: string | undefined;
|
|
1343
1671
|
Status?: number | undefined;
|
|
1344
1672
|
}
|
|
1673
|
+
export interface DeleteUserCustomPermissionRequest {
|
|
1674
|
+
UserName: string | undefined;
|
|
1675
|
+
AwsAccountId: string | undefined;
|
|
1676
|
+
Namespace: string | undefined;
|
|
1677
|
+
}
|
|
1678
|
+
export interface DeleteUserCustomPermissionResponse {
|
|
1679
|
+
RequestId?: string | undefined;
|
|
1680
|
+
Status?: number | undefined;
|
|
1681
|
+
}
|
|
1345
1682
|
export interface DeleteVPCConnectionRequest {
|
|
1346
1683
|
AwsAccountId: string | undefined;
|
|
1347
1684
|
VPCConnectionId: string | undefined;
|
|
@@ -1475,6 +1812,41 @@ export interface DescribeAssetBundleImportJobResponse {
|
|
|
1475
1812
|
| undefined;
|
|
1476
1813
|
Warnings?: AssetBundleImportJobWarning[] | undefined;
|
|
1477
1814
|
}
|
|
1815
|
+
export interface DescribeBrandRequest {
|
|
1816
|
+
AwsAccountId: string | undefined;
|
|
1817
|
+
BrandId: string | undefined;
|
|
1818
|
+
VersionId?: string | undefined;
|
|
1819
|
+
}
|
|
1820
|
+
export interface DescribeBrandResponse {
|
|
1821
|
+
RequestId?: string | undefined;
|
|
1822
|
+
BrandDetail?: BrandDetail | undefined;
|
|
1823
|
+
BrandDefinition?: BrandDefinition | undefined;
|
|
1824
|
+
}
|
|
1825
|
+
export interface DescribeBrandAssignmentRequest {
|
|
1826
|
+
AwsAccountId: string | undefined;
|
|
1827
|
+
}
|
|
1828
|
+
export interface DescribeBrandAssignmentResponse {
|
|
1829
|
+
RequestId?: string | undefined;
|
|
1830
|
+
BrandArn?: string | undefined;
|
|
1831
|
+
}
|
|
1832
|
+
export interface DescribeBrandPublishedVersionRequest {
|
|
1833
|
+
AwsAccountId: string | undefined;
|
|
1834
|
+
BrandId: string | undefined;
|
|
1835
|
+
}
|
|
1836
|
+
export interface DescribeBrandPublishedVersionResponse {
|
|
1837
|
+
RequestId?: string | undefined;
|
|
1838
|
+
BrandDetail?: BrandDetail | undefined;
|
|
1839
|
+
BrandDefinition?: BrandDefinition | undefined;
|
|
1840
|
+
}
|
|
1841
|
+
export interface DescribeCustomPermissionsRequest {
|
|
1842
|
+
AwsAccountId: string | undefined;
|
|
1843
|
+
CustomPermissionsName: string | undefined;
|
|
1844
|
+
}
|
|
1845
|
+
export interface DescribeCustomPermissionsResponse {
|
|
1846
|
+
Status?: number | undefined;
|
|
1847
|
+
CustomPermissions?: CustomPermissions | undefined;
|
|
1848
|
+
RequestId?: string | undefined;
|
|
1849
|
+
}
|
|
1478
1850
|
export interface DescribeDashboardRequest {
|
|
1479
1851
|
AwsAccountId: string | undefined;
|
|
1480
1852
|
DashboardId: string | undefined;
|
|
@@ -1820,260 +2192,16 @@ export interface Ingestion {
|
|
|
1820
2192
|
RequestSource?: IngestionRequestSource | undefined;
|
|
1821
2193
|
RequestType?: IngestionRequestType | undefined;
|
|
1822
2194
|
}
|
|
1823
|
-
export
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
IpRestrictionRuleMap?: Record<string, string> | undefined;
|
|
1834
|
-
VpcIdRestrictionRuleMap?: Record<string, string> | undefined;
|
|
1835
|
-
VpcEndpointIdRestrictionRuleMap?: Record<string, string> | undefined;
|
|
1836
|
-
Enabled?: boolean | undefined;
|
|
1837
|
-
RequestId?: string | undefined;
|
|
1838
|
-
Status?: number | undefined;
|
|
1839
|
-
}
|
|
1840
|
-
export interface DescribeKeyRegistrationRequest {
|
|
1841
|
-
AwsAccountId: string | undefined;
|
|
1842
|
-
DefaultKeyOnly?: boolean | undefined;
|
|
1843
|
-
}
|
|
1844
|
-
export interface RegisteredCustomerManagedKey {
|
|
1845
|
-
KeyArn?: string | undefined;
|
|
1846
|
-
DefaultKey?: boolean | undefined;
|
|
1847
|
-
}
|
|
1848
|
-
export interface DescribeKeyRegistrationResponse {
|
|
1849
|
-
AwsAccountId?: string | undefined;
|
|
1850
|
-
KeyRegistration?: RegisteredCustomerManagedKey[] | undefined;
|
|
1851
|
-
RequestId?: string | undefined;
|
|
1852
|
-
Status?: number | undefined;
|
|
1853
|
-
}
|
|
1854
|
-
export interface DescribeNamespaceRequest {
|
|
1855
|
-
AwsAccountId: string | undefined;
|
|
1856
|
-
Namespace: string | undefined;
|
|
1857
|
-
}
|
|
1858
|
-
export declare const NamespaceErrorType: {
|
|
1859
|
-
readonly INTERNAL_SERVICE_ERROR: "INTERNAL_SERVICE_ERROR";
|
|
1860
|
-
readonly PERMISSION_DENIED: "PERMISSION_DENIED";
|
|
1861
|
-
};
|
|
1862
|
-
export type NamespaceErrorType =
|
|
1863
|
-
(typeof NamespaceErrorType)[keyof typeof NamespaceErrorType];
|
|
1864
|
-
export interface NamespaceError {
|
|
1865
|
-
Type?: NamespaceErrorType | undefined;
|
|
1866
|
-
Message?: string | undefined;
|
|
1867
|
-
}
|
|
1868
|
-
export interface NamespaceInfoV2 {
|
|
1869
|
-
Name?: string | undefined;
|
|
1870
|
-
Arn?: string | undefined;
|
|
1871
|
-
CapacityRegion?: string | undefined;
|
|
1872
|
-
CreationStatus?: NamespaceStatus | undefined;
|
|
1873
|
-
IdentityStore?: IdentityStore | undefined;
|
|
1874
|
-
NamespaceError?: NamespaceError | undefined;
|
|
1875
|
-
}
|
|
1876
|
-
export interface DescribeNamespaceResponse {
|
|
1877
|
-
Namespace?: NamespaceInfoV2 | undefined;
|
|
1878
|
-
RequestId?: string | undefined;
|
|
1879
|
-
Status?: number | undefined;
|
|
1880
|
-
}
|
|
1881
|
-
export interface DescribeQPersonalizationConfigurationRequest {
|
|
1882
|
-
AwsAccountId: string | undefined;
|
|
1883
|
-
}
|
|
1884
|
-
export declare const PersonalizationMode: {
|
|
1885
|
-
readonly DISABLED: "DISABLED";
|
|
1886
|
-
readonly ENABLED: "ENABLED";
|
|
1887
|
-
};
|
|
1888
|
-
export type PersonalizationMode =
|
|
1889
|
-
(typeof PersonalizationMode)[keyof typeof PersonalizationMode];
|
|
1890
|
-
export interface DescribeQPersonalizationConfigurationResponse {
|
|
1891
|
-
PersonalizationMode?: PersonalizationMode | undefined;
|
|
1892
|
-
RequestId?: string | undefined;
|
|
1893
|
-
Status?: number | undefined;
|
|
1894
|
-
}
|
|
1895
|
-
export interface DescribeRefreshScheduleRequest {
|
|
1896
|
-
AwsAccountId: string | undefined;
|
|
1897
|
-
DataSetId: string | undefined;
|
|
1898
|
-
ScheduleId: string | undefined;
|
|
1899
|
-
}
|
|
1900
|
-
export interface DescribeRefreshScheduleResponse {
|
|
1901
|
-
RefreshSchedule?: RefreshSchedule | undefined;
|
|
1902
|
-
Status?: number | undefined;
|
|
1903
|
-
RequestId?: string | undefined;
|
|
1904
|
-
Arn?: string | undefined;
|
|
1905
|
-
}
|
|
1906
|
-
export interface DescribeRoleCustomPermissionRequest {
|
|
1907
|
-
Role: Role | undefined;
|
|
1908
|
-
AwsAccountId: string | undefined;
|
|
1909
|
-
Namespace: string | undefined;
|
|
1910
|
-
}
|
|
1911
|
-
export interface DescribeRoleCustomPermissionResponse {
|
|
1912
|
-
CustomPermissionsName?: string | undefined;
|
|
1913
|
-
RequestId?: string | undefined;
|
|
1914
|
-
Status?: number | undefined;
|
|
1915
|
-
}
|
|
1916
|
-
export interface DescribeTemplateRequest {
|
|
1917
|
-
AwsAccountId: string | undefined;
|
|
1918
|
-
TemplateId: string | undefined;
|
|
1919
|
-
VersionNumber?: number | undefined;
|
|
1920
|
-
AliasName?: string | undefined;
|
|
1921
|
-
}
|
|
1922
|
-
export declare const TemplateErrorType: {
|
|
1923
|
-
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
1924
|
-
readonly DATA_SET_NOT_FOUND: "DATA_SET_NOT_FOUND";
|
|
1925
|
-
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
1926
|
-
readonly SOURCE_NOT_FOUND: "SOURCE_NOT_FOUND";
|
|
1927
|
-
};
|
|
1928
|
-
export type TemplateErrorType =
|
|
1929
|
-
(typeof TemplateErrorType)[keyof typeof TemplateErrorType];
|
|
1930
|
-
export interface TemplateError {
|
|
1931
|
-
Type?: TemplateErrorType | undefined;
|
|
1932
|
-
Message?: string | undefined;
|
|
1933
|
-
ViolatedEntities?: Entity[] | undefined;
|
|
1934
|
-
}
|
|
1935
|
-
export interface TemplateVersion {
|
|
1936
|
-
CreatedTime?: Date | undefined;
|
|
1937
|
-
Errors?: TemplateError[] | undefined;
|
|
1938
|
-
VersionNumber?: number | undefined;
|
|
1939
|
-
Status?: ResourceStatus | undefined;
|
|
1940
|
-
DataSetConfigurations?: DataSetConfiguration[] | undefined;
|
|
1941
|
-
Description?: string | undefined;
|
|
1942
|
-
SourceEntityArn?: string | undefined;
|
|
1943
|
-
ThemeArn?: string | undefined;
|
|
1944
|
-
Sheets?: Sheet[] | undefined;
|
|
1945
|
-
}
|
|
1946
|
-
export interface Template {
|
|
1947
|
-
Arn?: string | undefined;
|
|
1948
|
-
Name?: string | undefined;
|
|
1949
|
-
Version?: TemplateVersion | undefined;
|
|
1950
|
-
TemplateId?: string | undefined;
|
|
1951
|
-
LastUpdatedTime?: Date | undefined;
|
|
1952
|
-
CreatedTime?: Date | undefined;
|
|
1953
|
-
}
|
|
1954
|
-
export interface DescribeTemplateResponse {
|
|
1955
|
-
Template?: Template | undefined;
|
|
1956
|
-
Status?: number | undefined;
|
|
1957
|
-
RequestId?: string | undefined;
|
|
1958
|
-
}
|
|
1959
|
-
export interface DescribeTemplateAliasRequest {
|
|
1960
|
-
AwsAccountId: string | undefined;
|
|
1961
|
-
TemplateId: string | undefined;
|
|
1962
|
-
AliasName: string | undefined;
|
|
1963
|
-
}
|
|
1964
|
-
export interface DescribeTemplateAliasResponse {
|
|
1965
|
-
TemplateAlias?: TemplateAlias | undefined;
|
|
1966
|
-
Status?: number | undefined;
|
|
1967
|
-
RequestId?: string | undefined;
|
|
1968
|
-
}
|
|
1969
|
-
export interface DescribeTemplateDefinitionRequest {
|
|
1970
|
-
AwsAccountId: string | undefined;
|
|
1971
|
-
TemplateId: string | undefined;
|
|
1972
|
-
VersionNumber?: number | undefined;
|
|
1973
|
-
AliasName?: string | undefined;
|
|
1974
|
-
}
|
|
1975
|
-
export interface DescribeTemplateDefinitionResponse {
|
|
1976
|
-
Name?: string | undefined;
|
|
1977
|
-
TemplateId?: string | undefined;
|
|
1978
|
-
Errors?: TemplateError[] | undefined;
|
|
1979
|
-
ResourceStatus?: ResourceStatus | undefined;
|
|
1980
|
-
ThemeArn?: string | undefined;
|
|
1981
|
-
Definition?: TemplateVersionDefinition | undefined;
|
|
1982
|
-
Status?: number | undefined;
|
|
1983
|
-
RequestId?: string | undefined;
|
|
1984
|
-
}
|
|
1985
|
-
export interface DescribeTemplatePermissionsRequest {
|
|
1986
|
-
AwsAccountId: string | undefined;
|
|
1987
|
-
TemplateId: string | undefined;
|
|
1988
|
-
}
|
|
1989
|
-
export interface DescribeTemplatePermissionsResponse {
|
|
1990
|
-
TemplateId?: string | undefined;
|
|
1991
|
-
TemplateArn?: string | undefined;
|
|
1992
|
-
Permissions?: ResourcePermission[] | undefined;
|
|
1993
|
-
RequestId?: string | undefined;
|
|
1994
|
-
Status?: number | undefined;
|
|
1995
|
-
}
|
|
1996
|
-
export interface DescribeThemeRequest {
|
|
1997
|
-
AwsAccountId: string | undefined;
|
|
1998
|
-
ThemeId: string | undefined;
|
|
1999
|
-
VersionNumber?: number | undefined;
|
|
2000
|
-
AliasName?: string | undefined;
|
|
2001
|
-
}
|
|
2002
|
-
export declare const ThemeType: {
|
|
2003
|
-
readonly ALL: "ALL";
|
|
2004
|
-
readonly CUSTOM: "CUSTOM";
|
|
2005
|
-
readonly QUICKSIGHT: "QUICKSIGHT";
|
|
2006
|
-
};
|
|
2007
|
-
export type ThemeType = (typeof ThemeType)[keyof typeof ThemeType];
|
|
2008
|
-
export declare const ThemeErrorType: {
|
|
2009
|
-
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
2010
|
-
};
|
|
2011
|
-
export type ThemeErrorType =
|
|
2012
|
-
(typeof ThemeErrorType)[keyof typeof ThemeErrorType];
|
|
2013
|
-
export interface ThemeError {
|
|
2014
|
-
Type?: ThemeErrorType | undefined;
|
|
2015
|
-
Message?: string | undefined;
|
|
2016
|
-
}
|
|
2017
|
-
export interface ThemeVersion {
|
|
2018
|
-
VersionNumber?: number | undefined;
|
|
2019
|
-
Arn?: string | undefined;
|
|
2020
|
-
Description?: string | undefined;
|
|
2021
|
-
BaseThemeId?: string | undefined;
|
|
2022
|
-
CreatedTime?: Date | undefined;
|
|
2023
|
-
Configuration?: ThemeConfiguration | undefined;
|
|
2024
|
-
Errors?: ThemeError[] | undefined;
|
|
2025
|
-
Status?: ResourceStatus | undefined;
|
|
2026
|
-
}
|
|
2027
|
-
export interface Theme {
|
|
2028
|
-
Arn?: string | undefined;
|
|
2029
|
-
Name?: string | undefined;
|
|
2030
|
-
ThemeId?: string | undefined;
|
|
2031
|
-
Version?: ThemeVersion | undefined;
|
|
2032
|
-
CreatedTime?: Date | undefined;
|
|
2033
|
-
LastUpdatedTime?: Date | undefined;
|
|
2034
|
-
Type?: ThemeType | undefined;
|
|
2035
|
-
}
|
|
2036
|
-
export interface DescribeThemeResponse {
|
|
2037
|
-
Theme?: Theme | undefined;
|
|
2038
|
-
Status?: number | undefined;
|
|
2039
|
-
RequestId?: string | undefined;
|
|
2040
|
-
}
|
|
2041
|
-
export interface DescribeThemeAliasRequest {
|
|
2042
|
-
AwsAccountId: string | undefined;
|
|
2043
|
-
ThemeId: string | undefined;
|
|
2044
|
-
AliasName: string | undefined;
|
|
2045
|
-
}
|
|
2046
|
-
export interface DescribeThemeAliasResponse {
|
|
2047
|
-
ThemeAlias?: ThemeAlias | undefined;
|
|
2048
|
-
Status?: number | undefined;
|
|
2049
|
-
RequestId?: string | undefined;
|
|
2050
|
-
}
|
|
2051
|
-
export interface DescribeThemePermissionsRequest {
|
|
2052
|
-
AwsAccountId: string | undefined;
|
|
2053
|
-
ThemeId: string | undefined;
|
|
2054
|
-
}
|
|
2055
|
-
export interface DescribeThemePermissionsResponse {
|
|
2056
|
-
ThemeId?: string | undefined;
|
|
2057
|
-
ThemeArn?: string | undefined;
|
|
2058
|
-
Permissions?: ResourcePermission[] | undefined;
|
|
2059
|
-
RequestId?: string | undefined;
|
|
2060
|
-
Status?: number | undefined;
|
|
2061
|
-
}
|
|
2062
|
-
export interface DescribeTopicRequest {
|
|
2063
|
-
AwsAccountId: string | undefined;
|
|
2064
|
-
TopicId: string | undefined;
|
|
2065
|
-
}
|
|
2066
|
-
export interface DescribeTopicResponse {
|
|
2067
|
-
Arn?: string | undefined;
|
|
2068
|
-
TopicId?: string | undefined;
|
|
2069
|
-
Topic?: TopicDetails | undefined;
|
|
2070
|
-
RequestId?: string | undefined;
|
|
2071
|
-
Status?: number | undefined;
|
|
2072
|
-
}
|
|
2073
|
-
export interface DescribeTopicPermissionsRequest {
|
|
2074
|
-
AwsAccountId: string | undefined;
|
|
2075
|
-
TopicId: string | undefined;
|
|
2076
|
-
}
|
|
2195
|
+
export declare const FilterOperationFilterSensitiveLog: (
|
|
2196
|
+
obj: FilterOperation
|
|
2197
|
+
) => any;
|
|
2198
|
+
export declare const TagColumnOperationFilterSensitiveLog: (
|
|
2199
|
+
obj: TagColumnOperation
|
|
2200
|
+
) => any;
|
|
2201
|
+
export declare const TransformOperationFilterSensitiveLog: (
|
|
2202
|
+
obj: TransformOperation
|
|
2203
|
+
) => any;
|
|
2204
|
+
export declare const LogicalTableFilterSensitiveLog: (obj: LogicalTable) => any;
|
|
2077
2205
|
export declare const RowLevelPermissionTagRuleFilterSensitiveLog: (
|
|
2078
2206
|
obj: RowLevelPermissionTagRule
|
|
2079
2207
|
) => any;
|
|
@@ -2161,9 +2289,3 @@ export declare const DescribeDashboardSnapshotJobResultResponseFilterSensitiveLo
|
|
|
2161
2289
|
export declare const DescribeDataSetResponseFilterSensitiveLog: (
|
|
2162
2290
|
obj: DescribeDataSetResponse
|
|
2163
2291
|
) => any;
|
|
2164
|
-
export declare const DescribeTemplateDefinitionResponseFilterSensitiveLog: (
|
|
2165
|
-
obj: DescribeTemplateDefinitionResponse
|
|
2166
|
-
) => any;
|
|
2167
|
-
export declare const DescribeTopicResponseFilterSensitiveLog: (
|
|
2168
|
-
obj: DescribeTopicResponse
|
|
2169
|
-
) => any;
|