cdk-comprehend-s3olap 2.0.73 → 2.0.76
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/ec2-2016-11-15.min.json +2 -1
- package/node_modules/aws-sdk/apis/forecast-2018-06-26.min.json +428 -13
- package/node_modules/aws-sdk/apis/forecast-2018-06-26.paginators.json +18 -0
- package/node_modules/aws-sdk/apis/forecastquery-2018-06-26.min.json +54 -21
- package/node_modules/aws-sdk/apis/metadata.json +4 -0
- package/node_modules/aws-sdk/apis/models.lex.v2-2020-08-07.min.json +44 -0
- package/node_modules/aws-sdk/apis/securityhub-2018-10-26.min.json +308 -162
- package/node_modules/aws-sdk/apis/support-app-2021-08-20.examples.json +5 -0
- package/node_modules/aws-sdk/apis/support-app-2021-08-20.min.json +267 -0
- package/node_modules/aws-sdk/apis/support-app-2021-08-20.paginators.json +12 -0
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/docdb.d.ts +1 -1
- package/node_modules/aws-sdk/clients/ec2.d.ts +1 -1
- package/node_modules/aws-sdk/clients/forecastqueryservice.d.ts +35 -1
- package/node_modules/aws-sdk/clients/forecastservice.d.ts +559 -0
- package/node_modules/aws-sdk/clients/lexmodelsv2.d.ts +49 -1
- package/node_modules/aws-sdk/clients/securityhub.d.ts +346 -70
- package/node_modules/aws-sdk/clients/supportapp.d.ts +330 -0
- package/node_modules/aws-sdk/clients/supportapp.js +18 -0
- 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 +47 -10
- package/node_modules/aws-sdk/dist/aws-sdk.js +509 -38
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +51 -51
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -3
@@ -984,7 +984,7 @@ declare namespace SecurityHub {
|
|
984
984
|
*/
|
985
985
|
LoadBalancerNames?: StringList;
|
986
986
|
/**
|
987
|
-
* The service to use for the health checks.
|
987
|
+
* The service to use for the health checks. Valid values are EC2 or ELB.
|
988
988
|
*/
|
989
989
|
HealthCheckType?: NonEmptyString;
|
990
990
|
/**
|
@@ -1038,7 +1038,7 @@ declare namespace SecurityHub {
|
|
1038
1038
|
}
|
1039
1039
|
export interface AwsAutoScalingAutoScalingGroupMixedInstancesPolicyInstancesDistributionDetails {
|
1040
1040
|
/**
|
1041
|
-
* How to allocate instance types to fulfill On-Demand capacity.
|
1041
|
+
* How to allocate instance types to fulfill On-Demand capacity. The valid value is prioritized.
|
1042
1042
|
*/
|
1043
1043
|
OnDemandAllocationStrategy?: NonEmptyString;
|
1044
1044
|
/**
|
@@ -1050,7 +1050,7 @@ declare namespace SecurityHub {
|
|
1050
1050
|
*/
|
1051
1051
|
OnDemandPercentageAboveBaseCapacity?: Integer;
|
1052
1052
|
/**
|
1053
|
-
* How to allocate instances across Spot Instance pools.
|
1053
|
+
* How to allocate instances across Spot Instance pools. Valid values are as follows: lowest-price capacity-optimized capacity-optimized-prioritized
|
1054
1054
|
*/
|
1055
1055
|
SpotAllocationStrategy?: NonEmptyString;
|
1056
1056
|
/**
|
@@ -1137,7 +1137,7 @@ declare namespace SecurityHub {
|
|
1137
1137
|
*/
|
1138
1138
|
VolumeSize?: Integer;
|
1139
1139
|
/**
|
1140
|
-
* The volume type.
|
1140
|
+
* The volume type. Valid values are as follows: gp2 gp3 io1 sc1 st1 standard
|
1141
1141
|
*/
|
1142
1142
|
VolumeType?: NonEmptyString;
|
1143
1143
|
}
|
@@ -1240,6 +1240,257 @@ declare namespace SecurityHub {
|
|
1240
1240
|
*/
|
1241
1241
|
HttpTokens?: NonEmptyString;
|
1242
1242
|
}
|
1243
|
+
export interface AwsBackupBackupPlanAdvancedBackupSettingsDetails {
|
1244
|
+
/**
|
1245
|
+
* Specifies the backup option for a selected resource. This option is only available for Windows Volume Shadow Copy Service (VSS) backup jobs. Valid values are as follows: Set to WindowsVSS: enabled to enable the WindowsVSS backup option and create a Windows VSS backup. Set to WindowsVSS: disabled to create a regular backup. The WindowsVSS option is not enabled by default.
|
1246
|
+
*/
|
1247
|
+
BackupOptions?: FieldMap;
|
1248
|
+
/**
|
1249
|
+
* The name of a resource type. The only supported resource type is Amazon EC2 instances with Windows VSS. The only valid value is EC2.
|
1250
|
+
*/
|
1251
|
+
ResourceType?: NonEmptyString;
|
1252
|
+
}
|
1253
|
+
export type AwsBackupBackupPlanAdvancedBackupSettingsList = AwsBackupBackupPlanAdvancedBackupSettingsDetails[];
|
1254
|
+
export interface AwsBackupBackupPlanBackupPlanDetails {
|
1255
|
+
/**
|
1256
|
+
* The display name of a backup plan.
|
1257
|
+
*/
|
1258
|
+
BackupPlanName?: NonEmptyString;
|
1259
|
+
/**
|
1260
|
+
* A list of backup options for each resource type.
|
1261
|
+
*/
|
1262
|
+
AdvancedBackupSettings?: AwsBackupBackupPlanAdvancedBackupSettingsList;
|
1263
|
+
/**
|
1264
|
+
* An array of BackupRule objects, each of which specifies a scheduled task that is used to back up a selection of resources.
|
1265
|
+
*/
|
1266
|
+
BackupPlanRule?: AwsBackupBackupPlanRuleList;
|
1267
|
+
}
|
1268
|
+
export interface AwsBackupBackupPlanDetails {
|
1269
|
+
/**
|
1270
|
+
* Uniquely identifies the backup plan to be associated with the selection of resources.
|
1271
|
+
*/
|
1272
|
+
BackupPlan?: AwsBackupBackupPlanBackupPlanDetails;
|
1273
|
+
/**
|
1274
|
+
* An Amazon Resource Name (ARN) that uniquely identifies the backup plan.
|
1275
|
+
*/
|
1276
|
+
BackupPlanArn?: NonEmptyString;
|
1277
|
+
/**
|
1278
|
+
* A unique ID for the backup plan.
|
1279
|
+
*/
|
1280
|
+
BackupPlanId?: NonEmptyString;
|
1281
|
+
/**
|
1282
|
+
* Unique, randomly generated, Unicode, UTF-8 encoded strings. Version IDs cannot be edited.
|
1283
|
+
*/
|
1284
|
+
VersionId?: NonEmptyString;
|
1285
|
+
}
|
1286
|
+
export interface AwsBackupBackupPlanLifecycleDetails {
|
1287
|
+
/**
|
1288
|
+
* Specifies the number of days after creation that a recovery point is deleted. Must be greater than 90 days plus MoveToColdStorageAfterDays.
|
1289
|
+
*/
|
1290
|
+
DeleteAfterDays?: Long;
|
1291
|
+
/**
|
1292
|
+
* Specifies the number of days after creation that a recovery point is moved to cold storage.
|
1293
|
+
*/
|
1294
|
+
MoveToColdStorageAfterDays?: Long;
|
1295
|
+
}
|
1296
|
+
export interface AwsBackupBackupPlanRuleCopyActionsDetails {
|
1297
|
+
/**
|
1298
|
+
* An Amazon Resource Name (ARN) that uniquely identifies the destination backup vault for the copied backup.
|
1299
|
+
*/
|
1300
|
+
DestinationBackupVaultArn?: NonEmptyString;
|
1301
|
+
/**
|
1302
|
+
* Defines when a protected resource is transitioned to cold storage and when it expires. Backup transitions and expires backups automatically according to the lifecycle that you define. If you do not specify a lifecycle, Backup applies the lifecycle policy of the source backup to the destination backup. Backups transitioned to cold storage must be stored in cold storage for a minimum of 90 days.
|
1303
|
+
*/
|
1304
|
+
Lifecycle?: AwsBackupBackupPlanLifecycleDetails;
|
1305
|
+
}
|
1306
|
+
export type AwsBackupBackupPlanRuleCopyActionsList = AwsBackupBackupPlanRuleCopyActionsDetails[];
|
1307
|
+
export interface AwsBackupBackupPlanRuleDetails {
|
1308
|
+
/**
|
1309
|
+
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the Amazon Web Services account used to create them and the Amazon Web Services Region where they are created. They consist of letters, numbers, and hyphens.
|
1310
|
+
*/
|
1311
|
+
TargetBackupVault?: NonEmptyString;
|
1312
|
+
/**
|
1313
|
+
* A value in minutes after a backup is scheduled before a job will be canceled if it doesn't start successfully.
|
1314
|
+
*/
|
1315
|
+
StartWindowMinutes?: Long;
|
1316
|
+
/**
|
1317
|
+
* A cron expression in UTC specifying when Backup initiates a backup job.
|
1318
|
+
*/
|
1319
|
+
ScheduleExpression?: NonEmptyString;
|
1320
|
+
/**
|
1321
|
+
* A display name for a backup rule. Must contain 1 to 50 alphanumeric or '-_.' characters.
|
1322
|
+
*/
|
1323
|
+
RuleName?: NonEmptyString;
|
1324
|
+
/**
|
1325
|
+
* Uniquely identifies a rule that is used to schedule the backup of a selection of resources.
|
1326
|
+
*/
|
1327
|
+
RuleId?: NonEmptyString;
|
1328
|
+
/**
|
1329
|
+
* Specifies whether Backup creates continuous backups capable of point-in-time restore (PITR).
|
1330
|
+
*/
|
1331
|
+
EnableContinuousBackup?: Boolean;
|
1332
|
+
/**
|
1333
|
+
* A value in minutes after a backup job is successfully started before it must be completed, or it is canceled by Backup.
|
1334
|
+
*/
|
1335
|
+
CompletionWindowMinutes?: Long;
|
1336
|
+
/**
|
1337
|
+
* An array of CopyAction objects, which contains the details of the copy operation.
|
1338
|
+
*/
|
1339
|
+
CopyActions?: AwsBackupBackupPlanRuleCopyActionsList;
|
1340
|
+
/**
|
1341
|
+
* Defines when a protected resource is transitioned to cold storage and when it expires. Backup transitions and expires backups automatically according to the lifecycle that you define. If you do not specify a lifecycle, Backup applies the lifecycle policy of the source backup to the destination backup. Backups transitioned to cold storage must be stored in cold storage for a minimum of 90 days.
|
1342
|
+
*/
|
1343
|
+
Lifecycle?: AwsBackupBackupPlanLifecycleDetails;
|
1344
|
+
}
|
1345
|
+
export type AwsBackupBackupPlanRuleList = AwsBackupBackupPlanRuleDetails[];
|
1346
|
+
export interface AwsBackupBackupVaultDetails {
|
1347
|
+
/**
|
1348
|
+
* An Amazon Resource Name (ARN) that uniquely identifies a backup vault.
|
1349
|
+
*/
|
1350
|
+
BackupVaultArn?: NonEmptyString;
|
1351
|
+
/**
|
1352
|
+
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the Amazon Web Services account used to create them and the Amazon Web Services Region where they are created. They consist of lowercase letters, numbers, and hyphens.
|
1353
|
+
*/
|
1354
|
+
BackupVaultName?: NonEmptyString;
|
1355
|
+
/**
|
1356
|
+
* The unique ARN associated with the server-side encryption key. You can specify a key to encrypt your backups from services that support full Backup management. If you do not specify a key, Backup creates an KMS key for you by default.
|
1357
|
+
*/
|
1358
|
+
EncryptionKeyArn?: NonEmptyString;
|
1359
|
+
/**
|
1360
|
+
* The Amazon SNS event notifications for the specified backup vault.
|
1361
|
+
*/
|
1362
|
+
Notifications?: AwsBackupBackupVaultNotificationsDetails;
|
1363
|
+
/**
|
1364
|
+
* A resource-based policy that is used to manage access permissions on the target backup vault.
|
1365
|
+
*/
|
1366
|
+
AccessPolicy?: NonEmptyString;
|
1367
|
+
}
|
1368
|
+
export interface AwsBackupBackupVaultNotificationsDetails {
|
1369
|
+
/**
|
1370
|
+
* An array of events that indicate the status of jobs to back up resources to the backup vault. The following events are supported: BACKUP_JOB_STARTED | BACKUP_JOB_COMPLETED COPY_JOB_STARTED | COPY_JOB_SUCCESSFUL | COPY_JOB_FAILED RESTORE_JOB_STARTED | RESTORE_JOB_COMPLETED | RECOVERY_POINT_MODIFIED S3_BACKUP_OBJECT_FAILED | S3_RESTORE_OBJECT_FAILED
|
1371
|
+
*/
|
1372
|
+
BackupVaultEvents?: NonEmptyStringList;
|
1373
|
+
/**
|
1374
|
+
* An ARN that uniquely identifies the Amazon SNS topic for a backup vault’s events.
|
1375
|
+
*/
|
1376
|
+
SnsTopicArn?: NonEmptyString;
|
1377
|
+
}
|
1378
|
+
export interface AwsBackupRecoveryPointCalculatedLifecycleDetails {
|
1379
|
+
/**
|
1380
|
+
* Specifies the number of days after creation that a recovery point is deleted. Must be greater than 90 days plus MoveToColdStorageAfterDays.
|
1381
|
+
*/
|
1382
|
+
DeleteAt?: NonEmptyString;
|
1383
|
+
/**
|
1384
|
+
* Specifies the number of days after creation that a recovery point is moved to cold storage.
|
1385
|
+
*/
|
1386
|
+
MoveToColdStorageAt?: NonEmptyString;
|
1387
|
+
}
|
1388
|
+
export interface AwsBackupRecoveryPointCreatedByDetails {
|
1389
|
+
/**
|
1390
|
+
* An Amazon Resource Name (ARN) that uniquely identifies a backup plan.
|
1391
|
+
*/
|
1392
|
+
BackupPlanArn?: NonEmptyString;
|
1393
|
+
/**
|
1394
|
+
* Uniquely identifies a backup plan.
|
1395
|
+
*/
|
1396
|
+
BackupPlanId?: NonEmptyString;
|
1397
|
+
/**
|
1398
|
+
* Unique, randomly generated, Unicode, UTF-8 encoded strings that are at most 1,024 bytes long. Version IDs cannot be edited.
|
1399
|
+
*/
|
1400
|
+
BackupPlanVersion?: NonEmptyString;
|
1401
|
+
/**
|
1402
|
+
* Uniquely identifies a rule used to schedule the backup of a selection of resources.
|
1403
|
+
*/
|
1404
|
+
BackupRuleId?: NonEmptyString;
|
1405
|
+
}
|
1406
|
+
export interface AwsBackupRecoveryPointDetails {
|
1407
|
+
/**
|
1408
|
+
* The size, in bytes, of a backup.
|
1409
|
+
*/
|
1410
|
+
BackupSizeInBytes?: Long;
|
1411
|
+
/**
|
1412
|
+
* An Amazon Resource Name (ARN) that uniquely identifies a backup vault.
|
1413
|
+
*/
|
1414
|
+
BackupVaultArn?: NonEmptyString;
|
1415
|
+
/**
|
1416
|
+
* The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the Amazon Web Services account used to create them and the Amazon Web Services Region where they are created. They consist of lowercase letters, numbers, and hyphens.
|
1417
|
+
*/
|
1418
|
+
BackupVaultName?: NonEmptyString;
|
1419
|
+
/**
|
1420
|
+
* A CalculatedLifecycle object containing DeleteAt and MoveToColdStorageAt timestamps.
|
1421
|
+
*/
|
1422
|
+
CalculatedLifecycle?: AwsBackupRecoveryPointCalculatedLifecycleDetails;
|
1423
|
+
/**
|
1424
|
+
* The date and time that a job to create a recovery point is completed, in Unix format and UTC. The value of CompletionDate is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
|
1425
|
+
*/
|
1426
|
+
CompletionDate?: NonEmptyString;
|
1427
|
+
/**
|
1428
|
+
* Contains identifying information about the creation of a recovery point, including the BackupPlanArn, BackupPlanId, BackupPlanVersion, and BackupRuleId of the backup plan that is used to create it.
|
1429
|
+
*/
|
1430
|
+
CreatedBy?: AwsBackupRecoveryPointCreatedByDetails;
|
1431
|
+
/**
|
1432
|
+
* The date and time a recovery point is created, in Unix format and UTC. The value of CreationDate is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
|
1433
|
+
*/
|
1434
|
+
CreationDate?: NonEmptyString;
|
1435
|
+
/**
|
1436
|
+
* The ARN for the server-side encryption key that is used to protect your backups.
|
1437
|
+
*/
|
1438
|
+
EncryptionKeyArn?: NonEmptyString;
|
1439
|
+
/**
|
1440
|
+
* Specifies the IAM role ARN used to create the target recovery point
|
1441
|
+
*/
|
1442
|
+
IamRoleArn?: NonEmptyString;
|
1443
|
+
/**
|
1444
|
+
* A Boolean value that is returned as TRUE if the specified recovery point is encrypted, or FALSE if the recovery point is not encrypted.
|
1445
|
+
*/
|
1446
|
+
IsEncrypted?: Boolean;
|
1447
|
+
/**
|
1448
|
+
* The date and time that a recovery point was last restored, in Unix format and UTC. The value of LastRestoreTime is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
|
1449
|
+
*/
|
1450
|
+
LastRestoreTime?: NonEmptyString;
|
1451
|
+
/**
|
1452
|
+
* The lifecycle defines when a protected resource is transitioned to cold storage and when it expires. Backup transitions and expires backups automatically according to the lifecycle that you define
|
1453
|
+
*/
|
1454
|
+
Lifecycle?: AwsBackupRecoveryPointLifecycleDetails;
|
1455
|
+
/**
|
1456
|
+
* An ARN that uniquely identifies a recovery point.
|
1457
|
+
*/
|
1458
|
+
RecoveryPointArn?: NonEmptyString;
|
1459
|
+
/**
|
1460
|
+
* An ARN that uniquely identifies a resource. The format of the ARN depends on the resource type.
|
1461
|
+
*/
|
1462
|
+
ResourceArn?: NonEmptyString;
|
1463
|
+
/**
|
1464
|
+
* The type of Amazon Web Services resource saved as a recovery point, such as an Amazon EBS volume or an Amazon RDS database.
|
1465
|
+
*/
|
1466
|
+
ResourceType?: NonEmptyString;
|
1467
|
+
/**
|
1468
|
+
* The ARN for the backup vault where the recovery point was originally copied from. If the recovery point is restored to the same account, this value will be null.
|
1469
|
+
*/
|
1470
|
+
SourceBackupVaultArn?: NonEmptyString;
|
1471
|
+
/**
|
1472
|
+
* A status code specifying the state of the recovery point. Valid values are as follows: COMPLETED DELETING EXPIRED PARTIAL
|
1473
|
+
*/
|
1474
|
+
Status?: NonEmptyString;
|
1475
|
+
/**
|
1476
|
+
* A message explaining the reason of the recovery point deletion failure.
|
1477
|
+
*/
|
1478
|
+
StatusMessage?: NonEmptyString;
|
1479
|
+
/**
|
1480
|
+
* Specifies the storage class of the recovery point. Valid values are as follows: COLD DELETED WARM
|
1481
|
+
*/
|
1482
|
+
StorageClass?: NonEmptyString;
|
1483
|
+
}
|
1484
|
+
export interface AwsBackupRecoveryPointLifecycleDetails {
|
1485
|
+
/**
|
1486
|
+
* Specifies the number of days after creation that a recovery point is deleted. Must be greater than 90 days plus MoveToColdStorageAfterDays.
|
1487
|
+
*/
|
1488
|
+
DeleteAfterDays?: Long;
|
1489
|
+
/**
|
1490
|
+
* Specifies the number of days after creation that a recovery point is moved to cold storage.
|
1491
|
+
*/
|
1492
|
+
MoveToColdStorageAfterDays?: Long;
|
1493
|
+
}
|
1243
1494
|
export interface AwsCertificateManagerCertificateDetails {
|
1244
1495
|
/**
|
1245
1496
|
* The ARN of the private certificate authority (CA) that will be used to issue the certificate.
|
@@ -1395,7 +1646,7 @@ declare namespace SecurityHub {
|
|
1395
1646
|
*/
|
1396
1647
|
RenewalStatus?: NonEmptyString;
|
1397
1648
|
/**
|
1398
|
-
* The reason that a renewal request was unsuccessful. Valid values: NO_AVAILABLE_CONTACTS | ADDITIONAL_VERIFICATION_REQUIRED | DOMAIN_NOT_ALLOWED | INVALID_PUBLIC_DOMAIN | DOMAIN_VALIDATION_DENIED | CAA_ERROR | PCA_LIMIT_EXCEEDED | PCA_INVALID_ARN | PCA_INVALID_STATE | PCA_REQUEST_FAILED | PCA_NAME_CONSTRAINTS_VALIDATION | PCA_RESOURCE_NOT_FOUND | PCA_INVALID_ARGS | PCA_INVALID_DURATION | PCA_ACCESS_DENIED | SLR_NOT_FOUND | OTHER
|
1649
|
+
* The reason that a renewal request was unsuccessful. This attribute is used only when RenewalStatus is FAILED. Valid values: NO_AVAILABLE_CONTACTS | ADDITIONAL_VERIFICATION_REQUIRED | DOMAIN_NOT_ALLOWED | INVALID_PUBLIC_DOMAIN | DOMAIN_VALIDATION_DENIED | CAA_ERROR | PCA_LIMIT_EXCEEDED | PCA_INVALID_ARN | PCA_INVALID_STATE | PCA_REQUEST_FAILED | PCA_NAME_CONSTRAINTS_VALIDATION | PCA_RESOURCE_NOT_FOUND | PCA_INVALID_ARGS | PCA_INVALID_DURATION | PCA_ACCESS_DENIED | SLR_NOT_FOUND | OTHER
|
1399
1650
|
*/
|
1400
1651
|
RenewalStatusReason?: NonEmptyString;
|
1401
1652
|
/**
|
@@ -2200,7 +2451,7 @@ declare namespace SecurityHub {
|
|
2200
2451
|
*/
|
2201
2452
|
TableSizeBytes?: SizeBytes;
|
2202
2453
|
/**
|
2203
|
-
* The current status of the table.
|
2454
|
+
* The current status of the table. Valid values are as follows: ACTIVE ARCHIVED ARCHIVING CREATING DELETING INACCESSIBLE_ENCRYPTION_CREDENTIALS UPDATING
|
2204
2455
|
*/
|
2205
2456
|
TableStatus?: NonEmptyString;
|
2206
2457
|
}
|
@@ -2222,7 +2473,7 @@ declare namespace SecurityHub {
|
|
2222
2473
|
*/
|
2223
2474
|
IndexSizeBytes?: SizeBytes;
|
2224
2475
|
/**
|
2225
|
-
* The current status of the index.
|
2476
|
+
* The current status of the index. ACTIVE CREATING DELETING UPDATING
|
2226
2477
|
*/
|
2227
2478
|
IndexStatus?: NonEmptyString;
|
2228
2479
|
/**
|
@@ -2249,7 +2500,7 @@ declare namespace SecurityHub {
|
|
2249
2500
|
*/
|
2250
2501
|
AttributeName?: NonEmptyString;
|
2251
2502
|
/**
|
2252
|
-
* The type of key used for the key schema attribute.
|
2503
|
+
* The type of key used for the key schema attribute. Valid values are HASH or RANGE.
|
2253
2504
|
*/
|
2254
2505
|
KeyType?: NonEmptyString;
|
2255
2506
|
}
|
@@ -2279,7 +2530,7 @@ declare namespace SecurityHub {
|
|
2279
2530
|
*/
|
2280
2531
|
NonKeyAttributes?: StringList;
|
2281
2532
|
/**
|
2282
|
-
* The types of attributes that are projected into the index.
|
2533
|
+
* The types of attributes that are projected into the index. Valid values are as follows: ALL INCLUDE KEYS_ONLY
|
2283
2534
|
*/
|
2284
2535
|
ProjectionType?: NonEmptyString;
|
2285
2536
|
}
|
@@ -2329,7 +2580,7 @@ declare namespace SecurityHub {
|
|
2329
2580
|
*/
|
2330
2581
|
RegionName?: NonEmptyString;
|
2331
2582
|
/**
|
2332
|
-
* The current status of the replica.
|
2583
|
+
* The current status of the replica. Valid values are as follows: ACTIVE CREATING CREATION_FAILED DELETING UPDATING
|
2333
2584
|
*/
|
2334
2585
|
ReplicaStatus?: NonEmptyString;
|
2335
2586
|
/**
|
@@ -2824,7 +3075,7 @@ declare namespace SecurityHub {
|
|
2824
3075
|
*/
|
2825
3076
|
OwnerId?: NonEmptyString;
|
2826
3077
|
/**
|
2827
|
-
* The current state of the subnet.
|
3078
|
+
* The current state of the subnet. Valid values are available or pending.
|
2828
3079
|
*/
|
2829
3080
|
State?: NonEmptyString;
|
2830
3081
|
/**
|
@@ -2908,7 +3159,7 @@ declare namespace SecurityHub {
|
|
2908
3159
|
*/
|
2909
3160
|
InstanceId?: NonEmptyString;
|
2910
3161
|
/**
|
2911
|
-
* The attachment state of the volume.
|
3162
|
+
* The attachment state of the volume. Valid values are as follows: attaching attached busy detaching detached
|
2912
3163
|
*/
|
2913
3164
|
Status?: NonEmptyString;
|
2914
3165
|
}
|
@@ -2935,7 +3186,7 @@ declare namespace SecurityHub {
|
|
2935
3186
|
*/
|
2936
3187
|
SnapshotId?: NonEmptyString;
|
2937
3188
|
/**
|
2938
|
-
* The volume state.
|
3189
|
+
* The volume state. Valid values are as follows: available creating deleted deleting error in-use
|
2939
3190
|
*/
|
2940
3191
|
Status?: NonEmptyString;
|
2941
3192
|
/**
|
@@ -2973,7 +3224,7 @@ declare namespace SecurityHub {
|
|
2973
3224
|
*/
|
2974
3225
|
DhcpOptionsId?: NonEmptyString;
|
2975
3226
|
/**
|
2976
|
-
* The current state of the VPC.
|
3227
|
+
* The current state of the VPC. Valid values are available or pending.
|
2977
3228
|
*/
|
2978
3229
|
State?: NonEmptyString;
|
2979
3230
|
}
|
@@ -3015,7 +3266,7 @@ declare namespace SecurityHub {
|
|
3015
3266
|
*/
|
3016
3267
|
ServiceName?: NonEmptyString;
|
3017
3268
|
/**
|
3018
|
-
* The current state of the service.
|
3269
|
+
* The current state of the service. Valid values are as follows: Available Deleted Deleting Failed Pending
|
3019
3270
|
*/
|
3020
3271
|
ServiceState?: NonEmptyString;
|
3021
3272
|
/**
|
@@ -3098,7 +3349,7 @@ declare namespace SecurityHub {
|
|
3098
3349
|
*/
|
3099
3350
|
VpnConnectionId?: NonEmptyString;
|
3100
3351
|
/**
|
3101
|
-
* The current state of the VPN connection.
|
3352
|
+
* The current state of the VPN connection. Valid values are as follows: available deleted deleting pending
|
3102
3353
|
*/
|
3103
3354
|
State?: NonEmptyString;
|
3104
3355
|
/**
|
@@ -3244,7 +3495,7 @@ declare namespace SecurityHub {
|
|
3244
3495
|
*/
|
3245
3496
|
OutsideIpAddress?: NonEmptyString;
|
3246
3497
|
/**
|
3247
|
-
* The status of the VPN tunnel.
|
3498
|
+
* The status of the VPN tunnel. Valid values are DOWN or UP.
|
3248
3499
|
*/
|
3249
3500
|
Status?: NonEmptyString;
|
3250
3501
|
/**
|
@@ -3263,7 +3514,7 @@ declare namespace SecurityHub {
|
|
3263
3514
|
*/
|
3264
3515
|
RepositoryName?: NonEmptyString;
|
3265
3516
|
/**
|
3266
|
-
* The architecture of the image.
|
3517
|
+
* The architecture of the image. Valid values are as follows: arm64 i386 x86_64
|
3267
3518
|
*/
|
3268
3519
|
Architecture?: NonEmptyString;
|
3269
3520
|
/**
|
@@ -3289,7 +3540,7 @@ declare namespace SecurityHub {
|
|
3289
3540
|
*/
|
3290
3541
|
ImageScanningConfiguration?: AwsEcrRepositoryImageScanningConfigurationDetails;
|
3291
3542
|
/**
|
3292
|
-
* The tag mutability setting for the repository.
|
3543
|
+
* The tag mutability setting for the repository. Valid values are IMMUTABLE or MUTABLE.
|
3293
3544
|
*/
|
3294
3545
|
ImageTagMutability?: NonEmptyString;
|
3295
3546
|
/**
|
@@ -3323,11 +3574,11 @@ declare namespace SecurityHub {
|
|
3323
3574
|
}
|
3324
3575
|
export interface AwsEcsClusterClusterSettingsDetails {
|
3325
3576
|
/**
|
3326
|
-
* The name of the setting.
|
3577
|
+
* The name of the setting. The valid value is containerInsights.
|
3327
3578
|
*/
|
3328
3579
|
Name?: NonEmptyString;
|
3329
3580
|
/**
|
3330
|
-
* The value of the setting.
|
3581
|
+
* The value of the setting. Valid values are disabled or enabled.
|
3331
3582
|
*/
|
3332
3583
|
Value?: NonEmptyString;
|
3333
3584
|
}
|
@@ -3667,7 +3918,7 @@ declare namespace SecurityHub {
|
|
3667
3918
|
export type AwsEcsServiceServiceRegistriesList = AwsEcsServiceServiceRegistriesDetails[];
|
3668
3919
|
export interface AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails {
|
3669
3920
|
/**
|
3670
|
-
* The dependency condition of the dependent container. Indicates the required status of the dependent container before the current container can start.
|
3921
|
+
* The dependency condition of the dependent container. Indicates the required status of the dependent container before the current container can start. Valid values are as follows: COMPLETE HEALTHY SUCCESS START
|
3671
3922
|
*/
|
3672
3923
|
Condition?: NonEmptyString;
|
3673
3924
|
/**
|
@@ -3846,7 +4097,7 @@ declare namespace SecurityHub {
|
|
3846
4097
|
}
|
3847
4098
|
export interface AwsEcsTaskDefinitionContainerDefinitionsEnvironmentFilesDetails {
|
3848
4099
|
/**
|
3849
|
-
* The type of environment file.
|
4100
|
+
* The type of environment file. The valid value is s3.
|
3850
4101
|
*/
|
3851
4102
|
Type?: NonEmptyString;
|
3852
4103
|
/**
|
@@ -3873,7 +4124,7 @@ declare namespace SecurityHub {
|
|
3873
4124
|
*/
|
3874
4125
|
Options?: FieldMap;
|
3875
4126
|
/**
|
3876
|
-
* The log router to use.
|
4127
|
+
* The log router to use. Valid values are fluentbit or fluentd.
|
3877
4128
|
*/
|
3878
4129
|
Type?: NonEmptyString;
|
3879
4130
|
}
|
@@ -3901,11 +4152,11 @@ declare namespace SecurityHub {
|
|
3901
4152
|
}
|
3902
4153
|
export interface AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersCapabilitiesDetails {
|
3903
4154
|
/**
|
3904
|
-
* The Linux capabilities for the container that are added to the default configuration provided by Docker.
|
4155
|
+
* The Linux capabilities for the container that are added to the default configuration provided by Docker. Valid values are as follows: Valid values: "ALL" | "AUDIT_CONTROL" | "AUDIT_WRITE" | "BLOCK_SUSPEND" | "CHOWN" | "DAC_OVERRIDE" | "DAC_READ_SEARCH" | "FOWNER" | "FSETID" | "IPC_LOCK" | "IPC_OWNER" | "KILL" | "LEASE" | "LINUX_IMMUTABLE" | "MAC_ADMIN" | "MAC_OVERRIDE" | "MKNOD" | "NET_ADMIN" | "NET_BIND_SERVICE" | "NET_BROADCAST" | "NET_RAW" | "SETFCAP" | "SETGID" | "SETPCAP" | "SETUID" | "SYS_ADMIN" | "SYS_BOOT" | "SYS_CHROOT" | "SYS_MODULE" | "SYS_NICE" | "SYS_PACCT" | "SYS_PTRACE" | "SYS_RAWIO" | "SYS_RESOURCE" | "SYS_TIME" | "SYS_TTY_CONFIG" | "SYSLOG" | "WAKE_ALARM"
|
3905
4156
|
*/
|
3906
4157
|
Add?: NonEmptyStringList;
|
3907
4158
|
/**
|
3908
|
-
* The Linux capabilities for the container that are dropped from the default configuration provided by Docker.
|
4159
|
+
* The Linux capabilities for the container that are dropped from the default configuration provided by Docker. Valid values: "ALL" | "AUDIT_CONTROL" | "AUDIT_WRITE" | "BLOCK_SUSPEND" | "CHOWN" | "DAC_OVERRIDE" | "DAC_READ_SEARCH" | "FOWNER" | "FSETID" | "IPC_LOCK" | "IPC_OWNER" | "KILL" | "LEASE" | "LINUX_IMMUTABLE" | "MAC_ADMIN" | "MAC_OVERRIDE" | "MKNOD" | "NET_ADMIN" | "NET_BIND_SERVICE" | "NET_BROADCAST" | "NET_RAW" | "SETFCAP" | "SETGID" | "SETPCAP" | "SETUID" | "SYS_ADMIN" | "SYS_BOOT" | "SYS_CHROOT" | "SYS_MODULE" | "SYS_NICE" | "SYS_PACCT" | "SYS_PTRACE" | "SYS_RAWIO" | "SYS_RESOURCE" | "SYS_TIME" | "SYS_TTY_CONFIG" | "SYSLOG" | "WAKE_ALARM"
|
3909
4160
|
*/
|
3910
4161
|
Drop?: NonEmptyStringList;
|
3911
4162
|
}
|
@@ -3960,7 +4211,7 @@ declare namespace SecurityHub {
|
|
3960
4211
|
*/
|
3961
4212
|
ContainerPath?: NonEmptyString;
|
3962
4213
|
/**
|
3963
|
-
* The list of tmpfs volume mount options.
|
4214
|
+
* The list of tmpfs volume mount options. Valid values: "defaults" | "ro" | "rw" | "suid" | "nosuid" | "dev" | "nodev" | "exec" | "noexec" | "sync" | "async" | "dirsync" | "remount" | "mand" | "nomand" | "atime" | "noatime" | "diratime" | "nodiratime" | "bind" | "rbind" | "unbindable" | "runbindable" | "private" | "rprivate" | "shared" | "rshared" | "slave" | "rslave" | "relatime" | "norelatime" | "strictatime" | "nostrictatime" | "mode" | "uid" | "gid" | "nr_inodes" | "nr_blocks" | "mpol"
|
3964
4215
|
*/
|
3965
4216
|
MountOptions?: NonEmptyStringList;
|
3966
4217
|
/**
|
@@ -3972,7 +4223,7 @@ declare namespace SecurityHub {
|
|
3972
4223
|
export type AwsEcsTaskDefinitionContainerDefinitionsList = AwsEcsTaskDefinitionContainerDefinitionsDetails[];
|
3973
4224
|
export interface AwsEcsTaskDefinitionContainerDefinitionsLogConfigurationDetails {
|
3974
4225
|
/**
|
3975
|
-
* The log driver to use for the container.
|
4226
|
+
* The log driver to use for the container. Valid values on Fargate are as follows: awsfirelens awslogs splunk Valid values on Amazon EC2 are as follows: awsfirelens awslogs fluentd gelf journald json-file logentries splunk syslog
|
3976
4227
|
*/
|
3977
4228
|
LogDriver?: NonEmptyString;
|
3978
4229
|
/**
|
@@ -4033,7 +4284,7 @@ declare namespace SecurityHub {
|
|
4033
4284
|
}
|
4034
4285
|
export interface AwsEcsTaskDefinitionContainerDefinitionsResourceRequirementsDetails {
|
4035
4286
|
/**
|
4036
|
-
* The type of resource to assign to a container.
|
4287
|
+
* The type of resource to assign to a container. Valid values are GPU or InferenceAccelerator.
|
4037
4288
|
*/
|
4038
4289
|
Type?: NonEmptyString;
|
4039
4290
|
/**
|
@@ -4070,7 +4321,7 @@ declare namespace SecurityHub {
|
|
4070
4321
|
*/
|
4071
4322
|
HardLimit?: Integer;
|
4072
4323
|
/**
|
4073
|
-
* The type of the ulimit.
|
4324
|
+
* The type of the ulimit. Valid values are as follows: core cpu data fsize locks memlock msgqueue nice nofile nproc rss rtprio rttime sigpending stack
|
4074
4325
|
*/
|
4075
4326
|
Name?: NonEmptyString;
|
4076
4327
|
/**
|
@@ -4096,7 +4347,7 @@ declare namespace SecurityHub {
|
|
4096
4347
|
*/
|
4097
4348
|
ContainerDefinitions?: AwsEcsTaskDefinitionContainerDefinitionsList;
|
4098
4349
|
/**
|
4099
|
-
* The number of CPU units used by the task.
|
4350
|
+
* The number of CPU units used by the task.Valid values are as follows: 256 (.25 vCPU) 512 (.5 vCPU) 1024 (1 vCPU) 2048 (2 vCPU) 4096 (4 vCPU)
|
4100
4351
|
*/
|
4101
4352
|
Cpu?: NonEmptyString;
|
4102
4353
|
/**
|
@@ -4112,19 +4363,19 @@ declare namespace SecurityHub {
|
|
4112
4363
|
*/
|
4113
4364
|
InferenceAccelerators?: AwsEcsTaskDefinitionInferenceAcceleratorsList;
|
4114
4365
|
/**
|
4115
|
-
* The IPC resource namespace to use for the containers in the task.
|
4366
|
+
* The inter-process communication (IPC) resource namespace to use for the containers in the task. Valid values are as follows: host none task
|
4116
4367
|
*/
|
4117
4368
|
IpcMode?: NonEmptyString;
|
4118
4369
|
/**
|
4119
|
-
* The amount (in MiB) of memory used by the task.
|
4370
|
+
* The amount (in MiB) of memory used by the task. For tasks that are hosted on Amazon EC2, you can provide a task-level memory value or a container-level memory value. For tasks that are hosted on Fargate, you must use one of the specified values in the Amazon Elastic Container Service Developer Guide , which determines your range of supported values for the Cpu and Memory parameters.
|
4120
4371
|
*/
|
4121
4372
|
Memory?: NonEmptyString;
|
4122
4373
|
/**
|
4123
|
-
* The Docker networking mode to use for the containers in the task.
|
4374
|
+
* The Docker networking mode to use for the containers in the task. Valid values are as follows: awsvpc bridge host none
|
4124
4375
|
*/
|
4125
4376
|
NetworkMode?: NonEmptyString;
|
4126
4377
|
/**
|
4127
|
-
* The process namespace to use for the containers in the task.
|
4378
|
+
* The process namespace to use for the containers in the task. Valid values are host or task.
|
4128
4379
|
*/
|
4129
4380
|
PidMode?: NonEmptyString;
|
4130
4381
|
/**
|
@@ -4231,7 +4482,7 @@ declare namespace SecurityHub {
|
|
4231
4482
|
*/
|
4232
4483
|
Labels?: FieldMap;
|
4233
4484
|
/**
|
4234
|
-
* The scope for the Docker volume that determines its lifecycle. Docker volumes that are scoped to a task are provisioned automatically when the task starts and destroyed when the task stops. Docker volumes that are shared persist after the task stops.
|
4485
|
+
* The scope for the Docker volume that determines its lifecycle. Docker volumes that are scoped to a task are provisioned automatically when the task starts and destroyed when the task stops. Docker volumes that are shared persist after the task stops. Valid values are shared or task.
|
4235
4486
|
*/
|
4236
4487
|
Scope?: NonEmptyString;
|
4237
4488
|
}
|
@@ -4403,7 +4654,7 @@ declare namespace SecurityHub {
|
|
4403
4654
|
*/
|
4404
4655
|
CertificateAuthorityData?: NonEmptyString;
|
4405
4656
|
/**
|
4406
|
-
* The status of the cluster.
|
4657
|
+
* The status of the cluster. Valid values are as follows: ACTIVE CREATING DELETING FAILED PENDING UPDATING
|
4407
4658
|
*/
|
4408
4659
|
ClusterStatus?: NonEmptyString;
|
4409
4660
|
/**
|
@@ -4437,7 +4688,7 @@ declare namespace SecurityHub {
|
|
4437
4688
|
*/
|
4438
4689
|
Enabled?: Boolean;
|
4439
4690
|
/**
|
4440
|
-
* A list of logging types.
|
4691
|
+
* A list of logging types. Valid values are as follows: api audit authenticator controllerManager scheduler
|
4441
4692
|
*/
|
4442
4693
|
Types?: NonEmptyStringList;
|
4443
4694
|
}
|
@@ -4512,7 +4763,7 @@ declare namespace SecurityHub {
|
|
4512
4763
|
*/
|
4513
4764
|
SolutionStackName?: NonEmptyString;
|
4514
4765
|
/**
|
4515
|
-
* The current operational status of the environment.
|
4766
|
+
* The current operational status of the environment. Valid values are as follows: Aborting Launching LinkingFrom LinkingTo Ready Terminated Terminating Updating
|
4516
4767
|
*/
|
4517
4768
|
Status?: NonEmptyString;
|
4518
4769
|
/**
|
@@ -4556,11 +4807,11 @@ declare namespace SecurityHub {
|
|
4556
4807
|
export type AwsElasticBeanstalkEnvironmentOptionSettings = AwsElasticBeanstalkEnvironmentOptionSetting[];
|
4557
4808
|
export interface AwsElasticBeanstalkEnvironmentTier {
|
4558
4809
|
/**
|
4559
|
-
* The name of the environment tier.
|
4810
|
+
* The name of the environment tier. Valid values are WebServer or Worker.
|
4560
4811
|
*/
|
4561
4812
|
Name?: NonEmptyString;
|
4562
4813
|
/**
|
4563
|
-
* The type of environment tier.
|
4814
|
+
* The type of environment tier. Valid values are Standard or SQS/HTTP.
|
4564
4815
|
*/
|
4565
4816
|
Type?: NonEmptyString;
|
4566
4817
|
/**
|
@@ -4642,7 +4893,7 @@ declare namespace SecurityHub {
|
|
4642
4893
|
*/
|
4643
4894
|
DedicatedMasterEnabled?: Boolean;
|
4644
4895
|
/**
|
4645
|
-
* The hardware configuration of the computer that hosts the dedicated master node.
|
4896
|
+
* The hardware configuration of the computer that hosts the dedicated master node. A sample value is m3.medium.elasticsearch. If this attribute is specified, then DedicatedMasterEnabled must be true. For a list of valid values, see Supported instance types in Amazon OpenSearch Service in the Amazon OpenSearch Service Developer Guide.
|
4646
4897
|
*/
|
4647
4898
|
DedicatedMasterType?: NonEmptyString;
|
4648
4899
|
/**
|
@@ -4650,7 +4901,7 @@ declare namespace SecurityHub {
|
|
4650
4901
|
*/
|
4651
4902
|
InstanceCount?: Integer;
|
4652
4903
|
/**
|
4653
|
-
* The instance type for your data nodes. For example, m3.medium.elasticsearch.
|
4904
|
+
* The instance type for your data nodes. For example, m3.medium.elasticsearch. For a list of valid values, see Supported instance types in Amazon OpenSearch Service in the Amazon OpenSearch Service Developer Guide.
|
4654
4905
|
*/
|
4655
4906
|
InstanceType?: NonEmptyString;
|
4656
4907
|
/**
|
@@ -4731,7 +4982,7 @@ declare namespace SecurityHub {
|
|
4731
4982
|
*/
|
4732
4983
|
UpdateAvailable?: Boolean;
|
4733
4984
|
/**
|
4734
|
-
* The status of the service software update.
|
4985
|
+
* The status of the service software update. Valid values are as follows: COMPLETED ELIGIBLE IN_PROGRESS NOT_ELIGIBLE PENDING_UPDATE
|
4735
4986
|
*/
|
4736
4987
|
UpdateStatus?: NonEmptyString;
|
4737
4988
|
}
|
@@ -5460,7 +5711,7 @@ declare namespace SecurityHub {
|
|
5460
5711
|
*/
|
5461
5712
|
KeyManager?: NonEmptyString;
|
5462
5713
|
/**
|
5463
|
-
* The state of the KMS key.
|
5714
|
+
* The state of the KMS key. Valid values are as follows: Disabled Enabled PendingDeletion PendingImport Unavailable
|
5464
5715
|
*/
|
5465
5716
|
KeyState?: NonEmptyString;
|
5466
5717
|
/**
|
@@ -5792,7 +6043,7 @@ declare namespace SecurityHub {
|
|
5792
6043
|
*/
|
5793
6044
|
DedicatedMasterCount?: Integer;
|
5794
6045
|
/**
|
5795
|
-
* The instance type for your data nodes.
|
6046
|
+
* The instance type for your data nodes. For a list of valid values, see Supported instance types in Amazon OpenSearch Service in the Amazon OpenSearch Service Developer Guide.
|
5796
6047
|
*/
|
5797
6048
|
InstanceType?: NonEmptyString;
|
5798
6049
|
/**
|
@@ -5810,7 +6061,7 @@ declare namespace SecurityHub {
|
|
5810
6061
|
}
|
5811
6062
|
export interface AwsOpenSearchServiceDomainClusterConfigZoneAwarenessConfigDetails {
|
5812
6063
|
/**
|
5813
|
-
* The number of Availability Zones that the domain uses. Valid values are 2
|
6064
|
+
* The number of Availability Zones that the domain uses. Valid values are 2 or 3. The default is 2.
|
5814
6065
|
*/
|
5815
6066
|
AvailabilityZoneCount?: Integer;
|
5816
6067
|
}
|
@@ -5978,7 +6229,7 @@ declare namespace SecurityHub {
|
|
5978
6229
|
*/
|
5979
6230
|
UpdateAvailable?: Boolean;
|
5980
6231
|
/**
|
5981
|
-
* The status of the service software update.
|
6232
|
+
* The status of the service software update. Valid values are as follows: COMPLETED ELIGIBLE IN_PROGRESS NOT_ELIGIBLE PENDING_UPDATE
|
5982
6233
|
*/
|
5983
6234
|
UpdateStatus?: NonEmptyString;
|
5984
6235
|
/**
|
@@ -6002,7 +6253,7 @@ declare namespace SecurityHub {
|
|
6002
6253
|
*/
|
6003
6254
|
RoleArn?: NonEmptyString;
|
6004
6255
|
/**
|
6005
|
-
* The status of the association between the IAM role and the DB cluster.
|
6256
|
+
* The status of the association between the IAM role and the DB cluster. Valid values are as follows: ACTIVE INVALID PENDING
|
6006
6257
|
*/
|
6007
6258
|
Status?: NonEmptyString;
|
6008
6259
|
}
|
@@ -6045,7 +6296,7 @@ declare namespace SecurityHub {
|
|
6045
6296
|
*/
|
6046
6297
|
MultiAz?: Boolean;
|
6047
6298
|
/**
|
6048
|
-
* The name of the database engine to use for this DB cluster.
|
6299
|
+
* The name of the database engine to use for this DB cluster. Valid values are as follows: aurora aurora-mysql aurora-postgresql
|
6049
6300
|
*/
|
6050
6301
|
Engine?: NonEmptyString;
|
6051
6302
|
/**
|
@@ -6105,7 +6356,7 @@ declare namespace SecurityHub {
|
|
6105
6356
|
*/
|
6106
6357
|
EnabledCloudWatchLogsExports?: StringList;
|
6107
6358
|
/**
|
6108
|
-
* The database engine mode of the DB cluster.
|
6359
|
+
* The database engine mode of the DB cluster.Valid values are as follows: global multimaster parallelquery provisioned serverless
|
6109
6360
|
*/
|
6110
6361
|
EngineMode?: NonEmptyString;
|
6111
6362
|
/**
|
@@ -6117,7 +6368,7 @@ declare namespace SecurityHub {
|
|
6117
6368
|
*/
|
6118
6369
|
HttpEndpointEnabled?: Boolean;
|
6119
6370
|
/**
|
6120
|
-
* The status of the database activity stream.
|
6371
|
+
* The status of the database activity stream. Valid values are as follows: started starting stopped stopping
|
6121
6372
|
*/
|
6122
6373
|
ActivityStreamStatus?: NonEmptyString;
|
6123
6374
|
/**
|
@@ -6633,7 +6884,7 @@ declare namespace SecurityHub {
|
|
6633
6884
|
}
|
6634
6885
|
export interface AwsRdsDbProcessorFeature {
|
6635
6886
|
/**
|
6636
|
-
* The name of the processor feature.
|
6887
|
+
* The name of the processor feature. Valid values are coreCount or threadsPerCore.
|
6637
6888
|
*/
|
6638
6889
|
Name?: NonEmptyString;
|
6639
6890
|
/**
|
@@ -6716,7 +6967,7 @@ declare namespace SecurityHub {
|
|
6716
6967
|
*/
|
6717
6968
|
SnapshotCreateTime?: NonEmptyString;
|
6718
6969
|
/**
|
6719
|
-
* The name of the database engine to use for this DB instance.
|
6970
|
+
* The name of the database engine to use for this DB instance. Valid values are as follows: aurora aurora-mysql aurora-postgresql c mariadb mysql oracle-ee oracle-se oracle-se1 oracle-se2 sqlserver-ee sqlserver-ex sqlserver-se sqlserver-web
|
6720
6971
|
*/
|
6721
6972
|
Engine?: NonEmptyString;
|
6722
6973
|
/**
|
@@ -6780,7 +7031,7 @@ declare namespace SecurityHub {
|
|
6780
7031
|
*/
|
6781
7032
|
SourceDbSnapshotIdentifier?: NonEmptyString;
|
6782
7033
|
/**
|
6783
|
-
* The storage type associated with the DB snapshot.
|
7034
|
+
* The storage type associated with the DB snapshot. Valid values are as follows: gp2 io1 standard
|
6784
7035
|
*/
|
6785
7036
|
StorageType?: NonEmptyString;
|
6786
7037
|
/**
|
@@ -7457,7 +7708,7 @@ declare namespace SecurityHub {
|
|
7457
7708
|
*/
|
7458
7709
|
Tag?: AwsS3BucketBucketLifecycleConfigurationRulesFilterPredicateTagDetails;
|
7459
7710
|
/**
|
7460
|
-
* Whether to use AND or OR to join the operands.
|
7711
|
+
* Whether to use AND or OR to join the operands. Valid values are LifecycleAndOperator or LifecycleOrOperator.
|
7461
7712
|
*/
|
7462
7713
|
Type?: NonEmptyString;
|
7463
7714
|
}
|
@@ -7471,7 +7722,7 @@ declare namespace SecurityHub {
|
|
7471
7722
|
*/
|
7472
7723
|
Tag?: AwsS3BucketBucketLifecycleConfigurationRulesFilterPredicateOperandsTagDetails;
|
7473
7724
|
/**
|
7474
|
-
* The type of filter value.
|
7725
|
+
* The type of filter value. Valid values are LifecyclePrefixPredicate or LifecycleTagPredicate.
|
7475
7726
|
*/
|
7476
7727
|
Type?: NonEmptyString;
|
7477
7728
|
}
|
@@ -7518,7 +7769,7 @@ declare namespace SecurityHub {
|
|
7518
7769
|
*/
|
7519
7770
|
Days?: Integer;
|
7520
7771
|
/**
|
7521
|
-
* The storage class to transition the object to.
|
7772
|
+
* The storage class to transition the object to. Valid values are as follows: DEEP_ARCHIVE GLACIER INTELLIGENT_TIERING ONEZONE_IA STANDARD_IA
|
7522
7773
|
*/
|
7523
7774
|
StorageClass?: NonEmptyString;
|
7524
7775
|
}
|
@@ -7529,7 +7780,7 @@ declare namespace SecurityHub {
|
|
7529
7780
|
*/
|
7530
7781
|
IsMfaDeleteEnabled?: Boolean;
|
7531
7782
|
/**
|
7532
|
-
* The versioning status of the S3 bucket.
|
7783
|
+
* The versioning status of the S3 bucket. Valid values are Enabled or Suspended.
|
7533
7784
|
*/
|
7534
7785
|
Status?: NonEmptyString;
|
7535
7786
|
}
|
@@ -7613,7 +7864,7 @@ declare namespace SecurityHub {
|
|
7613
7864
|
*/
|
7614
7865
|
Destination?: NonEmptyString;
|
7615
7866
|
/**
|
7616
|
-
* Indicates the type of notification. Notifications can be generated using Lambda functions, Amazon SQS queues or Amazon SNS topics
|
7867
|
+
* Indicates the type of notification. Notifications can be generated using Lambda functions, Amazon SQS queues, or Amazon SNS topics, with corresponding valid values as follows: LambdaConfiguration QueueConfiguration TopicConfiguration
|
7617
7868
|
*/
|
7618
7869
|
Type?: NonEmptyString;
|
7619
7870
|
}
|
@@ -7645,7 +7896,7 @@ declare namespace SecurityHub {
|
|
7645
7896
|
export type AwsS3BucketNotificationConfigurationS3KeyFilterRules = AwsS3BucketNotificationConfigurationS3KeyFilterRule[];
|
7646
7897
|
export interface AwsS3BucketServerSideEncryptionByDefault {
|
7647
7898
|
/**
|
7648
|
-
* Server-side encryption algorithm to use for the default encryption.
|
7899
|
+
* Server-side encryption algorithm to use for the default encryption. Valid values are aws: kms or AES256.
|
7649
7900
|
*/
|
7650
7901
|
SSEAlgorithm?: NonEmptyString;
|
7651
7902
|
/**
|
@@ -7690,7 +7941,7 @@ declare namespace SecurityHub {
|
|
7690
7941
|
*/
|
7691
7942
|
Hostname?: NonEmptyString;
|
7692
7943
|
/**
|
7693
|
-
* The protocol to use when redirecting requests. By default, uses the same protocol as the original request.
|
7944
|
+
* The protocol to use when redirecting requests. By default, this field uses the same protocol as the original request. Valid values are http or https.
|
7694
7945
|
*/
|
7695
7946
|
Protocol?: NonEmptyString;
|
7696
7947
|
}
|
@@ -8440,7 +8691,7 @@ declare namespace SecurityHub {
|
|
8440
8691
|
}
|
8441
8692
|
export interface AwsSsmComplianceSummary {
|
8442
8693
|
/**
|
8443
|
-
* The current patch compliance status.
|
8694
|
+
* The current patch compliance status. Valid values are as follows: COMPLIANT NON_COMPLIANT UNSPECIFIED_DATA
|
8444
8695
|
*/
|
8445
8696
|
Status?: NonEmptyString;
|
8446
8697
|
/**
|
@@ -8496,7 +8747,7 @@ declare namespace SecurityHub {
|
|
8496
8747
|
*/
|
8497
8748
|
PatchBaselineId?: NonEmptyString;
|
8498
8749
|
/**
|
8499
|
-
* The highest severity for the patches.
|
8750
|
+
* The highest severity for the patches. Valid values are as follows: CRITICAL HIGH MEDIUM LOW INFORMATIONAL UNSPECIFIED
|
8500
8751
|
*/
|
8501
8752
|
OverallSeverity?: NonEmptyString;
|
8502
8753
|
/**
|
@@ -8560,7 +8811,7 @@ declare namespace SecurityHub {
|
|
8560
8811
|
*/
|
8561
8812
|
Negated?: Boolean;
|
8562
8813
|
/**
|
8563
|
-
* The type of predicate.
|
8814
|
+
* The type of predicate. Valid values are as follows: ByteMatch GeoMatch IPMatch RegexMatch SizeConstraint SqlInjectionMatch XssMatch
|
8564
8815
|
*/
|
8565
8816
|
Type?: NonEmptyString;
|
8566
8817
|
}
|
@@ -8601,7 +8852,7 @@ declare namespace SecurityHub {
|
|
8601
8852
|
*/
|
8602
8853
|
Negated?: Boolean;
|
8603
8854
|
/**
|
8604
|
-
* The type of predicate.
|
8855
|
+
* The type of predicate. Valid values are as follows: ByteMatch GeoMatch IPMatch RegexMatch SizeConstraint SqlInjectionMatch XssMatch
|
8605
8856
|
*/
|
8606
8857
|
Type?: NonEmptyString;
|
8607
8858
|
}
|
@@ -8866,11 +9117,11 @@ declare namespace SecurityHub {
|
|
8866
9117
|
*/
|
8867
9118
|
KeyId?: NonEmptyString;
|
8868
9119
|
/**
|
8869
|
-
* The current status of the encryption configuration. When Status is UPDATING, X-Ray might use both the old and new encryption.
|
9120
|
+
* The current status of the encryption configuration. Valid values are ACTIVE or UPDATING. When Status is equal to UPDATING, X-Ray might use both the old and new encryption.
|
8870
9121
|
*/
|
8871
9122
|
Status?: NonEmptyString;
|
8872
9123
|
/**
|
8873
|
-
* The type of encryption. KMS indicates that the encryption uses KMS keys. NONE indicates
|
9124
|
+
* The type of encryption. KMS indicates that the encryption uses KMS keys. NONE indicates the default encryption.
|
8874
9125
|
*/
|
8875
9126
|
Type?: NonEmptyString;
|
8876
9127
|
}
|
@@ -8974,7 +9225,7 @@ declare namespace SecurityHub {
|
|
8974
9225
|
*/
|
8975
9226
|
FindingIdentifier: AwsSecurityFindingIdentifier;
|
8976
9227
|
/**
|
8977
|
-
* The code associated with the error. Possible values are: ConcurrentUpdateError - Another
|
9228
|
+
* The code associated with the error. Possible values are: ConcurrentUpdateError - Another request attempted to update the finding while this request was being processed. This error may also occur if you call BatchUpdateFindings and BatchImportFindings at the same time. DuplicatedFindingIdentifier - The request included two or more findings with the same FindingIdentifier. FindingNotFound - The FindingIdentifier included in the request did not match an existing finding. FindingSizeExceeded - The finding size was greater than the permissible value of 240 KB. InternalFailure - An internal service failure occurred when updating the finding. InvalidInput - The finding update contained an invalid value that did not satisfy the Amazon Web Services Security Finding Format syntax.
|
8978
9229
|
*/
|
8979
9230
|
ErrorCode: NonEmptyString;
|
8980
9231
|
/**
|
@@ -9980,7 +10231,7 @@ declare namespace SecurityHub {
|
|
9980
10231
|
*/
|
9981
10232
|
Ipv6CidrBlock?: NonEmptyString;
|
9982
10233
|
/**
|
9983
|
-
* Information about the state of the CIDR block.
|
10234
|
+
* Information about the state of the CIDR block. Valid values are as follows: associating associated disassociating disassociated failed failing
|
9984
10235
|
*/
|
9985
10236
|
CidrBlockState?: NonEmptyString;
|
9986
10237
|
}
|
@@ -10942,6 +11193,18 @@ declare namespace SecurityHub {
|
|
10942
11193
|
* Details about a task in a cluster.
|
10943
11194
|
*/
|
10944
11195
|
AwsEcsTask?: AwsEcsTaskDetails;
|
11196
|
+
/**
|
11197
|
+
* Provides details about an Backup backup vault.
|
11198
|
+
*/
|
11199
|
+
AwsBackupBackupVault?: AwsBackupBackupVaultDetails;
|
11200
|
+
/**
|
11201
|
+
* Provides details about an Backup backup plan.
|
11202
|
+
*/
|
11203
|
+
AwsBackupBackupPlan?: AwsBackupBackupPlanDetails;
|
11204
|
+
/**
|
11205
|
+
* Provides details about an Backup backup, or recovery point.
|
11206
|
+
*/
|
11207
|
+
AwsBackupRecoveryPoint?: AwsBackupRecoveryPointDetails;
|
10945
11208
|
}
|
10946
11209
|
export type ResourceList = Resource[];
|
10947
11210
|
export interface Result {
|
@@ -11283,6 +11546,14 @@ declare namespace SecurityHub {
|
|
11283
11546
|
* The file system path to the package manager inventory file.
|
11284
11547
|
*/
|
11285
11548
|
FilePath?: NonEmptyString;
|
11549
|
+
/**
|
11550
|
+
* The version of the software package in which the vulnerability has been resolved.
|
11551
|
+
*/
|
11552
|
+
FixedInVersion?: NonEmptyString;
|
11553
|
+
/**
|
11554
|
+
* Describes the actions a customer can take to resolve the vulnerability in the software package.
|
11555
|
+
*/
|
11556
|
+
Remediation?: NonEmptyString;
|
11286
11557
|
}
|
11287
11558
|
export type SoftwarePackageList = SoftwarePackage[];
|
11288
11559
|
export type SortCriteria = SortCriterion[];
|
@@ -11709,7 +11980,12 @@ declare namespace SecurityHub {
|
|
11709
11980
|
* A list of URLs that provide additional information about the vulnerability.
|
11710
11981
|
*/
|
11711
11982
|
ReferenceUrls?: StringList;
|
11983
|
+
/**
|
11984
|
+
* Specifies if all vulnerable packages in a finding have a value for FixedInVersion and Remediation. This field is evaluated for each vulnerability Id based on the number of vulnerable packages that have a value for both FixedInVersion and Remediation. Valid values are as follows: YES if all vulnerable packages have a value for both FixedInVersion and Remediation NO if no vulnerable packages have a value for FixedInVersion and Remediation PARTIAL otherwise
|
11985
|
+
*/
|
11986
|
+
FixAvailable?: VulnerabilityFixAvailable;
|
11712
11987
|
}
|
11988
|
+
export type VulnerabilityFixAvailable = "YES"|"NO"|"PARTIAL"|string;
|
11713
11989
|
export type VulnerabilityList = Vulnerability[];
|
11714
11990
|
export interface VulnerabilityVendor {
|
11715
11991
|
/**
|