cdk-comprehend-s3olap 2.0.100 → 2.0.102
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-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +10 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.min.json +247 -3
- package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.paginators.json +12 -0
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +1286 -1249
- package/node_modules/aws-sdk/apis/mediaconnect-2018-11-14.min.json +21 -0
- package/node_modules/aws-sdk/clients/cloudtrail.d.ts +335 -6
- package/node_modules/aws-sdk/clients/ec2.d.ts +78 -40
- package/node_modules/aws-sdk/clients/mediaconnect.d.ts +25 -1
- package/node_modules/aws-sdk/clients/rds.d.ts +18 -18
- 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 +5 -5
- package/node_modules/aws-sdk/dist/aws-sdk.js +1548 -1255
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +82 -82
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
@@ -670,11 +670,11 @@ declare class RDS extends Service {
|
|
670
670
|
*/
|
671
671
|
describeReservedDBInstancesOfferings(callback?: (err: AWSError, data: RDS.Types.ReservedDBInstancesOfferingMessage) => void): Request<RDS.Types.ReservedDBInstancesOfferingMessage, AWSError>;
|
672
672
|
/**
|
673
|
-
* Returns a list of the source Amazon Web Services Regions where the current Amazon Web Services Region can create a read replica, copy a DB snapshot from, or replicate automated backups from. This
|
673
|
+
* Returns a list of the source Amazon Web Services Regions where the current Amazon Web Services Region can create a read replica, copy a DB snapshot from, or replicate automated backups from. Use this operation to determine whether cross-Region features are supported between other Regions and your current Region. This operation supports pagination. To return information about the Regions that are enabled for your account, or all Regions, use the EC2 operation DescribeRegions. For more information, see DescribeRegions in the Amazon EC2 API Reference.
|
674
674
|
*/
|
675
675
|
describeSourceRegions(params: RDS.Types.DescribeSourceRegionsMessage, callback?: (err: AWSError, data: RDS.Types.SourceRegionMessage) => void): Request<RDS.Types.SourceRegionMessage, AWSError>;
|
676
676
|
/**
|
677
|
-
* Returns a list of the source Amazon Web Services Regions where the current Amazon Web Services Region can create a read replica, copy a DB snapshot from, or replicate automated backups from. This
|
677
|
+
* Returns a list of the source Amazon Web Services Regions where the current Amazon Web Services Region can create a read replica, copy a DB snapshot from, or replicate automated backups from. Use this operation to determine whether cross-Region features are supported between other Regions and your current Region. This operation supports pagination. To return information about the Regions that are enabled for your account, or all Regions, use the EC2 operation DescribeRegions. For more information, see DescribeRegions in the Amazon EC2 API Reference.
|
678
678
|
*/
|
679
679
|
describeSourceRegions(callback?: (err: AWSError, data: RDS.Types.SourceRegionMessage) => void): Request<RDS.Types.SourceRegionMessage, AWSError>;
|
680
680
|
/**
|
@@ -1438,11 +1438,11 @@ declare namespace RDS {
|
|
1438
1438
|
}
|
1439
1439
|
export interface ConnectionPoolConfiguration {
|
1440
1440
|
/**
|
1441
|
-
* The maximum size of the connection pool for each target in a target group. The value is expressed as a percentage of the max_connections setting for the RDS DB instance or Aurora DB cluster used by the target group. Default: 100 Constraints: between 1 and 100
|
1441
|
+
* The maximum size of the connection pool for each target in a target group. The value is expressed as a percentage of the max_connections setting for the RDS DB instance or Aurora DB cluster used by the target group. Default: 10 for RDS for Microsoft SQL Server, and 100 for all other engines Constraints: Must be between 1 and 100.
|
1442
1442
|
*/
|
1443
1443
|
MaxConnectionsPercent?: IntegerOptional;
|
1444
1444
|
/**
|
1445
|
-
* Controls how actively the proxy closes idle database connections in the connection pool. The value is expressed as a percentage of the max_connections setting for the RDS DB instance or Aurora DB cluster used by the target group. With a high value, the proxy leaves a high percentage of idle database connections open. A low value causes the proxy to close more idle connections and return them to the database. Default: 50 Constraints: between 0 and MaxConnectionsPercent
|
1445
|
+
* Controls how actively the proxy closes idle database connections in the connection pool. The value is expressed as a percentage of the max_connections setting for the RDS DB instance or Aurora DB cluster used by the target group. With a high value, the proxy leaves a high percentage of idle database connections open. A low value causes the proxy to close more idle connections and return them to the database. Default: The default value is half of the value of MaxConnectionsPercent. For example, if MaxConnectionsPercent is 80, then the default value of MaxIdleConnectionsPercent is 40. If the value of MaxConnectionsPercent isn't specified, then for SQL Server, MaxIdleConnectionsPercent is 5, and for all other engines, the default is 50. Constraints: Must be between 0 and the value of MaxConnectionsPercent.
|
1446
1446
|
*/
|
1447
1447
|
MaxIdleConnectionsPercent?: IntegerOptional;
|
1448
1448
|
/**
|
@@ -1472,7 +1472,7 @@ declare namespace RDS {
|
|
1472
1472
|
*/
|
1473
1473
|
ConnectionBorrowTimeout?: Integer;
|
1474
1474
|
/**
|
1475
|
-
* Each item in the list represents a class of SQL operations that normally cause all later statements in a session using a proxy to be pinned to the same underlying database connection. Including an item in the list exempts that class of SQL operations from the pinning behavior. Currently, the only allowed value is EXCLUDE_VARIABLE_SETS.
|
1475
|
+
* Each item in the list represents a class of SQL operations that normally cause all later statements in a session using a proxy to be pinned to the same underlying database connection. Including an item in the list exempts that class of SQL operations from the pinning behavior. This setting is only supported for MySQL engine family databases. Currently, the only allowed value is EXCLUDE_VARIABLE_SETS.
|
1476
1476
|
*/
|
1477
1477
|
SessionPinningFilters?: StringList;
|
1478
1478
|
/**
|
@@ -1793,7 +1793,7 @@ declare namespace RDS {
|
|
1793
1793
|
*/
|
1794
1794
|
EnableGlobalWriteForwarding?: BooleanOptional;
|
1795
1795
|
/**
|
1796
|
-
* The compute and memory capacity of each DB instance in the Multi-AZ DB cluster, for example db.
|
1796
|
+
* The compute and memory capacity of each DB instance in the Multi-AZ DB cluster, for example db.m6gd.xlarge. Not all DB instance classes are available in all Amazon Web Services Regions, or for all database engines. For the full list of DB instance classes and availability for your engine, see DB instance class in the Amazon RDS User Guide. This setting is required to create a Multi-AZ DB cluster. Valid for: Multi-AZ DB clusters only
|
1797
1797
|
*/
|
1798
1798
|
DBClusterInstanceClass?: String;
|
1799
1799
|
/**
|
@@ -1889,7 +1889,7 @@ declare namespace RDS {
|
|
1889
1889
|
}
|
1890
1890
|
export interface CreateDBInstanceMessage {
|
1891
1891
|
/**
|
1892
|
-
* The meaning of this parameter differs according to the database engine you use. MySQL The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine MariaDB The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine PostgreSQL The name of the database to create when the DB instance is created. If this parameter isn't specified, a database named postgres is created in the DB instance. Constraints: Must contain 1 to 63 letters, numbers, or underscores. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine Oracle The Oracle System ID (SID) of the created DB instance. If you specify null, the default value ORCL is used. You can't specify the string NULL, or any other reserved word, for DBName. Default: ORCL Constraints: Can't be longer than 8 characters Amazon RDS Custom for Oracle The Oracle System ID (SID) of the created RDS Custom DB instance. If you don't specify a value, the default value is ORCL. Default: ORCL Constraints: It must contain 1 to 8 alphanumeric characters. It must contain a letter. It can't be a word reserved by the database engine. Amazon RDS Custom for SQL Server Not applicable. Must be null. SQL Server Not applicable. Must be null. Amazon Aurora MySQL The name of the database to create when the primary DB instance of the Aurora MySQL DB cluster is created. If this parameter isn't specified for an Aurora MySQL DB cluster, no database is created in the DB cluster. Constraints: It must contain 1 to 64 alphanumeric characters. It can't be a word reserved by the database engine. Amazon Aurora PostgreSQL The name of the database to create when the primary DB instance of the Aurora PostgreSQL DB cluster is created. If this parameter isn't specified for an Aurora PostgreSQL DB cluster, a database named postgres is created in the DB cluster. Constraints: It must contain 1 to 63 alphanumeric characters. It must begin with a letter
|
1892
|
+
* The meaning of this parameter differs according to the database engine you use. MySQL The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine MariaDB The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine PostgreSQL The name of the database to create when the DB instance is created. If this parameter isn't specified, a database named postgres is created in the DB instance. Constraints: Must contain 1 to 63 letters, numbers, or underscores. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine Oracle The Oracle System ID (SID) of the created DB instance. If you specify null, the default value ORCL is used. You can't specify the string NULL, or any other reserved word, for DBName. Default: ORCL Constraints: Can't be longer than 8 characters Amazon RDS Custom for Oracle The Oracle System ID (SID) of the created RDS Custom DB instance. If you don't specify a value, the default value is ORCL. Default: ORCL Constraints: It must contain 1 to 8 alphanumeric characters. It must contain a letter. It can't be a word reserved by the database engine. Amazon RDS Custom for SQL Server Not applicable. Must be null. SQL Server Not applicable. Must be null. Amazon Aurora MySQL The name of the database to create when the primary DB instance of the Aurora MySQL DB cluster is created. If this parameter isn't specified for an Aurora MySQL DB cluster, no database is created in the DB cluster. Constraints: It must contain 1 to 64 alphanumeric characters. It can't be a word reserved by the database engine. Amazon Aurora PostgreSQL The name of the database to create when the primary DB instance of the Aurora PostgreSQL DB cluster is created. If this parameter isn't specified for an Aurora PostgreSQL DB cluster, a database named postgres is created in the DB cluster. Constraints: It must contain 1 to 63 alphanumeric characters. It must begin with a letter. Subsequent characters can be letters, underscores, or digits (0 to 9). It can't be a word reserved by the database engine.
|
1893
1893
|
*/
|
1894
1894
|
DBName?: String;
|
1895
1895
|
/**
|
@@ -1937,7 +1937,7 @@ declare namespace RDS {
|
|
1937
1937
|
*/
|
1938
1938
|
PreferredMaintenanceWindow?: String;
|
1939
1939
|
/**
|
1940
|
-
* The name of the DB parameter group to associate with this DB instance. If you do not specify a value, then the default DB parameter group for the specified DB engine and version is used. This setting doesn't apply to RDS Custom. Constraints:
|
1940
|
+
* The name of the DB parameter group to associate with this DB instance. If you do not specify a value, then the default DB parameter group for the specified DB engine and version is used. This setting doesn't apply to RDS Custom. Constraints: It must be 1 to 255 letters, numbers, or hyphens. The first character must be a letter. It can't end with a hyphen or contain two consecutive hyphens.
|
1941
1941
|
*/
|
1942
1942
|
DBParameterGroupName?: String;
|
1943
1943
|
/**
|
@@ -2277,7 +2277,7 @@ declare namespace RDS {
|
|
2277
2277
|
*/
|
2278
2278
|
VpcSecurityGroupIds?: StringList;
|
2279
2279
|
/**
|
2280
|
-
* A value that indicates whether the DB proxy endpoint can be used for read/write or read-only operations. The default is READ_WRITE.
|
2280
|
+
* A value that indicates whether the DB proxy endpoint can be used for read/write or read-only operations. The default is READ_WRITE. The only role that proxies for RDS for Microsoft SQL Server support is READ_WRITE.
|
2281
2281
|
*/
|
2282
2282
|
TargetRole?: DBProxyEndpointTargetRole;
|
2283
2283
|
Tags?: TagList;
|
@@ -2294,7 +2294,7 @@ declare namespace RDS {
|
|
2294
2294
|
*/
|
2295
2295
|
DBProxyName: String;
|
2296
2296
|
/**
|
2297
|
-
* The kinds of databases that the proxy can connect to. This value determines which database network protocol the proxy recognizes when it interprets network traffic to and from the database. For Aurora MySQL, RDS for MariaDB, and RDS for MySQL databases, specify MYSQL. For Aurora PostgreSQL and RDS for PostgreSQL databases, specify POSTGRESQL.
|
2297
|
+
* The kinds of databases that the proxy can connect to. This value determines which database network protocol the proxy recognizes when it interprets network traffic to and from the database. For Aurora MySQL, RDS for MariaDB, and RDS for MySQL databases, specify MYSQL. For Aurora PostgreSQL and RDS for PostgreSQL databases, specify POSTGRESQL. For RDS for Microsoft SQL Server, specify SQLSERVER.
|
2298
2298
|
*/
|
2299
2299
|
EngineFamily: EngineFamily;
|
2300
2300
|
/**
|
@@ -3742,7 +3742,7 @@ declare namespace RDS {
|
|
3742
3742
|
*/
|
3743
3743
|
Status?: DBProxyStatus;
|
3744
3744
|
/**
|
3745
|
-
* The kinds of databases that the proxy can connect to. This value determines which database network protocol the proxy recognizes when it interprets network traffic to and from the database. MYSQL supports Aurora MySQL, RDS for MariaDB, and RDS for MySQL databases. POSTGRESQL supports Aurora PostgreSQL and RDS for PostgreSQL databases.
|
3745
|
+
* The kinds of databases that the proxy can connect to. This value determines which database network protocol the proxy recognizes when it interprets network traffic to and from the database. MYSQL supports Aurora MySQL, RDS for MariaDB, and RDS for MySQL databases. POSTGRESQL supports Aurora PostgreSQL and RDS for PostgreSQL databases. SQLSERVER supports RDS for Microsoft SQL Server databases.
|
3746
3746
|
*/
|
3747
3747
|
EngineFamily?: String;
|
3748
3748
|
/**
|
@@ -5373,7 +5373,7 @@ declare namespace RDS {
|
|
5373
5373
|
*/
|
5374
5374
|
Parameters?: ParametersList;
|
5375
5375
|
}
|
5376
|
-
export type EngineFamily = "MYSQL"|"POSTGRESQL"|string;
|
5376
|
+
export type EngineFamily = "MYSQL"|"POSTGRESQL"|"SQLSERVER"|string;
|
5377
5377
|
export type EngineModeList = String[];
|
5378
5378
|
export interface Event {
|
5379
5379
|
/**
|
@@ -5687,7 +5687,7 @@ declare namespace RDS {
|
|
5687
5687
|
*/
|
5688
5688
|
GlobalClusters?: GlobalClusterList;
|
5689
5689
|
}
|
5690
|
-
export type IAMAuthMode = "DISABLED"|"REQUIRED"|string;
|
5690
|
+
export type IAMAuthMode = "DISABLED"|"REQUIRED"|"ENABLED"|string;
|
5691
5691
|
export interface IPRange {
|
5692
5692
|
/**
|
5693
5693
|
* Specifies the status of the IP range. Status can be "authorizing", "authorized", "revoking", and "revoked".
|
@@ -5929,7 +5929,7 @@ declare namespace RDS {
|
|
5929
5929
|
*/
|
5930
5930
|
EnableGlobalWriteForwarding?: BooleanOptional;
|
5931
5931
|
/**
|
5932
|
-
* The compute and memory capacity of each DB instance in the Multi-AZ DB cluster, for example db.
|
5932
|
+
* The compute and memory capacity of each DB instance in the Multi-AZ DB cluster, for example db.m6gd.xlarge. Not all DB instance classes are available in all Amazon Web Services Regions, or for all database engines. For the full list of DB instance classes and availability for your engine, see DB Instance Class in the Amazon RDS User Guide. Valid for: Multi-AZ DB clusters only
|
5933
5933
|
*/
|
5934
5934
|
DBClusterInstanceClass?: String;
|
5935
5935
|
/**
|
@@ -7600,7 +7600,7 @@ declare namespace RDS {
|
|
7600
7600
|
*/
|
7601
7601
|
DomainIAMRoleName?: String;
|
7602
7602
|
/**
|
7603
|
-
* The compute and memory capacity of the each DB instance in the Multi-AZ DB cluster, for example db.
|
7603
|
+
* The compute and memory capacity of the each DB instance in the Multi-AZ DB cluster, for example db.m6gd.xlarge. Not all DB instance classes are available in all Amazon Web Services Regions, or for all database engines. For the full list of DB instance classes, and availability for your engine, see DB Instance Class in the Amazon RDS User Guide. Valid for: Multi-AZ DB clusters only
|
7604
7604
|
*/
|
7605
7605
|
DBClusterInstanceClass?: String;
|
7606
7606
|
/**
|
@@ -7707,7 +7707,7 @@ declare namespace RDS {
|
|
7707
7707
|
*/
|
7708
7708
|
EngineMode?: String;
|
7709
7709
|
/**
|
7710
|
-
* The compute and memory capacity of the each DB instance in the Multi-AZ DB cluster, for example db.
|
7710
|
+
* The compute and memory capacity of the each DB instance in the Multi-AZ DB cluster, for example db.m6gd.xlarge. Not all DB instance classes are available in all Amazon Web Services Regions, or for all database engines. For the full list of DB instance classes, and availability for your engine, see DB instance class in the Amazon RDS User Guide. Valid for: Multi-AZ DB clusters only
|
7711
7711
|
*/
|
7712
7712
|
DBClusterInstanceClass?: String;
|
7713
7713
|
/**
|
@@ -8637,7 +8637,7 @@ declare namespace RDS {
|
|
8637
8637
|
*/
|
8638
8638
|
SecretArn?: String;
|
8639
8639
|
/**
|
8640
|
-
* Whether to require or disallow Amazon Web Services Identity and Access Management (IAM) authentication for connections to the proxy.
|
8640
|
+
* Whether to require or disallow Amazon Web Services Identity and Access Management (IAM) authentication for connections to the proxy. The ENABLED value is valid only for proxies with RDS for Microsoft SQL Server.
|
8641
8641
|
*/
|
8642
8642
|
IAMAuth?: IAMAuthMode;
|
8643
8643
|
}
|
@@ -8659,7 +8659,7 @@ declare namespace RDS {
|
|
8659
8659
|
*/
|
8660
8660
|
SecretArn?: String;
|
8661
8661
|
/**
|
8662
|
-
* Whether to require or disallow Amazon Web Services Identity and Access Management (IAM) authentication for connections to the proxy.
|
8662
|
+
* Whether to require or disallow Amazon Web Services Identity and Access Management (IAM) authentication for connections to the proxy. The ENABLED value is valid only for proxies with RDS for Microsoft SQL Server.
|
8663
8663
|
*/
|
8664
8664
|
IAMAuth?: IAMAuthMode;
|
8665
8665
|
}
|