@aws-sdk/client-quicksight 3.428.0 → 3.429.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.
@@ -54,7 +54,7 @@ export interface DataSet {
54
54
  * @public
55
55
  * <p>A value that indicates whether you want to import the data into SPICE.</p>
56
56
  */
57
- ImportMode?: DataSetImportMode | string;
57
+ ImportMode?: DataSetImportMode;
58
58
  /**
59
59
  * @public
60
60
  * <p>The amount of SPICE capacity used by this dataset. This is 0 if the dataset isn't
@@ -148,7 +148,7 @@ export interface LookbackWindow {
148
148
  * @public
149
149
  * <p>The size unit that is used for the lookback window column. Valid values for this structure are <code>HOUR</code>, <code>DAY</code>, and <code>WEEK</code>.</p>
150
150
  */
151
- SizeUnit: LookbackWindowSizeUnit | string | undefined;
151
+ SizeUnit: LookbackWindowSizeUnit | undefined;
152
152
  }
153
153
  /**
154
154
  * @public
@@ -194,7 +194,7 @@ export interface DataSetSearchFilter {
194
194
  * <p>If you set the operator value to <code>"StringEquals"</code>, you need to provide an ownership related filter in the <code>"NAME"</code> field and the arn of the user or group whose datasets you want to search in the <code>"Value"</code> field. For example, <code>"Name":"QUICKSIGHT_OWNER", "Operator": "StringEquals", "Value": "arn:aws:quicksight:us-east- 1:1:user/default/UserName1"</code>.</p>
195
195
  * <p>If you set the value to <code>"StringLike"</code>, you need to provide the name of the datasets you are searching for. For example, <code>"Name":"DATASET_NAME", "Operator": "StringLike", "Value": "Test"</code>. The <code>"StringLike"</code> operator only supports the <code>NAME</code> value <code>DATASET_NAME</code>.</p>
196
196
  */
197
- Operator: FilterOperator | string | undefined;
197
+ Operator: FilterOperator | undefined;
198
198
  /**
199
199
  * @public
200
200
  * <p>The name of the value that you want to use as a filter, for example, <code>"Name":
@@ -227,7 +227,7 @@ export interface DataSetSearchFilter {
227
227
  * </li>
228
228
  * </ul>
229
229
  */
230
- Name: DataSetFilterAttribute | string | undefined;
230
+ Name: DataSetFilterAttribute | undefined;
231
231
  /**
232
232
  * @public
233
233
  * <p>The value of the named item, in this case <code>QUICKSIGHT_OWNER</code>, that you want
@@ -270,7 +270,7 @@ export interface DataSetSummary {
270
270
  * @public
271
271
  * <p>A value that indicates whether you want to import the data into SPICE.</p>
272
272
  */
273
- ImportMode?: DataSetImportMode | string;
273
+ ImportMode?: DataSetImportMode;
274
274
  /**
275
275
  * @public
276
276
  * <p>The row-level security configuration for the dataset.</p>
@@ -314,7 +314,7 @@ export interface DataSourceErrorInfo {
314
314
  * @public
315
315
  * <p>Error type.</p>
316
316
  */
317
- Type?: DataSourceErrorInfoType | string;
317
+ Type?: DataSourceErrorInfoType;
318
318
  /**
319
319
  * @public
320
320
  * <p>Error message.</p>
@@ -347,12 +347,12 @@ export interface DataSource {
347
347
  * <p>The type of the data source. This type indicates which database engine the data source
348
348
  * connects to.</p>
349
349
  */
350
- Type?: DataSourceType | string;
350
+ Type?: DataSourceType;
351
351
  /**
352
352
  * @public
353
353
  * <p>The HTTP status of the request.</p>
354
354
  */
