@aws-sdk/client-quicksight 3.408.0 → 3.410.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.
Files changed (46) hide show
  1. package/dist-cjs/models/models_1.js +28 -22
  2. package/dist-cjs/models/models_2.js +22 -13
  3. package/dist-cjs/models/models_3.js +11 -1
  4. package/dist-cjs/protocols/Aws_restJson1.js +28 -0
  5. package/dist-cjs/runtimeExtensions.js +3 -0
  6. package/dist-es/models/models_1.js +22 -16
  7. package/dist-es/models/models_2.js +17 -10
  8. package/dist-es/models/models_3.js +10 -0
  9. package/dist-es/protocols/Aws_restJson1.js +28 -0
  10. package/dist-es/runtimeExtensions.js +3 -0
  11. package/dist-types/commands/CreateAnalysisCommand.d.ts +52 -17
  12. package/dist-types/commands/CreateDashboardCommand.d.ts +52 -17
  13. package/dist-types/commands/CreateTemplateCommand.d.ts +52 -17
  14. package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +52 -17
  15. package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +52 -17
  16. package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +52 -17
  17. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  18. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  19. package/dist-types/commands/UpdateAccountCustomizationCommand.d.ts +1 -1
  20. package/dist-types/commands/UpdateAccountSettingsCommand.d.ts +1 -2
  21. package/dist-types/commands/UpdateAnalysisCommand.d.ts +52 -17
  22. package/dist-types/commands/UpdateDashboardCommand.d.ts +52 -17
  23. package/dist-types/commands/UpdateTemplateCommand.d.ts +52 -17
  24. package/dist-types/extensionConfiguration.d.ts +2 -1
  25. package/dist-types/models/models_1.d.ts +132 -101
  26. package/dist-types/models/models_2.d.ts +98 -173
  27. package/dist-types/models/models_3.d.ts +178 -150
  28. package/dist-types/models/models_4.d.ts +150 -2
  29. package/dist-types/runtimeConfig.browser.d.ts +4 -1
  30. package/dist-types/runtimeConfig.d.ts +4 -1
  31. package/dist-types/runtimeConfig.native.d.ts +4 -1
  32. package/dist-types/runtimeExtensions.d.ts +1 -1
  33. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  34. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  35. package/dist-types/ts3.4/commands/UpdateAccountCustomizationCommand.d.ts +1 -1
  36. package/dist-types/ts3.4/commands/UpdateAccountSettingsCommand.d.ts +4 -2
  37. package/dist-types/ts3.4/extensionConfiguration.d.ts +3 -1
  38. package/dist-types/ts3.4/models/models_1.d.ts +42 -40
  39. package/dist-types/ts3.4/models/models_2.d.ts +42 -45
  40. package/dist-types/ts3.4/models/models_3.d.ts +47 -40
  41. package/dist-types/ts3.4/models/models_4.d.ts +37 -1
  42. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -1
  43. package/dist-types/ts3.4/runtimeConfig.d.ts +8 -1
  44. package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -1
  45. package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
  46. package/package.json +28 -28
@@ -1,7 +1,155 @@
1
- import { ResourceStatus } from "./models_0";
1
+ import { AccountCustomization, ResourceStatus } from "./models_0";
2
2
  import { AnalysisDefinition, AnalysisSourceEntity } from "./models_1";
3
- import { _Parameters, AssignmentStatus, ColumnGroup, ColumnLevelPermissionRule, DashboardPublishOptions, DashboardSourceEntity, DashboardVersionDefinition, DataSetImportMode, DatasetParameter, DataSetUsageConfiguration, DataSourceCredentials, DataSourceParameters, FieldFolder, Group, LogicalTable, PhysicalTable, RefreshSchedule, ResourcePermission, RowLevelPermissionDataSet, RowLevelPermissionTagConfiguration, SslProperties, TemplateAlias, TemplateSourceEntity, TemplateVersionDefinition, ThemeAlias, ThemeConfiguration, TopicDetails, TopicRefreshSchedule, VPCConnectionAvailabilityStatus, VpcConnectionProperties, VPCConnectionResourceStatus } from "./models_2";
3
+ import { _Parameters, AssignmentStatus, ColumnGroup, ColumnLevelPermissionRule, DashboardPublishOptions, DashboardSourceEntity, DashboardVersionDefinition, DataSetImportMode, DatasetParameter, DataSetUsageConfiguration, DataSourceCredentials, DataSourceParameters, FieldFolder, Group, LogicalTable, PhysicalTable, RefreshSchedule, ResourcePermission, RowLevelPermissionDataSet, RowLevelPermissionTagConfiguration, SslProperties, Tag, TemplateAlias, TemplateSourceEntity, TemplateVersionDefinition, ThemeAlias, ThemeConfiguration, TopicDetails, TopicRefreshSchedule, VPCConnectionAvailabilityStatus, VpcConnectionProperties, VPCConnectionResourceStatus } from "./models_2";
4
4
  import { LinkSharingConfiguration, User, UserRole } from "./models_3";
