@aws-sdk/client-quicksight 3.839.0 → 3.844.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 (43) hide show
  1. package/dist-cjs/index.js +12 -11
  2. package/dist-es/models/models_0.js +0 -6
  3. package/dist-es/models/models_1.js +6 -3
  4. package/dist-es/models/models_2.js +4 -0
  5. package/dist-types/commands/CreateAnalysisCommand.d.ts +5 -0
  6. package/dist-types/commands/CreateCustomPermissionsCommand.d.ts +6 -0
  7. package/dist-types/commands/CreateDashboardCommand.d.ts +5 -0
  8. package/dist-types/commands/CreateDataSourceCommand.d.ts +7 -1
  9. package/dist-types/commands/CreateTemplateCommand.d.ts +5 -0
  10. package/dist-types/commands/DeleteIdentityPropagationConfigCommand.d.ts +1 -1
  11. package/dist-types/commands/DeleteTopicCommand.d.ts +1 -1
  12. package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +5 -0
  13. package/dist-types/commands/DescribeAssetBundleImportJobCommand.d.ts +4 -1
  14. package/dist-types/commands/DescribeCustomPermissionsCommand.d.ts +6 -0
  15. package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +5 -0
  16. package/dist-types/commands/DescribeDataSourceCommand.d.ts +7 -1
  17. package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +5 -0
  18. package/dist-types/commands/ListCustomPermissionsCommand.d.ts +6 -0
  19. package/dist-types/commands/ListDataSourcesCommand.d.ts +7 -1
  20. package/dist-types/commands/ListIdentityPropagationConfigsCommand.d.ts +1 -1
  21. package/dist-types/commands/StartAssetBundleExportJobCommand.d.ts +1 -1
  22. package/dist-types/commands/StartAssetBundleImportJobCommand.d.ts +4 -1
  23. package/dist-types/commands/UpdateAnalysisCommand.d.ts +5 -0
  24. package/dist-types/commands/UpdateCustomPermissionsCommand.d.ts +6 -0
  25. package/dist-types/commands/UpdateDashboardCommand.d.ts +5 -0
  26. package/dist-types/commands/UpdateDataSourceCommand.d.ts +7 -1
  27. package/dist-types/commands/UpdateIdentityPropagationConfigCommand.d.ts +1 -1
  28. package/dist-types/commands/UpdateTemplateCommand.d.ts +5 -0
  29. package/dist-types/models/models_0.d.ts +27 -74
  30. package/dist-types/models/models_1.d.ts +75 -72
  31. package/dist-types/models/models_2.d.ts +89 -103
  32. package/dist-types/models/models_3.d.ts +126 -45
  33. package/dist-types/models/models_4.d.ts +43 -131
  34. package/dist-types/models/models_5.d.ts +132 -3
  35. package/dist-types/ts3.4/commands/DeleteTopicCommand.d.ts +1 -1
  36. package/dist-types/ts3.4/commands/StartAssetBundleExportJobCommand.d.ts +1 -1
  37. package/dist-types/ts3.4/models/models_0.d.ts +7 -16
  38. package/dist-types/ts3.4/models/models_1.d.ts +17 -19
  39. package/dist-types/ts3.4/models/models_2.d.ts +31 -25
  40. package/dist-types/ts3.4/models/models_3.d.ts +29 -11
  41. package/dist-types/ts3.4/models/models_4.d.ts +12 -23
  42. package/dist-types/ts3.4/models/models_5.d.ts +26 -1
  43. package/package.json +20 -20
@@ -1,7 +1,99 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { AccountCustomization, AdHocFilteringOption, AnalysisDefaults, AssetOptions, CalculatedField, ColumnConfiguration, DashboardBehavior, DataSetIdentifierDeclaration, Edition, Entity, FilterGroup, ParameterDeclaration, QueryExecutionOptions, ResourceStatus, Sheet, TimeGranularity, TopicTimeGranularity, VisualMenuOption } from "./models_0";
3
- import { AnalysisDefinition, AnalysisSourceEntity, AssignmentStatus, AuthenticationMethodOption, AuthorSpecifiedAggregation, BorderStyle, BrandDefinition, BrandDetail, ConstantType, DataSetReference, DataSourceParameters, DisplayFormat, DisplayFormatOptions, ExceptionResourceType, FilterClass, FilterOperator, ServiceType, SheetDefinition, SslProperties, StaticFile, Tag, VpcConnectionProperties } from "./models_2";
3
+ import { AnalysisDefinition, AnalysisSourceEntity, AssignmentStatus, AuthenticationMethodOption, AuthorSpecifiedAggregation, BorderStyle, BrandDefinition, BrandStatus, BrandVersionStatus, ConstantType, DataSetReference, DataSourceParameters, DisplayFormat, DisplayFormatOptions, ExceptionResourceType, FilterClass, FilterOperator, Logo, ServiceType, SheetDefinition, SslProperties, StaticFile, Tag, VpcConnectionProperties } from "./models_2";
4
4
  import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