355
- Status?: ResourceStatus | string;
355
+ Status?: ResourceStatus;
356
356
  /**
357
357
  * @public
358
358
  * <p>The time that this data source was created.</p>
@@ -431,7 +431,7 @@ export interface DataSourceSearchFilter {
431
431
  * <p>If you set the operator value to <code>"StringEquals"</code>, you need to provide an ownership related filter in the <code>"NAME"</code> field and the arn of the user or group whose data sources you want to search in the <code>"Value"</code> field. For example, <code>"Name":"DIRECT_QUICKSIGHT_OWNER", "Operator": "StringEquals", "Value": "arn:aws:quicksight:us-east-1:1:user/default/UserName1"</code>.</p>
432
432
  * <p>If you set the value to <code>"StringLike"</code>, you need to provide the name of the data sources you are searching for. For example, <code>"Name":"DATASOURCE_NAME", "Operator": "StringLike", "Value": "Test"</code>. The <code>"StringLike"</code> operator only supports the <code>NAME</code> value <code>DATASOURCE_NAME</code>.</p>
433
433
  */
434
- Operator: FilterOperator | string | undefined;
434
+ Operator: FilterOperator | undefined;
435
435
  /**
436
436
  * @public
437
437
  * <p>The name of the value that you want to use as a filter, for example, <code>"Name":
@@ -456,7 +456,7 @@ export interface DataSourceSearchFilter {
456
456
  * </li>
457
457
  * </ul>
458
458
  */
459
- Name: DataSourceFilterAttribute | string | undefined;
459
+ Name: DataSourceFilterAttribute | undefined;
460
460
  /**
461
461
  * @public
462
462
  * <p>The value of the named item, for example <code>DIRECT_QUICKSIGHT_OWNER</code>, that you want
@@ -489,7 +489,7 @@ export interface DataSourceSummary {
489
489
  * @public
490
490
  * <p>The type of the data source.</p>
491
491
  */
492
- Type?: DataSourceType | string;
492
+ Type?: DataSourceType;
493
493
  /**
494
494
  * @public
495
495
  * <p>The date and time that the data source was created. This value is expressed in MM-DD-YYYY HH:MM:SS format.</p>
@@ -836,7 +836,7 @@ export interface DeleteFolderMembershipRequest {
836
836
  * @public
837
837
  * <p>The member type of the asset that you want to delete from a folder.</p>
838
838
  */
839
- MemberType: MemberType | string | undefined;
839
+ MemberType: MemberType | undefined;
840
840
  }
841
841
  /**
842
842
  * @public
@@ -1445,12 +1445,12 @@ export interface DeleteVPCConnectionResponse {
1445
1445
  * @public
1446
1446
  * <p>The deletion status of the VPC connection.</p>
1447
1447
  */
1448
- DeletionStatus?: VPCConnectionResourceStatus | string;
1448
+ DeletionStatus?: VPCConnectionResourceStatus;
1449
1449
  /**
1450
1450
  * @public
1451
1451
  * <p>The availability status of the VPC connection.</p>
1452
1452
  */
1453
- AvailabilityStatus?: VPCConnectionAvailabilityStatus | string;
1453
+ AvailabilityStatus?: VPCConnectionAvailabilityStatus;
1454
1454
  /**
1455
1455
  * @public
1456
1456
  * <p>The Amazon Web Services request ID for this operation.</p>
@@ -1723,7 +1723,7 @@ export interface DescribeAnalysisDefinitionResponse {
1723
1723
  * </li>
1724
1724
  * </ul>
1725
1725
  */
1726
- ResourceStatus?: ResourceStatus | string;
1726
+ ResourceStatus?: ResourceStatus;
1727
1727
  /**
1728
1728
  * @public
1729
1729
  * <p>The ARN of the theme of the analysis.</p>
@@ -1819,7 +1819,7 @@ export interface DescribeAssetBundleExportJobResponse {
1819
1819
  * <p>Indicates the status of a job through its queuing and execution.</p>
1820
1820
  * <p>Poll this <code>DescribeAssetBundleExportApi</code> until <code>JobStatus</code> is either <code>SUCCESSFUL</code> or <code>FAILED</code>.</p>
1821
1821
  */