5
+ /**
6
+ * @public
7
+ */
8
+ export interface TagResourceRequest {
9
+ /**
10
+ * @public
11
+ * <p>The Amazon Resource Name (ARN) of the resource that you want to tag.</p>
12
+ */
13
+ ResourceArn: string | undefined;
14
+ /**
15
+ * @public
16
+ * <p>Contains a map of the key-value pairs for the resource tag or tags assigned to the resource.</p>
17
+ */
18
+ Tags: Tag[] | undefined;
19
+ }
20
+ /**
21
+ * @public
22
+ */
23
+ export interface TagResourceResponse {
24
+ /**
25
+ * @public
26
+ * <p>The Amazon Web Services request ID for this operation.</p>
27
+ */
28
+ RequestId?: string;
29
+ /**
30
+ * @public
31
+ * <p>The HTTP status of the request.</p>
32
+ */
33
+ Status?: number;
34
+ }
35
+ /**
36
+ * @public
37
+ */
38
+ export interface UntagResourceRequest {
39
+ /**
40
+ * @public
41
+ * <p>The Amazon Resource Name (ARN) of the resource that you want to untag.</p>
42
+ */
43
+ ResourceArn: string | undefined;
44
+ /**
45
+ * @public
46
+ * <p>The keys of the key-value pairs for the resource tag or tags assigned to the resource.</p>
47
+ */
48
+ TagKeys: string[] | undefined;
49
+ }
50
+ /**
51
+ * @public
52
+ */
53
+ export interface UntagResourceResponse {
54
+ /**
55
+ * @public
56
+ * <p>The Amazon Web Services request ID for this operation.</p>
57
+ */
58
+ RequestId?: string;
59
+ /**
60
+ * @public
61
+ * <p>The HTTP status of the request.</p>
62
+ */
63
+ Status?: number;
64
+ }
65
+ /**
66
+ * @public
67
+ */
68
+ export interface UpdateAccountCustomizationRequest {
69
+ /**
70
+ * @public
71
+ * <p>The ID for the Amazon Web Services account that you want to update Amazon QuickSight customizations
72
+ * for.</p>
73
+ */
74
+ AwsAccountId: string | undefined;
75
+ /**
76
+ * @public
77
+ * <p>The namespace that you want to update Amazon QuickSight customizations for.</p>
78
+ */
79
+ Namespace?: string;
80
+ /**
81
+ * @public
82
+ * <p>The Amazon QuickSight customizations you're updating in the current Amazon Web Services Region. </p>
83
+ */
84
+ AccountCustomization: AccountCustomization | undefined;
85
+ }
86
+ /**
87
+ * @public
88
+ */
89
+ export interface UpdateAccountCustomizationResponse {
90
+ /**
91
+ * @public
92
+ * <p>The Amazon Resource Name (ARN) for the updated customization for this Amazon Web Services account.</p>
93
+ */
94
+ Arn?: string;
95
+ /**
96
+ * @public
97
+ * <p>The ID for the Amazon Web Services account that you want to update Amazon QuickSight customizations
98
+ * for.</p>
99
+ */
100
+ AwsAccountId?: string;
101
+ /**
102
+ * @public
103
+ * <p>The namespace associated with the customization that you're updating.</p>
104
+ */
105
+ Namespace?: string;
106
+ /**
107
+ * @public
108
+ * <p>The Amazon QuickSight customizations you're updating in the current Amazon Web Services Region. </p>
109
+ */
110
+ AccountCustomization?: AccountCustomization;
111
+ /**
112
+ * @public
113
+ * <p>The Amazon Web Services request ID for this operation.</p>
114
+ */
115
+ RequestId?: string;
116
+ /**
117
+ * @public
118
+ * <p>The HTTP status of the request.</p>
119
+ */
120
+ Status?: number;
121
+ }
122
+ /**
123
+ * @public
124
+ */
125
+ export interface UpdateAccountSettingsRequest {
126
+ /**
127
+ * @public
128
+ * <p>The ID for the Amazon Web Services account that contains the Amazon QuickSight settings that you want to
129
+ * list.</p>
130
+ */
131
+ AwsAccountId: string | undefined;
132
+ /**
133
+ * @public
134
+ * <p>The default namespace for this Amazon Web Services account. Currently, the default is
135
+ * <code>default</code>. IAM users that
136
+ * register for the first time with Amazon QuickSight provide an email address that becomes
137
+ * associated with the default namespace.
138
+ * </p>
139
+ */
140
+ DefaultNamespace: string | undefined;
141
+ /**
142
+ * @public
143
+ * <p>The email address that you want Amazon QuickSight to send notifications to regarding your
144
+ * Amazon Web Services account or Amazon QuickSight subscription.</p>
145
+ */
146
+ NotificationEmail?: string;
147
+ /**
148
+ * @public
149
+ * <p>A boolean value that determines whether or not an Amazon QuickSight account can be deleted. A <code>True</code> value doesn't allow the account to be deleted and results in an error message if a user tries to make a <code>DeleteAccountSubscription</code> request. A <code>False</code> value will allow the account to be deleted.</p>
150
+ */
151
+ TerminationProtectionEnabled?: boolean;
152
+ }
5
153
  /**
6
154
  * @public
7
155
  */
