cdk-comprehend-s3olap 2.0.197 → 2.0.199

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.
Files changed (39) hide show
  1. package/.jsii +3 -3
  2. package/lib/cdk-comprehend-s3olap.js +2 -2
  3. package/lib/comprehend-lambdas.js +2 -2
  4. package/lib/iam-roles.js +4 -4
  5. package/node_modules/aws-sdk/CHANGELOG.md +20 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/appstream-2016-12-01.min.json +523 -212
  8. package/node_modules/aws-sdk/apis/appstream-2016-12-01.paginators.json +10 -0
  9. package/node_modules/aws-sdk/apis/chime-2018-05-01.min.json +344 -84
  10. package/node_modules/aws-sdk/apis/cleanrooms-2022-02-17.min.json +56 -49
  11. package/node_modules/aws-sdk/apis/dynamodb-2012-08-10.min.json +265 -256
  12. package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +624 -606
  13. package/node_modules/aws-sdk/apis/internetmonitor-2021-06-03.min.json +47 -21
  14. package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +39 -1
  15. package/node_modules/aws-sdk/apis/s3-2006-03-01.examples.json +110 -110
  16. package/node_modules/aws-sdk/apis/s3-2006-03-01.min.json +55 -19
  17. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +915 -855
  18. package/node_modules/aws-sdk/clients/appstream.d.ts +426 -8
  19. package/node_modules/aws-sdk/clients/chime.d.ts +268 -268
  20. package/node_modules/aws-sdk/clients/cleanrooms.d.ts +33 -22
  21. package/node_modules/aws-sdk/clients/dynamodb.d.ts +28 -0
  22. package/node_modules/aws-sdk/clients/gamelift.d.ts +6 -6
  23. package/node_modules/aws-sdk/clients/glue.d.ts +23 -0
  24. package/node_modules/aws-sdk/clients/internetmonitor.d.ts +31 -0
  25. package/node_modules/aws-sdk/clients/kinesisanalyticsv2.d.ts +1 -1
  26. package/node_modules/aws-sdk/clients/lambda.d.ts +6 -6
  27. package/node_modules/aws-sdk/clients/omics.d.ts +1 -1
  28. package/node_modules/aws-sdk/clients/rds.d.ts +97 -1
  29. package/node_modules/aws-sdk/clients/s3.d.ts +82 -48
  30. package/node_modules/aws-sdk/clients/sagemaker.d.ts +93 -10
  31. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  32. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +13 -13
  33. package/node_modules/aws-sdk/dist/aws-sdk.js +374 -279
  34. package/node_modules/aws-sdk/dist/aws-sdk.min.js +75 -75
  35. package/node_modules/aws-sdk/lib/core.js +1 -1
  36. package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +28 -0
  37. package/node_modules/aws-sdk/lib/region_config_data.json +12 -0
  38. package/node_modules/aws-sdk/package.json +1 -1
  39. package/package.json +5 -5