1822
- JobStatus?: AssetBundleExportJobStatus | string;
1822
+ JobStatus?: AssetBundleExportJobStatus;
1823
1823
  /**
1824
1824
  * @public
1825
1825
  * <p>The URL to download the exported asset bundle data from.</p>
@@ -1868,7 +1868,7 @@ export interface DescribeAssetBundleExportJobResponse {
1868
1868
  * @public
1869
1869
  * <p>The format of the exported asset bundle. A <code>QUICKSIGHT_JSON</code> formatted file can be used to make a <code>StartAssetBundleImportJob</code> API call. A <code>CLOUDFORMATION_JSON</code> formatted file can be used in the CloudFormation console and with the CloudFormation APIs.</p>
1870
1870
  */
1871
- ExportFormat?: AssetBundleExportFormat | string;
1871
+ ExportFormat?: AssetBundleExportFormat;
1872
1872
  /**
1873
1873
  * @public
1874
1874
  * <p>The CloudFormation override property configuration for the export job.</p>
@@ -1931,7 +1931,7 @@ export interface DescribeAssetBundleImportJobResponse {
1931
1931
  * </li>
1932
1932
  * </ul>
1933
1933
  */
1934
- JobStatus?: AssetBundleImportJobStatus | string;
1934
+ JobStatus?: AssetBundleImportJobStatus;
1935
1935
  /**
1936
1936
  * @public
1937
1937
  * <p>An array of error records that describes any failures that occurred during the export job processing.</p>
@@ -1978,7 +1978,7 @@ export interface DescribeAssetBundleImportJobResponse {
1978
1978
  * @public
1979
1979
  * <p>The failure action for the import job.</p>
1980
1980
  */
1981
- FailureAction?: AssetBundleImportFailureAction | string;
1981
+ FailureAction?: AssetBundleImportFailureAction;
1982
1982
  /**
1983
1983
  * @public
1984
1984
  * <p>The Amazon Web Services request ID for this operation.</p>
@@ -2124,7 +2124,7 @@ export interface DescribeDashboardDefinitionResponse {
2124
2124
  * </li>
2125
2125
  * </ul>
2126
2126
  */
2127
- ResourceStatus?: ResourceStatus | string;
2127
+ ResourceStatus?: ResourceStatus;
2128
2128
  /**
2129
2129
  * @public
2130
2130
  * <p>The ARN of the theme of the dashboard.</p>
@@ -2402,7 +2402,7 @@ export interface DescribeDashboardSnapshotJobResponse {
2402
2402
  * </li>
2403
2403
  * </ul>
2404
2404
  */
2405
- JobStatus?: SnapshotJobStatus | string;
2405
+ JobStatus?: SnapshotJobStatus;
2406
2406
  /**
2407
2407
  * @public
2408
2408
  * <p>
@@ -2490,7 +2490,7 @@ export interface DescribeDashboardSnapshotJobResultResponse {
2490
2490
  * @public
2491
2491
  * <p>Indicates the status of a job after it has reached a terminal state. A finished snapshot job will retuen a <code>COMPLETED</code> or <code>FAILED</code> status.</p>
2492
2492
  */
2493
- JobStatus?: SnapshotJobStatus | string;
2493
+ JobStatus?: SnapshotJobStatus;
2494
2494
  /**
2495
2495
  * @public
2496
2496
  * <p>The time that a snapshot job was created.</p>
@@ -2756,7 +2756,7 @@ export interface Folder {
2756
2756
  * @public
2757
2757
  * <p>The type of folder it is.</p>
2758
2758
  */
2759
- FolderType?: FolderType | string;
2759
+ FolderType?: FolderType;
2760
2760
  /**
2761
2761
  * @public
2762
2762
  * <p>An array of ancestor ARN strings for the folder.</p>
@@ -2776,7 +2776,7 @@ export interface Folder {
2776
2776
  * @public
2777
2777
  * <p>The sharing scope of the folder.</p>
2778
2778
  */
2779
- SharingModel?: SharingModel | string;
2779
+ SharingModel?: SharingModel;
2780
2780
  }
2781
2781
  /**
2782
2782
  * @public
@@ -3089,7 +3089,7 @@ export interface IAMPolicyAssignment {
3089
3089
  * @public
3090
3090
  * <p>Assignment status.</p>
3091
3091
  */
3092
- AssignmentStatus?: AssignmentStatus | string;
3092
+ AssignmentStatus?: AssignmentStatus;
3093
3093
  }