@@ -11,7 +11,10 @@ export declare const getRuntimeConfig: (config: QuickSightClientConfig) => {
11
11
  defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
12
12
  maxAttempts: number | import("@smithy/types").Provider<number>;
13
13
  region: string | import("@smithy/types").Provider<any>;
14
- requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/protocol-http").HttpHandler) | RequestHandler;
14
+ requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & {
15
+ updateHttpClientConfig(key: never, value: never): void;
16
+ httpHandlerConfigs(): {};
17
+ }) | RequestHandler;
15
18
  retryMode: string | import("@smithy/types").Provider<string>;
16
19
  sha256: import("@smithy/types").HashConstructor;
17
20
  streamCollector: import("@smithy/types").StreamCollector;
@@ -11,7 +11,10 @@ export declare const getRuntimeConfig: (config: QuickSightClientConfig) => {
11
11
  defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
12
12
  maxAttempts: number | import("@smithy/types").Provider<number>;
13
13
  region: string | import("@smithy/types").Provider<string>;
14
- requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/protocol-http").HttpHandler) | RequestHandler;
14
+ requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & {
15
+ updateHttpClientConfig(key: never, value: never): void;
16
+ httpHandlerConfigs(): {};
17
+ }) | RequestHandler;
15
18
  retryMode: string | import("@smithy/types").Provider<string>;
16
19
  sha256: import("@smithy/types").HashConstructor;
17
20
  streamCollector: import("@smithy/types").StreamCollector;
@@ -5,7 +5,10 @@ import { QuickSightClientConfig } from "./QuickSightClient";
5
5
  export declare const getRuntimeConfig: (config: QuickSightClientConfig) => {
6
6
  runtime: string;
7
7
  sha256: import("@smithy/types").HashConstructor;
8
- requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/protocol-http").HttpHandler) | import("@smithy/fetch-http-handler").FetchHttpHandler;
8
+ requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & {
9
+ updateHttpClientConfig(key: never, value: never): void;
10
+ httpHandlerConfigs(): {};
11
+ }) | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
12
  apiVersion: string;
10
13
  urlParser: import("@smithy/types").UrlParser;
11
14
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
@@ -3,7 +3,7 @@ import { QuickSightExtensionConfiguration } from "./extensionConfiguration";
3
3
  * @public
4
4
  */
5
5
  export interface RuntimeExtension {
6
- configure(clientConfiguration: QuickSightExtensionConfiguration): void;
6
+ configure(extensionConfiguration: QuickSightExtensionConfiguration): void;
7
7
  }