@@ -2190,6 +2190,22 @@ declare namespace RDS {
2190
2190
  * The Active Directory directory ID to create the DB instance in. Currently, only Microsoft SQL Server, MySQL, Oracle, and PostgreSQL DB instances can be created in an Active Directory Domain. For more information, see Kerberos Authentication in the Amazon RDS User Guide. This setting doesn't apply to the following DB instances: Amazon Aurora (The domain is managed by the DB cluster.) RDS Custom
2191
2191
  */
2192
2192
  Domain?: String;
2193
+ /**
2194
+ * Specifies the fully qualified domain name of an Active Directory domain. Constraints: Cannot be greater than 64 characters. Example: mymanagedADtest.mymanagedAD.mydomain
2195
+ */
2196
+ DomainFqdn?: String;
2197
+ /**
2198
+ * The Active Directory organizational unit for your DB instance to join. Constraints: Must be in the distinguished name format. Cannot be greater than 64 characters. Example: OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain
2199
+ */
2200
+ DomainOu?: String;
2201
+ /**
2202
+ * The ARN for the Secrets Manager secret that contains the credentials for the user performing the domain join. Example: arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456
2203
+ */
2204
+ DomainAuthSecretArn?: String;
2205
+ /**
2206
+ * The IPv4 DNS IP addresses of your primary and secondary Active Directory domain controllers. Constraints: Two IP addresses must be provided. If there isn't a secondary domain controller, use the IP address of the primary domain controller for both entries in the list. Example: 123.124.125.126,234.235.236.237
2207
+ */
2208
+ DomainDnsIps?: StringList;
2193
2209
  /**
2194
2210
  * Spcifies whether to copy tags from the DB instance to snapshots of the DB instance. By default, tags are not copied. This setting doesn't apply to Amazon Aurora DB instances. Copying tags to snapshots is managed by the DB cluster. Setting this value for an Aurora DB instance has no effect on the DB cluster setting.
2195
2211
  */
@@ -2397,6 +2413,22 @@ declare namespace RDS {
2397
2413
  * The name of the IAM role to be used when making API calls to the Directory Service. This setting doesn't apply to RDS Custom.
2398
2414
  */
2399
2415
  DomainIAMRoleName?: String;
2416
+ /**
2417
+ * Specifies the fully qualified domain name of an Active Directory domain. Constraints: Cannot be greater than 64 characters. Example: mymanagedADtest.mymanagedAD.mydomain
2418
+ */
2419
+ DomainFqdn?: String;
2420
+ /**
2421
+ * The Active Directory organizational unit for your DB instance to join. Constraints: Must be in the distinguished name format. Cannot be greater than 64 characters. Example: OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain
2422
+ */
2423
+ DomainOu?: String;
2424
+ /**
2425
+ * The ARN for the Secrets Manager secret that contains the credentials for the user performing the domain join. Example: arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456
2426
+ */
2427
+ DomainAuthSecretArn?: String;
2428
+ /**
2429
+ * The IPv4 DNS IP addresses of your primary and secondary Active Directory domain controllers. Constraints: Two IP addresses must be provided. If there isn't a secondary domain controller, use the IP address of the primary domain controller for both entries in the list. Example: 123.124.125.126,234.235.236.237
2430
+ */
2431
+ DomainDnsIps?: StringList;
2400
2432
  /**
2401
2433
  * The open mode of the replica database: mounted or read-only. This parameter is only supported for Oracle DB instances. Mounted DB replicas are included in Oracle Database Enterprise Edition. The main use case for mounted replicas is cross-Region disaster recovery. The primary database doesn't use Active Data Guard to transmit information to the mounted replica. Because it doesn't accept user connections, a mounted replica can't serve a read-only workload. You can create a combination of mounted and read-only DB replicas for the same primary DB instance. For more information, see Working with Oracle Read Replicas for Amazon RDS in the Amazon RDS User Guide. For RDS Custom, you must specify this parameter and set it to mounted. The value won't be set by default. After replica creation, you can manage the open mode manually.
2402
2434
  */
@@ -5598,13 +5630,25 @@ declare namespace RDS {
5598
5630
  */
5599
5631
  Status?: String;
5600
5632
  /**
5601
- * The fully qualified domain name of the Active Directory Domain.
5633
+ * The fully qualified domain name (FQDN) of the Active Directory Domain.
5602
5634
  */
5603
5635
  FQDN?: String;
5604
5636
  /**
5605
5637
  * The name of the IAM role to be used when making API calls to the Directory Service.
5606
5638
  */
5607
5639
  IAMRoleName?: String;
5640
+ /**
5641
+ * The Active Directory organizational unit for your DB instance to join.
5642
+ */
5643
+ OU?: String;
5644
+ /**
5645
+ * The ARN for the Secrets Manager secret that contains the credentials for the user performing the domain join.
5646
+ */
5647
+ AuthSecretArn?: String;
5648
+ /**
5649
+ * The IPv4 DNS IP addresses of your primary and secondary Active Directory domain controllers.
5650
+ */
5651
+ DnsIps?: StringList;
5608
5652
  }
5609
5653
  export type DomainMembershipList = DomainMembership[];
5610
5654
  export type Double = number;
@@ -6474,6 +6518,22 @@ declare namespace RDS {
6474
6518
  * The Active Directory directory ID to move the DB instance to. Specify none to remove the instance from its current domain. You must create the domain before this operation. Currently, you can create only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances in an Active Directory Domain. For more information, see Kerberos Authentication in the Amazon RDS User Guide. This setting doesn't apply to RDS Custom DB instances.
6475
6519
  */
6476
6520
  Domain?: String;
6521
+ /**
6522
+ * Specifies the fully qualified domain name of an Active Directory domain. Constraints: Cannot be greater than 64 characters. Example: mymanagedADtest.mymanagedAD.mydomain
6523
+ */
6524
+ DomainFqdn?: String;
6525
+ /**
6526
+ * The Active Directory organizational unit for your DB instance to join. Constraints: Must be in the distinguished name format. Cannot be greater than 64 characters. Example: OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain
6527
+ */
6528
+ DomainOu?: String;
6529
+ /**
6530
+ * The ARN for the Secrets Manager secret that contains the credentials for the user performing the domain join. Example: arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456
6531
+ */
6532
+ DomainAuthSecretArn?: String;
6533
+ /**
6534
+ * The IPv4 DNS IP addresses of your primary and secondary Active Directory domain controllers. Constraints: Two IP addresses must be provided. If there isn't a secondary domain controller, use the IP address of the primary domain controller for both entries in the list. Example: 123.124.125.126,234.235.236.237
6535
+ */
6536
+ DomainDnsIps?: StringList;
6477
6537
  /**
6478
6538
  * Specifies whether to copy all tags from the DB instance to snapshots of the DB instance. By default, tags aren't copied. This setting doesn't apply to Amazon Aurora DB instances. Copying tags to snapshots is managed by the DB cluster. Setting this value for an Aurora DB instance has no effect on the DB cluster setting. For more information, see ModifyDBCluster.
6479
6539
  */
@@ -6498,6 +6558,10 @@ declare namespace RDS {
6498
6558
  * The name of the IAM role to use when making API calls to the Directory Service. This setting doesn't apply to RDS Custom DB instances.
6499
6559
  */
6500
6560
  DomainIAMRoleName?: String;
6561
+ /**
6562
+ * Boolean. If present, removes the instance from the Active Directory domain.
6563
+ */
6564
+ DisableDomain?: BooleanOptional;
6501
6565
  /**
6502
6566
  * The order of priority in which an Aurora Replica is promoted to the primary instance after a failure of the existing primary instance. For more information, see Fault Tolerance for an Aurora DB Cluster in the Amazon Aurora User Guide. This setting doesn't apply to RDS Custom DB instances. Default: 1 Valid Values: 0 - 15
6503
6567
  */
@@ -8250,6 +8314,22 @@ declare namespace RDS {
8250
8314
  * Specify the Active Directory directory ID to restore the DB instance in. The domain/ must be created prior to this operation. Currently, you can create only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances in an Active Directory Domain. For more information, see Kerberos Authentication in the Amazon RDS User Guide. This setting doesn't apply to RDS Custom.
8251
8315
  */
8252
8316
  Domain?: String;
8317
+ /**
8318
+ * Specifies the fully qualified domain name of an Active Directory domain. Constraints: Cannot be greater than 64 characters. Example: mymanagedADtest.mymanagedAD.mydomain
8319
+ */
8320
+ DomainFqdn?: String;
8321
+ /**
8322
+ * The Active Directory organizational unit for your DB instance to join. Constraints: Must be in the distinguished name format. Cannot be greater than 64 characters. Example: OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain
8323
+ */
8324
+ DomainOu?: String;
8325
+ /**
8326
+ * The ARN for the Secrets Manager secret that contains the credentials for the user performing the domain join. Constraints: Example: arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456
8327
+ */
8328
+ DomainAuthSecretArn?: String;
8329
+ /**
8330
+ * The IPv4 DNS IP addresses of your primary and secondary Active Directory domain controllers. Constraints: Two IP addresses must be provided. If there isn't a secondary domain controller, use the IP address of the primary domain controller for both entries in the list. Example: 123.124.125.126,234.235.236.237
8331
+ */
8332
+ DomainDnsIps?: StringList;
8253
8333
  /**
8254
8334
  * A value that indicates whether to copy all tags from the restored DB instance to snapshots of the DB instance. In most cases, tags aren't copied by default. However, when you restore a DB instance from a DB snapshot, RDS checks whether you specify new tags. If yes, the new tags are added to the restored DB instance. If there are no new tags, RDS looks for the tags from the source DB instance for the DB snapshot, and then adds those tags to the restored DB instance. For more information, see Copying tags to DB instance snapshots in the Amazon RDS User Guide.
8255
8335
  */
@@ -8605,6 +8685,22 @@ declare namespace RDS {
8605
8685
  * Specify the name of the IAM role to be used when making API calls to the Directory Service. This setting doesn't apply to RDS Custom.
8606
8686
  */
8607
8687
  DomainIAMRoleName?: String;
8688
+ /**
8689
+ * Specifies the fully qualified domain name of an Active Directory domain. Constraints: Cannot be greater than 64 characters. Example: mymanagedADtest.mymanagedAD.mydomain
8690
+ */
8691
+ DomainFqdn?: String;
8692
+ /**
8693
+ * The Active Directory organizational unit for your DB instance to join. Constraints: Must be in the distinguished name format. Cannot be greater than 64 characters. Example: OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain
8694
+ */
8695
+ DomainOu?: String;
8696
+ /**
8697
+ * The ARN for the Secrets Manager secret that contains the credentials for the user performing the domain join. Constraints: Cannot be greater than 64 characters. Example: arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456
8698
+ */
8699
+ DomainAuthSecretArn?: String;
8700
+ /**
8701
+ * The IPv4 DNS IP addresses of your primary and secondary Active Directory domain controllers. Constraints: Two IP addresses must be provided. If there isn't a secondary domain controller, use the IP address of the primary domain controller for both entries in the list. Example: 123.124.125.126,234.235.236.237
8702
+ */
8703
+ DomainDnsIps?: StringList;
8608
8704
  /**
8609
8705
  * A value that indicates whether to enable mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts. By default, mapping isn't enabled. This setting doesn't apply to RDS Custom. For more information about IAM database authentication, see IAM Database Authentication for MySQL and PostgreSQL in the Amazon RDS User Guide.
8610
8706
  */