cdk-comprehend-s3olap 2.0.162 → 2.0.163

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 (28) hide show
  1. package/.jsii +4 -4
  2. package/lib/cdk-comprehend-s3olap.js +2 -2
  3. package/lib/comprehend-lambdas.js +2 -2
  4. package/lib/iam-roles.js +4 -4
  5. package/node_modules/aws-sdk/CHANGELOG.md +16 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/appsync-2017-07-25.min.json +484 -131
  8. package/node_modules/aws-sdk/apis/backup-2018-11-15.min.json +4 -1
  9. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +6 -3
  10. package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +1005 -383
  11. package/node_modules/aws-sdk/apis/quicksight-2018-04-01.paginators.json +12 -0
  12. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +156 -107
  13. package/node_modules/aws-sdk/apis/translate-2017-07-01.min.json +84 -17
  14. package/node_modules/aws-sdk/clients/appsync.d.ts +398 -2
  15. package/node_modules/aws-sdk/clients/backup.d.ts +6 -2
  16. package/node_modules/aws-sdk/clients/connect.d.ts +1 -1
  17. package/node_modules/aws-sdk/clients/cur.d.ts +2 -2
  18. package/node_modules/aws-sdk/clients/pinpoint.d.ts +7 -7
  19. package/node_modules/aws-sdk/clients/quicksight.d.ts +749 -4
  20. package/node_modules/aws-sdk/clients/sagemaker.d.ts +76 -4
  21. package/node_modules/aws-sdk/clients/translate.d.ts +69 -5
  22. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  23. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +8 -8
  24. package/node_modules/aws-sdk/dist/aws-sdk.js +93 -23
  25. package/node_modules/aws-sdk/dist/aws-sdk.min.js +20 -20
  26. package/node_modules/aws-sdk/lib/core.js +1 -1
  27. package/node_modules/aws-sdk/package.json +1 -1
  28. package/package.json +5 -5