3094
3094
  /**
3095
3095
  * @public
@@ -3195,7 +3195,7 @@ export interface ErrorInfo {
3195
3195
  * @public
3196
3196
  * <p>Error type.</p>
3197
3197
  */
3198
- Type?: IngestionErrorType | string;
3198
+ Type?: IngestionErrorType;
3199
3199
  /**
3200
3200
  * @public
3201
3201
  * <p>Error message.</p>
@@ -3285,7 +3285,7 @@ export interface Ingestion {
3285
3285
  * @public
3286
3286
  * <p>Ingestion status.</p>
3287
3287
  */
3288
- IngestionStatus: IngestionStatus | string | undefined;
3288
+ IngestionStatus: IngestionStatus | undefined;
3289
3289
  /**
3290
3290
  * @public
3291
3291
  * <p>Error information for this ingestion.</p>
@@ -3320,12 +3320,12 @@ export interface Ingestion {
3320
3320
  * @public
3321
3321
  * <p>Event source for this ingestion.</p>
3322
3322
  */
3323
- RequestSource?: IngestionRequestSource | string;
3323
+ RequestSource?: IngestionRequestSource;
3324
3324
  /**
3325
3325
  * @public
3326
3326
  * <p>Type of this ingestion.</p>
3327
3327
  */
3328
- RequestType?: IngestionRequestType | string;
3328
+ RequestType?: IngestionRequestType;
3329
3329
  }
3330
3330
  /**
3331
3331
  * @public
@@ -3424,7 +3424,7 @@ export interface NamespaceError {
3424
3424
  * @public
3425
3425
  * <p>The error type.</p>
3426
3426
  */
3427
- Type?: NamespaceErrorType | string;
3427
+ Type?: NamespaceErrorType;
3428
3428
  /**
3429
3429
  * @public
3430
3430
  * <p>The message for the error.</p>
@@ -3455,12 +3455,12 @@ export interface NamespaceInfoV2 {
3455
3455
  * @public
3456
3456
  * <p>The creation status of a namespace that is not yet completely created.</p>
3457
3457
  */
3458
- CreationStatus?: NamespaceStatus | string;
3458
+ CreationStatus?: NamespaceStatus;
3459
3459
  /**
3460
3460
  * @public
3461
3461
  * <p>The identity store used for the namespace.</p>
3462
3462
  */
3463
- IdentityStore?: IdentityStore | string;
3463
+ IdentityStore?: IdentityStore;
3464
3464
  /**
3465
3465
  * @public
3466
3466
  * <p>An error that occurred when the namespace was created.</p>
@@ -3587,7 +3587,7 @@ export interface TemplateError {
3587
3587
  * @public
3588
3588
  * <p>Type of error.</p>
3589
3589
  */
3590
- Type?: TemplateErrorType | string;
3590
+ Type?: TemplateErrorType;
3591
3591
  /**
3592
3592
  * @public
3593
3593
  * <p>Description of the error type.</p>
@@ -3660,7 +3660,7 @@ export interface TemplateVersion {
3660
3660
  * </li>
3661
3661
  * </ul>
3662
3662
  */
3663
- Status?: ResourceStatus | string;
3663
+ Status?: ResourceStatus;
3664
3664
  /**
3665
3665
  * @public
3666
3666
  * <p>Schema of the dataset identified by the placeholder. Any dashboard created from this
@@ -3886,7 +3886,7 @@ export interface DescribeTemplateDefinitionResponse {
3886
3886
  * </li>
3887
3887
  * </ul>
3888
3888
  */
3889
- ResourceStatus?: ResourceStatus | string;
3889
+ ResourceStatus?: ResourceStatus;
3890
3890
  /**
3891
3891
  * @public
3892
3892
  * <p>The ARN of the theme of the template.</p>
@@ -4016,7 +4016,7 @@ export interface ThemeError {
4016
4016
  * @public
4017
4017
  * <p>The type of error.</p>
4018
4018
  */
