@aws-sdk/client-quicksight 3.261.0 → 3.264.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/commands/CreateAnalysisCommand.js +1 -2
- package/dist-cjs/commands/GetSessionEmbedUrlCommand.js +2 -1
- package/dist-cjs/commands/ListAnalysesCommand.js +3 -3
- package/dist-cjs/commands/ListDashboardVersionsCommand.js +3 -3
- package/dist-cjs/commands/ListDashboardsCommand.js +3 -3
- package/dist-cjs/commands/ListDataSetsCommand.js +3 -3
- package/dist-cjs/commands/ListDataSourcesCommand.js +1 -2
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/models/models_1.js +39 -64
- package/dist-cjs/models/models_2.js +96 -80
- package/dist-cjs/models/models_3.js +78 -6
- package/dist-cjs/protocols/Aws_restJson1.js +399 -2
- package/dist-es/commands/CreateAnalysisCommand.js +1 -2
- package/dist-es/commands/GetSessionEmbedUrlCommand.js +2 -1
- package/dist-es/commands/ListAnalysesCommand.js +1 -1
- package/dist-es/commands/ListDashboardVersionsCommand.js +1 -1
- package/dist-es/commands/ListDashboardsCommand.js +1 -1
- package/dist-es/commands/ListDataSetsCommand.js +1 -1
- package/dist-es/commands/ListDataSourcesCommand.js +1 -2
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_1.js +28 -52
- package/dist-es/models/models_2.js +74 -60
- package/dist-es/models/models_3.js +61 -2
- package/dist-es/protocols/Aws_restJson1.js +399 -2
- package/dist-types/QuickSight.d.ts +4 -4
- package/dist-types/commands/CreateAnalysisCommand.d.ts +2 -3
- package/dist-types/commands/CreateDashboardCommand.d.ts +1 -1
- package/dist-types/commands/CreateTemplateCommand.d.ts +2 -2
- package/dist-types/commands/GetSessionEmbedUrlCommand.d.ts +2 -1
- package/dist-types/commands/ListAnalysesCommand.d.ts +1 -1
- package/dist-types/commands/ListDashboardVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListDashboardsCommand.d.ts +1 -1
- package/dist-types/commands/ListDataSetsCommand.d.ts +1 -1
- package/dist-types/commands/ListDataSourcesCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +1 -1
- package/dist-types/models/models_1.d.ts +192 -193
- package/dist-types/models/models_2.d.ts +354 -271
- package/dist-types/models/models_3.d.ts +274 -2
- package/dist-types/ts3.4/commands/CreateAnalysisCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/GetSessionEmbedUrlCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListAnalysesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListDashboardVersionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListDashboardsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListDataSetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListDataSourcesCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +1 -1
- package/dist-types/ts3.4/models/models_1.d.ts +70 -65
- package/dist-types/ts3.4/models/models_2.d.ts +116 -118
- package/dist-types/ts3.4/models/models_3.d.ts +120 -4
- package/package.json +4 -4
|
@@ -1,6 +1,230 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
1
2
|
import { AccountCustomization, ActiveIAMPolicyAssignment, ResourceStatus } from "./models_0";
|
|
2
|
-
import {
|
|
3
|
-
import { DashboardPublishOptions, DashboardSearchFilter, DashboardSourceEntity, DashboardSummary, DashboardVersionDefinition, DataSetImportMode, DataSetSearchFilter, DataSetSummary, DataSetUsageConfiguration, DataSource, DataSourceCredentials, DataSourceParameters, DataSourceSearchFilter, DataSourceSummary, FieldFolder, FolderSearchFilter, FolderSummary, Group, GroupMember,
|
|
3
|
+
import { AnalysisDefinition, AnalysisSearchFilter, AnalysisSourceEntity, AnalysisSummary, AssignmentStatus, ColumnGroup, ColumnLevelPermissionRule, Tag } from "./models_1";
|
|
4
|
+
import { _Parameters, DashboardPublishOptions, DashboardSearchFilter, DashboardSourceEntity, DashboardSummary, DashboardVersionDefinition, DashboardVersionSummary, DataSetImportMode, DataSetSearchFilter, DataSetSummary, DataSetUsageConfiguration, DataSource, DataSourceCredentials, DataSourceParameters, DataSourceSearchFilter, DataSourceSummary, FieldFolder, FolderSearchFilter, FolderSummary, Group, GroupMember, IdentityType, Ingestion, LinkSharingConfiguration, LogicalTable, MemberIdArnPair, NamespaceInfoV2, PhysicalTable, ResourcePermission, RowLevelPermissionDataSet, RowLevelPermissionTagConfiguration, SslProperties, TemplateAlias, TemplateSourceEntity, TemplateVersionDefinition, ThemeAlias, ThemeConfiguration, ThemeType, User, UserRole, VpcConnectionProperties } from "./models_2";
|
|
5
|
+
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
6
|
+
export interface GetSessionEmbedUrlResponse {
|
|
7
|
+
/**
|
|
8
|
+
* <p>A single-use URL that you can put into your server-side web page to embed your
|
|
9
|
+
* Amazon QuickSight session. This URL is valid for 5 minutes. The API operation provides the URL with an
|
|
10
|
+
* <code>auth_code</code> value that enables one (and only one) sign-on to a user session
|
|
11
|
+
* that is valid for 10 hours. </p>
|
|
12
|
+
*/
|
|
13
|
+
EmbedUrl?: string;
|
|
14
|
+
/**
|
|
15
|
+
* <p>The HTTP status of the request.</p>
|
|
16
|
+
*/
|
|
17
|
+
Status?: number;
|
|
18
|
+
/**
|
|
19
|
+
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
20
|
+
*/
|
|
21
|
+
RequestId?: string;
|
|
22
|
+
}
|
|
23
|
+
export declare enum GroupFilterAttribute {
|
|
24
|
+
GROUP_NAME = "GROUP_NAME"
|
|
25
|
+
}
|
|
26
|
+
export declare enum GroupFilterOperator {
|
|
27
|
+
StartsWith = "StartsWith"
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* <p>A <code>GroupSearchFilter</code> object that you want to apply to your search.</p>
|
|
31
|
+
*/
|
|
32
|
+
export interface GroupSearchFilter {
|
|
33
|
+
/**
|
|
34
|
+
* <p>The comparison operator that you want to use as a filter, for example <code>"Operator":
|
|
35
|
+
* "StartsWith"</code>. Currently, the only supported operator is
|
|
36
|
+
* <code>StartsWith</code>.</p>
|
|
37
|
+
*/
|
|
38
|
+
Operator: GroupFilterOperator | string | undefined;
|
|
39
|
+
/**
|
|
40
|
+
* <p>The name of the value that you want to use as a filter, for example <code>"Name":
|
|
41
|
+
* "GROUP_NAME"</code>. Currently, the only supported name is
|
|
42
|
+
* <code>GROUP_NAME</code>.</p>
|
|
43
|
+
*/
|
|
44
|
+
Name: GroupFilterAttribute | string | undefined;
|
|
45
|
+
/**
|
|
46
|
+
* <p>The value of the named item, in this case <code>GROUP_NAME</code>, that you want to use as a filter.</p>
|
|
47
|
+
*/
|
|
48
|
+
Value: string | undefined;
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* <p>IAM policy assignment summary.</p>
|
|
52
|
+
*/
|
|
53
|
+
export interface IAMPolicyAssignmentSummary {
|
|
54
|
+
/**
|
|
55
|
+
* <p>Assignment name.</p>
|
|
56
|
+
*/
|
|
57
|
+
AssignmentName?: string;
|
|
58
|
+
/**
|
|
59
|
+
* <p>Assignment status.</p>
|
|
60
|
+
*/
|
|
61
|
+
AssignmentStatus?: AssignmentStatus | string;
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* <p>You don't have this feature activated for your account. To fix this issue, contact Amazon Web Services support.</p>
|
|
65
|
+
*/
|
|
66
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
67
|
+
readonly name: "InvalidRequestException";
|
|
68
|
+
readonly $fault: "client";
|
|
69
|
+
Message?: string;
|
|
70
|
+
/**
|
|
71
|
+
* <p>The Amazon Web Services request ID for this request.</p>
|
|
72
|
+
*/
|
|
73
|
+
RequestId?: string;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
77
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
78
|
+
}
|
|
79
|
+
export interface ListAnalysesRequest {
|
|
80
|
+
/**
|
|
81
|
+
* <p>The ID of the Amazon Web Services account that contains the analyses.</p>
|
|
82
|
+
*/
|
|
83
|
+
AwsAccountId: string | undefined;
|
|
84
|
+
/**
|
|
85
|
+
* <p>A pagination token that can be used in a subsequent request.</p>
|
|
86
|
+
*/
|
|
87
|
+
NextToken?: string;
|
|
88
|
+
/**
|
|
89
|
+
* <p>The maximum number of results to return.</p>
|
|
90
|
+
*/
|
|
91
|
+
MaxResults?: number;
|
|
92
|
+
}
|
|
93
|
+
export interface ListAnalysesResponse {
|
|
94
|
+
/**
|
|
95
|
+
* <p>Metadata describing each of the analyses that are listed.</p>
|
|
96
|
+
*/
|
|
97
|
+
AnalysisSummaryList?: AnalysisSummary[];
|
|
98
|
+
/**
|
|
99
|
+
* <p>A pagination token that can be used in a subsequent request.</p>
|
|
100
|
+
*/
|
|
101
|
+
NextToken?: string;
|
|
102
|
+
/**
|
|
103
|
+
* <p>The HTTP status of the request.</p>
|
|
104
|
+
*/
|
|
105
|
+
Status?: number;
|
|
106
|
+
/**
|
|
107
|
+
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
108
|
+
*/
|
|
109
|
+
RequestId?: string;
|
|
110
|
+
}
|
|
111
|
+
export interface ListDashboardsRequest {
|
|
112
|
+
/**
|
|
113
|
+
* <p>The ID of the Amazon Web Services account that contains the dashboards that you're
|
|
114
|
+
* listing.</p>
|
|
115
|
+
*/
|
|
116
|
+
AwsAccountId: string | undefined;
|
|
117
|
+
/**
|
|
118
|
+
* <p>The token for the next set of results, or null if there are no more results.</p>
|
|
119
|
+
*/
|
|
120
|
+
NextToken?: string;
|
|
121
|
+
/**
|
|
122
|
+
* <p>The maximum number of results to be returned per request.</p>
|
|
123
|
+
*/
|
|
124
|
+
MaxResults?: number;
|
|
125
|
+
}
|
|
126
|
+
export interface ListDashboardsResponse {
|
|
127
|
+
/**
|
|
128
|
+
* <p>A structure that contains all of the dashboards in your Amazon Web Services account. This structure
|
|
129
|
+
* provides basic information about the dashboards.</p>
|
|
130
|
+
*/
|
|
131
|
+
DashboardSummaryList?: DashboardSummary[];
|
|
132
|
+
/**
|
|
133
|
+
* <p>The token for the next set of results, or null if there are no more results.</p>
|
|
134
|
+
*/
|
|
135
|
+
NextToken?: string;
|
|
136
|
+
/**
|
|
137
|
+
* <p>The HTTP status of the request.</p>
|
|
138
|
+
*/
|
|
139
|
+
Status?: number;
|
|
140
|
+
/**
|
|
141
|
+
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
142
|
+
*/
|
|
143
|
+
RequestId?: string;
|
|
144
|
+
}
|
|
145
|
+
export interface ListDashboardVersionsRequest {
|
|
146
|
+
/**
|
|
147
|
+
* <p>The ID of the Amazon Web Services account that contains the dashboard that you're listing versions
|
|
148
|
+
* for.</p>
|
|
149
|
+
*/
|
|
150
|
+
AwsAccountId: string | undefined;
|
|
151
|
+
/**
|
|
152
|
+
* <p>The ID for the dashboard.</p>
|
|
153
|
+
*/
|
|
154
|
+
DashboardId: string | undefined;
|
|
155
|
+
/**
|
|
156
|
+
* <p>The token for the next set of results, or null if there are no more results.</p>
|
|
157
|
+
*/
|
|
158
|
+
NextToken?: string;
|
|
159
|
+
/**
|
|
160
|
+
* <p>The maximum number of results to be returned per request.</p>
|
|
161
|
+
*/
|
|
162
|
+
MaxResults?: number;
|
|
163
|
+
}
|
|
164
|
+
export interface ListDashboardVersionsResponse {
|
|
165
|
+
/**
|
|
166
|
+
* <p>A structure that contains information about each version of the dashboard.</p>
|
|
167
|
+
*/
|
|
168
|
+
DashboardVersionSummaryList?: DashboardVersionSummary[];
|
|
169
|
+
/**
|
|
170
|
+
* <p>The token for the next set of results, or null if there are no more results.</p>
|
|
171
|
+
*/
|
|
172
|
+
NextToken?: string;
|
|
173
|
+
/**
|
|
174
|
+
* <p>The HTTP status of the request.</p>
|
|
175
|
+
*/
|
|
176
|
+
Status?: number;
|
|
177
|
+
/**
|
|
178
|
+
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
179
|
+
*/
|
|
180
|
+
RequestId?: string;
|
|
181
|
+
}
|
|
182
|
+
export interface ListDataSetsRequest {
|
|
183
|
+
/**
|
|
184
|
+
* <p>The Amazon Web Services account ID.</p>
|
|
185
|
+
*/
|
|
186
|
+
AwsAccountId: string | undefined;
|
|
187
|
+
/**
|
|
188
|
+
* <p>The token for the next set of results, or null if there are no more results.</p>
|
|
189
|
+
*/
|
|
190
|
+
NextToken?: string;
|
|
191
|
+
/**
|
|
192
|
+
* <p>The maximum number of results to be returned per request.</p>
|
|
193
|
+
*/
|
|
194
|
+
MaxResults?: number;
|
|
195
|
+
}
|
|
196
|
+
export interface ListDataSetsResponse {
|
|
197
|
+
/**
|
|
198
|
+
* <p>The list of dataset summaries.</p>
|
|
199
|
+
*/
|
|
200
|
+
DataSetSummaries?: DataSetSummary[];
|
|
201
|
+
/**
|
|
202
|
+
* <p>The token for the next set of results, or null if there are no more results.</p>
|
|
203
|
+
*/
|
|
204
|
+
NextToken?: string;
|
|
205
|
+
/**
|
|
206
|
+
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
207
|
+
*/
|
|
208
|
+
RequestId?: string;
|
|
209
|
+
/**
|
|
210
|
+
* <p>The HTTP status of the request.</p>
|
|
211
|
+
*/
|
|
212
|
+
Status?: number;
|
|
213
|
+
}
|
|
214
|
+
export interface ListDataSourcesRequest {
|
|
215
|
+
/**
|
|
216
|
+
* <p>The Amazon Web Services account ID.</p>
|
|
217
|
+
*/
|
|
218
|
+
AwsAccountId: string | undefined;
|
|
219
|
+
/**
|
|
220
|
+
* <p>The token for the next set of results, or null if there are no more results.</p>
|
|
221
|
+
*/
|
|
222
|
+
NextToken?: string;
|
|
223
|
+
/**
|
|
224
|
+
* <p>The maximum number of results to be returned per request.</p>
|
|
225
|
+
*/
|
|
226
|
+
MaxResults?: number;
|
|
227
|
+
}
|
|
4
228
|
export interface ListDataSourcesResponse {
|
|
5
229
|
/**
|
|
6
230
|
* <p>A list of data sources.</p>
|
|
@@ -2417,6 +2641,54 @@ export interface UpdateUserResponse {
|
|
|
2417
2641
|
*/
|
|
2418
2642
|
Status?: number;
|
|
2419
2643
|
}
|
|
2644
|
+
/**
|
|
2645
|
+
* @internal
|
|
2646
|
+
*/
|
|
2647
|
+
export declare const GetSessionEmbedUrlResponseFilterSensitiveLog: (obj: GetSessionEmbedUrlResponse) => any;
|
|
2648
|
+
/**
|
|
2649
|
+
* @internal
|
|
2650
|
+
*/
|
|
2651
|
+
export declare const GroupSearchFilterFilterSensitiveLog: (obj: GroupSearchFilter) => any;
|
|
2652
|
+
/**
|
|
2653
|
+
* @internal
|
|
2654
|
+
*/
|
|
2655
|
+
export declare const IAMPolicyAssignmentSummaryFilterSensitiveLog: (obj: IAMPolicyAssignmentSummary) => any;
|
|
2656
|
+
/**
|
|
2657
|
+
* @internal
|
|
2658
|
+
*/
|
|
2659
|
+
export declare const ListAnalysesRequestFilterSensitiveLog: (obj: ListAnalysesRequest) => any;
|
|
2660
|
+
/**
|
|
2661
|
+
* @internal
|
|
2662
|
+
*/
|
|
2663
|
+
export declare const ListAnalysesResponseFilterSensitiveLog: (obj: ListAnalysesResponse) => any;
|
|
2664
|
+
/**
|
|
2665
|
+
* @internal
|
|
2666
|
+
*/
|
|
2667
|
+
export declare const ListDashboardsRequestFilterSensitiveLog: (obj: ListDashboardsRequest) => any;
|
|
2668
|
+
/**
|
|
2669
|
+
* @internal
|
|
2670
|
+
*/
|
|
2671
|
+
export declare const ListDashboardsResponseFilterSensitiveLog: (obj: ListDashboardsResponse) => any;
|
|
2672
|
+
/**
|
|
2673
|
+
* @internal
|
|
2674
|
+
*/
|
|
2675
|
+
export declare const ListDashboardVersionsRequestFilterSensitiveLog: (obj: ListDashboardVersionsRequest) => any;
|
|
2676
|
+
/**
|
|
2677
|
+
* @internal
|
|
2678
|
+
*/
|
|
2679
|
+
export declare const ListDashboardVersionsResponseFilterSensitiveLog: (obj: ListDashboardVersionsResponse) => any;
|
|
2680
|
+
/**
|
|
2681
|
+
* @internal
|
|
2682
|
+
*/
|
|
2683
|
+
export declare const ListDataSetsRequestFilterSensitiveLog: (obj: ListDataSetsRequest) => any;
|
|
2684
|
+
/**
|
|
2685
|
+
* @internal
|
|
2686
|
+
*/
|
|
2687
|
+
export declare const ListDataSetsResponseFilterSensitiveLog: (obj: ListDataSetsResponse) => any;
|
|
2688
|
+
/**
|
|
2689
|
+
* @internal
|
|
2690
|
+
*/
|
|
2691
|
+
export declare const ListDataSourcesRequestFilterSensitiveLog: (obj: ListDataSourcesRequest) => any;
|
|
2420
2692
|
/**
|
|
2421
2693
|
* @internal
|
|
2422
2694
|
*/
|
|
@@ -6,8 +6,10 @@ import {
|
|
|
6
6
|
MetadataBearer as __MetadataBearer,
|
|
7
7
|
MiddlewareStack,
|
|
8
8
|
} from "@aws-sdk/types";
|
|
9
|
-
import {
|
|
10
|
-
|
|
9
|
+
import {
|
|
10
|
+
CreateAnalysisRequest,
|
|
11
|
+
CreateAnalysisResponse,
|
|
12
|
+
} from "../models/models_2";
|
|
11
13
|
import {
|
|
12
14
|
QuickSightClientResolvedConfig,
|
|
13
15
|
ServiceInputTypes,
|
|
@@ -6,10 +6,8 @@ import {
|
|
|
6
6
|
MetadataBearer as __MetadataBearer,
|
|
7
7
|
MiddlewareStack,
|
|
8
8
|
} from "@aws-sdk/types";
|
|
9
|
-
import {
|
|
10
|
-
|
|
11
|
-
GetSessionEmbedUrlResponse,
|
|
12
|
-
} from "../models/models_2";
|
|
9
|
+
import { GetSessionEmbedUrlRequest } from "../models/models_2";
|
|
10
|
+
import { GetSessionEmbedUrlResponse } from "../models/models_3";
|
|
13
11
|
import {
|
|
14
12
|
QuickSightClientResolvedConfig,
|
|
15
13
|
ServiceInputTypes,
|
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
MetadataBearer as __MetadataBearer,
|
|
7
7
|
MiddlewareStack,
|
|
8
8
|
} from "@aws-sdk/types";
|
|
9
|
-
import { ListAnalysesRequest, ListAnalysesResponse } from "../models/
|
|
9
|
+
import { ListAnalysesRequest, ListAnalysesResponse } from "../models/models_3";
|
|
10
10
|
import {
|
|
11
11
|
QuickSightClientResolvedConfig,
|
|
12
12
|
ServiceInputTypes,
|
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
MetadataBearer as __MetadataBearer,
|
|
7
7
|
MiddlewareStack,
|
|
8
8
|
} from "@aws-sdk/types";
|
|
9
|
-
import { ListDataSetsRequest, ListDataSetsResponse } from "../models/
|
|
9
|
+
import { ListDataSetsRequest, ListDataSetsResponse } from "../models/models_3";
|
|
10
10
|
import {
|
|
11
11
|
QuickSightClientResolvedConfig,
|
|
12
12
|
ServiceInputTypes,
|
|
@@ -6,8 +6,10 @@ import {
|
|
|
6
6
|
MetadataBearer as __MetadataBearer,
|
|
7
7
|
MiddlewareStack,
|
|
8
8
|
} from "@aws-sdk/types";
|
|
9
|
-
import {
|
|
10
|
-
|
|
9
|
+
import {
|
|
10
|
+
ListDataSourcesRequest,
|
|
11
|
+
ListDataSourcesResponse,
|
|
12
|
+
} from "../models/models_3";
|
|
11
13
|
import {
|
|
12
14
|
QuickSightClientResolvedConfig,
|
|
13
15
|
ServiceInputTypes,
|
|
@@ -370,7 +370,7 @@ export interface CategoryFilterConfiguration {
|
|
|
370
370
|
export interface CategoryFilter {
|
|
371
371
|
FilterId: string | undefined;
|
|
372
372
|
Column: ColumnIdentifier | undefined;
|
|
373
|
-
Configuration
|
|
373
|
+
Configuration: CategoryFilterConfiguration | undefined;
|
|
374
374
|
}
|
|
375
375
|
export declare enum NumericEqualityMatchOperator {
|
|
376
376
|
DOES_NOT_EQUAL = "DOES_NOT_EQUAL",
|
|
@@ -1029,6 +1029,54 @@ export interface PivotTableVisual {
|
|
|
1029
1029
|
ConditionalFormatting?: PivotTableConditionalFormatting;
|
|
1030
1030
|
Actions?: VisualCustomAction[];
|
|
1031
1031
|
}
|
|
1032
|
+
export interface RadarChartAreaStyleSettings {
|
|
1033
|
+
Visibility?: Visibility | string;
|
|
1034
|
+
}
|
|
1035
|
+
export interface RadarChartSeriesSettings {
|
|
1036
|
+
AreaStyleSettings?: RadarChartAreaStyleSettings;
|
|
1037
|
+
}
|
|
1038
|
+
export interface RadarChartAggregatedFieldWells {
|
|
1039
|
+
Category?: DimensionField[];
|
|
1040
|
+
Color?: DimensionField[];
|
|
1041
|
+
Values?: MeasureField[];
|
|
1042
|
+
}
|
|
1043
|
+
export interface RadarChartFieldWells {
|
|
1044
|
+
RadarChartAggregatedFieldWells?: RadarChartAggregatedFieldWells;
|
|
1045
|
+
}
|
|
1046
|
+
export declare enum RadarChartShape {
|
|
1047
|
+
CIRCLE = "CIRCLE",
|
|
1048
|
+
POLYGON = "POLYGON",
|
|
1049
|
+
}
|
|
1050
|
+
export interface RadarChartSortConfiguration {
|
|
1051
|
+
CategorySort?: FieldSortOptions[];
|
|
1052
|
+
CategoryItemsLimit?: ItemsLimitConfiguration;
|
|
1053
|
+
ColorSort?: FieldSortOptions[];
|
|
1054
|
+
ColorItemsLimit?: ItemsLimitConfiguration;
|
|
1055
|
+
}
|
|
1056
|
+
export interface RadarChartConfiguration {
|
|
1057
|
+
FieldWells?: RadarChartFieldWells;
|
|
1058
|
+
SortConfiguration?: RadarChartSortConfiguration;
|
|
1059
|
+
Shape?: RadarChartShape | string;
|
|
1060
|
+
BaseSeriesSettings?: RadarChartSeriesSettings;
|
|
1061
|
+
StartAngle?: number;
|
|
1062
|
+
VisualPalette?: VisualPalette;
|
|
1063
|
+
AlternateBandColorsVisibility?: Visibility | string;
|
|
1064
|
+
AlternateBandEvenColor?: string;
|
|
1065
|
+
AlternateBandOddColor?: string;
|
|
1066
|
+
CategoryAxis?: AxisDisplayOptions;
|
|
1067
|
+
CategoryLabelOptions?: ChartAxisLabelOptions;
|
|
1068
|
+
ColorAxis?: AxisDisplayOptions;
|
|
1069
|
+
ColorLabelOptions?: ChartAxisLabelOptions;
|
|
1070
|
+
Legend?: LegendOptions;
|
|
1071
|
+
}
|
|
1072
|
+
export interface RadarChartVisual {
|
|
1073
|
+
VisualId: string | undefined;
|
|
1074
|
+
Title?: VisualTitleLabelOptions;
|
|
1075
|
+
Subtitle?: VisualSubtitleLabelOptions;
|
|
1076
|
+
ChartConfiguration?: RadarChartConfiguration;
|
|
1077
|
+
Actions?: VisualCustomAction[];
|
|
1078
|
+
ColumnHierarchies?: ColumnHierarchy[];
|
|
1079
|
+
}
|
|
1032
1080
|
export interface SankeyDiagramAggregatedFieldWells {
|
|
1033
1081
|
Source?: DimensionField[];
|
|
1034
1082
|
Destination?: DimensionField[];
|
|
@@ -1359,6 +1407,7 @@ export interface Visual {
|
|
|
1359
1407
|
SankeyDiagramVisual?: SankeyDiagramVisual;
|
|
1360
1408
|
CustomContentVisual?: CustomContentVisual;
|
|
1361
1409
|
EmptyVisual?: EmptyVisual;
|
|
1410
|
+
RadarChartVisual?: RadarChartVisual;
|
|
1362
1411
|
}
|
|
1363
1412
|
export interface SheetDefinition {
|
|
1364
1413
|
SheetId: string | undefined;
|
|
@@ -1672,52 +1721,6 @@ export interface CreateAccountSubscriptionResponse {
|
|
|
1672
1721
|
Status?: number;
|
|
1673
1722
|
RequestId?: string;
|
|
1674
1723
|
}
|
|
1675
|
-
export declare class PreconditionNotMetException extends __BaseException {
|
|
1676
|
-
readonly name: "PreconditionNotMetException";
|
|
1677
|
-
readonly $fault: "client";
|
|
1678
|
-
Message?: string;
|
|
1679
|
-
RequestId?: string;
|
|
1680
|
-
constructor(
|
|
1681
|
-
opts: __ExceptionOptionType<PreconditionNotMetException, __BaseException>
|
|
1682
|
-
);
|
|
1683
|
-
}
|
|
1684
|
-
export interface DateTimeParameter {
|
|
1685
|
-
Name: string | undefined;
|
|
1686
|
-
Values: Date[] | undefined;
|
|
1687
|
-
}
|
|
1688
|
-
export interface DecimalParameter {
|
|
1689
|
-
Name: string | undefined;
|
|
1690
|
-
Values: number[] | undefined;
|
|
1691
|
-
}
|
|
1692
|
-
export interface IntegerParameter {
|
|
1693
|
-
Name: string | undefined;
|
|
1694
|
-
Values: number[] | undefined;
|
|
1695
|
-
}
|
|
1696
|
-
export interface StringParameter {
|
|
1697
|
-
Name: string | undefined;
|
|
1698
|
-
Values: string[] | undefined;
|
|
1699
|
-
}
|
|
1700
|
-
export interface _Parameters {
|
|
1701
|
-
StringParameters?: StringParameter[];
|
|
1702
|
-
IntegerParameters?: IntegerParameter[];
|
|
1703
|
-
DecimalParameters?: DecimalParameter[];
|
|
1704
|
-
DateTimeParameters?: DateTimeParameter[];
|
|
1705
|
-
}
|
|
1706
|
-
export interface ResourcePermission {
|
|
1707
|
-
Principal: string | undefined;
|
|
1708
|
-
Actions: string[] | undefined;
|
|
1709
|
-
}
|
|
1710
|
-
export interface CreateAnalysisRequest {
|
|
1711
|
-
AwsAccountId: string | undefined;
|
|
1712
|
-
AnalysisId: string | undefined;
|
|
1713
|
-
Name: string | undefined;
|
|
1714
|
-
Parameters?: _Parameters;
|
|
1715
|
-
Permissions?: ResourcePermission[];
|
|
1716
|
-
SourceEntity?: AnalysisSourceEntity;
|
|
1717
|
-
ThemeArn?: string;
|
|
1718
|
-
Tags?: Tag[];
|
|
1719
|
-
Definition?: AnalysisDefinition;
|
|
1720
|
-
}
|
|
1721
1724
|
export declare const ComboChartVisualFilterSensitiveLog: (
|
|
1722
1725
|
obj: ComboChartVisual
|
|
1723
1726
|
) => any;
|
|
@@ -2137,6 +2140,27 @@ export declare const PivotTableConditionalFormattingFilterSensitiveLog: (
|
|
|
2137
2140
|
export declare const PivotTableVisualFilterSensitiveLog: (
|
|
2138
2141
|
obj: PivotTableVisual
|
|
2139
2142
|
) => any;
|
|
2143
|
+
export declare const RadarChartAreaStyleSettingsFilterSensitiveLog: (
|
|
2144
|
+
obj: RadarChartAreaStyleSettings
|
|
2145
|
+
) => any;
|
|
2146
|
+
export declare const RadarChartSeriesSettingsFilterSensitiveLog: (
|
|
2147
|
+
obj: RadarChartSeriesSettings
|
|
2148
|
+
) => any;
|
|
2149
|
+
export declare const RadarChartAggregatedFieldWellsFilterSensitiveLog: (
|
|
2150
|
+
obj: RadarChartAggregatedFieldWells
|
|
2151
|
+
) => any;
|
|
2152
|
+
export declare const RadarChartFieldWellsFilterSensitiveLog: (
|
|
2153
|
+
obj: RadarChartFieldWells
|
|
2154
|
+
) => any;
|
|
2155
|
+
export declare const RadarChartSortConfigurationFilterSensitiveLog: (
|
|
2156
|
+
obj: RadarChartSortConfiguration
|
|
2157
|
+
) => any;
|
|
2158
|
+
export declare const RadarChartConfigurationFilterSensitiveLog: (
|
|
2159
|
+
obj: RadarChartConfiguration
|
|
2160
|
+
) => any;
|
|
2161
|
+
export declare const RadarChartVisualFilterSensitiveLog: (
|
|
2162
|
+
obj: RadarChartVisual
|
|
2163
|
+
) => any;
|
|
2140
2164
|
export declare const SankeyDiagramAggregatedFieldWellsFilterSensitiveLog: (
|
|
2141
2165
|
obj: SankeyDiagramAggregatedFieldWells
|
|
2142
2166
|
) => any;
|
|
@@ -2383,22 +2407,3 @@ export declare const SignupResponseFilterSensitiveLog: (
|
|
|
2383
2407
|
export declare const CreateAccountSubscriptionResponseFilterSensitiveLog: (
|
|
2384
2408
|
obj: CreateAccountSubscriptionResponse
|
|
2385
2409
|
) => any;
|
|
2386
|
-
export declare const DateTimeParameterFilterSensitiveLog: (
|
|
2387
|
-
obj: DateTimeParameter
|
|
2388
|
-
) => any;
|
|
2389
|
-
export declare const DecimalParameterFilterSensitiveLog: (
|
|
2390
|
-
obj: DecimalParameter
|
|
2391
|
-
) => any;
|
|
2392
|
-
export declare const IntegerParameterFilterSensitiveLog: (
|
|
2393
|
-
obj: IntegerParameter
|
|
2394
|
-
) => any;
|
|
2395
|
-
export declare const StringParameterFilterSensitiveLog: (
|
|
2396
|
-
obj: StringParameter
|
|
2397
|
-
) => any;
|
|
2398
|
-
export declare const _ParametersFilterSensitiveLog: (obj: _Parameters) => any;
|
|
2399
|
-
export declare const ResourcePermissionFilterSensitiveLog: (
|
|
2400
|
-
obj: ResourcePermission
|
|
2401
|
-
) => any;
|
|
2402
|
-
export declare const CreateAnalysisRequestFilterSensitiveLog: (
|
|
2403
|
-
obj: CreateAnalysisRequest
|
|
2404
|
-
) => any;
|