@@ -419,6 +419,22 @@ declare class QuickSight extends Service {
419
419
  * Provides the read and write permissions for an analysis.
420
420
  */
421
421
  describeAnalysisPermissions(callback?: (err: AWSError, data: QuickSight.Types.DescribeAnalysisPermissionsResponse) => void): Request<QuickSight.Types.DescribeAnalysisPermissionsResponse, AWSError>;
422
+ /**
423
+ * Describes an existing export job. Poll job descriptions after a job starts to know the status of the job. When a job succeeds, a URL is provided to download the exported assets' data from. Download URLs are valid for five minutes after they are generated. You can call the DescribeAssetBundleExportJob API for a new download URL as needed. Job descriptions are available for 14 days after the job starts.
424
+ */
425
+ describeAssetBundleExportJob(params: QuickSight.Types.DescribeAssetBundleExportJobRequest, callback?: (err: AWSError, data: QuickSight.Types.DescribeAssetBundleExportJobResponse) => void): Request<QuickSight.Types.DescribeAssetBundleExportJobResponse, AWSError>;
426
+ /**
427
+ * Describes an existing export job. Poll job descriptions after a job starts to know the status of the job. When a job succeeds, a URL is provided to download the exported assets' data from. Download URLs are valid for five minutes after they are generated. You can call the DescribeAssetBundleExportJob API for a new download URL as needed. Job descriptions are available for 14 days after the job starts.
428
+ */
429
+ describeAssetBundleExportJob(callback?: (err: AWSError, data: QuickSight.Types.DescribeAssetBundleExportJobResponse) => void): Request<QuickSight.Types.DescribeAssetBundleExportJobResponse, AWSError>;
430
+ /**
431
+ * Describes an existing import job. Poll job descriptions after starting a job to know when it has succeeded or failed. Job descriptions are available for 14 days after job starts.
432
+ */
433
+ describeAssetBundleImportJob(params: QuickSight.Types.DescribeAssetBundleImportJobRequest, callback?: (err: AWSError, data: QuickSight.Types.DescribeAssetBundleImportJobResponse) => void): Request<QuickSight.Types.DescribeAssetBundleImportJobResponse, AWSError>;
434
+ /**
435
+ * Describes an existing import job. Poll job descriptions after starting a job to know when it has succeeded or failed. Job descriptions are available for 14 days after job starts.
436
+ */
437
+ describeAssetBundleImportJob(callback?: (err: AWSError, data: QuickSight.Types.DescribeAssetBundleImportJobResponse) => void): Request<QuickSight.Types.DescribeAssetBundleImportJobResponse, AWSError>;
422
438
  /**
423
439
  * Provides a summary for a dashboard.
424
440
  */
@@ -707,6 +723,22 @@ declare class QuickSight extends Service {
707
723
  * Lists Amazon QuickSight analyses that exist in the specified Amazon Web Services account.
708
724
  */
709
725
  listAnalyses(callback?: (err: AWSError, data: QuickSight.Types.ListAnalysesResponse) => void): Request<QuickSight.Types.ListAnalysesResponse, AWSError>;
726
+ /**
727
+ * Lists all asset bundle export jobs that have been taken place in the last 14 days. Jobs created more than 14 days ago are deleted forever and are not returned. If you are using the same job ID for multiple jobs, ListAssetBundleExportJobs only returns the most recent job that uses the repeated job ID.
728
+ */
729
+ listAssetBundleExportJobs(params: QuickSight.Types.ListAssetBundleExportJobsRequest, callback?: (err: AWSError, data: QuickSight.Types.ListAssetBundleExportJobsResponse) => void): Request<QuickSight.Types.ListAssetBundleExportJobsResponse, AWSError>;
730
+ /**
731
+ * Lists all asset bundle export jobs that have been taken place in the last 14 days. Jobs created more than 14 days ago are deleted forever and are not returned. If you are using the same job ID for multiple jobs, ListAssetBundleExportJobs only returns the most recent job that uses the repeated job ID.
732
+ */
733
+ listAssetBundleExportJobs(callback?: (err: AWSError, data: QuickSight.Types.ListAssetBundleExportJobsResponse) => void): Request<QuickSight.Types.ListAssetBundleExportJobsResponse, AWSError>;
734
+ /**
735
+ * Lists all asset bundle import jobs that have taken place in the last 14 days. Jobs created more than 14 days ago are deleted forever and are not returned. If you are using the same job ID for multiple jobs, ListAssetBundleImportJobs only returns the most recent job that uses the repeated job ID.
736
+ */
737
+ listAssetBundleImportJobs(params: QuickSight.Types.ListAssetBundleImportJobsRequest, callback?: (err: AWSError, data: QuickSight.Types.ListAssetBundleImportJobsResponse) => void): Request<QuickSight.Types.ListAssetBundleImportJobsResponse, AWSError>;
738
+ /**
739
+ * Lists all asset bundle import jobs that have taken place in the last 14 days. Jobs created more than 14 days ago are deleted forever and are not returned. If you are using the same job ID for multiple jobs, ListAssetBundleImportJobs only returns the most recent job that uses the repeated job ID.
740
+ */
741
+ listAssetBundleImportJobs(callback?: (err: AWSError, data: QuickSight.Types.ListAssetBundleImportJobsResponse) => void): Request<QuickSight.Types.ListAssetBundleImportJobsResponse, AWSError>;
710
742
  /**
711
743
  * Lists all the versions of the dashboards in the Amazon QuickSight subscription.
712
744
  */
@@ -979,6 +1011,22 @@ declare class QuickSight extends Service {
979
1011
  * Use the SearchGroups operation to search groups in a specified Amazon QuickSight namespace using the supplied filters.
980
1012
  */
981
1013
  searchGroups(callback?: (err: AWSError, data: QuickSight.Types.SearchGroupsResponse) => void): Request<QuickSight.Types.SearchGroupsResponse, AWSError>;
1014
+ /**
1015
+ * Starts an Asset Bundle export job. An Asset Bundle export job exports specified Amazon QuickSight assets. You can also choose to export any asset dependencies in the same job. Export jobs run asynchronously and can be polled with a DescribeAssetBundleExportJob API call. When a job is successfully completed, a download URL that contains the exported assets is returned. The URL is valid for 5 minutes and can be refreshed with a DescribeAssetBundleExportJob API call. Each Amazon QuickSight account can run up to 10 export jobs concurrently. The API caller must have the necessary permissions in their IAM role to access each resource before the resources can be exported.
1016
+ */
1017
+ startAssetBundleExportJob(params: QuickSight.Types.StartAssetBundleExportJobRequest, callback?: (err: AWSError, data: QuickSight.Types.StartAssetBundleExportJobResponse) => void): Request<QuickSight.Types.StartAssetBundleExportJobResponse, AWSError>;
1018
+ /**
1019
+ * Starts an Asset Bundle export job. An Asset Bundle export job exports specified Amazon QuickSight assets. You can also choose to export any asset dependencies in the same job. Export jobs run asynchronously and can be polled with a DescribeAssetBundleExportJob API call. When a job is successfully completed, a download URL that contains the exported assets is returned. The URL is valid for 5 minutes and can be refreshed with a DescribeAssetBundleExportJob API call. Each Amazon QuickSight account can run up to 10 export jobs concurrently. The API caller must have the necessary permissions in their IAM role to access each resource before the resources can be exported.
1020
+ */
1021
+ startAssetBundleExportJob(callback?: (err: AWSError, data: QuickSight.Types.StartAssetBundleExportJobResponse) => void): Request<QuickSight.Types.StartAssetBundleExportJobResponse, AWSError>;
1022
+ /**
1023
+ * Starts an Asset Bundle import job. An Asset Bundle import job imports specified Amazon QuickSight assets into an Amazon QuickSight account. You can also choose to import a naming prefix and specified configuration overrides. The assets that are contained in the bundle file that you provide are used to create or update a new or existing asset in your Amazon QuickSight account. Each Amazon QuickSight account can run up to 10 import jobs concurrently. The API caller must have the necessary "create", "describe", and "update" permissions in their IAM role to access each resource type that is contained in the bundle file before the resources can be imported.
1024
+ */
1025
+ startAssetBundleImportJob(params: QuickSight.Types.StartAssetBundleImportJobRequest, callback?: (err: AWSError, data: QuickSight.Types.StartAssetBundleImportJobResponse) => void): Request<QuickSight.Types.StartAssetBundleImportJobResponse, AWSError>;
1026
+ /**
1027
+ * Starts an Asset Bundle import job. An Asset Bundle import job imports specified Amazon QuickSight assets into an Amazon QuickSight account. You can also choose to import a naming prefix and specified configuration overrides. The assets that are contained in the bundle file that you provide are used to create or update a new or existing asset in your Amazon QuickSight account. Each Amazon QuickSight account can run up to 10 import jobs concurrently. The API caller must have the necessary "create", "describe", and "update" permissions in their IAM role to access each resource type that is contained in the bundle file before the resources can be imported.
1028
+ */
1029
+ startAssetBundleImportJob(callback?: (err: AWSError, data: QuickSight.Types.StartAssetBundleImportJobResponse) => void): Request<QuickSight.Types.StartAssetBundleImportJobResponse, AWSError>;
982
1030
  /**
983
1031
  * Assigns one or more tags (key-value pairs) to the specified Amazon QuickSight resource. Tags can help you organize and categorize your resources. You can also use them to scope user permissions, by granting a user permission to access or change only resources with certain tag values. You can use the TagResource operation with a resource that already has tags. If you specify a new tag key for the resource, this tag is appended to the list of tags associated with the resource. If you specify a tag key that is already associated with the resource, the new tag value that you specify replaces the previous value for that tag. You can associate as many as 50 tags with a resource. Amazon QuickSight supports tagging on data set, data source, dashboard, template, and topic. Tagging for Amazon QuickSight works in a similar way to tagging for other Amazon Web Services services, except for the following: You can't use tags to track costs for Amazon QuickSight. This isn't possible because you can't tag the resources that Amazon QuickSight costs are based on, for example Amazon QuickSight storage capacity (SPICE), number of users, type of users, and usage metrics. Amazon QuickSight doesn't currently support the tag editor for Resource Groups.
984
1032
  */
@@ -1583,6 +1631,407 @@ declare namespace QuickSight {
1583
1631
  export type ArcThicknessOptions = "SMALL"|"MEDIUM"|"LARGE"|string;
1584
1632
  export type Arn = string;
1585
1633
  export type ArnList = Arn[];
1634
+ export interface AssetBundleCloudFormationOverridePropertyConfiguration {
1635
+ /**
1636
+ * An optional list of structures that control how resource IDs are parameterized in the returned CloudFormation template.
1637
+ */
1638
+ ResourceIdOverrideConfiguration?: AssetBundleExportJobResourceIdOverrideConfiguration;
1639
+ /**
1640
+ * An optional list of structures that control how VPCConnection resources are parameterized in the returned CloudFormation template.
1641
+ */
1642
+ VPCConnections?: AssetBundleExportJobVPCConnectionOverridePropertiesList;
1643
+ /**
1644
+ * An optional list of structures that control how RefreshSchedule resources are parameterized in the returned CloudFormation template.
1645
+ */
1646
+ RefreshSchedules?: AssetBundleExportJobRefreshScheduleOverridePropertiesList;
1647
+ /**
1648
+ * An optional list of structures that control how DataSource resources are parameterized in the returned CloudFormation template.
1649
+ */
1650
+ DataSources?: AssetBundleExportJobDataSourceOverridePropertiesList;
1651
+ /**
1652
+ * An optional list of structures that control how DataSet resources are parameterized in the returned CloudFormation template.
1653
+ */
1654
+ DataSets?: AssetBundleExportJobDataSetOverridePropertiesList;
1655
+ /**
1656
+ * An optional list of structures that control how Theme resources are parameterized in the returned CloudFormation template.
1657
+ */
1658
+ Themes?: AssetBundleExportJobThemeOverridePropertiesList;
1659
+ /**
1660
+ * An optional list of structures that control how Analysis resources are parameterized in the returned CloudFormation template.
1661
+ */
1662
+ Analyses?: AssetBundleExportJobAnalysisOverridePropertiesList;
1663
+ /**
1664
+ * An optional list of structures that control how Dashboard resources are parameterized in the returned CloudFormation template.
1665
+ */
1666
+ Dashboards?: AssetBundleExportJobDashboardOverridePropertiesList;
1667
+ }
1668
+ export type AssetBundleExportFormat = "CLOUDFORMATION_JSON"|"QUICKSIGHT_JSON"|string;
1669
+ export interface AssetBundleExportJobAnalysisOverrideProperties {
1670
+ /**
1671
+ * The ARN of the specific Analysis resource whose override properties are configured in this structure.
1672
+ */
1673
+ Arn?: Arn;
1674
+ /**
1675
+ * A list of Analysis resource properties to generate variables for in the returned CloudFormation template.
1676
+ */
1677
+ Properties: AssetBundleExportJobAnalysisPropertyToOverrideList;
1678
+ }
1679
+ export type AssetBundleExportJobAnalysisOverridePropertiesList = AssetBundleExportJobAnalysisOverrideProperties[];
1680
+ export type AssetBundleExportJobAnalysisPropertyToOverride = "Name"|string;
1681
+ export type AssetBundleExportJobAnalysisPropertyToOverrideList = AssetBundleExportJobAnalysisPropertyToOverride[];
1682
+ export interface AssetBundleExportJobDashboardOverrideProperties {
1683
+ /**
1684
+ * The ARN of the specific Dashboard resource whose override properties are configured in this structure.
1685
+ */
1686
+ Arn?: Arn;
1687
+ /**
1688
+ * A list of Dashboard resource properties to generate variables for in the returned CloudFormation template.
1689
+ */
1690
+ Properties: AssetBundleExportJobDashboardPropertyToOverrideList;
1691
+ }
1692
+ export type AssetBundleExportJobDashboardOverridePropertiesList = AssetBundleExportJobDashboardOverrideProperties[];
1693
+ export type AssetBundleExportJobDashboardPropertyToOverride = "Name"|string;
1694
+ export type AssetBundleExportJobDashboardPropertyToOverrideList = AssetBundleExportJobDashboardPropertyToOverride[];
1695
+ export interface AssetBundleExportJobDataSetOverrideProperties {
1696
+ /**
1697
+ * The ARN of the specific DataSet resource whose override properties are configured in this structure.
1698
+ */
1699
+ Arn?: Arn;
1700
+ /**
1701
+ * A list of DataSet resource properties to generate variables for in the returned CloudFormation template.
1702
+ */
1703
+ Properties: AssetBundleExportJobDataSetPropertyToOverrideList;
1704
+ }
1705
+ export type AssetBundleExportJobDataSetOverridePropertiesList = AssetBundleExportJobDataSetOverrideProperties[];
1706
+ export type AssetBundleExportJobDataSetPropertyToOverride = "Name"|string;
1707
+ export type AssetBundleExportJobDataSetPropertyToOverrideList = AssetBundleExportJobDataSetPropertyToOverride[];
1708
+ export interface AssetBundleExportJobDataSourceOverrideProperties {
1709
+ /**
1710
+ * The ARN of the specific DataSource resource whose override properties are configured in this structure.
1711
+ */
1712
+ Arn?: Arn;
1713
+ /**
1714
+ * A list of DataSource resource properties to generate variables for in the returned CloudFormation template.
1715
+ */
1716
+ Properties: AssetBundleExportJobDataSourcePropertyToOverrideList;
1717
+ }
1718
+ export type AssetBundleExportJobDataSourceOverridePropertiesList = AssetBundleExportJobDataSourceOverrideProperties[];
1719
+ export type AssetBundleExportJobDataSourcePropertyToOverride = "Name"|"DisableSsl"|"SecretArn"|"Username"|"Password"|"Domain"|"WorkGroup"|"Host"|"Port"|"Database"|"DataSetName"|"Catalog"|"InstanceId"|"ClusterId"|"ManifestFileLocation"|"Warehouse"|"RoleArn"|string;
1720
+ export type AssetBundleExportJobDataSourcePropertyToOverrideList = AssetBundleExportJobDataSourcePropertyToOverride[];
1721
+ export interface AssetBundleExportJobError {
1722
+ /**
1723
+ * The ARN of the resource whose processing caused an error.
1724
+ */
1725
+ Arn?: Arn;
1726
+ /**
1727
+ * The specific error type of the error that occurred.
1728
+ */
1729
+ Type?: NonEmptyString;
1730
+ /**
1731
+ * A description of the error.
1732
+ */
1733
+ Message?: NonEmptyString;
1734
+ }
1735
+ export type AssetBundleExportJobErrorList = AssetBundleExportJobError[];
1736
+ export interface AssetBundleExportJobRefreshScheduleOverrideProperties {
1737
+ /**
1738
+ * The ARN of the specific RefreshSchedule resource whose override properties are configured in this structure.
1739
+ */
1740
+ Arn?: Arn;
1741
+ /**
1742
+ * A list of RefreshSchedule resource properties to generate variables for in the returned CloudFormation template.
1743
+ */
1744
+ Properties: AssetBundleExportJobRefreshSchedulePropertyToOverrideList;
1745
+ }
1746
+ export type AssetBundleExportJobRefreshScheduleOverridePropertiesList = AssetBundleExportJobRefreshScheduleOverrideProperties[];
1747
+ export type AssetBundleExportJobRefreshSchedulePropertyToOverride = "StartAfterDateTime"|string;
1748
+ export type AssetBundleExportJobRefreshSchedulePropertyToOverrideList = AssetBundleExportJobRefreshSchedulePropertyToOverride[];
1749
+ export interface AssetBundleExportJobResourceIdOverrideConfiguration {
1750
+ /**
1751
+ * An option to request a CloudFormation variable for a prefix to be prepended to each resource's ID before import. The prefix is only added to the asset IDs and does not change the name of the asset.
1752
+ */
1753
+ PrefixForAllResources?: Boolean;
1754
+ }
1755
+ export type AssetBundleExportJobStatus = "QUEUED_FOR_IMMEDIATE_EXECUTION"|"IN_PROGRESS"|"SUCCESSFUL"|"FAILED"|string;
1756
+ export interface AssetBundleExportJobSummary {
1757
+ /**
1758
+ * The current status of the export job.
1759
+ */
1760
+ JobStatus?: AssetBundleExportJobStatus;
1761
+ /**
1762
+ * The ARN of the export job.
1763
+ */
1764
+ Arn?: Arn;
1765
+ /**
1766
+ * The time that the export job was created.
1767
+ */
1768
+ CreatedTime?: Timestamp;
1769
+ /**
1770
+ * The ID of the export job.
1771
+ */
1772
+ AssetBundleExportJobId?: ShortRestrictiveResourceId;
1773
+ /**
1774
+ * The flag that determines the inclusion of resource dependencies in the returned asset bundle.
1775
+ */
1776
+ IncludeAllDependencies?: Boolean;
1777
+ /**
1778
+ * The format for the export job.
1779
+ */
1780
+ ExportFormat?: AssetBundleExportFormat;
1781
+ }
1782
+ export type AssetBundleExportJobSummaryList = AssetBundleExportJobSummary[];
1783
+ export interface AssetBundleExportJobThemeOverrideProperties {
1784
+ /**
1785
+ * The ARN of the specific Theme resource whose override properties are configured in this structure.
1786
+ */
1787
+ Arn?: Arn;
1788
+ /**
1789
+ * A list of Theme resource properties to generate variables for in the returned CloudFormation template.
1790
+ */
1791
+ Properties: AssetBundleExportJobThemePropertyToOverrideList;
1792
+ }
1793
+ export type AssetBundleExportJobThemeOverridePropertiesList = AssetBundleExportJobThemeOverrideProperties[];
1794
+ export type AssetBundleExportJobThemePropertyToOverride = "Name"|string;
1795
+ export type AssetBundleExportJobThemePropertyToOverrideList = AssetBundleExportJobThemePropertyToOverride[];
1796
+ export interface AssetBundleExportJobVPCConnectionOverrideProperties {
1797
+ /**
1798
+ * The ARN of the specific VPCConnection resource whose override properties are configured in this structure.
1799
+ */
1800
+ Arn?: Arn;
1801
+ /**
1802
+ * A list of VPCConnection resource properties to generate variables for in the returned CloudFormation template.
1803
+ */
1804
+ Properties: AssetBundleExportJobVPCConnectionPropertyToOverrideList;
1805
+ }
1806
+ export type AssetBundleExportJobVPCConnectionOverridePropertiesList = AssetBundleExportJobVPCConnectionOverrideProperties[];
1807
+ export type AssetBundleExportJobVPCConnectionPropertyToOverride = "Name"|"DnsResolvers"|"RoleArn"|string;
1808
+ export type AssetBundleExportJobVPCConnectionPropertyToOverrideList = AssetBundleExportJobVPCConnectionPropertyToOverride[];
1809
+ export type AssetBundleImportBodyBlob = Buffer|Uint8Array|Blob|string;
1810
+ export type AssetBundleImportFailureAction = "DO_NOTHING"|"ROLLBACK"|string;
1811
+ export interface AssetBundleImportJobAnalysisOverrideParameters {
1812
+ /**
1813
+ * The ID of the analysis that you ant to apply overrides to.
1814
+ */
1815
+ AnalysisId: ResourceId;
1816
+ /**
1817
+ * A new name for the analysis.
1818
+ */
1819
+ Name?: ResourceName;
1820
+ }
1821
+ export type AssetBundleImportJobAnalysisOverrideParametersList = AssetBundleImportJobAnalysisOverrideParameters[];
1822
+ export interface AssetBundleImportJobDashboardOverrideParameters {
1823
+ /**
1824
+ * The ID of the dashboard that you want to apply overrides to.
1825
+ */
1826
+ DashboardId: ResourceId;
1827
+ /**
1828
+ * A new name for the dashboard.
1829
+ */
1830
+ Name?: ResourceName;
1831
+ }
1832
+ export type AssetBundleImportJobDashboardOverrideParametersList = AssetBundleImportJobDashboardOverrideParameters[];
1833
+ export interface AssetBundleImportJobDataSetOverrideParameters {
1834
+ /**
1835
+ * The ID of the dataset to apply overrides to.
1836
+ */
1837
+ DataSetId: ResourceId;
1838
+ /**
1839
+ * A new name for the dataset.
1840
+ */
1841
+ Name?: ResourceName;
1842
+ }
1843
+ export type AssetBundleImportJobDataSetOverrideParametersList = AssetBundleImportJobDataSetOverrideParameters[];
1844
+ export interface AssetBundleImportJobDataSourceCredentialPair {
1845
+ /**
1846
+ * The username for the data source connection.
1847
+ */
1848
+ Username: DbUsername;
1849
+ /**
1850
+ * The password for the data source connection.
1851
+ */
1852
+ Password: Password;
1853
+ }
1854
+ export interface AssetBundleImportJobDataSourceCredentials {
1855
+ /**
1856
+ * A username and password credential pair to be used to create the imported data source. Leave this field blank if you are using an Secrets Manager Secret to provide credentials.
1857
+ */
1858
+ CredentialPair?: AssetBundleImportJobDataSourceCredentialPair;
1859
+ /**
1860
+ * The ARN of the Secrets Manager Secret to be used to create the imported data source leave this field blank if you aren't using a Secret in place of a credential pair.
1861
+ */
1862
+ SecretArn?: SecretArn;
1863
+ }
1864
+ export interface AssetBundleImportJobDataSourceOverrideParameters {
1865
+ /**
1866
+ * The ID of the data source to apply overrides to.
1867
+ */
1868
+ DataSourceId: ResourceId;
1869
+ /**
1870
+ * A new name for the data source.
1871
+ */
1872
+ Name?: ResourceName;
1873
+ DataSourceParameters?: DataSourceParameters;
1874
+ VpcConnectionProperties?: VpcConnectionProperties;
1875
+ SslProperties?: SslProperties;
1876
+ /**
1877
+ * An optional structure that provides the credentials to be used to create the imported data source.
1878
+ */
1879
+ Credentials?: AssetBundleImportJobDataSourceCredentials;
1880
+ }
1881
+ export type AssetBundleImportJobDataSourceOverrideParametersList = AssetBundleImportJobDataSourceOverrideParameters[];
1882
+ export interface AssetBundleImportJobError {
1883
+ /**
1884
+ * The ARN of the resource whose processing caused an error.
1885
+ */
1886
+ Arn?: Arn;
1887
+ /**
1888
+ * The specific error type or the error that occurred.
1889
+ */
1890
+ Type?: NonEmptyString;
1891
+ /**
1892
+ * A description of the error.
1893
+ */
1894
+ Message?: NonEmptyString;
1895
+ }
1896
+ export type AssetBundleImportJobErrorList = AssetBundleImportJobError[];
1897
+ export interface AssetBundleImportJobOverrideParameters {
1898
+ /**
1899
+ * An optional structure that configures resource ID overrides to be applied within the import job.
1900
+ */
1901
+ ResourceIdOverrideConfiguration?: AssetBundleImportJobResourceIdOverrideConfiguration;
1902
+ /**
1903
+ * A list of overrides for any VPCConnection resources that are present in the asset bundle that is imported.
1904
+ */
1905
+ VPCConnections?: AssetBundleImportJobVPCConnectionOverrideParametersList;
1906
+ /**
1907
+ * A list of overrides for any RefreshSchedule resources that are present in the asset bundle that is imported.
1908
+ */
1909
+ RefreshSchedules?: AssetBundleImportJobRefreshScheduleOverrideParametersList;
1910
+ /**
1911
+ * A list of overrides for any DataSource resources that are present in the asset bundle that is imported.
1912
+ */
1913
+ DataSources?: AssetBundleImportJobDataSourceOverrideParametersList;
1914
+ /**
1915
+ * A list of overrides for any DataSet resources that are present in the asset bundle that is imported.
1916
+ */
1917
+ DataSets?: AssetBundleImportJobDataSetOverrideParametersList;
1918
+ /**
1919
+ * A list of overrides for any Theme resources that are present in the asset bundle that is imported.
1920
+ */
1921
+ Themes?: AssetBundleImportJobThemeOverrideParametersList;
1922
+ /**
1923
+ * A list of overrides for any Analysis resources that are present in the asset bundle that is imported.
1924
+ */
1925
+ Analyses?: AssetBundleImportJobAnalysisOverrideParametersList;
1926
+ /**
1927
+ * A list of overrides for any Dashboard resources that are present in the asset bundle that is imported.
1928
+ */
1929
+ Dashboards?: AssetBundleImportJobDashboardOverrideParametersList;
1930
+ }
1931
+ export interface AssetBundleImportJobRefreshScheduleOverrideParameters {
1932
+ /**
1933
+ * A partial identifier for the specific RefreshSchedule resource that is being overridden. This structure is used together with the ScheduleID structure.
1934
+ */
1935
+ DataSetId: ResourceId;
1936
+ /**
1937
+ * A partial identifier for the specific RefreshSchedule resource being overridden. This structure is used together with the DataSetId structure.
1938
+ */
1939
+ ScheduleId: String;
1940
+ /**
1941
+ * An override for the StartAfterDateTime of a RefreshSchedule to ensure that the StartAfterDateTime is set to a time that takes place in the future.
1942
+ */
1943
+ StartAfterDateTime?: Timestamp;
1944
+ }
1945
+ export type AssetBundleImportJobRefreshScheduleOverrideParametersList = AssetBundleImportJobRefreshScheduleOverrideParameters[];
1946
+ export interface AssetBundleImportJobResourceIdOverrideConfiguration {
1947
+ /**
1948
+ * An option to request a CloudFormation variable for a prefix to be prepended to each resource's ID before import. The prefix is only added to the asset IDs and does not change the name of the asset.
1949
+ */
1950
+ PrefixForAllResources?: String;
1951
+ }
1952
+ export type AssetBundleImportJobStatus = "QUEUED_FOR_IMMEDIATE_EXECUTION"|"IN_PROGRESS"|"SUCCESSFUL"|"FAILED"|"FAILED_ROLLBACK_IN_PROGRESS"|"FAILED_ROLLBACK_COMPLETED"|"FAILED_ROLLBACK_ERROR"|string;
1953
+ export interface AssetBundleImportJobSummary {
1954
+ /**
1955
+ * The current status of the import job.
1956
+ */
1957
+ JobStatus?: AssetBundleImportJobStatus;
1958
+ /**
1959
+ * The ARN of the import job.
1960
+ */
1961
+ Arn?: Arn;
1962
+ /**
1963
+ * The time that the import job was created.
1964
+ */
1965
+ CreatedTime?: Timestamp;
1966
+ /**
1967
+ * 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.
1968
+ */
1969
+ AssetBundleImportJobId?: ShortRestrictiveResourceId;
1970
+ /**
1971
+ * The failure action for the import job.
1972
+ */
1973
+ FailureAction?: AssetBundleImportFailureAction;
1974
+ }
1975
+ export type AssetBundleImportJobSummaryList = AssetBundleImportJobSummary[];
1976
+ export interface AssetBundleImportJobThemeOverrideParameters {
1977
+ /**
1978
+ * The ID of the theme to apply overrides to.
1979
+ */
1980
+ ThemeId: ResourceId;
1981
+ /**
1982
+ * A new name for the theme.
1983
+ */
1984
+ Name?: ResourceName;
1985
+ }
1986
+ export type AssetBundleImportJobThemeOverrideParametersList = AssetBundleImportJobThemeOverrideParameters[];
1987
+ export interface AssetBundleImportJobVPCConnectionOverrideParameters {
1988
+ /**
1989
+ * The ID of the VPC Connection to apply overrides to.
1990
+ */
1991
+ VPCConnectionId: VPCConnectionResourceIdUnrestricted;
1992
+ /**
1993
+ * A new name for the VPC connection.
1994
+ */
1995
+ Name?: ResourceName;
1996
+ /**
1997
+ * A list of new subnet IDs for the VPC connection you are importing. This field is required if you are importing the VPC connection from another Amazon Web Services account or region.
1998
+ */
1999
+ SubnetIds?: SubnetIdList;
2000
+ /**
2001
+ * A new security group ID for the VPC connection you are importing. This field is required if you are importing the VPC connection from another Amazon Web Services account or region.
2002
+ */
2003
+ SecurityGroupIds?: SecurityGroupIdList;
2004
+ /**
2005
+ * An optional override of dns resolvers to be used by the VPC connection.
2006
+ */
2007
+ DnsResolvers?: DnsResolverList;
2008
+ /**
2009
+ * An optional override of the role ARN to be used by the VPC connection.
2010
+ */
2011
+ RoleArn?: RoleArn;
2012
+ }
2013
+ export type AssetBundleImportJobVPCConnectionOverrideParametersList = AssetBundleImportJobVPCConnectionOverrideParameters[];
2014
+ export interface AssetBundleImportSource {
2015
+ /**
2016
+ * The bytes of the Base64 encoded asset bundle import zip file. This file can't exceed 20MB. If you are calling the APIs from the Amazon Web Services Java, JavaScript, Python, or PHP SDKs, the SDK encodes Base64 automatically to allow the direct setting of the zip file's bytes. If you are using a SDK of a different language or are receiving related errors, try to Base64 encode your data.
2017
+ */
2018
+ Body?: AssetBundleImportBodyBlob;
2019
+ /**
2020
+ * The Amazon S3 uri for an asset bundle import file that exists in an Amazon S3 bucket that the caller has read access to. The file must be a zip format file and can't exceed 20MB.
2021
+ */
2022
+ S3Uri?: S3Uri;
2023
+ }
2024
+ export interface AssetBundleImportSourceDescription {
2025
+ /**
2026
+ * A HTTPS download URL for the provided asset bundle that you optionally provided at the start of the import job. This URL is valid for 5 minutes after issuance. Call DescribeAssetBundleExportJob again for a fresh URL if needed. The downloaded asset bundle is a .qs zip file.
2027
+ */
2028
+ Body?: String;
2029
+ /**
2030
+ * The Amazon S3 uri that you provided at the start of the import job.
2031
+ */
2032
+ S3Uri?: S3Uri;
2033
+ }
2034
+ export type AssetBundleResourceArns = Arn[];
1586
2035
  export type AssignmentStatus = "ENABLED"|"DRAFT"|"DISABLED"|string;
1587
2036
  export interface AthenaParameters {
1588
2037
  /**
@@ -2295,7 +2744,7 @@ declare namespace QuickSight {
2295
2744
  }
2296
2745
  export interface ClusterMarkerConfiguration {
2297
2746
  /**
2298
- * The cluster marker that is a part of the cluster marker configuration
2747
+ * The cluster marker that is a part of the cluster marker configuration.
2299
2748
  */
2300
2749
  ClusterMarker?: ClusterMarker;
2301
2750
  }
@@ -3842,7 +4291,7 @@ declare namespace QuickSight {
3842
4291
  /**
3843
4292
  * User name.
3844
4293
  */
3845
- Username: Username;
4294
+ Username: DbUsername;
3846
4295
  /**
3847
4296
  * Password.
3848
4297
  */
@@ -5178,6 +5627,7 @@ declare namespace QuickSight {
5178
5627
  }
5179
5628
  export type DayOfMonth = string;
5180
5629
  export type DayOfWeek = "SUNDAY"|"MONDAY"|"TUESDAY"|"WEDNESDAY"|"THURSDAY"|"FRIDAY"|"SATURDAY"|string;
5630
+ export type DbUsername = string;
5181
5631
  export interface DecimalDatasetParameter {
5182
5632
  /**
5183
5633
  * An identifier for the decimal parameter created in the dataset.
@@ -6158,6 +6608,130 @@ declare namespace QuickSight {
6158
6608
  */
6159
6609
  RequestId?: String;
6160
6610
  }
6611
+ export interface DescribeAssetBundleExportJobRequest {
6612
+ /**
6613
+ * The ID of the Amazon Web Services account the export job is executed in.
6614
+ */
6615
+ AwsAccountId: AwsAccountId;
6616
+ /**
6617
+ * The ID of the job that you want described. The job ID is set when you start a new job with a StartAssetBundleExportJob API call.
6618
+ */
6619
+ AssetBundleExportJobId: ShortRestrictiveResourceId;
6620
+ }
6621
+ export interface DescribeAssetBundleExportJobResponse {
6622
+ /**
6623
+ * Indicates tha status of a job through its queueing and execution. Poll this DescribeAssetBundleExportApi until JobStatus is either SUCCESSFUL or FAILED.
6624
+ */
6625
+ JobStatus?: AssetBundleExportJobStatus;
6626
+ /**
6627
+ * The URL to download the exported asset bundle data from. This URL is available only after the job has succeeded. This URL is valid for 5 minutes after issuance. Call DescribeAssetBundleExportJob again for a fresh URL if needed. The downloaded asset bundle is a zip file named assetbundle-{jobId}.qs. The file has a .qs extension. This URL can't be used in a StartAssetBundleImportJob API call and should only be used for download purposes.
6628
+ */
6629
+ DownloadUrl?: String;
6630
+ /**
6631
+ * An array of error records that describes any failures that occurred during the export job processing. Error records accumulate while the job runs. The complete set of error records is available after the job has completed and failed.
6632
+ */
6633
+ Errors?: AssetBundleExportJobErrorList;
6634
+ /**
6635
+ * The Amazon Resource Name (ARN) for the export job.
6636
+ */
6637
+ Arn?: Arn;
6638
+ /**
6639
+ * The time that the export job was created.
6640
+ */
6641
+ CreatedTime?: Timestamp;
6642
+ /**
6643
+ * The ID of the job. The job ID is set when you start a new job with a StartAssetBundleExportJob API call.
6644
+ */
6645
+ AssetBundleExportJobId?: ShortRestrictiveResourceId;
6646
+ /**
6647
+ * The ID of the Amazon Web Services account that the export job was executed in.
6648
+ */
6649
+ AwsAccountId?: AwsAccountId;
6650
+ /**
6651
+ * A list of resource ARNs that exported with the job.
6652
+ */
6653
+ ResourceArns?: AssetBundleResourceArns;
6654
+ /**
6655
+ * The include dependencies flag.
6656
+ */
6657
+ IncludeAllDependencies?: Boolean;
6658
+ /**
6659
+ * The format of the export.
6660
+ */
6661
+ ExportFormat?: AssetBundleExportFormat;
6662
+ /**
6663
+ * The CloudFormation override property configuration for the export job.
6664
+ */
6665
+ CloudFormationOverridePropertyConfiguration?: AssetBundleCloudFormationOverridePropertyConfiguration;
6666
+ /**
6667
+ * The Amazon Web Services request ID for this operation.
6668
+ */
6669
+ RequestId?: NonEmptyString;
6670
+ /**
6671
+ * The HTTP status of the response.
6672
+ */
6673
+ Status?: StatusCode;
6674
+ }
6675
+ export interface DescribeAssetBundleImportJobRequest {
6676
+ /**
6677
+ * The ID of the Amazon Web Services account the import job was executed in.
6678
+ */
6679
+ AwsAccountId: AwsAccountId;
6680
+ /**
6681
+ * The ID of the job. The job ID is set when you start a new job with a StartAssetBundleImportJob API call.
6682
+ */
6683
+ AssetBundleImportJobId: ShortRestrictiveResourceId;
6684
+ }
6685
+ export interface DescribeAssetBundleImportJobResponse {
6686
+ /**
6687
+ * Indicates tha status of a job through its queueing and execution. Poll this DescribeAssetBundleImport API until JobStatus returns one of the following values. SUCCESSFUL FAILED FAILED_ROLLBACK_COMPLETED FAILED_ROLLBACK_ERROR
6688
+ */
6689
+ JobStatus?: AssetBundleImportJobStatus;
6690
+ /**
6691
+ * An array of error records that describes any failures that occurred during the export job processing. Error records accumulate while the job is still running. The complete set of error records is available after the job has completed and failed.
6692
+ */
6693
+ Errors?: AssetBundleImportJobErrorList;
6694
+ /**
6695
+ * An array of error records that describes any failures that occurred while an import job was attempting a rollback. Error records accumulate while the job is still running. The complete set of error records is available after the job has completed and failed.
6696
+ */
6697
+ RollbackErrors?: AssetBundleImportJobErrorList;
6698
+ /**
6699
+ * The Amazon Resource Name (ARN) for the import job.
6700
+ */
6701
+ Arn?: Arn;
6702
+ /**
6703
+ * The time that the import job was created.
6704
+ */
6705
+ CreatedTime?: Timestamp;
6706
+ /**
6707
+ * The ID of the job. The job ID is set when you start a new job with a StartAssetBundleImportJob API call.
6708
+ */
6709
+ AssetBundleImportJobId?: ShortRestrictiveResourceId;
6710
+ /**
6711
+ * The ID of the Amazon Web Services account the import job was executed in.
6712
+ */
6713
+ AwsAccountId?: AwsAccountId;
6714
+ /**
6715
+ * The source of the asset bundle zip file that contains the data that is imported by the job.
6716
+ */
6717
+ AssetBundleImportSource?: AssetBundleImportSourceDescription;
6718
+ /**
6719
+ * Optional overrides to be applied to the resource configuration before import.
6720
+ */
6721
+ OverrideParameters?: AssetBundleImportJobOverrideParameters;
6722
+ /**
6723
+ * The failure action for the import job.
6724
+ */
6725
+ FailureAction?: AssetBundleImportFailureAction;
6726
+ /**
6727
+ * The Amazon Web Services request ID for this operation.
6728
+ */
6729
+ RequestId?: NonEmptyString;
6730
+ /**
6731
+ * The HTTP status of the response.
6732
+ */
6733
+ Status?: StatusCode;
6734
+ }
6161
6735
  export interface DescribeDashboardDefinitionRequest {
6162
6736
  /**
6163
6737
  * The ID of the Amazon Web Services account that contains the dashboard that you're describing.
@@ -8525,6 +9099,25 @@ declare namespace QuickSight {
8525
9099
  */
8526
9100
  East: Longitude;
8527
9101
  }
9102
+ export interface GeospatialHeatmapColorScale {
9103
+ /**
9104
+ * The list of colors to be used in heatmap point style.
9105
+ */
9106
+ Colors?: GeospatialHeatmapDataColorList;
9107
+ }
9108
+ export interface GeospatialHeatmapConfiguration {
9109
+ /**
9110
+ * The color scale specification for the heatmap point style.
9111
+ */
9112
+ HeatmapColor?: GeospatialHeatmapColorScale;
9113
+ }
9114
+ export interface GeospatialHeatmapDataColor {
9115
+ /**
9116
+ * The hex color to be used in the heatmap point style.
9117
+ */
9118
+ Color: HexColor;
9119
+ }
9120
+ export type GeospatialHeatmapDataColorList = GeospatialHeatmapDataColor[];
8528
9121
  export interface GeospatialMapAggregatedFieldWells {
8529
9122
  /**
8530
9123
  * The geospatial field wells of a geospatial map. Values are grouped by geospatial fields.
@@ -8613,8 +9206,12 @@ declare namespace QuickSight {
8613
9206
  * The cluster marker configuration of the geospatial point style.
8614
9207
  */
8615
9208
  ClusterMarkerConfiguration?: ClusterMarkerConfiguration;
9209
+ /**
9210
+ * The heatmap configuration of the geospatial point style.
9211
+ */
9212
+ HeatmapConfiguration?: GeospatialHeatmapConfiguration;
8616
9213
  }
8617
- export type GeospatialSelectedPointStyle = "POINT"|"CLUSTER"|string;
9214
+ export type GeospatialSelectedPointStyle = "POINT"|"CLUSTER"|"HEATMAP"|string;
8618
9215
  export interface GeospatialWindowOptions {
8619
9216
  /**
8620
9217
  * The bounds options (north, south, west, east) of the geospatial window options.
@@ -9814,6 +10411,70 @@ declare namespace QuickSight {
9814
10411
  */
9815
10412
  RequestId?: String;
9816
10413
  }
10414
+ export interface ListAssetBundleExportJobsRequest {
10415
+ /**
10416
+ * The ID of the Amazon Web Services account that the export jobs were executed in.
10417
+ */
10418
+ AwsAccountId: AwsAccountId;
10419
+ /**
10420
+ * The token for the next set of results, or null if there are no more results.
10421
+ */
10422
+ NextToken?: String;
10423
+ /**
10424
+ * The maximum number of results to be returned per request.
10425
+ */
10426
+ MaxResults?: MaxResults;
10427
+ }
10428
+ export interface ListAssetBundleExportJobsResponse {
10429
+ /**
10430
+ * A list of export job summaries.
10431
+ */
10432
+ AssetBundleExportJobSummaryList?: AssetBundleExportJobSummaryList;
10433
+ /**
10434
+ * The token for the next set of results, or null if there are no more results.
10435
+ */
10436
+ NextToken?: String;
10437
+ /**
10438
+ * The Amazon Web Services request ID for this operation.
10439
+ */
10440
+ RequestId?: NonEmptyString;
10441
+ /**
10442
+ * The HTTP status of the request.
10443
+ */
10444
+ Status?: StatusCode;
10445
+ }
10446
+ export interface ListAssetBundleImportJobsRequest {
10447
+ /**
10448
+ * The ID of the Amazon Web Services account that the import jobs were executed in.
10449
+ */
10450
+ AwsAccountId: AwsAccountId;
10451
+ /**
10452
+ * The token for the next set of results, or null if there are no more results.
10453
+ */
10454
+ NextToken?: String;
10455
+ /**
10456
+ * The maximum number of results to be returned per request.
10457
+ */
10458
+ MaxResults?: MaxResults;
10459
+ }
10460
+ export interface ListAssetBundleImportJobsResponse {
10461
+ /**
10462
+ * A list of import job summaries.
10463
+ */
10464
+ AssetBundleImportJobSummaryList?: AssetBundleImportJobSummaryList;
10465
+ /**
10466
+ * The token for the next set of results, or null if there are no more results.
10467
+ */
10468
+ NextToken?: String;
10469
+ /**
10470
+ * The Amazon Web Services request ID for this operation.
10471
+ */
10472
+ RequestId?: NonEmptyString;
10473
+ /**
10474
+ * The HTTP status of the response.
10475
+ */
10476
+ Status?: StatusCode;
10477
+ }
9817
10478
  export interface ListControlDisplayOptions {
9818
10479
  /**
9819
10480
  * The configuration of the search options in a list control.
@@ -12941,6 +13602,7 @@ declare namespace QuickSight {
12941
13602
  */
12942
13603
  InputColumns: InputColumnList;
12943
13604
  }
13605
+ export type S3Uri = string;
12944
13606
  export interface SameSheetTargetVisualConfiguration {
12945
13607
  /**
12946
13608
  * A list of the target visual IDs that are located in the same sheet of the analysis.
@@ -13836,6 +14498,90 @@ declare namespace QuickSight {
13836
14498
  */
13837
14499
  DisableSsl?: Boolean;
13838
14500
  }
14501
+ export interface StartAssetBundleExportJobRequest {
14502
+ /**
14503
+ * The ID of the Amazon Web Services account to export assets from.
14504
+ */
14505
+ AwsAccountId: AwsAccountId;
14506
+ /**
14507
+ * 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.
14508
+ */
14509
+ AssetBundleExportJobId: ShortRestrictiveResourceId;
14510
+ /**
14511
+ * An array of resource ARNs to export. The following resources are supported. Analysis Dashboard DataSet DataSource RefreshSchedule Theme VPCConnection The API caller must have the necessary permissions in their IAM role to access each resource before the resources can be exported.
14512
+ */
14513
+ ResourceArns: AssetBundleResourceArns;
14514
+ /**
14515
+ * A Boolean that determines whether all dependencies of each resource ARN are recursively exported with the job. For example, say you provided a Dashboard ARN to the ResourceArns parameter. If you set IncludeAllDependencies to TRUE, any theme, dataset, and dataource resource that is a dependency of the dashboard is also exported.
14516
+ */
14517
+ IncludeAllDependencies?: Boolean;
14518
+ /**
14519
+ * The export data format.
14520
+ */
14521
+ ExportFormat: AssetBundleExportFormat;
14522
+ /**
14523
+ * 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. Use this field if the ExportFormat field of a StartAssetBundleExportJobRequest API call is set to CLOUDFORMATION_JSON.
14524
+ */
14525
+ CloudFormationOverridePropertyConfiguration?: AssetBundleCloudFormationOverridePropertyConfiguration;
14526
+ }
14527
+ export interface StartAssetBundleExportJobResponse {
14528
+ /**
14529
+ * The Amazon Resource Name (ARN) for the export job.
14530
+ */
14531
+ Arn?: Arn;
14532
+ /**
14533
+ * 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.
14534
+ */
14535
+ AssetBundleExportJobId?: ShortRestrictiveResourceId;
14536
+ /**
14537
+ * The Amazon Web Services response ID for this operation.
14538
+ */
14539
+ RequestId?: NonEmptyString;
14540
+ /**
14541
+ * The HTTP status of the response.
14542
+ */
14543
+ Status?: StatusCode;
14544
+ }
14545
+ export interface StartAssetBundleImportJobRequest {
14546
+ /**
14547
+ * The ID of the Amazon Web Services account to import assets into.
14548
+ */
14549
+ AwsAccountId: AwsAccountId;
14550
+ /**
14551
+ * 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.
14552
+ */
14553
+ AssetBundleImportJobId: ShortRestrictiveResourceId;
14554
+ /**
14555
+ * The source of the asset bundle zip file that contains the data that you want to import.
14556
+ */
14557
+ AssetBundleImportSource: AssetBundleImportSource;
14558
+ /**
14559
+ * Optional overrides to be applied to the resource configuration before import.
14560
+ */
14561
+ OverrideParameters?: AssetBundleImportJobOverrideParameters;
14562
+ /**
14563
+ * The failure action for the import job. If you choose ROLLBACK, failed import jobs will attempt to undo any asset changes caused by the failed job. If you choose DO_NOTHING, failed import jobs will not attempt to roll back any asset changes caused by the failed job, possibly leaving the Amazon QuickSight account in an inconsistent state.
14564
+ */
14565
+ FailureAction?: AssetBundleImportFailureAction;
14566
+ }
14567
+ export interface StartAssetBundleImportJobResponse {
14568
+ /**
14569
+ * The Amazon Resource Name (ARN) for the import job.
14570
+ */
14571
+ Arn?: Arn;
14572
+ /**
14573
+ * 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.
14574
+ */
14575
+ AssetBundleImportJobId?: ShortRestrictiveResourceId;
14576
+ /**
14577
+ * The Amazon Web Services response ID for this operation.
14578
+ */
14579
+ RequestId?: NonEmptyString;
14580
+ /**
14581
+ * The HTTP status of the response.
14582
+ */
14583
+ Status?: StatusCode;
14584
+ }
13839
14585
  export interface StatePersistenceConfigurations {
13840
14586
  /**
13841
14587
  * Determines if a Amazon QuickSight dashboard's state persistence settings are turned on or off.
@@ -17034,7 +17780,6 @@ declare namespace QuickSight {
17034
17780
  export type UserList = User[];
17035
17781
  export type UserName = string;
17036
17782
  export type UserRole = "ADMIN"|"AUTHOR"|"READER"|"RESTRICTED_AUTHOR"|"RESTRICTED_READER"|string;
17037
- export type Username = string;
17038
17783
  export interface VPCConnection {
17039
17784
  /**
17040
17785
  * The ID of the VPC connection that you're creating. This ID is a unique identifier for each Amazon Web Services Region in an Amazon Web Services account.