5
+ /**
6
+ * <p>The details of the brand.</p>
7
+ * @public
8
+ */
9
+ export interface BrandDetail {
10
+ /**
11
+ * <p>The ID of the Amazon QuickSight brand.</p>
12
+ * @public
13
+ */
14
+ BrandId: string | undefined;
15
+ /**
16
+ * <p>The Amazon Resource Name (ARN) of the brand.</p>
17
+ * @public
18
+ */
19
+ Arn?: string | undefined;
20
+ /**
21
+ * <p>The status of the brand.</p>
22
+ * @public
23
+ */
24
+ BrandStatus?: BrandStatus | undefined;
25
+ /**
26
+ * <p>The time that the brand was created.</p>
27
+ * @public
28
+ */
29
+ CreatedTime?: Date | undefined;
30
+ /**
31
+ * <p>The last time the brand was updated.</p>
32
+ * @public
33
+ */
34
+ LastUpdatedTime?: Date | undefined;
35
+ /**
36
+ * <p>The ID of the version.</p>
37
+ * @public
38
+ */
39
+ VersionId?: string | undefined;
40
+ /**
41
+ * <p>The status of the version.</p>
42
+ * @public
43
+ */
44
+ VersionStatus?: BrandVersionStatus | undefined;
45
+ /**
46
+ * <p>A list of errors that occurred during the most recent brand operation.</p>
47
+ * @public
48
+ */
49
+ Errors?: string[] | undefined;
50
+ /**
51
+ * <p>The logo details.</p>
52
+ * @public
53
+ */
54
+ Logo?: Logo | undefined;
55
+ }
56
+ /**
57
+ * <p>A summary of the brand.</p>
58
+ * @public
59
+ */
60
+ export interface BrandSummary {
61
+ /**
62
+ * <p>The Amazon Resource Name (ARN) of the brand.</p>
63
+ * @public
64
+ */
65
+ Arn?: string | undefined;
66
+ /**
67
+ * <p>The ID of the Amazon QuickSight brand.</p>
68
+ * @public
69
+ */
70
+ BrandId?: string | undefined;
71
+ /**
72
+ * <p>The name of the brand.</p>
73
+ * @public
74
+ */
75
+ BrandName?: string | undefined;
76
+ /**
77
+ * <p>The description of the brand.</p>
78
+ * @public
79
+ */
80
+ Description?: string | undefined;
81
+ /**
82
+ * <p>The status of the brand.</p>
83
+ * @public
84
+ */
85
+ BrandStatus?: BrandStatus | undefined;
86
+ /**
87
+ * <p>The time that the brand was created.</p>
88
+ * @public
89
+ */
90
+ CreatedTime?: Date | undefined;
91
+ /**
92
+ * <p>The time when the brand was last updated.</p>
93
+ * @public
94
+ */
95
+ LastUpdatedTime?: Date | undefined;
96
+ }
5
97
  /**
6
98
  * <p>A calculated column for a dataset.</p>
7
99
  * @public
@@ -110,15 +202,25 @@ export type CapabilityState = (typeof CapabilityState)[keyof typeof CapabilitySt
110
202
  */
111
203
  export interface Capabilities {
112
204
  /**
113
- * <p>The ability to export to CSV files.</p>
205
+ * <p>The ability to export to CSV files from the UI.</p>
114
206
  * @public
115
207
  */
116
208
  ExportToCsv?: CapabilityState | undefined;
117
209
  /**
118
- * <p>The ability to export to Excel files.</p>
210
+ * <p>The ability to export to Excel files from the UI.</p>
119
211
  * @public
120
212
  */
121
213
  ExportToExcel?: CapabilityState | undefined;
214
+ /**
215
+ * <p>The ability to export to PDF files from the UI.</p>
216
+ * @public
217
+ */
218
+ ExportToPdf?: CapabilityState | undefined;
219
+ /**
220
+ * <p>The ability to print reports.</p>
221
+ * @public
222
+ */
223
+ PrintReports?: CapabilityState | undefined;
122
224
  /**
123
225
  * <p>The ability to export to Create and Update themes.</p>
124
226
  * @public
@@ -194,6 +296,26 @@ export interface Capabilities {
194
296
  * @public
195
297
  */
196
298
  CreateSPICEDataset?: CapabilityState | undefined;
299
+ /**
300
+ * <p>The ability to export to PDF files in scheduled email reports.</p>
301
+ * @public
302
+ */
303
+ ExportToPdfInScheduledReports?: CapabilityState | undefined;
304
+ /**
305
+ * <p>The ability to export to CSV files in scheduled email reports.</p>
306
+ * @public
307
+ */
308
+ ExportToCsvInScheduledReports?: CapabilityState | undefined;
309
+ /**
310
+ * <p>The ability to export to Excel files in scheduled email reports.</p>
311
+ * @public
312
+ */
313
+ ExportToExcelInScheduledReports?: CapabilityState | undefined;
314
+ /**
315
+ * <p>The ability to include content in scheduled email reports.</p>
316
+ * @public
317
+ */
318
+ IncludeContentInScheduledReportsEmail?: CapabilityState | undefined;
197
319
  }
