cdk-lambda-subminute 2.0.258 → 2.0.260
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/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/CHANGELOG.md +15 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/fsx-2018-03-01.min.json +25 -3
- package/node_modules/aws-sdk/apis/marketplace-catalog-2018-09-17.min.json +27 -14
- package/node_modules/aws-sdk/apis/omics-2022-11-28.min.json +45 -112
- package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +360 -314
- package/node_modules/aws-sdk/apis/route53-2013-04-01.min.json +14 -10
- package/node_modules/aws-sdk/apis/securityhub-2018-10-26.min.json +324 -61
- package/node_modules/aws-sdk/apis/storagegateway-2013-06-30.min.json +13 -11
- package/node_modules/aws-sdk/apis/workspaces-2015-04-08.min.json +421 -105
- package/node_modules/aws-sdk/apis/workspaces-2015-04-08.paginators.json +10 -0
- package/node_modules/aws-sdk/clients/ec2.d.ts +25 -25
- package/node_modules/aws-sdk/clients/fsx.d.ts +16 -1
- package/node_modules/aws-sdk/clients/marketplacecatalog.d.ts +32 -15
- package/node_modules/aws-sdk/clients/omics.d.ts +23 -0
- package/node_modules/aws-sdk/clients/quicksight.d.ts +62 -2
- package/node_modules/aws-sdk/clients/rds.d.ts +225 -225
- package/node_modules/aws-sdk/clients/route53.d.ts +17 -12
- package/node_modules/aws-sdk/clients/securityhub.d.ts +484 -0
- package/node_modules/aws-sdk/clients/storagegateway.d.ts +18 -13
- package/node_modules/aws-sdk/clients/transfer.d.ts +1 -1
- package/node_modules/aws-sdk/clients/workspaces.d.ts +431 -1
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +10 -10
- package/node_modules/aws-sdk/dist/aws-sdk.js +57 -38
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +30 -30
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
@@ -3451,6 +3451,10 @@ declare namespace QuickSight {
|
|
3451
3451
|
* The definition of an analysis. A definition is the data model of all features in a Dashboard, Template, or Analysis. Either a SourceEntity or a Definition must be provided in order for the request to be valid.
|
3452
3452
|
*/
|
3453
3453
|
Definition?: AnalysisDefinition;
|
3454
|
+
/**
|
3455
|
+
* The option to relax the validation needed to create an analysis with definition objects. This skips the validation step for specific errors.
|
3456
|
+
*/
|
3457
|
+
ValidationStrategy?: ValidationStrategy;
|
3454
3458
|
}
|
3455
3459
|
export interface CreateAnalysisResponse {
|
3456
3460
|
/**
|
@@ -3525,6 +3529,10 @@ declare namespace QuickSight {
|
|
3525
3529
|
* The definition of a dashboard. A definition is the data model of all features in a Dashboard, Template, or Analysis. Either a SourceEntity or a Definition must be provided in order for the request to be valid.
|
3526
3530
|
*/
|
3527
3531
|
Definition?: DashboardVersionDefinition;
|
3532
|
+
/**
|
3533
|
+
* The option to relax the validation needed to create a dashboard with definition objects. This option skips the validation step for specific errors.
|
3534
|
+
*/
|
3535
|
+
ValidationStrategy?: ValidationStrategy;
|
3528
3536
|
}
|
3529
3537
|
export interface CreateDashboardResponse {
|
3530
3538
|
/**
|
@@ -4090,6 +4098,10 @@ declare namespace QuickSight {
|
|
4090
4098
|
* The definition of a template. A definition is the data model of all features in a Dashboard, Template, or Analysis. Either a SourceEntity or a Definition must be provided in order for the request to be valid.
|
4091
4099
|
*/
|
4092
4100
|
Definition?: TemplateVersionDefinition;
|
4101
|
+
/**
|
4102
|
+
* TThe option to relax the validation needed to create a template with definition objects. This skips the validation step for specific errors.
|
4103
|
+
*/
|
4104
|
+
ValidationStrategy?: ValidationStrategy;
|
4093
4105
|
}
|
4094
4106
|
export interface CreateTemplateResponse {
|
4095
4107
|
/**
|
@@ -5468,6 +5480,9 @@ declare namespace QuickSight {
|
|
5468
5480
|
export type DataSourceSummaryList = DataSourceSummary[];
|
5469
5481
|
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;
|
5470
5482
|
export type Database = string;
|
5483
|
+
export type DatabaseGroup = string;
|
5484
|
+
export type DatabaseGroupList = DatabaseGroup[];
|
5485
|
+
export type DatabaseUser = string;
|
5471
5486
|
export interface DatabricksParameters {
|
5472
5487
|
/**
|
5473
5488
|
* The host name of the Databricks data source.
|
@@ -8507,6 +8522,10 @@ declare namespace QuickSight {
|
|
8507
8522
|
* Select all of the values. Null is not the assigned value of select all. FILTER_ALL_VALUES
|
8508
8523
|
*/
|
8509
8524
|
SelectAllOptions?: CategoryFilterSelectAllOptions;
|
8525
|
+
/**
|
8526
|
+
* This option determines how null values should be treated when filtering data. ALL_VALUES: Include null values in filtered results. NULLS_ONLY: Only include null values in filtered results. NON_NULLS_ONLY: Exclude null values from filtered results.
|
8527
|
+
*/
|
8528
|
+
NullOption?: FilterNullOption;
|
8510
8529
|
}
|
8511
8530
|
export interface FilterListControl {
|
8512
8531
|
/**
|
@@ -11839,7 +11858,7 @@ declare namespace QuickSight {
|
|
11839
11858
|
*/
|
11840
11859
|
MemberArn?: Arn;
|
11841
11860
|
}
|
11842
|
-
export type MemberType = "DASHBOARD"|"ANALYSIS"|"DATASET"|"TOPIC"|string;
|
11861
|
+
export type MemberType = "DASHBOARD"|"ANALYSIS"|"DATASET"|"DATASOURCE"|"TOPIC"|string;
|
11843
11862
|
export interface MetricComparisonComputation {
|
11844
11863
|
/**
|
11845
11864
|
* The ID for a computation.
|
@@ -13408,6 +13427,24 @@ declare namespace QuickSight {
|
|
13408
13427
|
Database: Database;
|
13409
13428
|
}
|
13410
13429
|
export type RecoveryWindowInDays = number;
|
13430
|
+
export interface RedshiftIAMParameters {
|
13431
|
+
/**
|
13432
|
+
* Use the RoleArn structure to allow Amazon QuickSight to call redshift:GetClusterCredentials on your cluster. The calling principal must have iam:PassRole access to pass the role to Amazon QuickSight. The role's trust policy must allow the Amazon QuickSight service principal to assume the role.
|
13433
|
+
*/
|
13434
|
+
RoleArn: RoleArn;
|
13435
|
+
/**
|
13436
|
+
* The user whose permissions and group memberships will be used by Amazon QuickSight to access the cluster. If this user already exists in your database, Amazon QuickSight is granted the same permissions that the user has. If the user doesn't exist, set the value of AutoCreateDatabaseUser to True to create a new user with PUBLIC permissions.
|
13437
|
+
*/
|
13438
|
+
DatabaseUser: DatabaseUser;
|
13439
|
+
/**
|
13440
|
+
* A list of groups whose permissions will be granted to Amazon QuickSight to access the cluster. These permissions are combined with the permissions granted to Amazon QuickSight by the DatabaseUser. If you choose to include this parameter, the RoleArn must grant access to redshift:JoinGroup.
|
13441
|
+
*/
|
13442
|
+
DatabaseGroups?: DatabaseGroupList;
|
13443
|
+
/**
|
13444
|
+
* Automatically creates a database user. If your database doesn't have a DatabaseUser, set this parameter to True. If there is no DatabaseUser, Amazon QuickSight can't connect to your cluster. The RoleArn that you use for this operation must grant access to redshift:CreateClusterUser to successfully create the user.
|
13445
|
+
*/
|
13446
|
+
AutoCreateDatabaseUser?: Boolean;
|
13447
|
+
}
|
13411
13448
|
export interface RedshiftParameters {
|
13412
13449
|
/**
|
13413
13450
|
* Host. This field can be blank if ClusterId is provided.
|
@@ -13425,6 +13462,10 @@ declare namespace QuickSight {
|
|
13425
13462
|
* Cluster ID. This field can be blank if the Host and Port are provided.
|
13426
13463
|
*/
|
13427
13464
|
ClusterId?: ClusterId;
|
13465
|
+
/**
|
13466
|
+
* An optional parameter that uses IAM authentication to grant Amazon QuickSight access to your cluster. This parameter can be used instead of DataSourceCredentials.
|
13467
|
+
*/
|
13468
|
+
IAMParameters?: RedshiftIAMParameters;
|
13428
13469
|
}
|
13429
13470
|
export interface ReferenceLine {
|
13430
13471
|
/**
|
@@ -15658,7 +15699,7 @@ declare namespace QuickSight {
|
|
15658
15699
|
CellType: StyledCellType;
|
15659
15700
|
}
|
15660
15701
|
export type TableStyleTargetList = TableStyleTarget[];
|
15661
|
-
export type TableTotalsPlacement = "START"|"END"|string;
|
15702
|
+
export type TableTotalsPlacement = "START"|"END"|"AUTO"|string;
|
15662
15703
|
export type TableTotalsScrollStatus = "PINNED"|"SCROLLED"|string;
|
15663
15704
|
export interface TableUnaggregatedFieldWells {
|
15664
15705
|
/**
|
@@ -17277,6 +17318,10 @@ declare namespace QuickSight {
|
|
17277
17318
|
* The definition of an analysis. A definition is the data model of all features in a Dashboard, Template, or Analysis.
|
17278
17319
|
*/
|
17279
17320
|
Definition?: AnalysisDefinition;
|
17321
|
+
/**
|
17322
|
+
* The option to relax the validation needed to update an analysis with definition objects. This skips the validation step for specific errors.
|
17323
|
+
*/
|
17324
|
+
ValidationStrategy?: ValidationStrategy;
|
17280
17325
|
}
|
17281
17326
|
export interface UpdateAnalysisResponse {
|
17282
17327
|
/**
|
@@ -17421,6 +17466,10 @@ declare namespace QuickSight {
|
|
17421
17466
|
* The definition of a dashboard. A definition is the data model of all features in a Dashboard, Template, or Analysis.
|
17422
17467
|
*/
|
17423
17468
|
Definition?: DashboardVersionDefinition;
|
17469
|
+
/**
|
17470
|
+
* The option to relax the validation needed to update a dashboard with definition objects. This skips the validation step for specific errors.
|
17471
|
+
*/
|
17472
|
+
ValidationStrategy?: ValidationStrategy;
|
17424
17473
|
}
|
17425
17474
|
export interface UpdateDashboardResponse {
|
17426
17475
|
/**
|
@@ -17988,6 +18037,10 @@ declare namespace QuickSight {
|
|
17988
18037
|
* The definition of a template. A definition is the data model of all features in a Dashboard, Template, or Analysis.
|
17989
18038
|
*/
|
17990
18039
|
Definition?: TemplateVersionDefinition;
|
18040
|
+
/**
|
18041
|
+
* The option to relax the validation needed to update a template with definition objects. This skips the validation step for specific errors.
|
18042
|
+
*/
|
18043
|
+
ValidationStrategy?: ValidationStrategy;
|
17991
18044
|
}
|
17992
18045
|
export interface UpdateTemplateResponse {
|
17993
18046
|
/**
|
@@ -18543,6 +18596,13 @@ declare namespace QuickSight {
|
|
18543
18596
|
LastUpdatedTime?: Timestamp;
|
18544
18597
|
}
|
18545
18598
|
export type VPCConnectionSummaryList = VPCConnectionSummary[];
|
18599
|
+
export interface ValidationStrategy {
|
18600
|
+
/**
|
18601
|
+
* The mode of validation for the asset to be creaed or updated. When you set this value to STRICT, strict validation for every error is enforced. When you set this value to LENIENT, validation is skipped for specific UI errors.
|
18602
|
+
*/
|
18603
|
+
Mode: ValidationStrategyMode;
|
18604
|
+
}
|
18605
|
+
export type ValidationStrategyMode = "STRICT"|"LENIENT"|string;
|
18546
18606
|
export type ValueWhenUnsetOption = "RECOMMENDED_VALUE"|"NULL"|string;
|
18547
18607
|
export type VersionDescription = string;
|
18548
18608
|
export type VersionNumber = number;
|