4019
- Type?: ThemeErrorType | string;
4019
+ Type?: ThemeErrorType;
4020
4020
  /**
4021
4021
  * @public
4022
4022
  * <p>The error message.</p>
@@ -4068,7 +4068,7 @@ export interface ThemeVersion {
4068
4068
  * @public
4069
4069
  * <p>The status of the theme version.</p>
4070
4070
  */
4071
- Status?: ResourceStatus | string;
4071
+ Status?: ResourceStatus;
4072
4072
  }
4073
4073
  /**
4074
4074
  * @public
@@ -4110,7 +4110,7 @@ export interface Theme {
4110
4110
  * <p>The type of theme, based on how it was created. Valid values include:
4111
4111
  * <code>QUICKSIGHT</code> and <code>CUSTOM</code>.</p>
4112
4112
  */
4113
- Type?: ThemeType | string;
4113
+ Type?: ThemeType;
4114
4114
  }
4115
4115
  /**
4116
4116
  * @public
@@ -4364,7 +4364,7 @@ export interface TopicRefreshDetails {
4364
4364
  * @public
4365
4365
  * <p>The status of the refresh job that indicates whether the job is still running, completed successfully, or failed.</p>
4366
4366
  */
4367
- RefreshStatus?: TopicRefreshStatus | string;
4367
+ RefreshStatus?: TopicRefreshStatus;
4368
4368
  }
4369
4369
  /**
4370
4370
  * @public
@@ -4545,12 +4545,12 @@ export interface User {
4545
4545
  * </li>
4546
4546
  * </ul>
4547
4547
  */
4548
- Role?: UserRole | string;
4548
+ Role?: UserRole;
4549
4549
  /**
4550
4550
  * @public
4551
4551
  * <p>The type of identity authentication used by the user.</p>
4552
4552
  */
4553
- IdentityType?: IdentityType | string;
4553
+ IdentityType?: IdentityType;
4554
4554
  /**
4555
4555
  * @public
4556
4556
  * <p>The active status of user. When you create an Amazon QuickSight user that's not an IAM user or an Active Directory user, that user is inactive until they sign in and provide a
@@ -4675,7 +4675,7 @@ export interface NetworkInterface {
4675
4675
  * @public
4676
4676
  * <p>The status of the network interface.</p>
4677
4677
  */
4678
- Status?: NetworkInterfaceStatus | string;
4678
+ Status?: NetworkInterfaceStatus;
4679
4679
  /**
4680
4680
  * @public
4681
4681
  * <p>The network interface ID.</p>
@@ -4722,12 +4722,12 @@ export interface VPCConnection {
4722
4722
  * @public
4723
4723
  * <p>The status of the VPC connection.</p>
4724
4724
  */
4725
- Status?: VPCConnectionResourceStatus | string;
4725
+ Status?: VPCConnectionResourceStatus;
4726
4726
  /**
4727
4727
  * @public
4728
4728
  * <p>The availability status of the VPC connection.</p>
4729
4729
  */
4730
- AvailabilityStatus?: VPCConnectionAvailabilityStatus | string;
4730
+ AvailabilityStatus?: VPCConnectionAvailabilityStatus;
4731
4731
  /**
4732
4732
  * @public
4733
4733
  * <p>A list of network interfaces.</p>
@@ -4847,7 +4847,7 @@ export interface FolderSearchFilter {
4847
4847
  * <p>If you set the operator value to <code>"StringEquals"</code>, you need to provide an ownership related filter in the <code>"NAME"</code> field and the arn of the user or group whose folders you want to search in the <code>"Value"</code> field. For example, <code>"Name":"DIRECT_QUICKSIGHT_OWNER", "Operator": "StringEquals", "Value": "arn:aws:quicksight:us-east-1:1:user/default/UserName1"</code>.</p>
4848
4848
  * <p>If you set the value to <code>"StringLike"</code>, you need to provide the name of the folders you are searching for. For example, <code>"Name":"FOLDER_NAME", "Operator": "StringLike", "Value": "Test"</code>. The <code>"StringLike"</code> operator only supports the <code>NAME</code> value <code>FOLDER_NAME</code>.</p>
4849
4849
  */
