cdk-lambda-subminute 2.0.264 → 2.0.266
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 +20 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/autoscaling-2011-01-01.examples.json +1 -1
- package/node_modules/aws-sdk/apis/autoscaling-2011-01-01.min.json +57 -57
- package/node_modules/aws-sdk/apis/autoscaling-2011-01-01.paginators.json +15 -0
- package/node_modules/aws-sdk/apis/controltower-2018-05-10.min.json +68 -1
- package/node_modules/aws-sdk/apis/customer-profiles-2020-08-15.min.json +31 -18
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +134 -82
- package/node_modules/aws-sdk/apis/ivs-realtime-2020-07-14.min.json +14 -8
- package/node_modules/aws-sdk/apis/lambda-2015-03-31.min.json +102 -96
- package/node_modules/aws-sdk/apis/location-2020-11-19.min.json +36 -36
- package/node_modules/aws-sdk/apis/machinelearning-2014-12-12.min.json +8 -2
- package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +43 -7
- package/node_modules/aws-sdk/apis/rekognition-2016-06-27.min.json +194 -161
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +740 -728
- package/node_modules/aws-sdk/apis/textract-2018-06-27.min.json +483 -76
- package/node_modules/aws-sdk/apis/textract-2018-06-27.paginators.json +12 -0
- package/node_modules/aws-sdk/clients/autoscaling.d.ts +4 -3
- package/node_modules/aws-sdk/clients/configservice.d.ts +15 -15
- package/node_modules/aws-sdk/clients/controltower.d.ts +104 -15
- package/node_modules/aws-sdk/clients/customerprofiles.d.ts +6 -6
- package/node_modules/aws-sdk/clients/ec2.d.ts +62 -6
- package/node_modules/aws-sdk/clients/elbv2.d.ts +7 -7
- package/node_modules/aws-sdk/clients/glue.d.ts +5 -5
- package/node_modules/aws-sdk/clients/inspector2.d.ts +25 -25
- package/node_modules/aws-sdk/clients/ivsrealtime.d.ts +25 -0
- package/node_modules/aws-sdk/clients/lambda.d.ts +9 -0
- package/node_modules/aws-sdk/clients/pricing.d.ts +8 -8
- package/node_modules/aws-sdk/clients/rds.d.ts +48 -0
- package/node_modules/aws-sdk/clients/rekognition.d.ts +141 -72
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +26 -6
- package/node_modules/aws-sdk/clients/textract.d.ts +534 -2
- package/node_modules/aws-sdk/clients/transcribeservice.d.ts +1 -1
- package/node_modules/aws-sdk/clients/workspaces.d.ts +2 -2
- 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 +15 -15
- package/node_modules/aws-sdk/dist/aws-sdk.js +592 -444
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +99 -99
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/function-bind/.eslintrc +11 -5
- package/node_modules/function-bind/.github/FUNDING.yml +12 -0
- package/node_modules/function-bind/.github/SECURITY.md +3 -0
- package/node_modules/function-bind/.nycrc +13 -0
- package/node_modules/function-bind/CHANGELOG.md +136 -0
- package/node_modules/function-bind/README.md +25 -27
- package/node_modules/function-bind/implementation.js +44 -12
- package/node_modules/function-bind/package.json +38 -14
- package/package.json +3 -3
- package/node_modules/function-bind/.editorconfig +0 -20
- package/node_modules/function-bind/.jscs.json +0 -176
- package/node_modules/function-bind/.npmignore +0 -22
- package/node_modules/function-bind/.travis.yml +0 -168
@@ -2338,6 +2338,10 @@ declare namespace RDS {
|
|
2338
2338
|
* The Oracle system identifier (SID), which is the name of the Oracle database instance that manages your database files. In this context, the term "Oracle database instance" refers exclusively to the system global area (SGA) and Oracle background processes. If you don't specify a SID, the value defaults to RDSCDB. The Oracle SID is also the name of your CDB.
|
2339
2339
|
*/
|
2340
2340
|
DBSystemId?: String;
|
2341
|
+
/**
|
2342
|
+
* Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
|
2343
|
+
*/
|
2344
|
+
DedicatedLogVolume?: BooleanOptional;
|
2341
2345
|
}
|
2342
2346
|
export interface CreateDBInstanceReadReplicaMessage {
|
2343
2347
|
/**
|
@@ -2505,6 +2509,10 @@ declare namespace RDS {
|
|
2505
2509
|
* The identifier of the Multi-AZ DB cluster that will act as the source for the read replica. Each DB cluster can have up to 15 read replicas. Constraints: Must be the identifier of an existing Multi-AZ DB cluster. Can't be specified if the SourceDBInstanceIdentifier parameter is also specified. The specified DB cluster must have automatic backups enabled, that is, its backup retention period must be greater than 0. The source DB cluster must be in the same Amazon Web Services Region as the read replica. Cross-Region replication isn't supported.
|
2506
2510
|
*/
|
2507
2511
|
SourceDBClusterIdentifier?: String;
|
2512
|
+
/**
|
2513
|
+
* Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
|
2514
|
+
*/
|
2515
|
+
DedicatedLogVolume?: BooleanOptional;
|
2508
2516
|
/**
|
2509
2517
|
* The ID of the region that contains the source for the read replica.
|
2510
2518
|
*/
|
@@ -3972,6 +3980,10 @@ declare namespace RDS {
|
|
3972
3980
|
* The progress of the storage optimization operation as a percentage.
|
3973
3981
|
*/
|
3974
3982
|
PercentProgress?: String;
|
3983
|
+
/**
|
3984
|
+
* Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
|
3985
|
+
*/
|
3986
|
+
DedicatedLogVolume?: Boolean;
|
3975
3987
|
}
|
3976
3988
|
export interface DBInstanceAutomatedBackup {
|
3977
3989
|
/**
|
@@ -4090,6 +4102,10 @@ declare namespace RDS {
|
|
4090
4102
|
* The Amazon Resource Name (ARN) of the recovery point in Amazon Web Services Backup.
|
4091
4103
|
*/
|
4092
4104
|
AwsBackupRecoveryPointArn?: String;
|
4105
|
+
/**
|
4106
|
+
* Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
|
4107
|
+
*/
|
4108
|
+
DedicatedLogVolume?: BooleanOptional;
|
4093
4109
|
}
|
4094
4110
|
export type DBInstanceAutomatedBackupList = DBInstanceAutomatedBackup[];
|
4095
4111
|
export interface DBInstanceAutomatedBackupMessage {
|
@@ -4580,6 +4596,10 @@ declare namespace RDS {
|
|
4580
4596
|
* The Oracle system identifier (SID), which is the name of the Oracle database instance that manages your database files. The Oracle SID is also the name of your CDB.
|
4581
4597
|
*/
|
4582
4598
|
DBSystemId?: String;
|
4599
|
+
/**
|
4600
|
+
* Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
|
4601
|
+
*/
|
4602
|
+
DedicatedLogVolume?: Boolean;
|
4583
4603
|
}
|
4584
4604
|
export interface DBSnapshotAttribute {
|
4585
4605
|
/**
|
@@ -6893,6 +6913,10 @@ declare namespace RDS {
|
|
6893
6913
|
* The target Oracle DB engine when you convert a non-CDB to a CDB. This intermediate step is necessary to upgrade an Oracle Database 19c non-CDB to an Oracle Database 21c CDB. Note the following requirements: Make sure that you specify oracle-ee-cdb or oracle-se2-cdb. Make sure that your DB engine runs Oracle Database 19c with an April 2021 or later RU. Note the following limitations: You can't convert a CDB to a non-CDB. You can't convert a replica database. You can't convert a non-CDB to a CDB and upgrade the engine version in the same command. You can't convert the existing custom parameter or option group when it has options or parameters that are permanent or persistent. In this situation, the DB instance reverts to the default option and parameter group. To avoid reverting to the default, specify a new parameter group with --db-parameter-group-name and a new option group with --option-group-name.
|
6894
6914
|
*/
|
6895
6915
|
Engine?: String;
|
6916
|
+
/**
|
6917
|
+
* Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
|
6918
|
+
*/
|
6919
|
+
DedicatedLogVolume?: BooleanOptional;
|
6896
6920
|
}
|
6897
6921
|
export interface ModifyDBInstanceResult {
|
6898
6922
|
DBInstance?: DBInstance;
|
@@ -7559,6 +7583,10 @@ declare namespace RDS {
|
|
7559
7583
|
* Maximum storage throughput to provisioned IOPS ratio for a DB instance.
|
7560
7584
|
*/
|
7561
7585
|
MaxStorageThroughputPerIops?: DoubleOptional;
|
7586
|
+
/**
|
7587
|
+
* Indicates whether a DB instance supports using a dedicated log volume (DLV).
|
7588
|
+
*/
|
7589
|
+
SupportsDedicatedLogVolume?: Boolean;
|
7562
7590
|
}
|
7563
7591
|
export type OrderableDBInstanceOptionsList = OrderableDBInstanceOption[];
|
7564
7592
|
export interface OrderableDBInstanceOptionsMessage {
|
@@ -7750,6 +7778,10 @@ declare namespace RDS {
|
|
7750
7778
|
* The database engine of the DB instance.
|
7751
7779
|
*/
|
7752
7780
|
Engine?: String;
|
7781
|
+
/**
|
7782
|
+
* Indicates whether the DB instance has a dedicated log volume (DLV) enabled.>
|
7783
|
+
*/
|
7784
|
+
DedicatedLogVolume?: BooleanOptional;
|
7753
7785
|
}
|
7754
7786
|
export interface ProcessorFeature {
|
7755
7787
|
/**
|
@@ -8637,6 +8669,10 @@ declare namespace RDS {
|
|
8637
8669
|
* The amount of storage (in gibibytes) to allocate initially for the DB instance. Follow the allocation rules specified in CreateDBInstance. Be sure to allocate enough storage for your new DB instance so that the restore operation can succeed. You can also allocate additional storage for future growth.
|
8638
8670
|
*/
|
8639
8671
|
AllocatedStorage?: IntegerOptional;
|
8672
|
+
/**
|
8673
|
+
* Specifies whether to enable a dedicated log volume (DLV) for the DB instance.
|
8674
|
+
*/
|
8675
|
+
DedicatedLogVolume?: BooleanOptional;
|
8640
8676
|
}
|
8641
8677
|
export interface RestoreDBInstanceFromDBSnapshotResult {
|
8642
8678
|
DBInstance?: DBInstance;
|
@@ -8834,6 +8870,10 @@ declare namespace RDS {
|
|
8834
8870
|
* The Amazon Web Services KMS key identifier to encrypt a secret that is automatically generated and managed in Amazon Web Services Secrets Manager. This setting is valid only if the master user password is managed by RDS in Amazon Web Services Secrets Manager for the DB instance. The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN. If you don't specify MasterUserSecretKmsKeyId, then the aws/secretsmanager KMS key is used to encrypt the secret. If the secret is in a different Amazon Web Services account, then you can't use the aws/secretsmanager KMS key to encrypt the secret, and you must use a customer managed KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.
|
8835
8871
|
*/
|
8836
8872
|
MasterUserSecretKmsKeyId?: String;
|
8873
|
+
/**
|
8874
|
+
* Specifies whether to enable a dedicated log volume (DLV) for the DB instance.
|
8875
|
+
*/
|
8876
|
+
DedicatedLogVolume?: BooleanOptional;
|
8837
8877
|
}
|
8838
8878
|
export interface RestoreDBInstanceFromS3Result {
|
8839
8879
|
DBInstance?: DBInstance;
|
@@ -9008,6 +9048,10 @@ declare namespace RDS {
|
|
9008
9048
|
* The amount of storage (in gibibytes) to allocate initially for the DB instance. Follow the allocation rules specified in CreateDBInstance. Be sure to allocate enough storage for your new DB instance so that the restore operation can succeed. You can also allocate additional storage for future growth.
|
9009
9049
|
*/
|
9010
9050
|
AllocatedStorage?: IntegerOptional;
|
9051
|
+
/**
|
9052
|
+
* Specifies whether to enable a dedicated log volume (DLV) for the DB instance.
|
9053
|
+
*/
|
9054
|
+
DedicatedLogVolume?: BooleanOptional;
|
9011
9055
|
}
|
9012
9056
|
export interface RestoreDBInstanceToPointInTimeResult {
|
9013
9057
|
DBInstance?: DBInstance;
|
@@ -9548,6 +9592,10 @@ declare namespace RDS {
|
|
9548
9592
|
* Valid processor features for your DB instance.
|
9549
9593
|
*/
|
9550
9594
|
ValidProcessorFeatures?: AvailableProcessorFeatureList;
|
9595
|
+
/**
|
9596
|
+
* Indicates whether a DB instance supports using a dedicated log volume (DLV).
|
9597
|
+
*/
|
9598
|
+
SupportsDedicatedLogVolume?: Boolean;
|
9551
9599
|
}
|
9552
9600
|
export interface ValidStorageOptions {
|
9553
9601
|
/**
|