cdk-docker-image-deployment 0.0.76 → 0.0.78
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +3 -3
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +18 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/appflow-2020-08-23.min.json +24 -0
- package/node_modules/aws-sdk/apis/auditmanager-2017-07-25.min.json +41 -27
- package/node_modules/aws-sdk/apis/{ssmsap-2018-05-10.examples.json → chime-sdk-voice-2022-08-03.examples.json} +0 -0
- package/node_modules/aws-sdk/apis/chime-sdk-voice-2022-08-03.min.json +2734 -0
- package/node_modules/aws-sdk/apis/chime-sdk-voice-2022-08-03.paginators.json +46 -0
- package/node_modules/aws-sdk/apis/cloudfront-2020-05-31.min.json +774 -409
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +185 -158
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +3 -0
- package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +505 -501
- package/node_modules/aws-sdk/apis/iot-roborunner-2018-05-10.examples.json +5 -0
- package/node_modules/aws-sdk/apis/iot-roborunner-2018-05-10.min.json +923 -0
- package/node_modules/aws-sdk/apis/iot-roborunner-2018-05-10.paginators.json +28 -0
- package/node_modules/aws-sdk/apis/metadata.json +9 -0
- package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +321 -138
- package/node_modules/aws-sdk/apis/quicksight-2018-04-01.paginators.json +12 -0
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +263 -263
- package/node_modules/aws-sdk/apis/servicecatalog-2015-12-10.min.json +183 -115
- package/node_modules/aws-sdk/apis/ssm-sap-2018-05-10.examples.json +5 -0
- package/node_modules/aws-sdk/apis/{ssmsap-2018-05-10.min.json → ssm-sap-2018-05-10.min.json} +2 -2
- package/node_modules/aws-sdk/apis/{ssmsap-2018-05-10.paginators.json → ssm-sap-2018-05-10.paginators.json} +0 -0
- package/node_modules/aws-sdk/apis/states-2016-11-23.min.json +17 -5
- package/node_modules/aws-sdk/clients/all.d.ts +2 -0
- package/node_modules/aws-sdk/clients/all.js +2 -0
- package/node_modules/aws-sdk/clients/appflow.d.ts +30 -5
- package/node_modules/aws-sdk/clients/auditmanager.d.ts +50 -12
- package/node_modules/aws-sdk/clients/chimesdkvoice.d.ts +1401 -0
- package/node_modules/aws-sdk/clients/chimesdkvoice.js +18 -0
- package/node_modules/aws-sdk/clients/cloudfront.d.ts +300 -12
- package/node_modules/aws-sdk/clients/connect.d.ts +31 -1
- package/node_modules/aws-sdk/clients/dynamodb.d.ts +7 -7
- package/node_modules/aws-sdk/clients/ec2.d.ts +17 -13
- package/node_modules/aws-sdk/clients/glue.d.ts +9 -3
- package/node_modules/aws-sdk/clients/iotroborunner.d.ts +534 -0
- package/node_modules/aws-sdk/clients/iotroborunner.js +18 -0
- package/node_modules/aws-sdk/clients/quicksight.d.ts +230 -13
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +5 -1
- package/node_modules/aws-sdk/clients/servicecatalog.d.ts +141 -29
- package/node_modules/aws-sdk/clients/ssmsap.d.ts +31 -31
- package/node_modules/aws-sdk/clients/ssmsap.js +2 -2
- package/node_modules/aws-sdk/clients/stepfunctions.d.ts +67 -52
- package/node_modules/aws-sdk/clients/transfer.d.ts +7 -7
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +94 -20
- package/node_modules/aws-sdk/dist/aws-sdk.js +1155 -683
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +87 -86
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +4 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +3 -3
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +4 -4
|
@@ -163,6 +163,14 @@ declare class QuickSight extends Service {
|
|
|
163
163
|
* Deletes all Amazon QuickSight customizations in this Amazon Web Services Region for the specified Amazon Web Services account and Amazon QuickSight namespace.
|
|
164
164
|
*/
|
|
165
165
|
deleteAccountCustomization(callback?: (err: AWSError, data: QuickSight.Types.DeleteAccountCustomizationResponse) => void): Request<QuickSight.Types.DeleteAccountCustomizationResponse, AWSError>;
|
|
166
|
+
/**
|
|
167
|
+
* Use the DeleteAccountSubscription operation to delete an Amazon QuickSight account. This operation will result in an error message if you have configured your account termination protection settings to True. To change this setting and delete your account, call the UpdateAccountSettings API and set the value of the TerminationProtectionEnabled parameter to False, then make another call to the DeleteAccountSubscription API.
|
|
168
|
+
*/
|
|
169
|
+
deleteAccountSubscription(params: QuickSight.Types.DeleteAccountSubscriptionRequest, callback?: (err: AWSError, data: QuickSight.Types.DeleteAccountSubscriptionResponse) => void): Request<QuickSight.Types.DeleteAccountSubscriptionResponse, AWSError>;
|
|
170
|
+
/**
|
|
171
|
+
* Use the DeleteAccountSubscription operation to delete an Amazon QuickSight account. This operation will result in an error message if you have configured your account termination protection settings to True. To change this setting and delete your account, call the UpdateAccountSettings API and set the value of the TerminationProtectionEnabled parameter to False, then make another call to the DeleteAccountSubscription API.
|
|
172
|
+
*/
|
|
173
|
+
deleteAccountSubscription(callback?: (err: AWSError, data: QuickSight.Types.DeleteAccountSubscriptionResponse) => void): Request<QuickSight.Types.DeleteAccountSubscriptionResponse, AWSError>;
|
|
166
174
|
/**
|
|
167
175
|
* Deletes an analysis from Amazon QuickSight. You can optionally include a recovery window during which you can restore the analysis. If you don't specify a recovery window value, the operation defaults to 30 days. Amazon QuickSight attaches a DeletionTime stamp to the response that specifies the end of the recovery window. At the end of the recovery window, Amazon QuickSight deletes the analysis permanently. At any time before recovery window ends, you can use the RestoreAnalysis API operation to remove the DeletionTime stamp and cancel the deletion of the analysis. The analysis remains visible in the API until it's deleted, so you can describe it but you can't make a template from it. An analysis that's scheduled for deletion isn't accessible in the Amazon QuickSight console. To access it in the console, restore it. Deleting an analysis doesn't delete the dashboards that you publish from it.
|
|
168
176
|
*/
|
|
@@ -308,11 +316,11 @@ declare class QuickSight extends Service {
|
|
|
308
316
|
*/
|
|
309
317
|
describeAccountSettings(callback?: (err: AWSError, data: QuickSight.Types.DescribeAccountSettingsResponse) => void): Request<QuickSight.Types.DescribeAccountSettingsResponse, AWSError>;
|
|
310
318
|
/**
|
|
311
|
-
* Use the DescribeAccountSubscription operation to receive a description of
|
|
319
|
+
* Use the DescribeAccountSubscription operation to receive a description of an Amazon QuickSight account's subscription. A successful API call returns an AccountInfo object that includes an account's name, subscription status, authentication type, edition, and notification email address.
|
|
312
320
|
*/
|
|
313
321
|
describeAccountSubscription(params: QuickSight.Types.DescribeAccountSubscriptionRequest, callback?: (err: AWSError, data: QuickSight.Types.DescribeAccountSubscriptionResponse) => void): Request<QuickSight.Types.DescribeAccountSubscriptionResponse, AWSError>;
|
|
314
322
|
/**
|
|
315
|
-
* Use the DescribeAccountSubscription operation to receive a description of
|
|
323
|
+
* Use the DescribeAccountSubscription operation to receive a description of an Amazon QuickSight account's subscription. A successful API call returns an AccountInfo object that includes an account's name, subscription status, authentication type, edition, and notification email address.
|
|
316
324
|
*/
|
|
317
325
|
describeAccountSubscription(callback?: (err: AWSError, data: QuickSight.Types.DescribeAccountSubscriptionResponse) => void): Request<QuickSight.Types.DescribeAccountSubscriptionResponse, AWSError>;
|
|
318
326
|
/**
|
|
@@ -747,6 +755,22 @@ declare class QuickSight extends Service {
|
|
|
747
755
|
* Searches for dashboards that belong to a user. This operation is eventually consistent. The results are best effort and may not reflect very recent updates and changes.
|
|
748
756
|
*/
|
|
749
757
|
searchDashboards(callback?: (err: AWSError, data: QuickSight.Types.SearchDashboardsResponse) => void): Request<QuickSight.Types.SearchDashboardsResponse, AWSError>;
|
|
758
|
+
/**
|
|
759
|
+
* Use the SearchDataSets operation to search for datasets that belong to an account.
|
|
760
|
+
*/
|
|
761
|
+
searchDataSets(params: QuickSight.Types.SearchDataSetsRequest, callback?: (err: AWSError, data: QuickSight.Types.SearchDataSetsResponse) => void): Request<QuickSight.Types.SearchDataSetsResponse, AWSError>;
|
|
762
|
+
/**
|
|
763
|
+
* Use the SearchDataSets operation to search for datasets that belong to an account.
|
|
764
|
+
*/
|
|
765
|
+
searchDataSets(callback?: (err: AWSError, data: QuickSight.Types.SearchDataSetsResponse) => void): Request<QuickSight.Types.SearchDataSetsResponse, AWSError>;
|
|
766
|
+
/**
|
|
767
|
+
* Use the SearchDataSources operation to search for data sources that belong to an account.
|
|
768
|
+
*/
|
|
769
|
+
searchDataSources(params: QuickSight.Types.SearchDataSourcesRequest, callback?: (err: AWSError, data: QuickSight.Types.SearchDataSourcesResponse) => void): Request<QuickSight.Types.SearchDataSourcesResponse, AWSError>;
|
|
770
|
+
/**
|
|
771
|
+
* Use the SearchDataSources operation to search for data sources that belong to an account.
|
|
772
|
+
*/
|
|
773
|
+
searchDataSources(callback?: (err: AWSError, data: QuickSight.Types.SearchDataSourcesResponse) => void): Request<QuickSight.Types.SearchDataSourcesResponse, AWSError>;
|
|
750
774
|
/**
|
|
751
775
|
* Searches the subfolders in a folder.
|
|
752
776
|
*/
|
|
@@ -1026,6 +1050,10 @@ declare namespace QuickSight {
|
|
|
1026
1050
|
* A Boolean value that indicates whether public sharing is turned on for an Amazon QuickSight account. For more information about turning on public sharing, see UpdatePublicSharingSettings.
|
|
1027
1051
|
*/
|
|
1028
1052
|
PublicSharingEnabled?: Boolean;
|
|
1053
|
+
/**
|
|
1054
|
+
* A boolean value that determines whether or not an Amazon QuickSight account can be deleted. A True value doesn't allow the account to be deleted and results in an error message if a user tries to make a DeleteAccountSubsctiption request. A False value will allow the ccount to be deleted.
|
|
1055
|
+
*/
|
|
1056
|
+
TerminationProtectionEnabled?: Boolean;
|
|
1029
1057
|
}
|
|
1030
1058
|
export type ActionList = String[];
|
|
1031
1059
|
export interface ActiveIAMPolicyAssignment {
|
|
@@ -1113,15 +1141,15 @@ declare namespace QuickSight {
|
|
|
1113
1141
|
}
|
|
1114
1142
|
export type AnalysisErrorList = AnalysisError[];
|
|
1115
1143
|
export type AnalysisErrorType = "ACCESS_DENIED"|"SOURCE_NOT_FOUND"|"DATA_SET_NOT_FOUND"|"INTERNAL_FAILURE"|"PARAMETER_VALUE_INCOMPATIBLE"|"PARAMETER_TYPE_INVALID"|"PARAMETER_NOT_FOUND"|"COLUMN_TYPE_MISMATCH"|"COLUMN_GEOGRAPHIC_ROLE_MISMATCH"|"COLUMN_REPLACEMENT_MISSING"|string;
|
|
1116
|
-
export type AnalysisFilterAttribute = "QUICKSIGHT_USER"|string;
|
|
1144
|
+
export type AnalysisFilterAttribute = "QUICKSIGHT_USER"|"QUICKSIGHT_VIEWER_OR_OWNER"|"DIRECT_QUICKSIGHT_VIEWER_OR_OWNER"|"QUICKSIGHT_OWNER"|"DIRECT_QUICKSIGHT_OWNER"|"DIRECT_QUICKSIGHT_SOLE_OWNER"|"ANALYSIS_NAME"|string;
|
|
1117
1145
|
export type AnalysisName = string;
|
|
1118
1146
|
export interface AnalysisSearchFilter {
|
|
1119
1147
|
/**
|
|
1120
|
-
* The comparison operator that you want to use as a filter, for example "Operator": "StringEquals".
|
|
1148
|
+
* The comparison operator that you want to use as a filter, for example "Operator": "StringEquals". Valid values are "StringEquals" and "StringLike". If you set the operator value to "StringEquals", you need to provide an ownership related filter in the "NAME" field and the arn of the user or group whose folders you want to search in the "Value" field. For example, "Name":"DIRECT_QUICKSIGHT_OWNER", "Operator": "StringEquals", "Value": "arn:aws:quicksight:us-east-1:1:user/default/UserName1". If you set the value to "StringLike", you need to provide the name of the folders you are searching for. For example, "Name":"ANALYSIS_NAME", "Operator": "StringLike", "Value": "Test". The "StringLike" operator only supports the NAME value ANALYSIS_NAME.
|
|
1121
1149
|
*/
|
|
1122
1150
|
Operator?: FilterOperator;
|
|
1123
1151
|
/**
|
|
1124
|
-
* The name of the value that you want to use as a filter, for example "Name": "
|
|
1152
|
+
* The name of the value that you want to use as a filter, for example "Name": "QUICKSIGHT_OWNER". Valid values are defined as follows: QUICKSIGHT_VIEWER_OR_OWNER: Provide an ARN of a user or group, and any analyses with that ARN listed as one of the analysis' owners or viewers are returned. Implicit permissions from folders or groups are considered. QUICKSIGHT_OWNER: Provide an ARN of a user or group, and any analyses with that ARN listed as one of the owners of the analyses are returned. Implicit permissions from folders or groups are considered. DIRECT_QUICKSIGHT_SOLE_OWNER: Provide an ARN of a user or group, and any analyses with that ARN listed as the only owner of the analysis are returned. Implicit permissions from folders or groups are not considered. DIRECT_QUICKSIGHT_OWNER: Provide an ARN of a user or group, and any analyses with that ARN listed as one of the owners of the analyses are returned. Implicit permissions from folders or groups are not considered. DIRECT_QUICKSIGHT_VIEWER_OR_OWNER: Provide an ARN of a user or group, and any analyses with that ARN listed as one of the owners or viewers of the analyses are returned. Implicit permissions from folders or groups are not considered. ANALYSIS_NAME: Any analyses whose names have a substring match to this value will be returned.
|
|
1125
1153
|
*/
|
|
1126
1154
|
Name?: AnalysisFilterAttribute;
|
|
1127
1155
|
/**
|
|
@@ -1194,6 +1222,16 @@ declare namespace QuickSight {
|
|
|
1194
1222
|
* The type of embedding experience. In this case, Amazon QuickSight visuals.
|
|
1195
1223
|
*/
|
|
1196
1224
|
DashboardVisual?: AnonymousUserDashboardVisualEmbeddingConfiguration;
|
|
1225
|
+
/**
|
|
1226
|
+
* The Q search bar that you want to use for anonymous user embedding.
|
|
1227
|
+
*/
|
|
1228
|
+
QSearchBar?: AnonymousUserQSearchBarEmbeddingConfiguration;
|
|
1229
|
+
}
|
|
1230
|
+
export interface AnonymousUserQSearchBarEmbeddingConfiguration {
|
|
1231
|
+
/**
|
|
1232
|
+
* The QuickSight Q topic ID of the topic that you want the anonymous user to see first. This ID is included in the output URL. When the URL in response is accessed, Amazon QuickSight renders the Q search bar with this topic pre-selected. The Amazon Resource Name (ARN) of this Q topic must be included in the AuthorizedResourceArns parameter. Otherwise, the request will fail with InvalidParameterValueException.
|
|
1233
|
+
*/
|
|
1234
|
+
InitialTopicId: RestrictiveResourceId;
|
|
1197
1235
|
}
|
|
1198
1236
|
export type Arn = string;
|
|
1199
1237
|
export type ArnList = Arn[];
|
|
@@ -1203,6 +1241,10 @@ declare namespace QuickSight {
|
|
|
1203
1241
|
* The workgroup that Amazon Athena uses.
|
|
1204
1242
|
*/
|
|
1205
1243
|
WorkGroup?: WorkGroup;
|
|
1244
|
+
/**
|
|
1245
|
+
* Use the RoleArn structure to override an account-wide role for a specific Athena data source. For example, say an account administrator has turned off all Athena access with an account-wide role. The administrator can then use RoleArn to bypass the account-wide role and allow Athena access for the single Athena data source that is specified in the structure, even if the account-wide role forbidding Athena access is still active.
|
|
1246
|
+
*/
|
|
1247
|
+
RoleArn?: RoleArn;
|
|
1206
1248
|
}
|
|
1207
1249
|
export interface AuroraParameters {
|
|
1208
1250
|
/**
|
|
@@ -2330,7 +2372,7 @@ declare namespace QuickSight {
|
|
|
2330
2372
|
}
|
|
2331
2373
|
export type DashboardErrorList = DashboardError[];
|
|
2332
2374
|
export type DashboardErrorType = "ACCESS_DENIED"|"SOURCE_NOT_FOUND"|"DATA_SET_NOT_FOUND"|"INTERNAL_FAILURE"|"PARAMETER_VALUE_INCOMPATIBLE"|"PARAMETER_TYPE_INVALID"|"PARAMETER_NOT_FOUND"|"COLUMN_TYPE_MISMATCH"|"COLUMN_GEOGRAPHIC_ROLE_MISMATCH"|"COLUMN_REPLACEMENT_MISSING"|string;
|
|
2333
|
-
export type DashboardFilterAttribute = "QUICKSIGHT_USER"|string;
|
|
2375
|
+
export type DashboardFilterAttribute = "QUICKSIGHT_USER"|"QUICKSIGHT_VIEWER_OR_OWNER"|"DIRECT_QUICKSIGHT_VIEWER_OR_OWNER"|"QUICKSIGHT_OWNER"|"DIRECT_QUICKSIGHT_OWNER"|"DIRECT_QUICKSIGHT_SOLE_OWNER"|"DASHBOARD_NAME"|string;
|
|
2334
2376
|
export type DashboardName = string;
|
|
2335
2377
|
export interface DashboardPublishOptions {
|
|
2336
2378
|
/**
|
|
@@ -2348,11 +2390,11 @@ declare namespace QuickSight {
|
|
|
2348
2390
|
}
|
|
2349
2391
|
export interface DashboardSearchFilter {
|
|
2350
2392
|
/**
|
|
2351
|
-
* The comparison operator that you want to use as a filter, for example, "Operator": "StringEquals".
|
|
2393
|
+
* The comparison operator that you want to use as a filter, for example "Operator": "StringEquals". Valid values are "StringEquals" and "StringLike". If you set the operator value to "StringEquals", you need to provide an ownership related filter in the "NAME" field and the arn of the user or group whose folders you want to search in the "Value" field. For example, "Name":"DIRECT_QUICKSIGHT_OWNER", "Operator": "StringEquals", "Value": "arn:aws:quicksight:us-east-1:1:user/default/UserName1". If you set the value to "StringLike", you need to provide the name of the folders you are searching for. For example, "Name":"DASHBOARD_NAME", "Operator": "StringLike", "Value": "Test". The "StringLike" operator only supports the NAME value DASHBOARD_NAME.
|
|
2352
2394
|
*/
|
|
2353
2395
|
Operator: FilterOperator;
|
|
2354
2396
|
/**
|
|
2355
|
-
* The name of the value that you want to use as a filter, for example, "Name": "
|
|
2397
|
+
* The name of the value that you want to use as a filter, for example, "Name": "QUICKSIGHT_OWNER". Valid values are defined as follows: QUICKSIGHT_VIEWER_OR_OWNER: Provide an ARN of a user or group, and any dashboards with that ARN listed as one of the dashboards's owners or viewers are returned. Implicit permissions from folders or groups are considered. QUICKSIGHT_OWNER: Provide an ARN of a user or group, and any dashboards with that ARN listed as one of the owners of the dashboards are returned. Implicit permissions from folders or groups are considered. DIRECT_QUICKSIGHT_SOLE_OWNER: Provide an ARN of a user or group, and any dashboards with that ARN listed as the only owner of the dashboard are returned. Implicit permissions from folders or groups are not considered. DIRECT_QUICKSIGHT_OWNER: Provide an ARN of a user or group, and any dashboards with that ARN listed as one of the owners of the dashboards are returned. Implicit permissions from folders or groups are not considered. DIRECT_QUICKSIGHT_VIEWER_OR_OWNER: Provide an ARN of a user or group, and any dashboards with that ARN listed as one of the owners or viewers of the dashboards are returned. Implicit permissions from folders or groups are not considered. DASHBOARD_NAME: Any dashboards whose names have a substring match to this value will be returned.
|
|
2356
2398
|
*/
|
|
2357
2399
|
Name?: DashboardFilterAttribute;
|
|
2358
2400
|
/**
|
|
@@ -2588,6 +2630,7 @@ declare namespace QuickSight {
|
|
|
2588
2630
|
ColumnGroupSchemaList?: ColumnGroupSchemaList;
|
|
2589
2631
|
}
|
|
2590
2632
|
export type DataSetConfigurationList = DataSetConfiguration[];
|
|
2633
|
+
export type DataSetFilterAttribute = "QUICKSIGHT_VIEWER_OR_OWNER"|"QUICKSIGHT_OWNER"|"DIRECT_QUICKSIGHT_VIEWER_OR_OWNER"|"DIRECT_QUICKSIGHT_OWNER"|"DIRECT_QUICKSIGHT_SOLE_OWNER"|"DATASET_NAME"|string;
|
|
2591
2634
|
export type DataSetImportMode = "SPICE"|"DIRECT_QUERY"|string;
|
|
2592
2635
|
export type DataSetName = string;
|
|
2593
2636
|
export interface DataSetReference {
|
|
@@ -2607,6 +2650,21 @@ declare namespace QuickSight {
|
|
|
2607
2650
|
*/
|
|
2608
2651
|
ColumnSchemaList?: ColumnSchemaList;
|
|
2609
2652
|
}
|
|
2653
|
+
export interface DataSetSearchFilter {
|
|
2654
|
+
/**
|
|
2655
|
+
* The comparison operator that you want to use as a filter, for example "Operator": "StringEquals". Valid values are "StringEquals" and "StringLike". If you set the operator value to "StringEquals", you need to provide an ownership related filter in the "NAME" field and the arn of the user or group whose datasets you want to search in the "Value" field. For example, "Name":"QUICKSIGHT_OWNER", "Operator": "StringEquals", "Value": "arn:aws:quicksight:us-east- 1:1:user/default/UserName1". If you set the value to "StringLike", you need to provide the name of the datasets you are searching for. For example, "Name":"DATASET_NAME", "Operator": "StringLike", "Value": "Test". The "StringLike" operator only supports the NAME value DATASET_NAME.
|
|
2656
|
+
*/
|
|
2657
|
+
Operator: FilterOperator;
|
|
2658
|
+
/**
|
|
2659
|
+
* The name of the value that you want to use as a filter, for example, "Name": "QUICKSIGHT_OWNER". Valid values are defined as follows: QUICKSIGHT_VIEWER_OR_OWNER: Provide an ARN of a user or group, and any datasets with that ARN listed as one of the dataset owners or viewers are returned. Implicit permissions from folders or groups are considered. QUICKSIGHT_OWNER: Provide an ARN of a user or group, and any datasets with that ARN listed as one of the owners of the dataset are returned. Implicit permissions from folders or groups are considered. DIRECT_QUICKSIGHT_SOLE_OWNER: Provide an ARN of a user or group, and any datasets with that ARN listed as the only owner of the dataset are returned. Implicit permissions from folders or groups are not considered. DIRECT_QUICKSIGHT_OWNER: Provide an ARN of a user or group, and any datasets with that ARN listed as one of the owners if the dataset are returned. Implicit permissions from folders or groups are not considered. DIRECT_QUICKSIGHT_VIEWER_OR_OWNER: Provide an ARN of a user or group, and any datasets with that ARN listed as one of the owners or viewers of the dataset are returned. Implicit permissions from folders or groups are not considered. DATASET_NAME: Any datasets whose names have a substring match to this value will be returned.
|
|
2660
|
+
*/
|
|
2661
|
+
Name: DataSetFilterAttribute;
|
|
2662
|
+
/**
|
|
2663
|
+
* The value of the named item, in this case QUICKSIGHT_OWNER, that you want to use as a filter, for example, "Value": "arn:aws:quicksight:us-east-1:1:user/default/UserName1".
|
|
2664
|
+
*/
|
|
2665
|
+
Value: String;
|
|
2666
|
+
}
|
|
2667
|
+
export type DataSetSearchFilterList = DataSetSearchFilter[];
|
|
2610
2668
|
export interface DataSetSummary {
|
|
2611
2669
|
/**
|
|
2612
2670
|
* The Amazon Resource Name (ARN) of the dataset.
|
|
@@ -2735,6 +2793,7 @@ declare namespace QuickSight {
|
|
|
2735
2793
|
Message?: String;
|
|
2736
2794
|
}
|
|
2737
2795
|
export type DataSourceErrorInfoType = "ACCESS_DENIED"|"COPY_SOURCE_NOT_FOUND"|"TIMEOUT"|"ENGINE_VERSION_NOT_SUPPORTED"|"UNKNOWN_HOST"|"GENERIC_SQL_FAILURE"|"CONFLICT"|"UNKNOWN"|string;
|
|
2796
|
+
export type DataSourceFilterAttribute = "DIRECT_QUICKSIGHT_VIEWER_OR_OWNER"|"DIRECT_QUICKSIGHT_OWNER"|"DIRECT_QUICKSIGHT_SOLE_OWNER"|"DATASOURCE_NAME"|string;
|
|
2738
2797
|
export type DataSourceList = DataSource[];
|
|
2739
2798
|
export interface DataSourceParameters {
|
|
2740
2799
|
/**
|
|
@@ -2825,10 +2884,70 @@ declare namespace QuickSight {
|
|
|
2825
2884
|
* The parameters for Exasol.
|
|
2826
2885
|
*/
|
|
2827
2886
|
ExasolParameters?: ExasolParameters;
|
|
2887
|
+
/**
|
|
2888
|
+
* The required parameters that are needed to connect to a Databricks data source.
|
|
2889
|
+
*/
|
|
2890
|
+
DatabricksParameters?: DatabricksParameters;
|
|
2828
2891
|
}
|
|
2829
2892
|
export type DataSourceParametersList = DataSourceParameters[];
|
|
2830
|
-
export
|
|
2893
|
+
export interface DataSourceSearchFilter {
|
|
2894
|
+
/**
|
|
2895
|
+
* The comparison operator that you want to use as a filter, for example "Operator": "StringEquals". Valid values are "StringEquals" and "StringLike". If you set the operator value to "StringEquals", you need to provide an ownership related filter in the "NAME" field and the arn of the user or group whose data sources you want to search in the "Value" field. For example, "Name":"DIRECT_QUICKSIGHT_OWNER", "Operator": "StringEquals", "Value": "arn:aws:quicksight:us-east-1:1:user/default/UserName1". If you set the value to "StringLike", you need to provide the name of the data sources you are searching for. For example, "Name":"DATASOURCE_NAME", "Operator": "StringLike", "Value": "Test". The "StringLike" operator only supports the NAME value DATASOURCE_NAME.
|
|
2896
|
+
*/
|
|
2897
|
+
Operator: FilterOperator;
|
|
2898
|
+
/**
|
|
2899
|
+
* The name of the value that you want to use as a filter, for example, "Name": "DIRECT_QUICKSIGHT_OWNER". Valid values are defined as follows: DIRECT_QUICKSIGHT_VIEWER_OR_OWNER: Provide an ARN of a user or group, and any data sources with that ARN listed as one of the owners or viewers of the data sources are returned. Implicit permissions from folders or groups are not considered. DIRECT_QUICKSIGHT_OWNER: Provide an ARN of a user or group, and any data sources with that ARN listed as one of the owners if the data source are returned. Implicit permissions from folders or groups are not considered. DIRECT_QUICKSIGHT_SOLE_OWNER: Provide an ARN of a user or group, and any data sources with that ARN listed as the only owner of the data source are returned. Implicit permissions from folders or groups are not considered. DATASOURCE_NAME: Any data sources whose names have a substring match to the provided value are returned.
|
|
2900
|
+
*/
|
|
2901
|
+
Name: DataSourceFilterAttribute;
|
|
2902
|
+
/**
|
|
2903
|
+
* The value of the named item, for example DIRECT_QUICKSIGHT_OWNER, that you want to use as a filter, for example, "Value": "arn:aws:quicksight:us-east-1:1:user/default/UserName1".
|
|
2904
|
+
*/
|
|
2905
|
+
Value: String;
|
|
2906
|
+
}
|
|
2907
|
+
export type DataSourceSearchFilterList = DataSourceSearchFilter[];
|
|
2908
|
+
export interface DataSourceSummary {
|
|
2909
|
+
/**
|
|
2910
|
+
* The arn of the datasource.
|
|
2911
|
+
*/
|
|
2912
|
+
Arn?: Arn;
|
|
2913
|
+
/**
|
|
2914
|
+
* The unique ID of the data source.
|
|
2915
|
+
*/
|
|
2916
|
+
DataSourceId?: ResourceId;
|
|
2917
|
+
/**
|
|
2918
|
+
* The name of the data source.
|
|
2919
|
+
*/
|
|
2920
|
+
Name?: ResourceName;
|
|
2921
|
+
/**
|
|
2922
|
+
* The type of the data source.
|
|
2923
|
+
*/
|
|
2924
|
+
Type?: DataSourceType;
|
|
2925
|
+
/**
|
|
2926
|
+
* The date and time that the data source was created. This value is expressed in MM-DD-YYYY HH:MM:SS format.
|
|
2927
|
+
*/
|
|
2928
|
+
CreatedTime?: Timestamp;
|
|
2929
|
+
/**
|
|
2930
|
+
* The date and time the data source was last updated. This value is expressed in MM-DD-YYYY HH:MM:SS format.
|
|
2931
|
+
*/
|
|
2932
|
+
LastUpdatedTime?: Timestamp;
|
|
2933
|
+
}
|
|
2934
|
+
export type DataSourceSummaryList = DataSourceSummary[];
|
|
2935
|
+
export type DataSourceType = "ADOBE_ANALYTICS"|"AMAZON_ELASTICSEARCH"|"ATHENA"|"AURORA"|"AURORA_POSTGRESQL"|"AWS_IOT_ANALYTICS"|"GITHUB"|"JIRA"|"MARIADB"|"MYSQL"|"ORACLE"|"POSTGRESQL"|"PRESTO"|"REDSHIFT"|"S3"|"SALESFORCE"|"SERVICENOW"|"SNOWFLAKE"|"SPARK"|"SQLSERVER"|"TERADATA"|"TWITTER"|"TIMESTREAM"|"AMAZON_OPENSEARCH"|"EXASOL"|"DATABRICKS"|string;
|
|
2831
2936
|
export type Database = string;
|
|
2937
|
+
export interface DatabricksParameters {
|
|
2938
|
+
/**
|
|
2939
|
+
* The host name of the Databricks data source.
|
|
2940
|
+
*/
|
|
2941
|
+
Host: Host;
|
|
2942
|
+
/**
|
|
2943
|
+
* The port for the Databricks data source.
|
|
2944
|
+
*/
|
|
2945
|
+
Port: Port;
|
|
2946
|
+
/**
|
|
2947
|
+
* The HTTP path of the Databricks data source.
|
|
2948
|
+
*/
|
|
2949
|
+
SqlEndpointPath: SqlEndpointPath;
|
|
2950
|
+
}
|
|
2832
2951
|
export interface DateTimeParameter {
|
|
2833
2952
|
/**
|
|
2834
2953
|
* A display name for the date-time parameter.
|
|
@@ -2871,6 +2990,22 @@ declare namespace QuickSight {
|
|
|
2871
2990
|
*/
|
|
2872
2991
|
Status?: StatusCode;
|
|
2873
2992
|
}
|
|
2993
|
+
export interface DeleteAccountSubscriptionRequest {
|
|
2994
|
+
/**
|
|
2995
|
+
* The Amazon Web Services account ID of the account that you want to delete.
|
|
2996
|
+
*/
|
|
2997
|
+
AwsAccountId: AwsAccountId;
|
|
2998
|
+
}
|
|
2999
|
+
export interface DeleteAccountSubscriptionResponse {
|
|
3000
|
+
/**
|
|
3001
|
+
* The Amazon Web Services request ID for this operation.
|
|
3002
|
+
*/
|
|
3003
|
+
RequestId?: String;
|
|
3004
|
+
/**
|
|
3005
|
+
* The HTTP status of the request.
|
|
3006
|
+
*/
|
|
3007
|
+
Status?: StatusCode;
|
|
3008
|
+
}
|
|
2874
3009
|
export interface DeleteAnalysisRequest {
|
|
2875
3010
|
/**
|
|
2876
3011
|
* The ID of the Amazon Web Services account where you want to delete an analysis.
|
|
@@ -4176,7 +4311,7 @@ declare namespace QuickSight {
|
|
|
4176
4311
|
*/
|
|
4177
4312
|
ConditionExpression: Expression;
|
|
4178
4313
|
}
|
|
4179
|
-
export type FilterOperator = "StringEquals"|string;
|
|
4314
|
+
export type FilterOperator = "StringEquals"|"StringLike"|string;
|
|
4180
4315
|
export interface Folder {
|
|
4181
4316
|
/**
|
|
4182
4317
|
* The ID of the folder.
|
|
@@ -4208,7 +4343,7 @@ declare namespace QuickSight {
|
|
|
4208
4343
|
LastUpdatedTime?: Timestamp;
|
|
4209
4344
|
}
|
|
4210
4345
|
export type FolderColumnList = String[];
|
|
4211
|
-
export type FolderFilterAttribute = "PARENT_FOLDER_ARN"|string;
|
|
4346
|
+
export type FolderFilterAttribute = "PARENT_FOLDER_ARN"|"DIRECT_QUICKSIGHT_OWNER"|"DIRECT_QUICKSIGHT_SOLE_OWNER"|"DIRECT_QUICKSIGHT_VIEWER_OR_OWNER"|"QUICKSIGHT_OWNER"|"QUICKSIGHT_VIEWER_OR_OWNER"|"FOLDER_NAME"|string;
|
|
4212
4347
|
export interface FolderMember {
|
|
4213
4348
|
/**
|
|
4214
4349
|
* The ID of an asset in the folder.
|
|
@@ -4223,11 +4358,11 @@ declare namespace QuickSight {
|
|
|
4223
4358
|
export type FolderName = string;
|
|
4224
4359
|
export interface FolderSearchFilter {
|
|
4225
4360
|
/**
|
|
4226
|
-
* The comparison operator that you want to use in the
|
|
4361
|
+
* The comparison operator that you want to use as a filter, for example "Operator": "StringEquals". Valid values are "StringEquals" and "StringLike". If you set the operator value to "StringEquals", you need to provide an ownership related filter in the "NAME" field and the arn of the user or group whose folders you want to search in the "Value" field. For example, "Name":"DIRECT_QUICKSIGHT_OWNER", "Operator": "StringEquals", "Value": "arn:aws:quicksight:us-east-1:1:user/default/UserName1". If you set the value to "StringLike", you need to provide the name of the folders you are searching for. For example, "Name":"FOLDER_NAME", "Operator": "StringLike", "Value": "Test". The "StringLike" operator only supports the NAME value FOLDER_NAME.
|
|
4227
4362
|
*/
|
|
4228
4363
|
Operator?: FilterOperator;
|
|
4229
4364
|
/**
|
|
4230
|
-
* The name of a value that you want to use in the filter. For example, "Name": "
|
|
4365
|
+
* The name of a value that you want to use in the filter. For example, "Name": "QUICKSIGHT_OWNER". Valid values are defined as follows: QUICKSIGHT_VIEWER_OR_OWNER: Provide an ARN of a user or group, and any folders with that ARN listed as one of the folder's owners or viewers are returned. Implicit permissions from folders or groups are considered. QUICKSIGHT_OWNER: Provide an ARN of a user or group, and any folders with that ARN listed as one of the owners of the folders are returned. Implicit permissions from folders or groups are considered. DIRECT_QUICKSIGHT_SOLE_OWNER: Provide an ARN of a user or group, and any folders with that ARN listed as the only owner of the folder are returned. Implicit permissions from folders or groups are not considered. DIRECT_QUICKSIGHT_OWNER: Provide an ARN of a user or group, and any folders with that ARN listed as one of the owners of the folders are returned. Implicit permissions from folders or groups are not considered. DIRECT_QUICKSIGHT_VIEWER_OR_OWNER: Provide an ARN of a user or group, and any folders with that ARN listed as one of the owners or viewers of the folders are returned. Implicit permissions from folders or groups are not considered. FOLDER_NAME: Any folders whose names have a substring match to this value will be returned. PARENT_FOLDER_ARN: Provide an ARN of a folder, and any folders that are directly under that parent folder are returned. If you choose to use this option and leave the value blank, all root-level folders in the account are returned.
|
|
4231
4366
|
*/
|
|
4232
4367
|
Name?: FolderFilterAttribute;
|
|
4233
4368
|
/**
|
|
@@ -4307,6 +4442,10 @@ declare namespace QuickSight {
|
|
|
4307
4442
|
* The Amazon Web Services request ID for this operation.
|
|
4308
4443
|
*/
|
|
4309
4444
|
RequestId: String;
|
|
4445
|
+
/**
|
|
4446
|
+
* The Amazon Resource Name (ARN) to use for the anonymous Amazon QuickSight user.
|
|
4447
|
+
*/
|
|
4448
|
+
AnonymousUserArn: Arn;
|
|
4310
4449
|
}
|
|
4311
4450
|
export interface GenerateEmbedUrlForRegisteredUserRequest {
|
|
4312
4451
|
/**
|
|
@@ -5898,6 +6037,7 @@ declare namespace QuickSight {
|
|
|
5898
6037
|
RequestId?: String;
|
|
5899
6038
|
}
|
|
5900
6039
|
export type RestrictiveResourceId = string;
|
|
6040
|
+
export type RoleArn = string;
|
|
5901
6041
|
export type RoleName = string;
|
|
5902
6042
|
export type RoleSessionName = string;
|
|
5903
6043
|
export interface RowInfo {
|
|
@@ -6062,6 +6202,78 @@ declare namespace QuickSight {
|
|
|
6062
6202
|
*/
|
|
6063
6203
|
RequestId?: String;
|
|
6064
6204
|
}
|
|
6205
|
+
export interface SearchDataSetsRequest {
|
|
6206
|
+
/**
|
|
6207
|
+
* The Amazon Web Services account ID.
|
|
6208
|
+
*/
|
|
6209
|
+
AwsAccountId: AwsAccountId;
|
|
6210
|
+
/**
|
|
6211
|
+
* The filters to apply to the search.
|
|
6212
|
+
*/
|
|
6213
|
+
Filters: DataSetSearchFilterList;
|
|
6214
|
+
/**
|
|
6215
|
+
* A pagination token that can be used in a subsequent request.
|
|
6216
|
+
*/
|
|
6217
|
+
NextToken?: String;
|
|
6218
|
+
/**
|
|
6219
|
+
* The maximum number of results to be returned per request.
|
|
6220
|
+
*/
|
|
6221
|
+
MaxResults?: MaxResults;
|
|
6222
|
+
}
|
|
6223
|
+
export interface SearchDataSetsResponse {
|
|
6224
|
+
/**
|
|
6225
|
+
* A DataSetSummaries object that returns a summary of a dataset.
|
|
6226
|
+
*/
|
|
6227
|
+
DataSetSummaries?: DataSetSummaryList;
|
|
6228
|
+
/**
|
|
6229
|
+
* A pagination token that can be used in a subsequent request.
|
|
6230
|
+
*/
|
|
6231
|
+
NextToken?: String;
|
|
6232
|
+
/**
|
|
6233
|
+
* The HTTP status of the request.
|
|
6234
|
+
*/
|
|
6235
|
+
Status?: StatusCode;
|
|
6236
|
+
/**
|
|
6237
|
+
* The Amazon Web Services request ID for this operation.
|
|
6238
|
+
*/
|
|
6239
|
+
RequestId?: String;
|
|
6240
|
+
}
|
|
6241
|
+
export interface SearchDataSourcesRequest {
|
|
6242
|
+
/**
|
|
6243
|
+
* The Amazon Web Services account ID.
|
|
6244
|
+
*/
|
|
6245
|
+
AwsAccountId: AwsAccountId;
|
|
6246
|
+
/**
|
|
6247
|
+
* The filters to apply to the search.
|
|
6248
|
+
*/
|
|
6249
|
+
Filters: DataSourceSearchFilterList;
|
|
6250
|
+
/**
|
|
6251
|
+
* A pagination token that can be used in a subsequent request.
|
|
6252
|
+
*/
|
|
6253
|
+
NextToken?: String;
|
|
6254
|
+
/**
|
|
6255
|
+
* The maximum number of results to be returned per request.
|
|
6256
|
+
*/
|
|
6257
|
+
MaxResults?: MaxResults;
|
|
6258
|
+
}
|
|
6259
|
+
export interface SearchDataSourcesResponse {
|
|
6260
|
+
/**
|
|
6261
|
+
* A DataSourceSummaries object that returns a summary of a data source.
|
|
6262
|
+
*/
|
|
6263
|
+
DataSourceSummaries?: DataSourceSummaryList;
|
|
6264
|
+
/**
|
|
6265
|
+
* A pagination token that can be used in a subsequent request.
|
|
6266
|
+
*/
|
|
6267
|
+
NextToken?: String;
|
|
6268
|
+
/**
|
|
6269
|
+
* The HTTP status of the request.
|
|
6270
|
+
*/
|
|
6271
|
+
Status?: StatusCode;
|
|
6272
|
+
/**
|
|
6273
|
+
* The Amazon Web Services request ID for this operation.
|
|
6274
|
+
*/
|
|
6275
|
+
RequestId?: String;
|
|
6276
|
+
}
|
|
6065
6277
|
export interface SearchFoldersRequest {
|
|
6066
6278
|
/**
|
|
6067
6279
|
* The ID for the Amazon Web Services account that contains the folder.
|
|
@@ -6229,6 +6441,7 @@ declare namespace QuickSight {
|
|
|
6229
6441
|
*/
|
|
6230
6442
|
Port: Port;
|
|
6231
6443
|
}
|
|
6444
|
+
export type SqlEndpointPath = string;
|
|
6232
6445
|
export type SqlQuery = string;
|
|
6233
6446
|
export interface SqlServerParameters {
|
|
6234
6447
|
/**
|
|
@@ -6852,6 +7065,10 @@ declare namespace QuickSight {
|
|
|
6852
7065
|
* The email address that you want Amazon QuickSight to send notifications to regarding your Amazon Web Services account or Amazon QuickSight subscription.
|
|
6853
7066
|
*/
|
|
6854
7067
|
NotificationEmail?: String;
|
|
7068
|
+
/**
|
|
7069
|
+
* A boolean value that determines whether or not an Amazon QuickSight account can be deleted. A True value doesn't allow the account to be deleted and results in an error message if a user tries to make a DeleteAccountSubscription request. A False value will allow the account to be deleted.
|
|
7070
|
+
*/
|
|
7071
|
+
TerminationProtectionEnabled?: Boolean;
|
|
6855
7072
|
}
|
|
6856
7073
|
export interface UpdateAccountSettingsResponse {
|
|
6857
7074
|
/**
|
|
@@ -16062,7 +16062,7 @@ declare namespace SageMaker {
|
|
|
16062
16062
|
/**
|
|
16063
16063
|
* Path to Amazon S3 storage location for system and framework metrics.
|
|
16064
16064
|
*/
|
|
16065
|
-
S3OutputPath
|
|
16065
|
+
S3OutputPath?: S3Uri;
|
|
16066
16066
|
/**
|
|
16067
16067
|
* A time interval for capturing system metrics in milliseconds. Available values are 100, 200, 500, 1000 (1 second), 5000 (5 seconds), and 60000 (1 minute) milliseconds. The default value is 500 milliseconds.
|
|
16068
16068
|
*/
|
|
@@ -16071,6 +16071,10 @@ declare namespace SageMaker {
|
|
|
16071
16071
|
* Configuration information for capturing framework metrics. Available key strings for different profiling options are DetailedProfilingConfig, PythonProfilingConfig, and DataLoaderProfilingConfig. The following codes are configuration structures for the ProfilingParameters parameter. To learn more about how to configure the ProfilingParameters parameter, see Use the SageMaker and Debugger Configuration API Operations to Create, Update, and Debug Your Training Job.
|
|
16072
16072
|
*/
|
|
16073
16073
|
ProfilingParameters?: ProfilingParameters;
|
|
16074
|
+
/**
|
|
16075
|
+
* To disable system monitoring and profiling, set to True.
|
|
16076
|
+
*/
|
|
16077
|
+
DisableProfiler?: DisableProfiler;
|
|
16074
16078
|
}
|
|
16075
16079
|
export interface ProfilerConfigForUpdate {
|
|
16076
16080
|
/**
|