198
320
  /**
199
321
  * @public
@@ -6226,7 +6348,7 @@ export interface DataSet {
6226
6348
  */
6227
6349
  Arn?: string | undefined;
6228
6350
  /**
6229
- * <p>The ID of the dataset.</p>
6351
+ * <p>The ID of the dataset. Limited to 96 characters.</p>
6230
6352
  * @public
6231
6353
  */
6232
6354
  DataSetId?: string | undefined;
@@ -7620,47 +7742,6 @@ export interface DeleteThemeAliasResponse {
7620
7742
  */
7621
7743
  ThemeId?: string | undefined;
7622
7744
  }
7623
- /**
7624
- * @public
7625
- */
7626
- export interface DeleteTopicRequest {
7627
- /**
7628
- * <p>The ID of the Amazon Web Services account that contains the topic that you want to
7629
- * delete.</p>
7630
- * @public
7631
- */
7632
- AwsAccountId: string | undefined;
7633
- /**
7634
- * <p>The ID of the topic that you want to delete. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
7635
- * @public
7636
- */
7637
- TopicId: string | undefined;
7638
- }
7639
- /**
7640
- * @public
7641
- */
7642
- export interface DeleteTopicResponse {
7643
- /**
7644
- * <p>The Amazon Resource Name (ARN) of the topic.</p>
7645
- * @public
7646
- */
7647
- Arn?: string | undefined;
7648
- /**
7649
- * <p>The ID of the topic that you want to delete. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
7650
- * @public
7651
- */
7652
- TopicId?: string | undefined;
7653
- /**
7654
- * <p>The Amazon Web Services request ID for this operation.</p>
7655
- * @public
7656
- */
7657
- RequestId?: string | undefined;
7658
- /**
7659
- * <p>The HTTP status of the request.</p>
7660
- * @public
7661
- */
7662
- Status?: number | undefined;
7663
- }
7664
7745
  /**
7665
7746
  * @internal
7666
7747
  */
@@ -1,8 +1,49 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { AccountCustomization, AccountInfo, AccountSettings, ActiveIAMPolicyAssignment, AmazonQInQuickSightConsoleConfigurations, AmazonQInQuickSightDashboardConfigurations, Analysis, AnalysisError, Entity, ResourceStatus, Sheet } from "./models_0";
3
- import { AnalysisDefinition, AnalysisSearchFilter, AnalysisSummary, AnonymousUserEmbeddingExperienceConfiguration, AnonymousUserSnapshotJobResult, AssetBundleCloudFormationOverridePropertyConfiguration, AssetBundleExportFormat, AssetBundleExportJobError, AssetBundleExportJobStatus, AssetBundleExportJobSummary, AssetBundleExportJobValidationStrategy, AssetBundleExportJobWarning, AssetBundleImportFailureAction, AssetBundleImportJobError, AssetBundleImportJobOverrideParameters, AssetBundleImportJobOverridePermissions, AssetBundleImportJobOverrideTags, AssetBundleImportJobOverrideValidationStrategy, AssetBundleImportJobStatus, AssetBundleImportJobSummary, AssetBundleImportJobWarning, AssetBundleImportSourceDescription, AssignmentStatus, AuthorizedTargetsByService, BookmarksConfigurations, BrandDefinition, BrandDetail, BrandSummary, DashboardVisualId, DataSetRefreshProperties, FilterOperator, SharedViewConfigurations, SnapshotFile, SnapshotS3DestinationConfiguration, Tag } from "./models_2";
4
- import { _Parameters, CustomPermissions, Dashboard, DashboardError, DashboardPublishOptions, DashboardSearchFilter, DashboardsQAStatus, DashboardSummary, DashboardVersionDefinition, DashboardVersionSummary, DashboardVisualResult, DataSet, DataSetConfiguration, DataSetSearchFilter, DataSetSummary, DataSource, DataSourceSearchFilter, DataSourceSummary, FolderType, Group, GroupMember, IdentityStore, IngestionStatus, LinkSharingConfiguration, NamespaceStatus, RefreshSchedule, ResourcePermission, Role, SharingModel, TemplateAlias, TemplateVersionDefinition, ThemeAlias, ThemeConfiguration, TopicDetails, TopicRefreshSchedule, TopicUserExperienceVersion, VPCConnectionAvailabilityStatus, VPCConnectionResourceStatus } from "./models_3";
3
+ import { AnalysisDefinition, AnalysisSearchFilter, AnalysisSummary, AnonymousUserEmbeddingExperienceConfiguration, AnonymousUserSnapshotJobResult, AssetBundleCloudFormationOverridePropertyConfiguration, AssetBundleExportFormat, AssetBundleExportJobError, AssetBundleExportJobStatus, AssetBundleExportJobSummary, AssetBundleExportJobValidationStrategy, AssetBundleExportJobWarning, AssetBundleImportFailureAction, AssetBundleImportJobError, AssetBundleImportJobOverrideParameters, AssetBundleImportJobOverridePermissions, AssetBundleImportJobOverrideTags, AssetBundleImportJobOverrideValidationStrategy, AssetBundleImportJobStatus, AssetBundleImportJobSummary, AssetBundleImportJobWarning, AssetBundleImportSourceDescription, AssignmentStatus, AuthorizedTargetsByService, BookmarksConfigurations, BrandDefinition, DashboardVisualId, DataSetRefreshProperties, FilterOperator, SharedViewConfigurations, SnapshotFile, SnapshotS3DestinationConfiguration, Tag } from "./models_2";
4
+ import { _Parameters, BrandDetail, BrandSummary, CustomPermissions, Dashboard, DashboardError, DashboardPublishOptions, DashboardSearchFilter, DashboardsQAStatus, DashboardSummary, DashboardVersionDefinition, DashboardVersionSummary, DashboardVisualResult, DataSet, DataSetConfiguration, DataSetSearchFilter, DataSetSummary, DataSource, DataSourceSearchFilter, DataSourceSummary, FolderType, Group, GroupMember, IdentityStore, IngestionStatus, LinkSharingConfiguration, NamespaceStatus, RefreshSchedule, ResourcePermission, Role, SharingModel, TemplateAlias, TemplateVersionDefinition, ThemeAlias, ThemeConfiguration, TopicDetails, TopicRefreshSchedule, TopicUserExperienceVersion, VPCConnectionAvailabilityStatus, VPCConnectionResourceStatus } from "./models_3";
5
5
  import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
