@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
|
@@ -398,6 +398,32 @@ export interface SnapshotJobResultFileGroup {
|
|
|
398
398
|
export interface AnonymousUserSnapshotJobResult {
|
|
399
399
|
FileGroups?: SnapshotJobResultFileGroup[] | undefined;
|
|
400
400
|
}
|
|
401
|
+
export interface Palette {
|
|
402
|
+
Foreground?: string | undefined;
|
|
403
|
+
Background?: string | undefined;
|
|
404
|
+
}
|
|
405
|
+
export interface BrandColorPalette {
|
|
406
|
+
Primary?: Palette | undefined;
|
|
407
|
+
Secondary?: Palette | undefined;
|
|
408
|
+
Accent?: Palette | undefined;
|
|
409
|
+
Measure?: Palette | undefined;
|
|
410
|
+
Dimension?: Palette | undefined;
|
|
411
|
+
Success?: Palette | undefined;
|
|
412
|
+
Info?: Palette | undefined;
|
|
413
|
+
Warning?: Palette | undefined;
|
|
414
|
+
Danger?: Palette | undefined;
|
|
415
|
+
}
|
|
416
|
+
export interface NavbarStyle {
|
|
417
|
+
GlobalNavbar?: Palette | undefined;
|
|
418
|
+
ContextualNavbar?: Palette | undefined;
|
|
419
|
+
}
|
|
420
|
+
export interface BrandElementStyle {
|
|
421
|
+
NavbarStyle?: NavbarStyle | undefined;
|
|
422
|
+
}
|
|
423
|
+
export interface ApplicationTheme {
|
|
424
|
+
BrandColorPalette?: BrandColorPalette | undefined;
|
|
425
|
+
BrandElementStyle?: BrandElementStyle | undefined;
|
|
426
|
+
}
|
|
401
427
|
export declare const AssetBundleExportJobAnalysisPropertyToOverride: {
|
|
402
428
|
readonly NAME: "Name";
|
|
403
429
|
};
|
|
@@ -2108,6 +2134,105 @@ export interface BookmarksConfigurations {
|
|
|
2108
2134
|
export interface BorderStyle {
|
|
2109
2135
|
Show?: boolean | undefined;
|
|
2110
2136
|
}
|
|
2137
|
+
export type ImageSource =
|
|
2138
|
+
| ImageSource.PublicUrlMember
|
|
2139
|
+
| ImageSource.S3UriMember
|
|
2140
|
+
| ImageSource.$UnknownMember;
|
|
2141
|
+
export declare namespace ImageSource {
|
|
2142
|
+
interface PublicUrlMember {
|
|
2143
|
+
PublicUrl: string;
|
|
2144
|
+
S3Uri?: never;
|
|
2145
|
+
$unknown?: never;
|
|
2146
|
+
}
|
|
2147
|
+
interface S3UriMember {
|
|
2148
|
+
PublicUrl?: never;
|
|
2149
|
+
S3Uri: string;
|
|
2150
|
+
$unknown?: never;
|
|
2151
|
+
}
|
|
2152
|
+
interface $UnknownMember {
|
|
2153
|
+
PublicUrl?: never;
|
|
2154
|
+
S3Uri?: never;
|
|
2155
|
+
$unknown: [string, any];
|
|
2156
|
+
}
|
|
2157
|
+
interface Visitor<T> {
|
|
2158
|
+
PublicUrl: (value: string) => T;
|
|
2159
|
+
S3Uri: (value: string) => T;
|
|
2160
|
+
_: (name: string, value: any) => T;
|
|
2161
|
+
}
|
|
2162
|
+
const visit: <T>(value: ImageSource, visitor: Visitor<T>) => T;
|
|
2163
|
+
}
|
|
2164
|
+
export interface ImageConfiguration {
|
|
2165
|
+
Source?: ImageSource | undefined;
|
|
2166
|
+
}
|
|
2167
|
+
export interface ImageSetConfiguration {
|
|
2168
|
+
Original: ImageConfiguration | undefined;
|
|
2169
|
+
}
|
|
2170
|
+
export interface LogoSetConfiguration {
|
|
2171
|
+
Primary: ImageSetConfiguration | undefined;
|
|
2172
|
+
Favicon?: ImageSetConfiguration | undefined;
|
|
2173
|
+
}
|
|
2174
|
+
export interface LogoConfiguration {
|
|
2175
|
+
AltText: string | undefined;
|
|
2176
|
+
LogoSet: LogoSetConfiguration | undefined;
|
|
2177
|
+
}
|
|
2178
|
+
export interface BrandDefinition {
|
|
2179
|
+
BrandName: string | undefined;
|
|
2180
|
+
Description?: string | undefined;
|
|
2181
|
+
ApplicationTheme?: ApplicationTheme | undefined;
|
|
2182
|
+
LogoConfiguration?: LogoConfiguration | undefined;
|
|
2183
|
+
}
|
|
2184
|
+
export declare const BrandStatus: {
|
|
2185
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
2186
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
2187
|
+
readonly CREATE_SUCCEEDED: "CREATE_SUCCEEDED";
|
|
2188
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
2189
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
2190
|
+
};
|
|
2191
|
+
export type BrandStatus = (typeof BrandStatus)[keyof typeof BrandStatus];
|
|
2192
|
+
export interface Image {
|
|
2193
|
+
Source?: ImageSource | undefined;
|
|
2194
|
+
GeneratedImageUrl?: string | undefined;
|
|
2195
|
+
}
|
|
2196
|
+
export interface ImageSet {
|
|
2197
|
+
Original: Image | undefined;
|
|
2198
|
+
Height64?: Image | undefined;
|
|
2199
|
+
Height32?: Image | undefined;
|
|
2200
|
+
}
|
|
2201
|
+
export interface LogoSet {
|
|
2202
|
+
Primary: ImageSet | undefined;
|
|
2203
|
+
Favicon?: ImageSet | undefined;
|
|
2204
|
+
}
|
|
2205
|
+
export interface Logo {
|
|
2206
|
+
AltText: string | undefined;
|
|
2207
|
+
LogoSet: LogoSet | undefined;
|
|
2208
|
+
}
|
|
2209
|
+
export declare const BrandVersionStatus: {
|
|
2210
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
2211
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
2212
|
+
readonly CREATE_SUCCEEDED: "CREATE_SUCCEEDED";
|
|
2213
|
+
};
|
|
2214
|
+
export type BrandVersionStatus =
|
|
2215
|
+
(typeof BrandVersionStatus)[keyof typeof BrandVersionStatus];
|
|
2216
|
+
export interface BrandDetail {
|
|
2217
|
+
BrandId: string | undefined;
|
|
2218
|
+
Arn?: string | undefined;
|
|
2219
|
+
BrandStatus?: BrandStatus | undefined;
|
|
2220
|
+
CreatedTime?: Date | undefined;
|
|
2221
|
+
LastUpdatedTime?: Date | undefined;
|
|
2222
|
+
VersionId?: string | undefined;
|
|
2223
|
+
VersionStatus?: BrandVersionStatus | undefined;
|
|
2224
|
+
Errors?: string[] | undefined;
|
|
2225
|
+
Logo?: Logo | undefined;
|
|
2226
|
+
}
|
|
2227
|
+
export interface BrandSummary {
|
|
2228
|
+
Arn?: string | undefined;
|
|
2229
|
+
BrandId?: string | undefined;
|
|
2230
|
+
BrandName?: string | undefined;
|
|
2231
|
+
Description?: string | undefined;
|
|
2232
|
+
BrandStatus?: BrandStatus | undefined;
|
|
2233
|
+
CreatedTime?: Date | undefined;
|
|
2234
|
+
LastUpdatedTime?: Date | undefined;
|
|
2235
|
+
}
|
|
2111
2236
|
export interface CalculatedColumn {
|
|
2112
2237
|
ColumnName: string | undefined;
|
|
2113
2238
|
ColumnId: string | undefined;
|
|
@@ -2134,6 +2259,30 @@ export declare class ResourceExistsException extends __BaseException {
|
|
|
2134
2259
|
opts: __ExceptionOptionType<ResourceExistsException, __BaseException>
|
|
2135
2260
|
);
|
|
2136
2261
|
}
|
|
2262
|
+
export declare const CapabilityState: {
|
|
2263
|
+
readonly DENY: "DENY";
|
|
2264
|
+
};
|
|
2265
|
+
export type CapabilityState =
|
|
2266
|
+
(typeof CapabilityState)[keyof typeof CapabilityState];
|
|
2267
|
+
export interface Capabilities {
|
|
2268
|
+
ExportToCsv?: CapabilityState | undefined;
|
|
2269
|
+
ExportToExcel?: CapabilityState | undefined;
|
|
2270
|
+
CreateAndUpdateThemes?: CapabilityState | undefined;
|
|
2271
|
+
AddOrRunAnomalyDetectionForAnalyses?: CapabilityState | undefined;
|
|
2272
|
+
ShareAnalyses?: CapabilityState | undefined;
|
|
2273
|
+
CreateAndUpdateDatasets?: CapabilityState | undefined;
|
|
2274
|
+
ShareDatasets?: CapabilityState | undefined;
|
|
2275
|
+
SubscribeDashboardEmailReports?: CapabilityState | undefined;
|
|
2276
|
+
CreateAndUpdateDashboardEmailReports?: CapabilityState | undefined;
|
|
2277
|
+
ShareDashboards?: CapabilityState | undefined;
|
|
2278
|
+
CreateAndUpdateThresholdAlerts?: CapabilityState | undefined;
|
|
2279
|
+
RenameSharedFolders?: CapabilityState | undefined;
|
|
2280
|
+
CreateSharedFolders?: CapabilityState | undefined;
|
|
2281
|
+
CreateAndUpdateDataSources?: CapabilityState | undefined;
|
|
2282
|
+
ShareDataSources?: CapabilityState | undefined;
|
|
2283
|
+
ViewAccountSPICECapacity?: CapabilityState | undefined;
|
|
2284
|
+
CreateSPICEDataset?: CapabilityState | undefined;
|
|
2285
|
+
}
|
|
2137
2286
|
export declare const ColumnDataType: {
|
|
2138
2287
|
readonly DATETIME: "DATETIME";
|
|
2139
2288
|
readonly DECIMAL: "DECIMAL";
|
|
@@ -2401,9 +2550,48 @@ export declare class UnsupportedUserEditionException extends __BaseException {
|
|
|
2401
2550
|
>
|
|
2402
2551
|
);
|
|
2403
2552
|
}
|
|
2553
|
+
export interface CreateBrandRequest {
|
|
2554
|
+
AwsAccountId: string | undefined;
|
|
2555
|
+
BrandId: string | undefined;
|
|
2556
|
+
BrandDefinition?: BrandDefinition | undefined;
|
|
2557
|
+
Tags?: Tag[] | undefined;
|
|
2558
|
+
}
|
|
2559
|
+
export interface CreateBrandResponse {
|
|
2560
|
+
RequestId?: string | undefined;
|
|
2561
|
+
BrandDetail?: BrandDetail | undefined;
|
|
2562
|
+
BrandDefinition?: BrandDefinition | undefined;
|
|
2563
|
+
}
|
|
2564
|
+
export declare class InternalServerException extends __BaseException {
|
|
2565
|
+
readonly name: "InternalServerException";
|
|
2566
|
+
readonly $fault: "server";
|
|
2567
|
+
Message: string | undefined;
|
|
2568
|
+
constructor(
|
|
2569
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
2570
|
+
);
|
|
2571
|
+
}
|
|
2572
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
2573
|
+
readonly name: "InvalidRequestException";
|
|
2574
|
+
readonly $fault: "client";
|
|
2575
|
+
Message?: string | undefined;
|
|
2576
|
+
RequestId?: string | undefined;
|
|
2577
|
+
constructor(
|
|
2578
|
+
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
2579
|
+
);
|
|
2580
|
+
}
|
|
2404
2581
|
export interface CreateColumnsOperation {
|
|
2405
2582
|
Columns: CalculatedColumn[] | undefined;
|
|
2406
2583
|
}
|
|
2584
|
+
export interface CreateCustomPermissionsRequest {
|
|
2585
|
+
AwsAccountId: string | undefined;
|
|
2586
|
+
CustomPermissionsName: string | undefined;
|
|
2587
|
+
Capabilities?: Capabilities | undefined;
|
|
2588
|
+
Tags?: Tag[] | undefined;
|
|
2589
|
+
}
|
|
2590
|
+
export interface CreateCustomPermissionsResponse {
|
|
2591
|
+
Status?: number | undefined;
|
|
2592
|
+
Arn?: string | undefined;
|
|
2593
|
+
RequestId?: string | undefined;
|
|
2594
|
+
}
|
|
2407
2595
|
export interface DataPointDrillUpDownOption {
|
|
2408
2596
|
AvailabilityStatus?: DashboardBehavior | undefined;
|
|
2409
2597
|
}
|
|
@@ -2549,307 +2737,6 @@ export interface DatasetParameter {
|
|
|
2549
2737
|
IntegerDatasetParameter?: IntegerDatasetParameter | undefined;
|
|
2550
2738
|
DateTimeDatasetParameter?: DateTimeDatasetParameter | undefined;
|
|
2551
2739
|
}
|
|
2552
|
-
export interface DataSetUsageConfiguration {
|
|
2553
|
-
DisableUseAsDirectQuerySource?: boolean | undefined;
|
|
2554
|
-
DisableUseAsImportedSource?: boolean | undefined;
|
|
2555
|
-
}
|
|
2556
|
-
export interface FieldFolder {
|
|
2557
|
-
description?: string | undefined;
|
|
2558
|
-
columns?: string[] | undefined;
|
|
2559
|
-
}
|
|
2560
|
-
export declare const DataSetImportMode: {
|
|
2561
|
-
readonly DIRECT_QUERY: "DIRECT_QUERY";
|
|
2562
|
-
readonly SPICE: "SPICE";
|
|
2563
|
-
};
|
|
2564
|
-
export type DataSetImportMode =
|
|
2565
|
-
(typeof DataSetImportMode)[keyof typeof DataSetImportMode];
|
|
2566
|
-
export interface FilterOperation {
|
|
2567
|
-
ConditionExpression: string | undefined;
|
|
2568
|
-
}
|
|
2569
|
-
export interface NewDefaultValues {
|
|
2570
|
-
StringStaticValues?: string[] | undefined;
|
|
2571
|
-
DecimalStaticValues?: number[] | undefined;
|
|
2572
|
-
DateTimeStaticValues?: Date[] | undefined;
|
|
2573
|
-
IntegerStaticValues?: number[] | undefined;
|
|
2574
|
-
}
|
|
2575
|
-
export interface OverrideDatasetParameterOperation {
|
|
2576
|
-
ParameterName: string | undefined;
|
|
2577
|
-
NewParameterName?: string | undefined;
|
|
2578
|
-
NewDefaultValues?: NewDefaultValues | undefined;
|
|
2579
|
-
}
|
|
2580
|
-
export interface ProjectOperation {
|
|
2581
|
-
ProjectedColumns: string[] | undefined;
|
|
2582
|
-
}
|
|
2583
|
-
export interface RenameColumnOperation {
|
|
2584
|
-
ColumnName: string | undefined;
|
|
2585
|
-
NewColumnName: string | undefined;
|
|
2586
|
-
}
|
|
2587
|
-
export interface TagColumnOperation {
|
|
2588
|
-
ColumnName: string | undefined;
|
|
2589
|
-
Tags: ColumnTag[] | undefined;
|
|
2590
|
-
}
|
|
2591
|
-
export interface UntagColumnOperation {
|
|
2592
|
-
ColumnName: string | undefined;
|
|
2593
|
-
TagNames: ColumnTagName[] | undefined;
|
|
2594
|
-
}
|
|
2595
|
-
export type TransformOperation =
|
|
2596
|
-
| TransformOperation.CastColumnTypeOperationMember
|
|
2597
|
-
| TransformOperation.CreateColumnsOperationMember
|
|
2598
|
-
| TransformOperation.FilterOperationMember
|
|
2599
|
-
| TransformOperation.OverrideDatasetParameterOperationMember
|
|
2600
|
-
| TransformOperation.ProjectOperationMember
|
|
2601
|
-
| TransformOperation.RenameColumnOperationMember
|
|
2602
|
-
| TransformOperation.TagColumnOperationMember
|
|
2603
|
-
| TransformOperation.UntagColumnOperationMember
|
|
2604
|
-
| TransformOperation.$UnknownMember;
|
|
2605
|
-
export declare namespace TransformOperation {
|
|
2606
|
-
interface ProjectOperationMember {
|
|
2607
|
-
ProjectOperation: ProjectOperation;
|
|
2608
|
-
FilterOperation?: never;
|
|
2609
|
-
CreateColumnsOperation?: never;
|
|
2610
|
-
RenameColumnOperation?: never;
|
|
2611
|
-
CastColumnTypeOperation?: never;
|
|
2612
|
-
TagColumnOperation?: never;
|
|
2613
|
-
UntagColumnOperation?: never;
|
|
2614
|
-
OverrideDatasetParameterOperation?: never;
|
|
2615
|
-
$unknown?: never;
|
|
2616
|
-
}
|
|
2617
|
-
interface FilterOperationMember {
|
|
2618
|
-
ProjectOperation?: never;
|
|
2619
|
-
FilterOperation: FilterOperation;
|
|
2620
|
-
CreateColumnsOperation?: never;
|
|
2621
|
-
RenameColumnOperation?: never;
|
|
2622
|
-
CastColumnTypeOperation?: never;
|
|
2623
|
-
TagColumnOperation?: never;
|
|
2624
|
-
UntagColumnOperation?: never;
|
|
2625
|
-
OverrideDatasetParameterOperation?: never;
|
|
2626
|
-
$unknown?: never;
|
|
2627
|
-
}
|
|
2628
|
-
interface CreateColumnsOperationMember {
|
|
2629
|
-
ProjectOperation?: never;
|
|
2630
|
-
FilterOperation?: never;
|
|
2631
|
-
CreateColumnsOperation: CreateColumnsOperation;
|
|
2632
|
-
RenameColumnOperation?: never;
|
|
2633
|
-
CastColumnTypeOperation?: never;
|
|
2634
|
-
TagColumnOperation?: never;
|
|
2635
|
-
UntagColumnOperation?: never;
|
|
2636
|
-
OverrideDatasetParameterOperation?: never;
|
|
2637
|
-
$unknown?: never;
|
|
2638
|
-
}
|
|
2639
|
-
interface RenameColumnOperationMember {
|
|
2640
|
-
ProjectOperation?: never;
|
|
2641
|
-
FilterOperation?: never;
|
|
2642
|
-
CreateColumnsOperation?: never;
|
|
2643
|
-
RenameColumnOperation: RenameColumnOperation;
|
|
2644
|
-
CastColumnTypeOperation?: never;
|
|
2645
|
-
TagColumnOperation?: never;
|
|
2646
|
-
UntagColumnOperation?: never;
|
|
2647
|
-
OverrideDatasetParameterOperation?: never;
|
|
2648
|
-
$unknown?: never;
|
|
2649
|
-
}
|
|
2650
|
-
interface CastColumnTypeOperationMember {
|
|
2651
|
-
ProjectOperation?: never;
|
|
2652
|
-
FilterOperation?: never;
|
|
2653
|
-
CreateColumnsOperation?: never;
|
|
2654
|
-
RenameColumnOperation?: never;
|
|
2655
|
-
CastColumnTypeOperation: CastColumnTypeOperation;
|
|
2656
|
-
TagColumnOperation?: never;
|
|
2657
|
-
UntagColumnOperation?: never;
|
|
2658
|
-
OverrideDatasetParameterOperation?: never;
|
|
2659
|
-
$unknown?: never;
|
|
2660
|
-
}
|
|
2661
|
-
interface TagColumnOperationMember {
|
|
2662
|
-
ProjectOperation?: never;
|
|
2663
|
-
FilterOperation?: never;
|
|
2664
|
-
CreateColumnsOperation?: never;
|
|
2665
|
-
RenameColumnOperation?: never;
|
|
2666
|
-
CastColumnTypeOperation?: never;
|
|
2667
|
-
TagColumnOperation: TagColumnOperation;
|
|
2668
|
-
UntagColumnOperation?: never;
|
|
2669
|
-
OverrideDatasetParameterOperation?: never;
|
|
2670
|
-
$unknown?: never;
|
|
2671
|
-
}
|
|
2672
|
-
interface UntagColumnOperationMember {
|
|
2673
|
-
ProjectOperation?: never;
|
|
2674
|
-
FilterOperation?: never;
|
|
2675
|
-
CreateColumnsOperation?: never;
|
|
2676
|
-
RenameColumnOperation?: never;
|
|
2677
|
-
CastColumnTypeOperation?: never;
|
|
2678
|
-
TagColumnOperation?: never;
|
|
2679
|
-
UntagColumnOperation: UntagColumnOperation;
|
|
2680
|
-
OverrideDatasetParameterOperation?: never;
|
|
2681
|
-
$unknown?: never;
|
|
2682
|
-
}
|
|
2683
|
-
interface OverrideDatasetParameterOperationMember {
|
|
2684
|
-
ProjectOperation?: never;
|
|
2685
|
-
FilterOperation?: never;
|
|
2686
|
-
CreateColumnsOperation?: never;
|
|
2687
|
-
RenameColumnOperation?: never;
|
|
2688
|
-
CastColumnTypeOperation?: never;
|
|
2689
|
-
TagColumnOperation?: never;
|
|
2690
|
-
UntagColumnOperation?: never;
|
|
2691
|
-
OverrideDatasetParameterOperation: OverrideDatasetParameterOperation;
|
|
2692
|
-
$unknown?: never;
|
|
2693
|
-
}
|
|
2694
|
-
interface $UnknownMember {
|
|
2695
|
-
ProjectOperation?: never;
|
|
2696
|
-
FilterOperation?: never;
|
|
2697
|
-
CreateColumnsOperation?: never;
|
|
2698
|
-
RenameColumnOperation?: never;
|
|
2699
|
-
CastColumnTypeOperation?: never;
|
|
2700
|
-
TagColumnOperation?: never;
|
|
2701
|
-
UntagColumnOperation?: never;
|
|
2702
|
-
OverrideDatasetParameterOperation?: never;
|
|
2703
|
-
$unknown: [string, any];
|
|
2704
|
-
}
|
|
2705
|
-
interface Visitor<T> {
|
|
2706
|
-
ProjectOperation: (value: ProjectOperation) => T;
|
|
2707
|
-
FilterOperation: (value: FilterOperation) => T;
|
|
2708
|
-
CreateColumnsOperation: (value: CreateColumnsOperation) => T;
|
|
2709
|
-
RenameColumnOperation: (value: RenameColumnOperation) => T;
|
|
2710
|
-
CastColumnTypeOperation: (value: CastColumnTypeOperation) => T;
|
|
2711
|
-
TagColumnOperation: (value: TagColumnOperation) => T;
|
|
2712
|
-
UntagColumnOperation: (value: UntagColumnOperation) => T;
|
|
2713
|
-
OverrideDatasetParameterOperation: (
|
|
2714
|
-
value: OverrideDatasetParameterOperation
|
|
2715
|
-
) => T;
|
|
2716
|
-
_: (name: string, value: any) => T;
|
|
2717
|
-
}
|
|
2718
|
-
const visit: <T>(value: TransformOperation, visitor: Visitor<T>) => T;
|
|
2719
|
-
}
|
|
2720
|
-
export interface JoinKeyProperties {
|
|
2721
|
-
UniqueKey?: boolean | undefined;
|
|
2722
|
-
}
|
|
2723
|
-
export declare const JoinType: {
|
|
2724
|
-
readonly INNER: "INNER";
|
|
2725
|
-
readonly LEFT: "LEFT";
|
|
2726
|
-
readonly OUTER: "OUTER";
|
|
2727
|
-
readonly RIGHT: "RIGHT";
|
|
2728
|
-
};
|
|
2729
|
-
export type JoinType = (typeof JoinType)[keyof typeof JoinType];
|
|
2730
|
-
export interface JoinInstruction {
|
|
2731
|
-
LeftOperand: string | undefined;
|
|
2732
|
-
RightOperand: string | undefined;
|
|
2733
|
-
LeftJoinKeyProperties?: JoinKeyProperties | undefined;
|
|
2734
|
-
RightJoinKeyProperties?: JoinKeyProperties | undefined;
|
|
2735
|
-
Type: JoinType | undefined;
|
|
2736
|
-
OnClause: string | undefined;
|
|
2737
|
-
}
|
|
2738
|
-
export interface LogicalTableSource {
|
|
2739
|
-
JoinInstruction?: JoinInstruction | undefined;
|
|
2740
|
-
PhysicalTableId?: string | undefined;
|
|
2741
|
-
DataSetArn?: string | undefined;
|
|
2742
|
-
}
|
|
2743
|
-
export interface LogicalTable {
|
|
2744
|
-
Alias: string | undefined;
|
|
2745
|
-
DataTransforms?: TransformOperation[] | undefined;
|
|
2746
|
-
Source: LogicalTableSource | undefined;
|
|
2747
|
-
}
|
|
2748
|
-
export declare const InputColumnDataType: {
|
|
2749
|
-
readonly BIT: "BIT";
|
|
2750
|
-
readonly BOOLEAN: "BOOLEAN";
|
|
2751
|
-
readonly DATETIME: "DATETIME";
|
|
2752
|
-
readonly DECIMAL: "DECIMAL";
|
|
2753
|
-
readonly INTEGER: "INTEGER";
|
|
2754
|
-
readonly JSON: "JSON";
|
|
2755
|
-
readonly STRING: "STRING";
|
|
2756
|
-
};
|
|
2757
|
-
export type InputColumnDataType =
|
|
2758
|
-
(typeof InputColumnDataType)[keyof typeof InputColumnDataType];
|
|
2759
|
-
export interface InputColumn {
|
|
2760
|
-
Name: string | undefined;
|
|
2761
|
-
Type: InputColumnDataType | undefined;
|
|
2762
|
-
SubType?: ColumnDataSubType | undefined;
|
|
2763
|
-
}
|
|
2764
|
-
export interface CustomSql {
|
|
2765
|
-
DataSourceArn: string | undefined;
|
|
2766
|
-
Name: string | undefined;
|
|
2767
|
-
SqlQuery: string | undefined;
|
|
2768
|
-
Columns?: InputColumn[] | undefined;
|
|
2769
|
-
}
|
|
2770
|
-
export interface RelationalTable {
|
|
2771
|
-
DataSourceArn: string | undefined;
|
|
2772
|
-
Catalog?: string | undefined;
|
|
2773
|
-
Schema?: string | undefined;
|
|
2774
|
-
Name: string | undefined;
|
|
2775
|
-
InputColumns: InputColumn[] | undefined;
|
|
2776
|
-
}
|
|
2777
|
-
export declare const FileFormat: {
|
|
2778
|
-
readonly CLF: "CLF";
|
|
2779
|
-
readonly CSV: "CSV";
|
|
2780
|
-
readonly ELF: "ELF";
|
|
2781
|
-
readonly JSON: "JSON";
|
|
2782
|
-
readonly TSV: "TSV";
|
|
2783
|
-
readonly XLSX: "XLSX";
|
|
2784
|
-
};
|
|
2785
|
-
export type FileFormat = (typeof FileFormat)[keyof typeof FileFormat];
|
|
2786
|
-
export declare const TextQualifier: {
|
|
2787
|
-
readonly DOUBLE_QUOTE: "DOUBLE_QUOTE";
|
|
2788
|
-
readonly SINGLE_QUOTE: "SINGLE_QUOTE";
|
|
2789
|
-
};
|
|
2790
|
-
export type TextQualifier = (typeof TextQualifier)[keyof typeof TextQualifier];
|
|
2791
|
-
export interface UploadSettings {
|
|
2792
|
-
Format?: FileFormat | undefined;
|
|
2793
|
-
StartFromRow?: number | undefined;
|
|
2794
|
-
ContainsHeader?: boolean | undefined;
|
|
2795
|
-
TextQualifier?: TextQualifier | undefined;
|
|
2796
|
-
Delimiter?: string | undefined;
|
|
2797
|
-
}
|
|
2798
|
-
export interface S3Source {
|
|
2799
|
-
DataSourceArn: string | undefined;
|
|
2800
|
-
UploadSettings?: UploadSettings | undefined;
|
|
2801
|
-
InputColumns: InputColumn[] | undefined;
|
|
2802
|
-
}
|
|
2803
|
-
export type PhysicalTable =
|
|
2804
|
-
| PhysicalTable.CustomSqlMember
|
|
2805
|
-
| PhysicalTable.RelationalTableMember
|
|
2806
|
-
| PhysicalTable.S3SourceMember
|
|
2807
|
-
| PhysicalTable.$UnknownMember;
|
|
2808
|
-
export declare namespace PhysicalTable {
|
|
2809
|
-
interface RelationalTableMember {
|
|
2810
|
-
RelationalTable: RelationalTable;
|
|
2811
|
-
CustomSql?: never;
|
|
2812
|
-
S3Source?: never;
|
|
2813
|
-
$unknown?: never;
|
|
2814
|
-
}
|
|
2815
|
-
interface CustomSqlMember {
|
|
2816
|
-
RelationalTable?: never;
|
|
2817
|
-
CustomSql: CustomSql;
|
|
2818
|
-
S3Source?: never;
|
|
2819
|
-
$unknown?: never;
|
|
2820
|
-
}
|
|
2821
|
-
interface S3SourceMember {
|
|
2822
|
-
RelationalTable?: never;
|
|
2823
|
-
CustomSql?: never;
|
|
2824
|
-
S3Source: S3Source;
|
|
2825
|
-
$unknown?: never;
|
|
2826
|
-
}
|
|
2827
|
-
interface $UnknownMember {
|
|
2828
|
-
RelationalTable?: never;
|
|
2829
|
-
CustomSql?: never;
|
|
2830
|
-
S3Source?: never;
|
|
2831
|
-
$unknown: [string, any];
|
|
2832
|
-
}
|
|
2833
|
-
interface Visitor<T> {
|
|
2834
|
-
RelationalTable: (value: RelationalTable) => T;
|
|
2835
|
-
CustomSql: (value: CustomSql) => T;
|
|
2836
|
-
S3Source: (value: S3Source) => T;
|
|
2837
|
-
_: (name: string, value: any) => T;
|
|
2838
|
-
}
|
|
2839
|
-
const visit: <T>(value: PhysicalTable, visitor: Visitor<T>) => T;
|
|
2840
|
-
}
|
|
2841
|
-
export declare const RowLevelPermissionFormatVersion: {
|
|
2842
|
-
readonly VERSION_1: "VERSION_1";
|
|
2843
|
-
readonly VERSION_2: "VERSION_2";
|
|
2844
|
-
};
|
|
2845
|
-
export type RowLevelPermissionFormatVersion =
|
|
2846
|
-
(typeof RowLevelPermissionFormatVersion)[keyof typeof RowLevelPermissionFormatVersion];
|
|
2847
|
-
export declare const RowLevelPermissionPolicy: {
|
|
2848
|
-
readonly DENY_ACCESS: "DENY_ACCESS";
|
|
2849
|
-
readonly GRANT_ACCESS: "GRANT_ACCESS";
|
|
2850
|
-
};
|
|
2851
|
-
export type RowLevelPermissionPolicy =
|
|
2852
|
-
(typeof RowLevelPermissionPolicy)[keyof typeof RowLevelPermissionPolicy];
|
|
2853
2740
|
export declare const TreeMapConfigurationFilterSensitiveLog: (
|
|
2854
2741
|
obj: TreeMapConfiguration
|
|
2855
2742
|
) => any;
|
|
@@ -2950,13 +2837,3 @@ export declare const DashboardVersionDefinitionFilterSensitiveLog: (
|
|
|
2950
2837
|
export declare const CreateDashboardRequestFilterSensitiveLog: (
|
|
2951
2838
|
obj: CreateDashboardRequest
|
|
2952
2839
|
) => any;
|
|
2953
|
-
export declare const FilterOperationFilterSensitiveLog: (
|
|
2954
|
-
obj: FilterOperation
|
|
2955
|
-
) => any;
|
|
2956
|
-
export declare const TagColumnOperationFilterSensitiveLog: (
|
|
2957
|
-
obj: TagColumnOperation
|
|
2958
|
-
) => any;
|
|
2959
|
-
export declare const TransformOperationFilterSensitiveLog: (
|
|
2960
|
-
obj: TransformOperation
|
|
2961
|
-
) => any;
|
|
2962
|
-
export declare const LogicalTableFilterSensitiveLog: (obj: LogicalTable) => any;
|