4850
- Operator?: FilterOperator | string;
4850
+ Operator?: FilterOperator;
4851
4851
  /**
4852
4852
  * @public
4853
4853
  * <p>The name of a value that you want to use in the filter. For example, <code>"Name": "QUICKSIGHT_OWNER"</code>.</p>
@@ -4883,7 +4883,7 @@ export interface FolderSearchFilter {
4883
4883
  * </li>
4884
4884
  * </ul>
4885
4885
  */
4886
- Name?: FolderFilterAttribute | string;
4886
+ Name?: FolderFilterAttribute;
4887
4887
  /**
4888
4888
  * @public
4889
4889
  * <p>The value of the named item (in this example, <code>PARENT_FOLDER_ARN</code>), that you want to use as a filter. For example, <code>"Value": "arn:aws:quicksight:us-east-1:1:folder/folderId"</code>.</p>
@@ -4914,7 +4914,7 @@ export interface FolderSummary {
4914
4914
  * @public
4915
4915
  * <p>The type of folder.</p>
4916
4916
  */
4917
- FolderType?: FolderType | string;
4917
+ FolderType?: FolderType;
4918
4918
  /**
4919
4919
  * @public
4920
4920
  * <p>The time that the folder was created.</p>
@@ -4929,7 +4929,7 @@ export interface FolderSummary {
4929
4929
  * @public
4930
4930
  * <p>The sharing scope of the folder.</p>
4931
4931
  */
4932
- SharingModel?: SharingModel | string;
4932
+ SharingModel?: SharingModel;
4933
4933
  }
4934
4934
  /**
4935
4935
  * @public
@@ -5357,7 +5357,7 @@ export interface GetDashboardEmbedUrlRequest {
5357
5357
  * @public
5358
5358
  * <p>The authentication method that the user uses to sign in.</p>
5359
5359
  */
5360
- IdentityType: EmbeddingIdentityType | string | undefined;
5360
+ IdentityType: EmbeddingIdentityType | undefined;
5361
5361
  /**
5362
5362
  * @public
5363
5363
  * <p>How many minutes the session is valid. The session lifetime must be 15-600 minutes.</p>
@@ -5593,14 +5593,14 @@ export interface GroupSearchFilter {
5593
5593
  * "StartsWith"</code>. Currently, the only supported operator is
5594
5594
  * <code>StartsWith</code>.</p>
5595
5595
  */
5596
- Operator: GroupFilterOperator | string | undefined;
5596
+ Operator: GroupFilterOperator | undefined;
5597
5597
  /**
5598
5598
  * @public
5599
5599
  * <p>The name of the value that you want to use as a filter, for example <code>"Name":
5600
5600
  * "GROUP_NAME"</code>. Currently, the only supported name is
5601
5601
  * <code>GROUP_NAME</code>.</p>
5602
5602
  */
5603
- Name: GroupFilterAttribute | string | undefined;
5603
+ Name: GroupFilterAttribute | undefined;
5604
5604
  /**
5605
5605
  * @public
5606
5606
  * <p>The value of the named item, in this case <code>GROUP_NAME</code>, that you want to use as a filter.</p>
@@ -5621,7 +5621,7 @@ export interface IAMPolicyAssignmentSummary {
5621
5621
  * @public
5622
5622
  * <p>Assignment status.</p>
5623
5623
  */
5624
- AssignmentStatus?: AssignmentStatus | string;
5624
+ AssignmentStatus?: AssignmentStatus;
5625
5625
  }
5626
5626
  /**
5627
5627
  * @public
@@ -6180,7 +6180,7 @@ export interface ListIAMPolicyAssignmentsRequest {
6180
6180
  * @public
6181
6181
  * <p>The status of the assignments.</p>
6182
6182
  */
6183
- AssignmentStatus?: AssignmentStatus | string;
6183
+ AssignmentStatus?: AssignmentStatus;
6184
6184
  /**
6185
6185
  * @public
6186
6186
  * <p>The namespace for the assignments.</p>
@@ -6620,7 +6620,7 @@ export interface TemplateVersionSummary {
6620
6620
  * @public
6621
6621
  * <p>The status of the template version.</p>
6622
6622
  */