6
+ /**
7
+ * @public
8
+ */
9
+ export interface DeleteTopicRequest {
10
+ /**
11
+ * <p>The ID of the Amazon Web Services account that contains the topic that you want to
12
+ * delete.</p>
13
+ * @public
14
+ */
15
+ AwsAccountId: string | undefined;
16
+ /**
17
+ * <p>The ID of the topic that you want to delete. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
18
+ * @public
19
+ */
20
+ TopicId: string | undefined;
21
+ }
22
+ /**
23
+ * @public
24
+ */
25
+ export interface DeleteTopicResponse {
26
+ /**
27
+ * <p>The Amazon Resource Name (ARN) of the topic.</p>
28
+ * @public
29
+ */
30
+ Arn?: string | undefined;
31
+ /**
32
+ * <p>The ID of the topic that you want to delete. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
33
+ * @public
34
+ */
35
+ TopicId?: string | undefined;
36
+ /**
37
+ * <p>The Amazon Web Services request ID for this operation.</p>
38
+ * @public
39
+ */
40
+ RequestId?: string | undefined;
41
+ /**
42
+ * <p>The HTTP status of the request.</p>
43
+ * @public
44
+ */
45
+ Status?: number | undefined;
46
+ }
6
47
  /**
7
48
  * @public
8
49
  */
@@ -7756,135 +7797,6 @@ export interface SearchTopicsResponse {
7756
7797
  */
7757
7798
  RequestId?: string | undefined;
7758
7799
  }