8
8
  /**
9
9
  * @public
@@ -6,7 +6,7 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import { TagResourceRequest, TagResourceResponse } from "../models/models_3";
9
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_4";
10
10
  import {
11
11
  QuickSightClientResolvedConfig,
12
12
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  UntagResourceRequest,
11
11
  UntagResourceResponse,
12
- } from "../models/models_3";
12
+ } from "../models/models_4";
13
13
  import {
14
14
  QuickSightClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  UpdateAccountCustomizationRequest,
11
11
  UpdateAccountCustomizationResponse,
12
- } from "../models/models_3";
12
+ } from "../models/models_4";
13
13
  import {
14
14
  QuickSightClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -6,8 +6,10 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import { UpdateAccountSettingsRequest } from "../models/models_3";
10
- import { UpdateAccountSettingsResponse } from "../models/models_4";
9
+ import {
10
+ UpdateAccountSettingsRequest,
11
+ UpdateAccountSettingsResponse,
12
+ } from "../models/models_4";
11
13
  import {
12
14
  QuickSightClientResolvedConfig,
13
15
  ServiceInputTypes,
@@ -1,3 +1,5 @@
1
+ import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
1
2
  import { DefaultExtensionConfiguration } from "@smithy/types";
2
3
  export interface QuickSightExtensionConfiguration
3
- extends DefaultExtensionConfiguration {}
4
+ extends HttpHandlerExtensionConfiguration,
5
+ DefaultExtensionConfiguration {}
@@ -728,9 +728,33 @@ export interface ProgressBarOptions {
728
728
  export interface SecondaryValueOptions {
729
729
  Visibility?: Visibility | string;
730
730
  }
731
+ export declare const KPISparklineType: {
732
+ readonly AREA: "AREA";
733
+ readonly LINE: "LINE";
734
+ };
735
+ export type KPISparklineType =
736
+ (typeof KPISparklineType)[keyof typeof KPISparklineType];
737
+ export interface KPISparklineOptions {
738
+ Visibility?: Visibility | string;
739
+ Type: KPISparklineType | string | undefined;
740
+ Color?: string;
741
+ TooltipVisibility?: Visibility | string;
742
+ }
731
743
  export interface TrendArrowOptions {
732
744
  Visibility?: Visibility | string;
733
745
  }
746
+ export declare const KPIVisualStandardLayoutType: {
747
+ readonly CLASSIC: "CLASSIC";
748
+ readonly VERTICAL: "VERTICAL";
749
+ };
750
+ export type KPIVisualStandardLayoutType =
751
+ (typeof KPIVisualStandardLayoutType)[keyof typeof KPIVisualStandardLayoutType];
752
+ export interface KPIVisualStandardLayout {
753
+ Type: KPIVisualStandardLayoutType | string | undefined;
754
+ }
755
+ export interface KPIVisualLayoutOptions {
756
+ StandardLayout?: KPIVisualStandardLayout;
757
+ }
734
758
  export interface KPIOptions {
735
759
  ProgressBar?: ProgressBarOptions;
736
760
  TrendArrows?: TrendArrowOptions;
@@ -739,6 +763,8 @@ export interface KPIOptions {
739
763
  PrimaryValueDisplayType?: PrimaryValueDisplayType | string;
740
764
  PrimaryValueFontConfiguration?: FontConfiguration;
741
765
  SecondaryValueFontConfiguration?: FontConfiguration;
766
+ Sparkline?: KPISparklineOptions;
767
+ VisualLayoutOptions?: KPIVisualLayoutOptions;
742
768
  }
743
769
  export interface KPISortConfiguration {
744
770
  TrendGroupSort?: FieldSortOptions[];
@@ -748,6 +774,14 @@ export interface KPIConfiguration {
748
774
  SortConfiguration?: KPISortConfiguration;
749
775
  KPIOptions?: KPIOptions;
750
776
  }
777
+ export interface KPIActualValueConditionalFormatting {
778
+ TextColor?: ConditionalFormattingColor;
779
+ Icon?: ConditionalFormattingIcon;
780
+ }
781
+ export interface KPIComparisonValueConditionalFormatting {
782
+ TextColor?: ConditionalFormattingColor;
783
+ Icon?: ConditionalFormattingIcon;
784
+ }
751
785
  export interface KPIPrimaryValueConditionalFormatting {
752
786
  TextColor?: ConditionalFormattingColor;
753
787
  Icon?: ConditionalFormattingIcon;
@@ -758,6 +792,8 @@ export interface KPIProgressBarConditionalFormatting {
758
792
  export interface KPIConditionalFormattingOption {
759
793
  PrimaryValue?: KPIPrimaryValueConditionalFormatting;
760
794
  ProgressBar?: KPIProgressBarConditionalFormatting;
795
+ ActualValue?: KPIActualValueConditionalFormatting;
796
+ ComparisonValue?: KPIComparisonValueConditionalFormatting;
761
797
  }
762
798
  export interface KPIConditionalFormatting {
763
799
  ConditionalFormattingOptions?: KPIConditionalFormattingOption[];
@@ -1744,40 +1780,6 @@ export interface SnapshotJobS3Result {
1744
1780
  S3Uri?: string;
1745
1781
  ErrorInfo?: SnapshotJobResultErrorInfo[];
1746
1782
  }
1747
- export interface SnapshotJobResultFileGroup {
1748
- Files?: SnapshotFile[];
1749
- S3Results?: SnapshotJobS3Result[];
1750
- }
1751
- export interface AnonymousUserSnapshotJobResult {
1752
- FileGroups?: SnapshotJobResultFileGroup[];
1753
- }
1754
- export declare const AssetBundleExportJobAnalysisPropertyToOverride: {
1755
- readonly NAME: "Name";
1756
- };
1757
- export type AssetBundleExportJobAnalysisPropertyToOverride =
1758
- (typeof AssetBundleExportJobAnalysisPropertyToOverride)[keyof typeof AssetBundleExportJobAnalysisPropertyToOverride];
1759
- export interface AssetBundleExportJobAnalysisOverrideProperties {
1760
- Arn?: string;
1761
- Properties:
1762
- | (AssetBundleExportJobAnalysisPropertyToOverride | string)[]
1763
- | undefined;
1764
- }
1765
- export declare const AssetBundleExportJobDashboardPropertyToOverride: {
1766
- readonly NAME: "Name";
1767
- };
1768
- export type AssetBundleExportJobDashboardPropertyToOverride =
1769
- (typeof AssetBundleExportJobDashboardPropertyToOverride)[keyof typeof AssetBundleExportJobDashboardPropertyToOverride];
1770
- export interface AssetBundleExportJobDashboardOverrideProperties {
1771
- Arn?: string;
1772
- Properties:
1773
- | (AssetBundleExportJobDashboardPropertyToOverride | string)[]
1774
- | undefined;
1775
- }
1776
- export declare const AssetBundleExportJobDataSetPropertyToOverride: {
1777
- readonly NAME: "Name";
1778
- };
1779
- export type AssetBundleExportJobDataSetPropertyToOverride =
1780
- (typeof AssetBundleExportJobDataSetPropertyToOverride)[keyof typeof AssetBundleExportJobDataSetPropertyToOverride];
1781
1783
  export declare const BoxPlotAggregatedFieldWellsFilterSensitiveLog: (
1782
1784
  obj: BoxPlotAggregatedFieldWells
1783
1785
  ) => any;
@@ -1970,6 +1972,12 @@ export declare const KPIOptionsFilterSensitiveLog: (obj: KPIOptions) => any;
1970
1972
  export declare const KPIConfigurationFilterSensitiveLog: (
1971
1973
  obj: KPIConfiguration
1972
1974
  ) => any;
1975
+ export declare const KPIActualValueConditionalFormattingFilterSensitiveLog: (
1976
+ obj: KPIActualValueConditionalFormatting
1977
+ ) => any;
1978
+ export declare const KPIComparisonValueConditionalFormattingFilterSensitiveLog: (
1979
+ obj: KPIComparisonValueConditionalFormatting
1980
+ ) => any;
1973
1981
  export declare const KPIPrimaryValueConditionalFormattingFilterSensitiveLog: (
1974
1982
  obj: KPIPrimaryValueConditionalFormatting
1975
1983
  ) => any;
@@ -2170,9 +2178,3 @@ export declare const AnalysisDefinitionFilterSensitiveLog: (
2170
2178
  export declare const SnapshotJobS3ResultFilterSensitiveLog: (
2171
2179
  obj: SnapshotJobS3Result
2172
2180
  ) => any;
2173
- export declare const SnapshotJobResultFileGroupFilterSensitiveLog: (
2174
- obj: SnapshotJobResultFileGroup
2175
- ) => any;
2176
- export declare const AnonymousUserSnapshotJobResultFilterSensitiveLog: (
2177
- obj: AnonymousUserSnapshotJobResult
2178
- ) => any;
@@ -21,14 +21,47 @@ import {
21
21
  import {
22
22
  AnalysisDefinition,
23
23
  AnalysisSourceEntity,
24
- AssetBundleExportJobAnalysisOverrideProperties,
25
- AssetBundleExportJobDashboardOverrideProperties,
26
- AssetBundleExportJobDataSetPropertyToOverride,
27
24
  DataSetReference,
28
25
  FilterOperator,
29
26
  SheetDefinition,
27
+ SnapshotFile,
28
+ SnapshotJobS3Result,
30
29
  } from "./models_1";
31
30
  import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
31
+ export interface SnapshotJobResultFileGroup {
32
+ Files?: SnapshotFile[];
33
+ S3Results?: SnapshotJobS3Result[];
34
+ }
35
+ export interface AnonymousUserSnapshotJobResult {
36
+ FileGroups?: SnapshotJobResultFileGroup[];
37
+ }
38
+ export declare const AssetBundleExportJobAnalysisPropertyToOverride: {
39
+ readonly NAME: "Name";
40
+ };
41
+ export type AssetBundleExportJobAnalysisPropertyToOverride =
42
+ (typeof AssetBundleExportJobAnalysisPropertyToOverride)[keyof typeof AssetBundleExportJobAnalysisPropertyToOverride];
43
+ export interface AssetBundleExportJobAnalysisOverrideProperties {
44
+ Arn?: string;
45
+ Properties:
46
+ | (AssetBundleExportJobAnalysisPropertyToOverride | string)[]
47
+ | undefined;
48
+ }
49
+ export declare const AssetBundleExportJobDashboardPropertyToOverride: {
50
+ readonly NAME: "Name";
51
+ };
52
+ export type AssetBundleExportJobDashboardPropertyToOverride =
53
+ (typeof AssetBundleExportJobDashboardPropertyToOverride)[keyof typeof AssetBundleExportJobDashboardPropertyToOverride];
54
+ export interface AssetBundleExportJobDashboardOverrideProperties {
55
+ Arn?: string;
56
+ Properties:
57
+ | (AssetBundleExportJobDashboardPropertyToOverride | string)[]
58
+ | undefined;
59
+ }
60
+ export declare const AssetBundleExportJobDataSetPropertyToOverride: {
61
+ readonly NAME: "Name";
62
+ };
63
+ export type AssetBundleExportJobDataSetPropertyToOverride =
64
+ (typeof AssetBundleExportJobDataSetPropertyToOverride)[keyof typeof AssetBundleExportJobDataSetPropertyToOverride];
32
65
  export interface AssetBundleExportJobDataSetOverrideProperties {
33
66
  Arn?: string;
34
67
  Properties:
@@ -2754,48 +2787,12 @@ export declare const LookbackWindowSizeUnit: {
2754
2787
  };
2755
2788
  export type LookbackWindowSizeUnit =
2756
2789
  (typeof LookbackWindowSizeUnit)[keyof typeof LookbackWindowSizeUnit];
2757
- export interface LookbackWindow {
2758
- ColumnName: string | undefined;
2759
- Size: number | undefined;
2760
- SizeUnit: LookbackWindowSizeUnit | string | undefined;
2761
- }
2762
- export interface IncrementalRefresh {
2763
- LookbackWindow: LookbackWindow | undefined;
2764
- }
2765
- export interface RefreshConfiguration {
2766
- IncrementalRefresh: IncrementalRefresh | undefined;
2767
- }
2768
- export interface DataSetRefreshProperties {
2769
- RefreshConfiguration: RefreshConfiguration | undefined;
2770
- }
2771
- export interface DataSetSearchFilter {
2772
- Operator: FilterOperator | string | undefined;
2773
- Name: DataSetFilterAttribute | string | undefined;
2774
- Value: string | undefined;
2775
- }
2776
- export interface DataSetSummary {
2777
- Arn?: string;
2778
- DataSetId?: string;
2779
- Name?: string;
2780
- CreatedTime?: Date;
2781
- LastUpdatedTime?: Date;
2782
- ImportMode?: DataSetImportMode | string;
2783
- RowLevelPermissionDataSet?: RowLevelPermissionDataSet;
2784
- RowLevelPermissionTagConfigurationApplied?: boolean;
2785
- ColumnLevelPermissionRulesApplied?: boolean;
2786
- }
2787
- export declare const DataSourceErrorInfoType: {
2788
- readonly ACCESS_DENIED: "ACCESS_DENIED";
2789
- readonly CONFLICT: "CONFLICT";
2790
- readonly COPY_SOURCE_NOT_FOUND: "COPY_SOURCE_NOT_FOUND";
2791
- readonly ENGINE_VERSION_NOT_SUPPORTED: "ENGINE_VERSION_NOT_SUPPORTED";
2792
- readonly GENERIC_SQL_FAILURE: "GENERIC_SQL_FAILURE";
2793
- readonly TIMEOUT: "TIMEOUT";
2794
- readonly UNKNOWN: "UNKNOWN";
2795
- readonly UNKNOWN_HOST: "UNKNOWN_HOST";
2796
- };
2797
- export type DataSourceErrorInfoType =
2798
- (typeof DataSourceErrorInfoType)[keyof typeof DataSourceErrorInfoType];
2790
+ export declare const SnapshotJobResultFileGroupFilterSensitiveLog: (
2791
+ obj: SnapshotJobResultFileGroup
2792
+ ) => any;
2793
+ export declare const AnonymousUserSnapshotJobResultFilterSensitiveLog: (
2794
+ obj: AnonymousUserSnapshotJobResult
2795
+ ) => any;
2799
2796
  export declare const AssetBundleImportJobDataSourceCredentialPairFilterSensitiveLog: (
2800
2797
  obj: AssetBundleImportJobDataSourceCredentialPair
2801
2798
  ) => any;
@@ -15,7 +15,6 @@ import {
15
15
  AnalysisSearchFilter,
16
16
  AnalysisSummary,
17
17
  AnonymousUserEmbeddingExperienceConfiguration,
18
- AnonymousUserSnapshotJobResult,
19
18
  DashboardVisualId,
20
19
  FilterOperator,
21
20
  SnapshotFile,
@@ -23,6 +22,7 @@ import {
23
22
  } from "./models_1";
24
23
  import {
25
24
  _Parameters,
25
+ AnonymousUserSnapshotJobResult,
26
26
  AssetBundleCloudFormationOverridePropertyConfiguration,
27
27
  AssetBundleExportFormat,
28
28
  AssetBundleExportJobError,
@@ -46,10 +46,8 @@ import {
46
46
  DashboardVersionSummary,
47
47
  DataSet,
48
48
  DataSetConfiguration,
49
- DataSetRefreshProperties,
50
- DataSetSearchFilter,
51
- DataSetSummary,
52
- DataSourceErrorInfoType,
49
+ DataSetFilterAttribute,
50
+ DataSetImportMode,
53
51
  DataSourceParameters,
54
52
  DataSourceType,
55
53
  FolderType,
@@ -57,10 +55,12 @@ import {
57
55
  GroupMember,
58
56
  IdentityStore,
59
57
  IngestionStatus,
58
+ LookbackWindowSizeUnit,
60
59
  MemberType,
61
60
  NamespaceStatus,
62
61
  RefreshSchedule,
63
62
  ResourcePermission,
63
+ RowLevelPermissionDataSet,
64
64
  SharingModel,
65
65
  SslProperties,
66
66
  Tag,
@@ -75,6 +75,48 @@ import {
75
75
  VPCConnectionResourceStatus,
76
76
  } from "./models_2";
77
77
  import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
78
+ export interface LookbackWindow {
79
+ ColumnName: string | undefined;
80
+ Size: number | undefined;
81
+ SizeUnit: LookbackWindowSizeUnit | string | undefined;
82
+ }
83
+ export interface IncrementalRefresh {
84
+ LookbackWindow: LookbackWindow | undefined;
85
+ }
86
+ export interface RefreshConfiguration {
87
+ IncrementalRefresh: IncrementalRefresh | undefined;
88
+ }
89
+ export interface DataSetRefreshProperties {
90
+ RefreshConfiguration: RefreshConfiguration | undefined;
91
+ }
92
+ export interface DataSetSearchFilter {
93
+ Operator: FilterOperator | string | undefined;
94
+ Name: DataSetFilterAttribute | string | undefined;
95
+ Value: string | undefined;
96
+ }
97
+ export interface DataSetSummary {
98
+ Arn?: string;
99
+ DataSetId?: string;
100
+ Name?: string;
101
+ CreatedTime?: Date;
102
+ LastUpdatedTime?: Date;
103
+ ImportMode?: DataSetImportMode | string;
104
+ RowLevelPermissionDataSet?: RowLevelPermissionDataSet;
105
+ RowLevelPermissionTagConfigurationApplied?: boolean;
106
+ ColumnLevelPermissionRulesApplied?: boolean;
107
+ }
108
+ export declare const DataSourceErrorInfoType: {
109
+ readonly ACCESS_DENIED: "ACCESS_DENIED";
110
+ readonly CONFLICT: "CONFLICT";
111
+ readonly COPY_SOURCE_NOT_FOUND: "COPY_SOURCE_NOT_FOUND";
112
+ readonly ENGINE_VERSION_NOT_SUPPORTED: "ENGINE_VERSION_NOT_SUPPORTED";
113
+ readonly GENERIC_SQL_FAILURE: "GENERIC_SQL_FAILURE";
114
+ readonly TIMEOUT: "TIMEOUT";
115
+ readonly UNKNOWN: "UNKNOWN";
116
+ readonly UNKNOWN_HOST: "UNKNOWN_HOST";
117
+ };
118
+ export type DataSourceErrorInfoType =
119
+ (typeof DataSourceErrorInfoType)[keyof typeof DataSourceErrorInfoType];
78
120
  export interface DataSourceErrorInfo {
79
121
  Type?: DataSourceErrorInfoType | string;
80
122
  Message?: string;
@@ -1883,41 +1925,6 @@ export interface StartDashboardSnapshotJobResponse {
1883
1925
  RequestId?: string;
1884
1926
  Status?: number;
1885
1927
  }
1886
- export interface TagResourceRequest {
1887
- ResourceArn: string | undefined;
1888
- Tags: Tag[] | undefined;
1889
- }
1890
- export interface TagResourceResponse {
1891
- RequestId?: string;
1892
- Status?: number;
1893
- }
1894
- export interface UntagResourceRequest {
1895
- ResourceArn: string | undefined;
1896
- TagKeys: string[] | undefined;
1897
- }
1898
- export interface UntagResourceResponse {
1899
- RequestId?: string;
1900
- Status?: number;
1901
- }
1902
- export interface UpdateAccountCustomizationRequest {
1903
- AwsAccountId: string | undefined;
1904
- Namespace?: string;
1905
- AccountCustomization: AccountCustomization | undefined;
1906
- }
1907
- export interface UpdateAccountCustomizationResponse {
1908
- Arn?: string;
1909
- AwsAccountId?: string;
1910
- Namespace?: string;
1911
- AccountCustomization?: AccountCustomization;
1912
- RequestId?: string;
1913
- Status?: number;
1914
- }
1915
- export interface UpdateAccountSettingsRequest {
1916
- AwsAccountId: string | undefined;
1917
- DefaultNamespace: string | undefined;
1918
- NotificationEmail?: string;
1919
- TerminationProtectionEnabled?: boolean;
1920
- }
1921
1928
  export declare const DescribeAnalysisDefinitionResponseFilterSensitiveLog: (
1922
1929
  obj: DescribeAnalysisDefinitionResponse
1923
1930
  ) => any;
@@ -1,4 +1,4 @@
1
- import { ResourceStatus } from "./models_0";
1
+ import { AccountCustomization, ResourceStatus } from "./models_0";
2
2
  import { AnalysisDefinition, AnalysisSourceEntity } from "./models_1";
3
3
  import {
4
4
  _Parameters,
@@ -22,6 +22,7 @@ import {
22
22
  RowLevelPermissionDataSet,
23
23
  RowLevelPermissionTagConfiguration,
24
24
  SslProperties,
25
+ Tag,
25
26
  TemplateAlias,
26
27
  TemplateSourceEntity,
27
28
  TemplateVersionDefinition,
@@ -34,6 +35,41 @@ import {
34
35
  VPCConnectionResourceStatus,
35
36
  } from "./models_2";
36
37
  import { LinkSharingConfiguration, User, UserRole } from "./models_3";
38
+ export interface TagResourceRequest {
39
+ ResourceArn: string | undefined;
40
+ Tags: Tag[] | undefined;
41
+ }
42
+ export interface TagResourceResponse {
43
+ RequestId?: string;
44
+ Status?: number;
45
+ }
46
+ export interface UntagResourceRequest {
47
+ ResourceArn: string | undefined;
48
+ TagKeys: string[] | undefined;
49
+ }
50
+ export interface UntagResourceResponse {
51
+ RequestId?: string;
52
+ Status?: number;
53
+ }
54
+ export interface UpdateAccountCustomizationRequest {
55
+ AwsAccountId: string | undefined;
56
+ Namespace?: string;
57
+ AccountCustomization: AccountCustomization | undefined;
58
+ }
59
+ export interface UpdateAccountCustomizationResponse {
60
+ Arn?: string;
61
+ AwsAccountId?: string;
62
+ Namespace?: string;
63
+ AccountCustomization?: AccountCustomization;
64
+ RequestId?: string;
65
+ Status?: number;
66
+ }
67
+ export interface UpdateAccountSettingsRequest {
68
+ AwsAccountId: string | undefined;
69
+ DefaultNamespace: string | undefined;
70
+ NotificationEmail?: string;
71
+ TerminationProtectionEnabled?: boolean;
72
+ }
37
73
  export interface UpdateAccountSettingsResponse {
38
74
  RequestId?: string;
39
75
  Status?: number;