6623
- Status?: ResourceStatus | string;
6623
+ Status?: ResourceStatus;
6624
6624
  /**
6625
6625
  * @public
6626
6626
  * <p>The description of the template version.</p>
@@ -6739,7 +6739,7 @@ export interface ListThemesRequest {
6739
6739
  * </li>
6740
6740
  * </ul>
6741
6741
  */
6742
- Type?: ThemeType | string;
6742
+ Type?: ThemeType;
6743
6743
  }
6744
6744
  /**
6745
6745
  * @public
@@ -6856,7 +6856,7 @@ export interface ThemeVersionSummary {
6856
6856
  * @public
6857
6857
  * <p>The status of the theme version.</p>
6858
6858
  */
6859
- Status?: ResourceStatus | string;
6859
+ Status?: ResourceStatus;
6860
6860
  }
6861
6861
  /**
6862
6862
  * @public
@@ -7192,12 +7192,12 @@ export interface VPCConnectionSummary {
7192
7192
  * @public
7193
7193
  * <p>The status of the VPC connection.</p>
7194
7194
  */
7195
- Status?: VPCConnectionResourceStatus | string;
7195
+ Status?: VPCConnectionResourceStatus;
7196
7196
  /**
7197
7197
  * @public
7198
7198
  * <p>The availability status of the VPC connection.</p>
7199
7199
  */
7200
- AvailabilityStatus?: VPCConnectionAvailabilityStatus | string;
7200
+ AvailabilityStatus?: VPCConnectionAvailabilityStatus;
7201
7201
  /**
7202
7202
  * @public
7203
7203
  * <p>A list of network interfaces.</p>
@@ -7303,7 +7303,7 @@ export interface RegisterUserRequest {
7303
7303
  * </li>
7304
7304
  * </ul>
7305
7305
  */
7306
- IdentityType: IdentityType | string | undefined;
7306
+ IdentityType: IdentityType | undefined;
7307
7307
  /**
7308
7308
  * @public
7309
7309
  * <p>The email address of the user that you want to register.</p>
@@ -7340,7 +7340,7 @@ export interface RegisterUserRequest {
7340
7340
  * </li>
7341
7341
  * </ul>
7342
7342
  */
7343
- UserRole: UserRole | string | undefined;
7343
+ UserRole: UserRole | undefined;
7344
7344
  /**
7345
7345
  * @public
7346
7346
  * <p>The ARN of the IAM user or role that you are registering with Amazon QuickSight. </p>
@@ -7890,7 +7890,7 @@ export interface StartAssetBundleExportJobRequest {
7890
7890
  * @public
7891
7891
  * <p>The export data format.</p>
7892
7892
  */
7893
- ExportFormat: AssetBundleExportFormat | string | undefined;
7893
+ ExportFormat: AssetBundleExportFormat | undefined;
7894
7894
  /**
7895
7895
  * @public
7896
7896
  * <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>
@@ -7955,7 +7955,7 @@ export interface StartAssetBundleImportJobRequest {
7955
7955
  * <p>If you choose <code>DO_NOTHING</code>, failed import jobs will not attempt to roll back
7956
7956
  * any asset changes caused by the failed job, possibly keeping the Amazon QuickSight account in an inconsistent state.</p>
7957
7957
  */
7958
- FailureAction?: AssetBundleImportFailureAction | string;
7958
+ FailureAction?: AssetBundleImportFailureAction;
7959
7959
  }
7960
7960
  /**
7961
7961
  * @public
@@ -305,7 +305,7 @@ export interface UpdateAnalysisResponse {
305
305
  * @public
306
306
  * <p>The update status of the last update that was made to the analysis.</p>
307
307
  */
308
- UpdateStatus?: ResourceStatus | string;
308
+ UpdateStatus?: ResourceStatus;
309
309
  /**
310
310
  * @public
311
311
  * <p>The HTTP status of the request.</p>
@@ -497,7 +497,7 @@ export interface UpdateDashboardResponse {
497
497
  * @public
498
498
  * <p>The creation status of the request.</p>
499
499
  */