7759
- /**
7760
- * @public
7761
- */
7762
- export interface StartAssetBundleExportJobRequest {
7763
- /**
7764
- * <p>The ID of the Amazon Web Services account to export assets from.</p>
7765
- * @public
7766
- */
7767
- AwsAccountId: string | undefined;
7768
- /**
7769
- * <p>The ID of the job. This ID is unique while the job is running. After the job is completed, you can reuse this ID for another job.</p>
7770
- * @public
7771
- */
7772
- AssetBundleExportJobId: string | undefined;
7773
- /**
7774
- * <p>An array of resource ARNs to export. The following resources are supported.</p>
7775
- * <ul>
7776
- * <li>
7777
- * <p>
7778
- * <code>Analysis</code>
7779
- * </p>
7780
- * </li>
7781
- * <li>
7782
- * <p>
7783
- * <code>Dashboard</code>
7784
- * </p>
7785
- * </li>
7786
- * <li>
7787
- * <p>
7788
- * <code>DataSet</code>
7789
- * </p>
7790
- * </li>
7791
- * <li>
7792
- * <p>
7793
- * <code>DataSource</code>
7794
- * </p>
7795
- * </li>
7796
- * <li>
7797
- * <p>
7798
- * <code>RefreshSchedule</code>
7799
- * </p>
7800
- * </li>
7801
- * <li>
7802
- * <p>
7803
- * <code>Theme</code>
7804
- * </p>
7805
- * </li>
7806
- * <li>
7807
- * <p>
7808
- * <code>VPCConnection</code>
7809
- * </p>
7810
- * </li>
7811
- * </ul>
7812
- * <p>The API caller must have the necessary permissions in their IAM role to access each resource before the resources can be exported.</p>
7813
- * @public
7814
- */
7815
- ResourceArns: string[] | undefined;
7816
- /**
7817
- * <p>A Boolean that determines whether all dependencies of each resource ARN are recursively
7818
- * exported with the job. For example, say you provided a Dashboard ARN to the
7819
- * <code>ResourceArns</code> parameter. If you set <code>IncludeAllDependencies</code> to
7820
- * <code>TRUE</code>, any theme, dataset, and data source resource that is a dependency of the dashboard is also
7821
- * exported.</p>
7822
- * @public
7823
- */
7824
- IncludeAllDependencies?: boolean | undefined;
7825
- /**
7826
- * <p>The export data format.</p>
7827
- * @public
7828
- */
7829
- ExportFormat: AssetBundleExportFormat | undefined;
7830
- /**
7831
- * <p>An optional collection of structures that generate CloudFormation parameters to override the existing resource property values when the resource is exported to a new CloudFormation template.</p>
7832
- * <p>Use this field if the <code>ExportFormat</code> field of a <code>StartAssetBundleExportJobRequest</code> API call is set to <code>CLOUDFORMATION_JSON</code>.</p>
7833
- * @public
7834
- */
7835
- CloudFormationOverridePropertyConfiguration?: AssetBundleCloudFormationOverridePropertyConfiguration | undefined;
7836
- /**
7837
- * <p>A Boolean that determines whether all permissions for each resource ARN are exported with the job. If you set <code>IncludePermissions</code> to <code>TRUE</code>, any permissions associated with each resource are exported.
7838
- * </p>
7839
- * @public
7840
- */
7841
- IncludePermissions?: boolean | undefined;
7842
- /**
7843
- * <p> A Boolean that determines whether all tags for each resource ARN are exported with the job. If you set <code>IncludeTags</code> to <code>TRUE</code>, any tags associated with each resource are exported.</p>
7844
- * @public
7845
- */
7846
- IncludeTags?: boolean | undefined;
7847
- /**
7848
- * <p>An optional parameter that determines which validation strategy to use for the export job. If <code>StrictModeForAllResources</code> is set to <code>TRUE</code>, strict validation for every error is enforced. If it is set to <code>FALSE</code>, validation is skipped for specific UI errors that are shown as warnings. The default value for <code>StrictModeForAllResources</code> is <code>FALSE</code>.</p>
7849
- * @public
7850
- */
7851
- ValidationStrategy?: AssetBundleExportJobValidationStrategy | undefined;
7852
- /**
7853
- * <p>A Boolean that determines if the exported asset carries over information about the folders that the asset is a member of. </p>
7854
- * @public
7855
- */
7856
- IncludeFolderMemberships?: boolean | undefined;
7857
- /**
7858
- * <p>A setting that indicates whether you want to include folder assets. You can also use this setting to recusrsively include all subfolders of an exported folder.</p>
7859
- * @public
7860
- */
7861
- IncludeFolderMembers?: IncludeFolderMembers | undefined;
7862
- }
7863
- /**
7864
- * @public
7865
- */
7866
- export interface StartAssetBundleExportJobResponse {
7867
- /**
7868
- * <p>The Amazon Resource Name (ARN) for the export job.</p>
7869
- * @public
7870
- */
7871
- Arn?: string | undefined;
7872
- /**
7873
- * <p>The ID of the job. This ID is unique while the job is running. After the job is completed, you can reuse this ID for another job.</p>
7874
- * @public
7875
- */
7876
- AssetBundleExportJobId?: string | undefined;
7877
- /**
7878
- * <p>The Amazon Web Services response ID for this operation.</p>
7879
- * @public
7880
- */
7881
- RequestId?: string | undefined;
7882
- /**
7883
- * <p>The HTTP status of the response.</p>
7884
- * @public
7885
- */
7886
- Status?: number | undefined;
7887
- }
7888
7800
  /**
7889
7801
  * @internal
7890
7802
  */
@@ -1,7 +1,136 @@
1
1
  import { AccountCustomization, ResourceStatus } from "./models_0";
2
- import { AnalysisDefinition, AnalysisSourceEntity, AssetBundleImportFailureAction, AssetBundleImportJobOverrideParameters, AssetBundleImportJobOverridePermissions, AssetBundleImportJobOverrideTags, AssetBundleImportJobOverrideValidationStrategy, AssetBundleImportSource, AssignmentStatus, BrandDefinition, BrandDetail, DataSourceParameters, ServiceType, SslProperties, Tag, TopicIR, TopicTemplate, VisualRole, VpcConnectionProperties } from "./models_2";
3
- import { _Parameters, Capabilities, ColumnGroup, ColumnLevelPermissionRule, DashboardPublishOptions, DashboardSourceEntity, DashboardsQAStatus, DashboardVersionDefinition, DataSetImportMode, DatasetParameter, DataSetUsageConfiguration, DataSourceCredentials, FieldFolder, Group, LinkSharingConfiguration, LogicalTable, PerformanceConfiguration, PhysicalTable, RefreshSchedule, ResourcePermission, Role, RowLevelPermissionDataSet, RowLevelPermissionTagConfiguration, TemplateAlias, TemplateSourceEntity, TemplateVersionDefinition, ThemeAlias, ThemeConfiguration, TopicDetails, TopicRefreshSchedule, ValidationStrategy, VPCConnectionAvailabilityStatus, VPCConnectionResourceStatus } from "./models_3";
4
- import { FailedKeyRegistrationEntry, PersonalizationMode, PurchaseMode, QSearchStatus, RegisteredCustomerManagedKey, SessionTag, SnapshotConfiguration, User, UserRole } from "./models_4";
2
+ import { AnalysisDefinition, AnalysisSourceEntity, AssetBundleCloudFormationOverridePropertyConfiguration, AssetBundleExportFormat, AssetBundleExportJobValidationStrategy, AssetBundleImportFailureAction, AssetBundleImportJobOverrideParameters, AssetBundleImportJobOverridePermissions, AssetBundleImportJobOverrideTags, AssetBundleImportJobOverrideValidationStrategy, AssetBundleImportSource, AssignmentStatus, BrandDefinition, DataSourceParameters, ServiceType, SslProperties, Tag, TopicIR, TopicTemplate, VisualRole, VpcConnectionProperties } from "./models_2";
3
+ import { _Parameters, BrandDetail, Capabilities, ColumnGroup, ColumnLevelPermissionRule, DashboardPublishOptions, DashboardSourceEntity, DashboardsQAStatus, DashboardVersionDefinition, DataSetImportMode, DatasetParameter, DataSetUsageConfiguration, DataSourceCredentials, FieldFolder, Group, LinkSharingConfiguration, LogicalTable, PerformanceConfiguration, PhysicalTable, RefreshSchedule, ResourcePermission, Role, RowLevelPermissionDataSet, RowLevelPermissionTagConfiguration, TemplateAlias, TemplateSourceEntity, TemplateVersionDefinition, ThemeAlias, ThemeConfiguration, TopicDetails, TopicRefreshSchedule, ValidationStrategy, VPCConnectionAvailabilityStatus, VPCConnectionResourceStatus } from "./models_3";
4
+ import { FailedKeyRegistrationEntry, IncludeFolderMembers, PersonalizationMode, PurchaseMode, QSearchStatus, RegisteredCustomerManagedKey, SessionTag, SnapshotConfiguration, User, UserRole } from "./models_4";
5
+ /**
6
+ * @public
7
+ */
8
+ export interface StartAssetBundleExportJobRequest {
9
+ /**
10
+ * <p>The ID of the Amazon Web Services account to export assets from.</p>
11
+ * @public
12
+ */
13
+ AwsAccountId: string | undefined;
14
+ /**
15
+ * <p>The ID of the job. This ID is unique while the job is running. After the job is completed, you can reuse this ID for another job.</p>
16
+ * @public
17
+ */
18
+ AssetBundleExportJobId: string | undefined;
19
+ /**
20
+ * <p>An array of resource ARNs to export. The following resources are supported.</p>
21
+ * <ul>
22
+ * <li>
23
+ * <p>
24
+ * <code>Analysis</code>
25
+ * </p>
26
+ * </li>
27
+ * <li>
28
+ * <p>
29
+ * <code>Dashboard</code>
30
+ * </p>
31
+ * </li>
32
+ * <li>
33
+ * <p>
34
+ * <code>DataSet</code>
35
+ * </p>
36
+ * </li>
37
+ * <li>
38
+ * <p>
39
+ * <code>DataSource</code>
40
+ * </p>
41
+ * </li>
42
+ * <li>
43
+ * <p>
44
+ * <code>RefreshSchedule</code>
45
+ * </p>
46
+ * </li>
47
+ * <li>
48
+ * <p>
49
+ * <code>Theme</code>
50
+ * </p>
51
+ * </li>
52
+ * <li>
53
+ * <p>
54
+ * <code>VPCConnection</code>
55
+ * </p>
56
+ * </li>
57
+ * </ul>
58
+ * <p>The API caller must have the necessary permissions in their IAM role to access each resource before the resources can be exported.</p>
59
+ * @public
60
+ */
61
+ ResourceArns: string[] | undefined;
62
+ /**
63
+ * <p>A Boolean that determines whether all dependencies of each resource ARN are recursively
64
+ * exported with the job. For example, say you provided a Dashboard ARN to the
65
+ * <code>ResourceArns</code> parameter. If you set <code>IncludeAllDependencies</code> to
66
+ * <code>TRUE</code>, any theme, dataset, and data source resource that is a dependency of the dashboard is also
67
+ * exported.</p>
68
+ * @public
69
+ */
70
+ IncludeAllDependencies?: boolean | undefined;
71
+ /**
72
+ * <p>The export data format.</p>
73
+ * @public
74
+ */
75
+ ExportFormat: AssetBundleExportFormat | undefined;
76
+ /**
77
+ * <p>An optional collection of structures that generate CloudFormation parameters to override the existing resource property values when the resource is exported to a new CloudFormation template.</p>
78
+ * <p>Use this field if the <code>ExportFormat</code> field of a <code>StartAssetBundleExportJobRequest</code> API call is set to <code>CLOUDFORMATION_JSON</code>.</p>
79
+ * @public
80
+ */
81
+ CloudFormationOverridePropertyConfiguration?: AssetBundleCloudFormationOverridePropertyConfiguration | undefined;
82
+ /**
83
+ * <p>A Boolean that determines whether all permissions for each resource ARN are exported with the job. If you set <code>IncludePermissions</code> to <code>TRUE</code>, any permissions associated with each resource are exported.
84
+ * </p>
85
+ * @public
86
+ */
87
+ IncludePermissions?: boolean | undefined;
88
+ /**
89
+ * <p> A Boolean that determines whether all tags for each resource ARN are exported with the job. If you set <code>IncludeTags</code> to <code>TRUE</code>, any tags associated with each resource are exported.</p>
90
+ * @public
91
+ */
92
+ IncludeTags?: boolean | undefined;
93
+ /**
94
+ * <p>An optional parameter that determines which validation strategy to use for the export job. If <code>StrictModeForAllResources</code> is set to <code>TRUE</code>, strict validation for every error is enforced. If it is set to <code>FALSE</code>, validation is skipped for specific UI errors that are shown as warnings. The default value for <code>StrictModeForAllResources</code> is <code>FALSE</code>.</p>
95
+ * @public
96
+ */
97
+ ValidationStrategy?: AssetBundleExportJobValidationStrategy | undefined;
98
+ /**
99
+ * <p>A Boolean that determines if the exported asset carries over information about the folders that the asset is a member of. </p>
100
+ * @public
101
+ */
102
+ IncludeFolderMemberships?: boolean | undefined;
103
+ /**
104
+ * <p>A setting that indicates whether you want to include folder assets. You can also use this setting to recusrsively include all subfolders of an exported folder.</p>
105
+ * @public
106
+ */
107
+ IncludeFolderMembers?: IncludeFolderMembers | undefined;
108
+ }
109
+ /**
110
+ * @public
111
+ */
112
+ export interface StartAssetBundleExportJobResponse {
113
+ /**
114
+ * <p>The Amazon Resource Name (ARN) for the export job.</p>
115
+ * @public
116
+ */
117
+ Arn?: string | undefined;
118
+ /**
119
+ * <p>The ID of the job. This ID is unique while the job is running. After the job is completed, you can reuse this ID for another job.</p>
120
+ * @public
121
+ */
122
+ AssetBundleExportJobId?: string | undefined;
123
+ /**
124
+ * <p>The Amazon Web Services response ID for this operation.</p>
125
+ * @public
126
+ */
127
+ RequestId?: string | undefined;
128
+ /**
129
+ * <p>The HTTP status of the response.</p>
130
+ * @public
131
+ */
132
+ Status?: number | undefined;
133
+ }
5
134
  /**
6
135
  * @public
7
136
  */
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { DeleteTopicRequest, DeleteTopicResponse } from "../models/models_3";
3
+ import { DeleteTopicRequest, DeleteTopicResponse } from "../models/models_4";
4
4
  import {
5
5
  QuickSightClientResolvedConfig,
6
6
  ServiceInputTypes,
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  StartAssetBundleExportJobRequest,
5
5
  StartAssetBundleExportJobResponse,
6
- } from "../models/models_4";
6
+ } from "../models/models_5";
7
7
  import {
8
8
  QuickSightClientResolvedConfig,
9
9
  ServiceInputTypes,
@@ -1413,9 +1413,16 @@ export interface SheetControlLayoutConfiguration {
1413
1413
  export interface SheetControlLayout {
1414
1414
  Configuration: SheetControlLayoutConfiguration | undefined;
1415
1415
  }
1416
+ export interface TextBoxMenuOption {
1417
+ AvailabilityStatus?: DashboardBehavior | undefined;
1418
+ }
1419
+ export interface TextBoxInteractionOptions {
1420
+ TextBoxMenuOption?: TextBoxMenuOption | undefined;
1421
+ }
1416
1422
  export interface SheetTextBox {
1417
1423
  SheetTextBoxId: string | undefined;
1418
1424
  Content?: string | undefined;
1425
+ Interactions?: TextBoxInteractionOptions | undefined;
1419
1426
  }
1420
1427
  export declare const SelectedFieldOptions: {
1421
1428
  readonly ALL_FIELDS: "ALL_FIELDS";
@@ -1678,22 +1685,6 @@ export interface VisualInteractionOptions {
1678
1685
  VisualMenuOption?: VisualMenuOption | undefined;
1679
1686
  ContextMenuOption?: ContextMenuOption | undefined;
1680
1687
  }
1681
- export declare const LegendPosition: {
1682
- readonly AUTO: "AUTO";
1683
- readonly BOTTOM: "BOTTOM";
1684
- readonly RIGHT: "RIGHT";
1685
- readonly TOP: "TOP";
1686
- };
1687
- export type LegendPosition =
1688
- (typeof LegendPosition)[keyof typeof LegendPosition];
1689
- export interface LegendOptions {
1690
- Visibility?: Visibility | undefined;
1691
- Title?: LabelOptions | undefined;
1692
- Position?: LegendPosition | undefined;
1693
- Width?: string | undefined;
1694
- Height?: string | undefined;
1695
- ValueFontConfiguration?: FontConfiguration | undefined;
1696
- }
1697
1688
  export declare const CustomParameterValuesFilterSensitiveLog: (
1698
1689
  obj: CustomParameterValues
1699
1690
  ) => any;
@@ -16,7 +16,7 @@ import {
16
16
  DimensionField,
17
17
  FontConfiguration,
18
18
  FormatConfiguration,
19
- LegendOptions,
19
+ LabelOptions,
20
20
  MeasureField,
21
21
  NumberDisplayFormatConfiguration,
22
22
  NumericalAggregationFunction,
@@ -29,6 +29,22 @@ import {
29
29
  VisualInteractionOptions,
30
30
  WidgetStatus,
31
31
  } from "./models_0";
32
+ export declare const LegendPosition: {
33
+ readonly AUTO: "AUTO";
34
+ readonly BOTTOM: "BOTTOM";
35
+ readonly RIGHT: "RIGHT";
36
+ readonly TOP: "TOP";
37
+ };
38
+ export type LegendPosition =
39
+ (typeof LegendPosition)[keyof typeof LegendPosition];
40
+ export interface LegendOptions {
41
+ Visibility?: Visibility | undefined;
42
+ Title?: LabelOptions | undefined;
43
+ Position?: LegendPosition | undefined;
44
+ Width?: string | undefined;
45
+ Height?: string | undefined;
46
+ ValueFontConfiguration?: FontConfiguration | undefined;
47
+ }
32
48
  export declare const BarChartOrientation: {
33
49
  readonly HORIZONTAL: "HORIZONTAL";
34
50
  readonly VERTICAL: "VERTICAL";
@@ -1747,21 +1763,6 @@ export interface PivotTotalOptions {
1747
1763
  MetricHeaderCellStyle?: TableCellStyle | undefined;
1748
1764
  TotalAggregationOptions?: TotalAggregationOption[] | undefined;
1749
1765
  }
1750
- export interface PivotTableTotalOptions {
1751
- RowSubtotalOptions?: SubtotalOptions | undefined;
1752
- ColumnSubtotalOptions?: SubtotalOptions | undefined;
1753
- RowTotalOptions?: PivotTotalOptions | undefined;
1754
- ColumnTotalOptions?: PivotTotalOptions | undefined;
1755
- }
1756
- export interface PivotTableConfiguration {
1757
- FieldWells?: PivotTableFieldWells | undefined;
1758
- SortConfiguration?: PivotTableSortConfiguration | undefined;
1759
- TableOptions?: PivotTableOptions | undefined;
1760
- TotalOptions?: PivotTableTotalOptions | undefined;
1761
- FieldOptions?: PivotTableFieldOptions | undefined;
1762
- PaginatedReportOptions?: PivotTablePaginatedReportOptions | undefined;
1763
- Interactions?: VisualInteractionOptions | undefined;
1764
- }
1765
1766
  export declare const ReferenceLineStaticDataConfigurationFilterSensitiveLog: (
1766
1767
  obj: ReferenceLineStaticDataConfiguration
1767
1768
  ) => any;
@@ -2083,6 +2084,3 @@ export declare const PivotFieldSortOptionsFilterSensitiveLog: (
2083
2084
  export declare const PivotTableSortConfigurationFilterSensitiveLog: (
2084
2085
  obj: PivotTableSortConfiguration
2085
2086
  ) => any;
2086
- export declare const PivotTableConfigurationFilterSensitiveLog: (
2087
- obj: PivotTableConfiguration
2088
- ) => any;