500
- CreationStatus?: ResourceStatus | string;
500
+ CreationStatus?: ResourceStatus;
501
501
  /**
502
502
  * @public
503
503
  * <p>The HTTP status of the request.</p>
@@ -660,7 +660,7 @@ export interface UpdateDataSetRequest {
660
660
  * @public
661
661
  * <p>Indicates whether you want to import the data into SPICE.</p>
662
662
  */
663
- ImportMode: DataSetImportMode | string | undefined;
663
+ ImportMode: DataSetImportMode | undefined;
664
664
  /**
665
665
  * @public
666
666
  * <p>Groupings of columns that work together in certain Amazon QuickSight features. Currently, only geospatial hierarchy is supported.</p>
@@ -849,7 +849,7 @@ export interface UpdateDataSourceResponse {
849
849
  * @public
850
850
  * <p>The update status of the data source's last update.</p>
851
851
  */
852
- UpdateStatus?: ResourceStatus | string;
852
+ UpdateStatus?: ResourceStatus;
853
853
  /**
854
854
  * @public
855
855
  * <p>The Amazon Web Services request ID for this operation.</p>
@@ -1101,7 +1101,7 @@ export interface UpdateIAMPolicyAssignmentRequest {
1101
1101
  * </li>
1102
1102
  * </ul>
1103
1103
  */
1104
- AssignmentStatus?: AssignmentStatus | string;
1104
+ AssignmentStatus?: AssignmentStatus;
1105
1105
  /**
1106
1106
  * @public
1107
1107
  * <p>The ARN for the IAM policy to apply to the Amazon QuickSight users and
@@ -1162,7 +1162,7 @@ export interface UpdateIAMPolicyAssignmentResponse {
1162
1162
  * </li>
1163
1163
  * </ul>
1164
1164
  */
1165
- AssignmentStatus?: AssignmentStatus | string;
1165
+ AssignmentStatus?: AssignmentStatus;
1166
1166
  /**
1167
1167
  * @public
1168
1168
  * <p>The Amazon Web Services request ID for this operation.</p>
@@ -1365,7 +1365,7 @@ export interface UpdateTemplateResponse {
1365
1365
  * @public
1366
1366
  * <p>The creation status of the template.</p>
1367
1367
  */
1368
- CreationStatus?: ResourceStatus | string;
1368
+ CreationStatus?: ResourceStatus;
1369
1369
  /**
1370
1370
  * @public
1371
1371
  * <p>The HTTP status of the request.</p>
@@ -1541,7 +1541,7 @@ export interface UpdateThemeResponse {
1541
1541
  * @public
1542
1542
  * <p>The creation status of the theme.</p>
1543
1543
  */
1544
- CreationStatus?: ResourceStatus | string;
1544
+ CreationStatus?: ResourceStatus;
1545
1545
  /**
1546
1546
  * @public
1547
1547
  * <p>The HTTP status of the request.</p>
@@ -1864,7 +1864,7 @@ export interface UpdateUserRequest {
1864
1864
  * <p>The name of the Amazon QuickSight role is invisible to the user except for the console
1865
1865
  * screens dealing with permissions.</p>
1866
1866
  */
1867
- Role: UserRole | string | undefined;
1867
+ Role: UserRole | undefined;
1868
1868
  /**
1869
1869
  * @public
1870
1870
  * <p>(Enterprise edition only) The name of the custom permissions profile that you want to
@@ -2019,12 +2019,12 @@ export interface UpdateVPCConnectionResponse {
2019
2019
  * @public
2020
2020
  * <p>The update status of the VPC connection's last update.</p>
2021
2021
  */
2022
- UpdateStatus?: VPCConnectionResourceStatus | string;
2022
+ UpdateStatus?: VPCConnectionResourceStatus;
2023
2023
  /**
2024
2024
  * @public
2025
2025
  * <p>The availability status of the VPC connection.</p>
2026
2026
  */
2027
- AvailabilityStatus?: VPCConnectionAvailabilityStatus | string;
2027
+ AvailabilityStatus?: VPCConnectionAvailabilityStatus;
2028
2028
  /**
2029
2029
  * @public
2030
2030
  * <p>The Amazon Web Services request ID for this operation.</p>