aws-sdk 2.829.0 → 2.833.0
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/CHANGELOG.md +25 -1
- package/README.md +1 -1
- package/apis/customer-profiles-2020-08-15.min.json +4 -2
- package/apis/databrew-2017-07-25.min.json +79 -62
- package/apis/ec2-2016-11-15.min.json +197 -190
- package/apis/elasticache-2015-02-02.min.json +1 -0
- package/apis/es-2015-01-01.min.json +6 -0
- package/apis/kafka-2018-11-14.min.json +41 -0
- package/apis/managedblockchain-2018-09-24.min.json +159 -36
- package/apis/metadata.json +8 -0
- package/apis/models.lex.v2-2020-08-07.examples.json +5 -0
- package/apis/models.lex.v2-2020-08-07.min.json +2845 -0
- package/apis/models.lex.v2-2020-08-07.paginators.json +49 -0
- package/apis/monitoring-2010-08-01.min.json +15 -9
- package/apis/redshift-2012-12-01.min.json +1 -1
- package/apis/resourcegroupstaggingapi-2017-01-26.min.json +14 -10
- package/apis/robomaker-2018-06-29.min.json +198 -170
- package/apis/runtime.lex.v2-2020-08-07.examples.json +4 -0
- package/apis/runtime.lex.v2-2020-08-07.min.json +531 -0
- package/apis/runtime.lex.v2-2020-08-07.paginators.json +3 -0
- package/apis/securityhub-2018-10-26.min.json +406 -187
- package/apis/sesv2-2019-09-27.min.json +40 -15
- package/clients/accessanalyzer.d.ts +5 -5
- package/clients/all.d.ts +2 -0
- package/clients/all.js +3 -1
- package/clients/backup.d.ts +27 -27
- package/clients/cloudwatch.d.ts +12 -1
- package/clients/customerprofiles.d.ts +2 -2
- package/clients/databrew.d.ts +170 -143
- package/clients/ec2.d.ts +119 -111
- package/clients/elasticache.d.ts +14 -10
- package/clients/es.d.ts +8 -0
- package/clients/greengrassv2.d.ts +6 -6
- package/clients/iot.d.ts +2 -2
- package/clients/kafka.d.ts +52 -0
- package/clients/lexmodelsv2.d.ts +3350 -0
- package/clients/lexmodelsv2.js +18 -0
- package/clients/lexruntimev2.d.ts +542 -0
- package/clients/lexruntimev2.js +18 -0
- package/clients/lightsail.d.ts +2 -2
- package/clients/managedblockchain.d.ts +140 -6
- package/clients/rds.d.ts +14 -14
- package/clients/redshift.d.ts +8 -8
- package/clients/resourcegroupstaggingapi.d.ts +50 -45
- package/clients/robomaker.d.ts +35 -3
- package/clients/securityhub.d.ts +410 -63
- package/clients/sesv2.d.ts +30 -2
- package/clients/ssm.d.ts +2 -2
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +91 -17
- package/dist/aws-sdk.js +225 -203
- package/dist/aws-sdk.min.js +60 -60
- package/lib/config.d.ts +1 -1
- package/lib/config_service_placeholders.d.ts +4 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/securityhub.d.ts
CHANGED
|
@@ -422,6 +422,76 @@ declare namespace SecurityHub {
|
|
|
422
422
|
export type AccountDetailsList = AccountDetails[];
|
|
423
423
|
export type AccountId = string;
|
|
424
424
|
export type AccountIdList = NonEmptyString[];
|
|
425
|
+
export interface Action {
|
|
426
|
+
/**
|
|
427
|
+
* The type of action that was detected. The possible action types are: NETWORK_CONNECTION AWS_API_CALL DNS_REQUEST PORT_PROBE
|
|
428
|
+
*/
|
|
429
|
+
ActionType?: NonEmptyString;
|
|
430
|
+
/**
|
|
431
|
+
* Included if ActionType is NETWORK_CONNECTION. Provides details about the network connection that was detected.
|
|
432
|
+
*/
|
|
433
|
+
NetworkConnectionAction?: NetworkConnectionAction;
|
|
434
|
+
/**
|
|
435
|
+
* Included if ActionType is AWS_API_CALL. Provides details about the API call that was detected.
|
|
436
|
+
*/
|
|
437
|
+
AwsApiCallAction?: AwsApiCallAction;
|
|
438
|
+
/**
|
|
439
|
+
* Included if ActionType is DNS_REQUEST. Provides details about the DNS request that was detected.
|
|
440
|
+
*/
|
|
441
|
+
DnsRequestAction?: DnsRequestAction;
|
|
442
|
+
/**
|
|
443
|
+
* Included if ActionType is PORT_PROBE. Provides details about the port probe that was detected.
|
|
444
|
+
*/
|
|
445
|
+
PortProbeAction?: PortProbeAction;
|
|
446
|
+
}
|
|
447
|
+
export interface ActionLocalIpDetails {
|
|
448
|
+
/**
|
|
449
|
+
* The IP address.
|
|
450
|
+
*/
|
|
451
|
+
IpAddressV4?: NonEmptyString;
|
|
452
|
+
}
|
|
453
|
+
export interface ActionLocalPortDetails {
|
|
454
|
+
/**
|
|
455
|
+
* The number of the port.
|
|
456
|
+
*/
|
|
457
|
+
Port?: Integer;
|
|
458
|
+
/**
|
|
459
|
+
* The port name of the local connection.
|
|
460
|
+
*/
|
|
461
|
+
PortName?: NonEmptyString;
|
|
462
|
+
}
|
|
463
|
+
export interface ActionRemoteIpDetails {
|
|
464
|
+
/**
|
|
465
|
+
* The IP address.
|
|
466
|
+
*/
|
|
467
|
+
IpAddressV4?: NonEmptyString;
|
|
468
|
+
/**
|
|
469
|
+
* The internet service provider (ISP) organization associated with the remote IP address.
|
|
470
|
+
*/
|
|
471
|
+
Organization?: IpOrganizationDetails;
|
|
472
|
+
/**
|
|
473
|
+
* The country where the remote IP address is located.
|
|
474
|
+
*/
|
|
475
|
+
Country?: Country;
|
|
476
|
+
/**
|
|
477
|
+
* The city where the remote IP address is located.
|
|
478
|
+
*/
|
|
479
|
+
City?: City;
|
|
480
|
+
/**
|
|
481
|
+
* The coordinates of the location of the remote IP address.
|
|
482
|
+
*/
|
|
483
|
+
GeoLocation?: GeoLocation;
|
|
484
|
+
}
|
|
485
|
+
export interface ActionRemotePortDetails {
|
|
486
|
+
/**
|
|
487
|
+
* The number of the port.
|
|
488
|
+
*/
|
|
489
|
+
Port?: Integer;
|
|
490
|
+
/**
|
|
491
|
+
* The port name of the remote connection.
|
|
492
|
+
*/
|
|
493
|
+
PortName?: NonEmptyString;
|
|
494
|
+
}
|
|
425
495
|
export interface ActionTarget {
|
|
426
496
|
/**
|
|
427
497
|
* The ARN for the target action.
|
|
@@ -462,6 +532,46 @@ declare namespace SecurityHub {
|
|
|
462
532
|
SubnetId?: NonEmptyString;
|
|
463
533
|
}
|
|
464
534
|
export type AvailabilityZones = AvailabilityZone[];
|
|
535
|
+
export interface AwsApiCallAction {
|
|
536
|
+
/**
|
|
537
|
+
* The name of the API method that was issued.
|
|
538
|
+
*/
|
|
539
|
+
Api?: NonEmptyString;
|
|
540
|
+
/**
|
|
541
|
+
* The name of the AWS service that the API method belongs to.
|
|
542
|
+
*/
|
|
543
|
+
ServiceName?: NonEmptyString;
|
|
544
|
+
/**
|
|
545
|
+
* Indicates whether the API call originated from a remote IP address (remoteip) or from a DNS domain (domain).
|
|
546
|
+
*/
|
|
547
|
+
CallerType?: NonEmptyString;
|
|
548
|
+
/**
|
|
549
|
+
* Provided if CallerType is remoteIp. Provides information about the remote IP address that the API call originated from.
|
|
550
|
+
*/
|
|
551
|
+
RemoteIpDetails?: ActionRemoteIpDetails;
|
|
552
|
+
/**
|
|
553
|
+
* Provided if CallerType is domain. Provides information about the DNS domain that the API call originated from.
|
|
554
|
+
*/
|
|
555
|
+
DomainDetails?: AwsApiCallActionDomainDetails;
|
|
556
|
+
/**
|
|
557
|
+
* Identifies the resources that were affected by the API call.
|
|
558
|
+
*/
|
|
559
|
+
AffectedResources?: FieldMap;
|
|
560
|
+
/**
|
|
561
|
+
* An ISO8601-formatted timestamp that indicates when the API call was first observed.
|
|
562
|
+
*/
|
|
563
|
+
FirstSeen?: NonEmptyString;
|
|
564
|
+
/**
|
|
565
|
+
* An ISO8601-formatted timestamp that indicates when the API call was most recently observed.
|
|
566
|
+
*/
|
|
567
|
+
LastSeen?: NonEmptyString;
|
|
568
|
+
}
|
|
569
|
+
export interface AwsApiCallActionDomainDetails {
|
|
570
|
+
/**
|
|
571
|
+
* The name of the DNS domain that issued the API call.
|
|
572
|
+
*/
|
|
573
|
+
Domain?: NonEmptyString;
|
|
574
|
+
}
|
|
465
575
|
export interface AwsApiGatewayAccessLogSettings {
|
|
466
576
|
/**
|
|
467
577
|
* A single-line format of the access logs of data, as specified by selected $context variables. The format must include at least $context.requestId.
|
|
@@ -1699,7 +1809,41 @@ declare namespace SecurityHub {
|
|
|
1699
1809
|
* Indicates whether traffic to or from the instance is validated.
|
|
1700
1810
|
*/
|
|
1701
1811
|
SourceDestCheck?: Boolean;
|
|
1812
|
+
/**
|
|
1813
|
+
* The IPv6 addresses associated with the network interface.
|
|
1814
|
+
*/
|
|
1815
|
+
IpV6Addresses?: AwsEc2NetworkInterfaceIpV6AddressList;
|
|
1816
|
+
/**
|
|
1817
|
+
* The private IPv4 addresses associated with the network interface.
|
|
1818
|
+
*/
|
|
1819
|
+
PrivateIpAddresses?: AwsEc2NetworkInterfacePrivateIpAddressList;
|
|
1820
|
+
/**
|
|
1821
|
+
* The public DNS name of the network interface.
|
|
1822
|
+
*/
|
|
1823
|
+
PublicDnsName?: NonEmptyString;
|
|
1824
|
+
/**
|
|
1825
|
+
* The address of the Elastic IP address bound to the network interface.
|
|
1826
|
+
*/
|
|
1827
|
+
PublicIp?: NonEmptyString;
|
|
1828
|
+
}
|
|
1829
|
+
export interface AwsEc2NetworkInterfaceIpV6AddressDetail {
|
|
1830
|
+
/**
|
|
1831
|
+
* The IPV6 address.
|
|
1832
|
+
*/
|
|
1833
|
+
IpV6Address?: NonEmptyString;
|
|
1834
|
+
}
|
|
1835
|
+
export type AwsEc2NetworkInterfaceIpV6AddressList = AwsEc2NetworkInterfaceIpV6AddressDetail[];
|
|
1836
|
+
export interface AwsEc2NetworkInterfacePrivateIpAddressDetail {
|
|
1837
|
+
/**
|
|
1838
|
+
* The IP address.
|
|
1839
|
+
*/
|
|
1840
|
+
PrivateIpAddress?: NonEmptyString;
|
|
1841
|
+
/**
|
|
1842
|
+
* The private DNS name for the IP address.
|
|
1843
|
+
*/
|
|
1844
|
+
PrivateDnsName?: NonEmptyString;
|
|
1702
1845
|
}
|
|
1846
|
+
export type AwsEc2NetworkInterfacePrivateIpAddressList = AwsEc2NetworkInterfacePrivateIpAddressDetail[];
|
|
1703
1847
|
export interface AwsEc2NetworkInterfaceSecurityGroup {
|
|
1704
1848
|
/**
|
|
1705
1849
|
* The name of the security group.
|
|
@@ -2991,7 +3135,7 @@ declare namespace SecurityHub {
|
|
|
2991
3135
|
*/
|
|
2992
3136
|
SnapshotCreateTime?: NonEmptyString;
|
|
2993
3137
|
/**
|
|
2994
|
-
*
|
|
3138
|
+
* The name of the database engine that you want to use for this DB instance.
|
|
2995
3139
|
*/
|
|
2996
3140
|
Engine?: NonEmptyString;
|
|
2997
3141
|
/**
|
|
@@ -3343,206 +3487,206 @@ declare namespace SecurityHub {
|
|
|
3343
3487
|
export type AwsRdsDbInstanceVpcSecurityGroups = AwsRdsDbInstanceVpcSecurityGroup[];
|
|
3344
3488
|
export interface AwsRdsDbOptionGroupMembership {
|
|
3345
3489
|
/**
|
|
3346
|
-
*
|
|
3490
|
+
* The name of the option group.
|
|
3347
3491
|
*/
|
|
3348
3492
|
OptionGroupName?: NonEmptyString;
|
|
3349
3493
|
/**
|
|
3350
|
-
*
|
|
3494
|
+
* The status of the option group membership.
|
|
3351
3495
|
*/
|
|
3352
3496
|
Status?: NonEmptyString;
|
|
3353
3497
|
}
|
|
3354
3498
|
export type AwsRdsDbOptionGroupMemberships = AwsRdsDbOptionGroupMembership[];
|
|
3355
3499
|
export interface AwsRdsDbParameterGroup {
|
|
3356
3500
|
/**
|
|
3357
|
-
*
|
|
3501
|
+
* The name of the parameter group.
|
|
3358
3502
|
*/
|
|
3359
3503
|
DbParameterGroupName?: NonEmptyString;
|
|
3360
3504
|
/**
|
|
3361
|
-
*
|
|
3505
|
+
* The status of parameter updates.
|
|
3362
3506
|
*/
|
|
3363
3507
|
ParameterApplyStatus?: NonEmptyString;
|
|
3364
3508
|
}
|
|
3365
3509
|
export type AwsRdsDbParameterGroups = AwsRdsDbParameterGroup[];
|
|
3366
3510
|
export interface AwsRdsDbPendingModifiedValues {
|
|
3367
3511
|
/**
|
|
3368
|
-
*
|
|
3512
|
+
* The new DB instance class for the DB instance.
|
|
3369
3513
|
*/
|
|
3370
3514
|
DbInstanceClass?: NonEmptyString;
|
|
3371
3515
|
/**
|
|
3372
|
-
*
|
|
3516
|
+
* The new value of the allocated storage for the DB instance.
|
|
3373
3517
|
*/
|
|
3374
3518
|
AllocatedStorage?: Integer;
|
|
3375
3519
|
/**
|
|
3376
|
-
*
|
|
3520
|
+
* The new master user password for the DB instance.
|
|
3377
3521
|
*/
|
|
3378
3522
|
MasterUserPassword?: NonEmptyString;
|
|
3379
3523
|
/**
|
|
3380
|
-
*
|
|
3524
|
+
* The new port for the DB instance.
|
|
3381
3525
|
*/
|
|
3382
3526
|
Port?: Integer;
|
|
3383
3527
|
/**
|
|
3384
|
-
*
|
|
3528
|
+
* The new backup retention period for the DB instance.
|
|
3385
3529
|
*/
|
|
3386
3530
|
BackupRetentionPeriod?: Integer;
|
|
3387
3531
|
/**
|
|
3388
|
-
*
|
|
3532
|
+
* Indicates that a single Availability Zone DB instance is changing to a multiple Availability Zone deployment.
|
|
3389
3533
|
*/
|
|
3390
3534
|
MultiAZ?: Boolean;
|
|
3391
3535
|
/**
|
|
3392
|
-
*
|
|
3536
|
+
* The new engine version for the DB instance.
|
|
3393
3537
|
*/
|
|
3394
3538
|
EngineVersion?: NonEmptyString;
|
|
3395
3539
|
/**
|
|
3396
|
-
*
|
|
3540
|
+
* The new license model value for the DB instance.
|
|
3397
3541
|
*/
|
|
3398
3542
|
LicenseModel?: NonEmptyString;
|
|
3399
3543
|
/**
|
|
3400
|
-
*
|
|
3544
|
+
* The new provisioned IOPS value for the DB instance.
|
|
3401
3545
|
*/
|
|
3402
3546
|
Iops?: Integer;
|
|
3403
3547
|
/**
|
|
3404
|
-
*
|
|
3548
|
+
* The new DB instance identifier for the DB instance.
|
|
3405
3549
|
*/
|
|
3406
3550
|
DbInstanceIdentifier?: NonEmptyString;
|
|
3407
3551
|
/**
|
|
3408
|
-
*
|
|
3552
|
+
* The new storage type for the DB instance.
|
|
3409
3553
|
*/
|
|
3410
3554
|
StorageType?: NonEmptyString;
|
|
3411
3555
|
/**
|
|
3412
|
-
*
|
|
3556
|
+
* The new CA certificate identifier for the DB instance.
|
|
3413
3557
|
*/
|
|
3414
3558
|
CaCertificateIdentifier?: NonEmptyString;
|
|
3415
3559
|
/**
|
|
3416
|
-
*
|
|
3560
|
+
* The name of the new subnet group for the DB instance.
|
|
3417
3561
|
*/
|
|
3418
3562
|
DbSubnetGroupName?: NonEmptyString;
|
|
3419
3563
|
/**
|
|
3420
|
-
*
|
|
3564
|
+
* A list of log types that are being enabled or disabled.
|
|
3421
3565
|
*/
|
|
3422
3566
|
PendingCloudWatchLogsExports?: AwsRdsPendingCloudWatchLogsExports;
|
|
3423
3567
|
/**
|
|
3424
|
-
*
|
|
3568
|
+
* Processor features that are being updated.
|
|
3425
3569
|
*/
|
|
3426
3570
|
ProcessorFeatures?: AwsRdsDbProcessorFeatures;
|
|
3427
3571
|
}
|
|
3428
3572
|
export interface AwsRdsDbProcessorFeature {
|
|
3429
3573
|
/**
|
|
3430
|
-
*
|
|
3574
|
+
* The name of the processor feature.
|
|
3431
3575
|
*/
|
|
3432
3576
|
Name?: NonEmptyString;
|
|
3433
3577
|
/**
|
|
3434
|
-
*
|
|
3578
|
+
* The value of the processor feature.
|
|
3435
3579
|
*/
|
|
3436
3580
|
Value?: NonEmptyString;
|
|
3437
3581
|
}
|
|
3438
3582
|
export type AwsRdsDbProcessorFeatures = AwsRdsDbProcessorFeature[];
|
|
3439
3583
|
export interface AwsRdsDbSnapshotDetails {
|
|
3440
3584
|
/**
|
|
3441
|
-
*
|
|
3585
|
+
* The name or ARN of the DB snapshot that is used to restore the DB instance.
|
|
3442
3586
|
*/
|
|
3443
3587
|
DbSnapshotIdentifier?: NonEmptyString;
|
|
3444
3588
|
/**
|
|
3445
|
-
*
|
|
3589
|
+
* A name for the DB instance.
|
|
3446
3590
|
*/
|
|
3447
3591
|
DbInstanceIdentifier?: NonEmptyString;
|
|
3448
3592
|
/**
|
|
3449
|
-
*
|
|
3593
|
+
* When the snapshot was taken in Coordinated Universal Time (UTC).
|
|
3450
3594
|
*/
|
|
3451
3595
|
SnapshotCreateTime?: NonEmptyString;
|
|
3452
3596
|
/**
|
|
3453
|
-
*
|
|
3597
|
+
* The name of the database engine to use for this DB instance.
|
|
3454
3598
|
*/
|
|
3455
3599
|
Engine?: NonEmptyString;
|
|
3456
3600
|
/**
|
|
3457
|
-
*
|
|
3601
|
+
* The amount of storage (in gigabytes) to be initially allocated for the database instance.
|
|
3458
3602
|
*/
|
|
3459
3603
|
AllocatedStorage?: Integer;
|
|
3460
3604
|
/**
|
|
3461
|
-
*
|
|
3605
|
+
* The status of this DB snapshot.
|
|
3462
3606
|
*/
|
|
3463
3607
|
Status?: NonEmptyString;
|
|
3464
3608
|
/**
|
|
3465
|
-
*
|
|
3609
|
+
* The port that the database engine was listening on at the time of the snapshot.
|
|
3466
3610
|
*/
|
|
3467
3611
|
Port?: Integer;
|
|
3468
3612
|
/**
|
|
3469
|
-
*
|
|
3613
|
+
* Specifies the name of the Availability Zone in which the DB instance was located at the time of the DB snapshot.
|
|
3470
3614
|
*/
|
|
3471
3615
|
AvailabilityZone?: NonEmptyString;
|
|
3472
3616
|
/**
|
|
3473
|
-
*
|
|
3617
|
+
* The VPC ID associated with the DB snapshot.
|
|
3474
3618
|
*/
|
|
3475
3619
|
VpcId?: NonEmptyString;
|
|
3476
3620
|
/**
|
|
3477
|
-
*
|
|
3621
|
+
* Specifies the time in Coordinated Universal Time (UTC) when the DB instance, from which the snapshot was taken, was created.
|
|
3478
3622
|
*/
|
|
3479
3623
|
InstanceCreateTime?: NonEmptyString;
|
|
3480
3624
|
/**
|
|
3481
|
-
*
|
|
3625
|
+
* The master user name for the DB snapshot.
|
|
3482
3626
|
*/
|
|
3483
3627
|
MasterUsername?: NonEmptyString;
|
|
3484
3628
|
/**
|
|
3485
|
-
*
|
|
3629
|
+
* The version of the database engine.
|
|
3486
3630
|
*/
|
|
3487
3631
|
EngineVersion?: NonEmptyString;
|
|
3488
3632
|
/**
|
|
3489
|
-
*
|
|
3633
|
+
* License model information for the restored DB instance.
|
|
3490
3634
|
*/
|
|
3491
3635
|
LicenseModel?: NonEmptyString;
|
|
3492
3636
|
/**
|
|
3493
|
-
*
|
|
3637
|
+
* The type of the DB snapshot.
|
|
3494
3638
|
*/
|
|
3495
3639
|
SnapshotType?: NonEmptyString;
|
|
3496
3640
|
/**
|
|
3497
|
-
*
|
|
3641
|
+
* The provisioned IOPS (I/O operations per second) value of the DB instance at the time of the snapshot.
|
|
3498
3642
|
*/
|
|
3499
3643
|
Iops?: Integer;
|
|
3500
3644
|
/**
|
|
3501
|
-
*
|
|
3645
|
+
* The option group name for the DB snapshot.
|
|
3502
3646
|
*/
|
|
3503
3647
|
OptionGroupName?: NonEmptyString;
|
|
3504
3648
|
/**
|
|
3505
|
-
*
|
|
3649
|
+
* The percentage of the estimated data that has been transferred.
|
|
3506
3650
|
*/
|
|
3507
3651
|
PercentProgress?: Integer;
|
|
3508
3652
|
/**
|
|
3509
|
-
*
|
|
3653
|
+
* The AWS Region that the DB snapshot was created in or copied from.
|
|
3510
3654
|
*/
|
|
3511
3655
|
SourceRegion?: NonEmptyString;
|
|
3512
3656
|
/**
|
|
3513
|
-
*
|
|
3657
|
+
* The DB snapshot ARN that the DB snapshot was copied from.
|
|
3514
3658
|
*/
|
|
3515
3659
|
SourceDbSnapshotIdentifier?: NonEmptyString;
|
|
3516
3660
|
/**
|
|
3517
|
-
*
|
|
3661
|
+
* The storage type associated with the DB snapshot.
|
|
3518
3662
|
*/
|
|
3519
3663
|
StorageType?: NonEmptyString;
|
|
3520
3664
|
/**
|
|
3521
|
-
*
|
|
3665
|
+
* The ARN from the key store with which to associate the instance for TDE encryption.
|
|
3522
3666
|
*/
|
|
3523
3667
|
TdeCredentialArn?: NonEmptyString;
|
|
3524
3668
|
/**
|
|
3525
|
-
*
|
|
3669
|
+
* Whether the DB snapshot is encrypted.
|
|
3526
3670
|
*/
|
|
3527
3671
|
Encrypted?: Boolean;
|
|
3528
3672
|
/**
|
|
3529
|
-
*
|
|
3673
|
+
* If Encrypted is true, the AWS KMS key identifier for the encrypted DB snapshot.
|
|
3530
3674
|
*/
|
|
3531
3675
|
KmsKeyId?: NonEmptyString;
|
|
3532
3676
|
/**
|
|
3533
|
-
*
|
|
3677
|
+
* The time zone of the DB snapshot.
|
|
3534
3678
|
*/
|
|
3535
3679
|
Timezone?: NonEmptyString;
|
|
3536
3680
|
/**
|
|
3537
|
-
*
|
|
3681
|
+
* Whether mapping of IAM accounts to database accounts is enabled.
|
|
3538
3682
|
*/
|
|
3539
3683
|
IamDatabaseAuthenticationEnabled?: Boolean;
|
|
3540
3684
|
/**
|
|
3541
|
-
*
|
|
3685
|
+
* The number of CPU cores and the number of threads per core for the DB instance class of the DB instance.
|
|
3542
3686
|
*/
|
|
3543
3687
|
ProcessorFeatures?: AwsRdsDbProcessorFeatures;
|
|
3544
3688
|
/**
|
|
3545
|
-
*
|
|
3689
|
+
* The identifier for the source DB instance.
|
|
3546
3690
|
*/
|
|
3547
3691
|
DbiResourceId?: NonEmptyString;
|
|
3548
3692
|
}
|
|
@@ -4267,6 +4411,10 @@ declare namespace SecurityHub {
|
|
|
4267
4411
|
* Provides an overview of the patch compliance status for an instance against a selected compliance standard.
|
|
4268
4412
|
*/
|
|
4269
4413
|
PatchSummary?: PatchSummary;
|
|
4414
|
+
/**
|
|
4415
|
+
* Provides details about an action that was detected for the finding.
|
|
4416
|
+
*/
|
|
4417
|
+
Action?: Action;
|
|
4270
4418
|
}
|
|
4271
4419
|
export interface AwsSecurityFindingFilters {
|
|
4272
4420
|
/**
|
|
@@ -4574,7 +4722,7 @@ declare namespace SecurityHub {
|
|
|
4574
4722
|
*/
|
|
4575
4723
|
WorkflowState?: StringFilterList;
|
|
4576
4724
|
/**
|
|
4577
|
-
* The status of the investigation into a finding. Allowed values are the following. NEW - The initial state of a finding, before it is reviewed.
|
|
4725
|
+
* The status of the investigation into a finding. Allowed values are the following. NEW - The initial state of a finding, before it is reviewed. Security Hub also resets the workflow status from NOTIFIED or RESOLVED to NEW in the following cases: The record state changes from ARCHIVED to ACTIVE. The compliance status changes from PASSED to either WARNING, FAILED, or NOT_AVAILABLE. NOTIFIED - Indicates that the resource owner has been notified about the security issue. Used when the initial reviewer is not the resource owner, and needs intervention from the resource owner. SUPPRESSED - The finding will not be reviewed again and will not be acted upon. RESOLVED - The finding was reviewed and remediated and is now considered resolved.
|
|
4578
4726
|
*/
|
|
4579
4727
|
WorkflowStatus?: StringFilterList;
|
|
4580
4728
|
/**
|
|
@@ -4665,6 +4813,92 @@ declare namespace SecurityHub {
|
|
|
4665
4813
|
*/
|
|
4666
4814
|
DeadLetterTargetArn?: NonEmptyString;
|
|
4667
4815
|
}
|
|
4816
|
+
export interface AwsSsmComplianceSummary {
|
|
4817
|
+
/**
|
|
4818
|
+
* The current patch compliance status. The possible status values are: COMPLIANT NON_COMPLIANT UNSPECIFIED_DATA
|
|
4819
|
+
*/
|
|
4820
|
+
Status?: NonEmptyString;
|
|
4821
|
+
/**
|
|
4822
|
+
* For the patches that are compliant, the number that have a severity of CRITICAL.
|
|
4823
|
+
*/
|
|
4824
|
+
CompliantCriticalCount?: Integer;
|
|
4825
|
+
/**
|
|
4826
|
+
* For the patches that are compliant, the number that have a severity of HIGH.
|
|
4827
|
+
*/
|
|
4828
|
+
CompliantHighCount?: Integer;
|
|
4829
|
+
/**
|
|
4830
|
+
* For the patches that are compliant, the number that have a severity of MEDIUM.
|
|
4831
|
+
*/
|
|
4832
|
+
CompliantMediumCount?: Integer;
|
|
4833
|
+
/**
|
|
4834
|
+
* The type of execution that was used determine compliance.
|
|
4835
|
+
*/
|
|
4836
|
+
ExecutionType?: NonEmptyString;
|
|
4837
|
+
/**
|
|
4838
|
+
* For the patch items that are noncompliant, the number of items that have a severity of CRITICAL.
|
|
4839
|
+
*/
|
|
4840
|
+
NonCompliantCriticalCount?: Integer;
|
|
4841
|
+
/**
|
|
4842
|
+
* For the patches that are compliant, the number that have a severity of INFORMATIONAL.
|
|
4843
|
+
*/
|
|
4844
|
+
CompliantInformationalCount?: Integer;
|
|
4845
|
+
/**
|
|
4846
|
+
* For the patches that are noncompliant, the number that have a severity of INFORMATIONAL.
|
|
4847
|
+
*/
|
|
4848
|
+
NonCompliantInformationalCount?: Integer;
|
|
4849
|
+
/**
|
|
4850
|
+
* For the patches that are compliant, the number that have a severity of UNSPECIFIED.
|
|
4851
|
+
*/
|
|
4852
|
+
CompliantUnspecifiedCount?: Integer;
|
|
4853
|
+
/**
|
|
4854
|
+
* For the patches that are noncompliant, the number that have a severity of LOW.
|
|
4855
|
+
*/
|
|
4856
|
+
NonCompliantLowCount?: Integer;
|
|
4857
|
+
/**
|
|
4858
|
+
* For the patches that are noncompliant, the number that have a severity of HIGH.
|
|
4859
|
+
*/
|
|
4860
|
+
NonCompliantHighCount?: Integer;
|
|
4861
|
+
/**
|
|
4862
|
+
* For the patches that are compliant, the number that have a severity of LOW.
|
|
4863
|
+
*/
|
|
4864
|
+
CompliantLowCount?: Integer;
|
|
4865
|
+
/**
|
|
4866
|
+
* The type of resource for which the compliance was determined. For AwsSsmPatchCompliance, ComplianceType is Patch.
|
|
4867
|
+
*/
|
|
4868
|
+
ComplianceType?: NonEmptyString;
|
|
4869
|
+
/**
|
|
4870
|
+
* The identifier of the patch baseline. The patch baseline lists the patches that are approved for installation.
|
|
4871
|
+
*/
|
|
4872
|
+
PatchBaselineId?: NonEmptyString;
|
|
4873
|
+
/**
|
|
4874
|
+
* The highest severity for the patches.
|
|
4875
|
+
*/
|
|
4876
|
+
OverallSeverity?: NonEmptyString;
|
|
4877
|
+
/**
|
|
4878
|
+
* For the patches that are noncompliant, the number that have a severity of MEDIUM.
|
|
4879
|
+
*/
|
|
4880
|
+
NonCompliantMediumCount?: Integer;
|
|
4881
|
+
/**
|
|
4882
|
+
* For the patches that are noncompliant, the number that have a severity of UNSPECIFIED.
|
|
4883
|
+
*/
|
|
4884
|
+
NonCompliantUnspecifiedCount?: Integer;
|
|
4885
|
+
/**
|
|
4886
|
+
* The identifier of the patch group for which compliance was determined. A patch group uses tags to group EC2 instances that should have the same patch compliance.
|
|
4887
|
+
*/
|
|
4888
|
+
PatchGroup?: NonEmptyString;
|
|
4889
|
+
}
|
|
4890
|
+
export interface AwsSsmPatch {
|
|
4891
|
+
/**
|
|
4892
|
+
* The compliance status details for the patch.
|
|
4893
|
+
*/
|
|
4894
|
+
ComplianceSummary?: AwsSsmComplianceSummary;
|
|
4895
|
+
}
|
|
4896
|
+
export interface AwsSsmPatchComplianceDetails {
|
|
4897
|
+
/**
|
|
4898
|
+
* Information about the status of a patch.
|
|
4899
|
+
*/
|
|
4900
|
+
Patch?: AwsSsmPatch;
|
|
4901
|
+
}
|
|
4668
4902
|
export interface AwsWafWebAclDetails {
|
|
4669
4903
|
/**
|
|
4670
4904
|
* A friendly name or description of the WebACL. You can't change the name of a WebACL after you create it.
|
|
@@ -4835,6 +5069,12 @@ declare namespace SecurityHub {
|
|
|
4835
5069
|
CidrBlockState?: NonEmptyString;
|
|
4836
5070
|
}
|
|
4837
5071
|
export type CidrBlockAssociationList = CidrBlockAssociation[];
|
|
5072
|
+
export interface City {
|
|
5073
|
+
/**
|
|
5074
|
+
* The name of the city.
|
|
5075
|
+
*/
|
|
5076
|
+
CityName?: NonEmptyString;
|
|
5077
|
+
}
|
|
4838
5078
|
export interface Compliance {
|
|
4839
5079
|
/**
|
|
4840
5080
|
* The result of a standards check. The valid values for Status are as follows. PASSED - Standards check passed for all evaluated resources. WARNING - Some information is missing or this check is not supported for your configuration. FAILED - Standards check failed for at least one evaluated resource. NOT_AVAILABLE - Check could not be performed due to a service outage, API error, or because the result of the AWS Config evaluation was NOT_APPLICABLE. If the AWS Config evaluation result was NOT_APPLICABLE, then after 3 days, Security Hub automatically archives the finding.
|
|
@@ -4869,6 +5109,16 @@ declare namespace SecurityHub {
|
|
|
4869
5109
|
LaunchedAt?: NonEmptyString;
|
|
4870
5110
|
}
|
|
4871
5111
|
export type ControlStatus = "ENABLED"|"DISABLED"|string;
|
|
5112
|
+
export interface Country {
|
|
5113
|
+
/**
|
|
5114
|
+
* The 2-letter ISO 3166 country code for the country.
|
|
5115
|
+
*/
|
|
5116
|
+
CountryCode?: NonEmptyString;
|
|
5117
|
+
/**
|
|
5118
|
+
* The name of the country.
|
|
5119
|
+
*/
|
|
5120
|
+
CountryName?: NonEmptyString;
|
|
5121
|
+
}
|
|
4872
5122
|
export interface CreateActionTargetRequest {
|
|
4873
5123
|
/**
|
|
4874
5124
|
* The name of the custom action target.
|
|
@@ -5175,6 +5425,20 @@ declare namespace SecurityHub {
|
|
|
5175
5425
|
}
|
|
5176
5426
|
export interface DisassociateMembersResponse {
|
|
5177
5427
|
}
|
|
5428
|
+
export interface DnsRequestAction {
|
|
5429
|
+
/**
|
|
5430
|
+
* The DNS domain that is associated with the DNS request.
|
|
5431
|
+
*/
|
|
5432
|
+
Domain?: NonEmptyString;
|
|
5433
|
+
/**
|
|
5434
|
+
* The protocol that was used for the DNS request.
|
|
5435
|
+
*/
|
|
5436
|
+
Protocol?: NonEmptyString;
|
|
5437
|
+
/**
|
|
5438
|
+
* Indicates whether the DNS request was blocked.
|
|
5439
|
+
*/
|
|
5440
|
+
Blocked?: Boolean;
|
|
5441
|
+
}
|
|
5178
5442
|
export type Double = number;
|
|
5179
5443
|
export interface EnableImportFindingsForProductRequest {
|
|
5180
5444
|
/**
|
|
@@ -5209,6 +5473,16 @@ declare namespace SecurityHub {
|
|
|
5209
5473
|
export interface EnableSecurityHubResponse {
|
|
5210
5474
|
}
|
|
5211
5475
|
export type FieldMap = {[key: string]: NonEmptyString};
|
|
5476
|
+
export interface GeoLocation {
|
|
5477
|
+
/**
|
|
5478
|
+
* The longitude of the location.
|
|
5479
|
+
*/
|
|
5480
|
+
Lon?: Double;
|
|
5481
|
+
/**
|
|
5482
|
+
* The latitude of the location.
|
|
5483
|
+
*/
|
|
5484
|
+
Lat?: Double;
|
|
5485
|
+
}
|
|
5212
5486
|
export interface GetEnabledStandardsRequest {
|
|
5213
5487
|
/**
|
|
5214
5488
|
* The list of the standards subscription ARNs for the standards to retrieve.
|
|
@@ -5429,6 +5703,24 @@ declare namespace SecurityHub {
|
|
|
5429
5703
|
Cidr?: NonEmptyString;
|
|
5430
5704
|
}
|
|
5431
5705
|
export type IpFilterList = IpFilter[];
|
|
5706
|
+
export interface IpOrganizationDetails {
|
|
5707
|
+
/**
|
|
5708
|
+
* The Autonomous System Number (ASN) of the internet provider
|
|
5709
|
+
*/
|
|
5710
|
+
Asn?: Integer;
|
|
5711
|
+
/**
|
|
5712
|
+
* The name of the organization that registered the ASN.
|
|
5713
|
+
*/
|
|
5714
|
+
AsnOrg?: NonEmptyString;
|
|
5715
|
+
/**
|
|
5716
|
+
* The ISP information for the internet provider.
|
|
5717
|
+
*/
|
|
5718
|
+
Isp?: NonEmptyString;
|
|
5719
|
+
/**
|
|
5720
|
+
* The name of the internet provider.
|
|
5721
|
+
*/
|
|
5722
|
+
Org?: NonEmptyString;
|
|
5723
|
+
}
|
|
5432
5724
|
export interface Ipv6CidrBlockAssociation {
|
|
5433
5725
|
/**
|
|
5434
5726
|
* The association ID for the IPv6 CIDR block.
|
|
@@ -5673,6 +5965,32 @@ declare namespace SecurityHub {
|
|
|
5673
5965
|
*/
|
|
5674
5966
|
DestinationDomain?: NonEmptyString;
|
|
5675
5967
|
}
|
|
5968
|
+
export interface NetworkConnectionAction {
|
|
5969
|
+
/**
|
|
5970
|
+
* The direction of the network connection request (IN or OUT).
|
|
5971
|
+
*/
|
|
5972
|
+
ConnectionDirection?: NonEmptyString;
|
|
5973
|
+
/**
|
|
5974
|
+
* Information about the remote IP address that issued the network connection request.
|
|
5975
|
+
*/
|
|
5976
|
+
RemoteIpDetails?: ActionRemoteIpDetails;
|
|
5977
|
+
/**
|
|
5978
|
+
* Information about the port on the remote IP address.
|
|
5979
|
+
*/
|
|
5980
|
+
RemotePortDetails?: ActionRemotePortDetails;
|
|
5981
|
+
/**
|
|
5982
|
+
* Information about the port on the EC2 instance.
|
|
5983
|
+
*/
|
|
5984
|
+
LocalPortDetails?: ActionLocalPortDetails;
|
|
5985
|
+
/**
|
|
5986
|
+
* The protocol used to make the network connection request.
|
|
5987
|
+
*/
|
|
5988
|
+
Protocol?: NonEmptyString;
|
|
5989
|
+
/**
|
|
5990
|
+
* Indicates whether the network connection attempt was blocked.
|
|
5991
|
+
*/
|
|
5992
|
+
Blocked?: Boolean;
|
|
5993
|
+
}
|
|
5676
5994
|
export type NetworkDirection = "IN"|"OUT"|string;
|
|
5677
5995
|
export interface NetworkHeader {
|
|
5678
5996
|
/**
|
|
@@ -5806,6 +6124,31 @@ declare namespace SecurityHub {
|
|
|
5806
6124
|
*/
|
|
5807
6125
|
Operation?: NonEmptyString;
|
|
5808
6126
|
}
|
|
6127
|
+
export interface PortProbeAction {
|
|
6128
|
+
/**
|
|
6129
|
+
* Information about the ports affected by the port probe.
|
|
6130
|
+
*/
|
|
6131
|
+
PortProbeDetails?: PortProbeDetailList;
|
|
6132
|
+
/**
|
|
6133
|
+
* Indicates whether the port probe was blocked.
|
|
6134
|
+
*/
|
|
6135
|
+
Blocked?: Boolean;
|
|
6136
|
+
}
|
|
6137
|
+
export interface PortProbeDetail {
|
|
6138
|
+
/**
|
|
6139
|
+
* Provides information about the port that was scanned.
|
|
6140
|
+
*/
|
|
6141
|
+
LocalPortDetails?: ActionLocalPortDetails;
|
|
6142
|
+
/**
|
|
6143
|
+
* Provides information about the IP address where the scanned port is located.
|
|
6144
|
+
*/
|
|
6145
|
+
LocalIpDetails?: ActionLocalIpDetails;
|
|
6146
|
+
/**
|
|
6147
|
+
* Provides information about the remote IP address that performed the scan.
|
|
6148
|
+
*/
|
|
6149
|
+
RemoteIpDetails?: ActionRemoteIpDetails;
|
|
6150
|
+
}
|
|
6151
|
+
export type PortProbeDetailList = PortProbeDetail[];
|
|
5809
6152
|
export interface PortRange {
|
|
5810
6153
|
/**
|
|
5811
6154
|
* The first port in the port range.
|
|
@@ -5931,7 +6274,7 @@ declare namespace SecurityHub {
|
|
|
5931
6274
|
*/
|
|
5932
6275
|
Region?: NonEmptyString;
|
|
5933
6276
|
/**
|
|
5934
|
-
*
|
|
6277
|
+
* Identifies the role of the resource in the finding. A resource is either the actor or target of the finding activity,
|
|
5935
6278
|
*/
|
|
5936
6279
|
ResourceRole?: NonEmptyString;
|
|
5937
6280
|
/**
|
|
@@ -6014,11 +6357,11 @@ declare namespace SecurityHub {
|
|
|
6014
6357
|
*/
|
|
6015
6358
|
AwsIamPolicy?: AwsIamPolicyDetails;
|
|
6016
6359
|
/**
|
|
6017
|
-
*
|
|
6360
|
+
* Provides information about a version 2 stage for Amazon API Gateway.
|
|
6018
6361
|
*/
|
|
6019
6362
|
AwsApiGatewayV2Stage?: AwsApiGatewayV2StageDetails;
|
|
6020
6363
|
/**
|
|
6021
|
-
*
|
|
6364
|
+
* Provides information about a version 2 API in Amazon API Gateway.
|
|
6022
6365
|
*/
|
|
6023
6366
|
AwsApiGatewayV2Api?: AwsApiGatewayV2ApiDetails;
|
|
6024
6367
|
/**
|
|
@@ -6026,31 +6369,35 @@ declare namespace SecurityHub {
|
|
|
6026
6369
|
*/
|
|
6027
6370
|
AwsDynamoDbTable?: AwsDynamoDbTableDetails;
|
|
6028
6371
|
/**
|
|
6029
|
-
*
|
|
6372
|
+
* Provides information about a version 1 Amazon API Gateway stage.
|
|
6030
6373
|
*/
|
|
6031
6374
|
AwsApiGatewayStage?: AwsApiGatewayStageDetails;
|
|
6032
6375
|
/**
|
|
6033
|
-
*
|
|
6376
|
+
* Provides information about a REST API in version 1 of Amazon API Gateway.
|
|
6034
6377
|
*/
|
|
6035
6378
|
AwsApiGatewayRestApi?: AwsApiGatewayRestApiDetails;
|
|
6036
6379
|
/**
|
|
6037
|
-
*
|
|
6380
|
+
* Provides details about a CloudTrail trail.
|
|
6038
6381
|
*/
|
|
6039
6382
|
AwsCloudTrailTrail?: AwsCloudTrailTrailDetails;
|
|
6040
6383
|
/**
|
|
6041
|
-
*
|
|
6384
|
+
* Provides information about the state of a patch on an instance based on the patch baseline that was used to patch the instance.
|
|
6385
|
+
*/
|
|
6386
|
+
AwsSsmPatchCompliance?: AwsSsmPatchComplianceDetails;
|
|
6387
|
+
/**
|
|
6388
|
+
* Provides details about an AWS Certificate Manager (ACM) certificate.
|
|
6042
6389
|
*/
|
|
6043
6390
|
AwsCertificateManagerCertificate?: AwsCertificateManagerCertificateDetails;
|
|
6044
6391
|
/**
|
|
6045
|
-
*
|
|
6392
|
+
* Contains details about an Amazon Redshift cluster.
|
|
6046
6393
|
*/
|
|
6047
6394
|
AwsRedshiftCluster?: AwsRedshiftClusterDetails;
|
|
6048
6395
|
/**
|
|
6049
|
-
*
|
|
6396
|
+
* contains details about a Classic Load Balancer.
|
|
6050
6397
|
*/
|
|
6051
6398
|
AwsElbLoadBalancer?: AwsElbLoadBalancerDetails;
|
|
6052
6399
|
/**
|
|
6053
|
-
*
|
|
6400
|
+
* Contains details about an IAM group.
|
|
6054
6401
|
*/
|
|
6055
6402
|
AwsIamGroup?: AwsIamGroupDetails;
|
|
6056
6403
|
/**
|
|
@@ -6267,7 +6614,7 @@ declare namespace SecurityHub {
|
|
|
6267
6614
|
*/
|
|
6268
6615
|
StandardsInput: StandardsInputParameterMap;
|
|
6269
6616
|
/**
|
|
6270
|
-
* The status of the
|
|
6617
|
+
* The status of the standard subscription. The status values are as follows: PENDING - Standard is in the process of being enabled. READY - Standard is enabled. INCOMPLETE - Standard could not be enabled completely. Some controls may not be available. DELETING - Standard is in the process of being disabled. FAILED - Standard could not be disabled.
|
|
6271
6618
|
*/
|
|
6272
6619
|
StandardsStatus: StandardsStatus;
|
|
6273
6620
|
}
|
|
@@ -6522,7 +6869,7 @@ declare namespace SecurityHub {
|
|
|
6522
6869
|
}
|
|
6523
6870
|
export interface Workflow {
|
|
6524
6871
|
/**
|
|
6525
|
-
* The status of the investigation into the finding. The allowed values are the following. NEW - The initial state of a finding, before it is reviewed. NOTIFIED - Indicates that you notified the resource owner about the security issue. Used when the initial reviewer is not the resource owner, and needs intervention from the resource owner. SUPPRESSED - The finding will not be reviewed again and will not be acted upon. RESOLVED - The finding was reviewed and remediated and is now considered resolved.
|
|
6872
|
+
* The status of the investigation into the finding. The allowed values are the following. NEW - The initial state of a finding, before it is reviewed. Security Hub also resets the workflow status from NOTIFIED or RESOLVED to NEW in the following cases: RecordState changes from ARCHIVED to ACTIVE. ComplianceStatus changes from PASSED to either WARNING, FAILED, or NOT_AVAILABLE. NOTIFIED - Indicates that you notified the resource owner about the security issue. Used when the initial reviewer is not the resource owner, and needs intervention from the resource owner. SUPPRESSED - The finding will not be reviewed again and will not be acted upon. RESOLVED - The finding was reviewed and remediated and is now considered resolved.
|
|
6526
6873
|
*/
|
|
6527
6874
|
Status?: WorkflowStatus;
|
|
6528
6875
|
}
|
|
@@ -6530,7 +6877,7 @@ declare namespace SecurityHub {
|
|
|
6530
6877
|
export type WorkflowStatus = "NEW"|"NOTIFIED"|"RESOLVED"|"SUPPRESSED"|string;
|
|
6531
6878
|
export interface WorkflowUpdate {
|
|
6532
6879
|
/**
|
|
6533
|
-
* The status of the investigation into the finding. The allowed values are the following. NEW - The initial state of a finding, before it is reviewed.
|
|
6880
|
+
* The status of the investigation into the finding. The allowed values are the following. NEW - The initial state of a finding, before it is reviewed. Security Hub also resets WorkFlowStatus from NOTIFIED or RESOLVED to NEW in the following cases: The record state changes from ARCHIVED to ACTIVE. The compliance status changes from PASSED to either WARNING, FAILED, or NOT_AVAILABLE. NOTIFIED - Indicates that you notified the resource owner about the security issue. Used when the initial reviewer is not the resource owner, and needs intervention from the resource owner. RESOLVED - The finding was reviewed and remediated and is now considered resolved. SUPPRESSED - The finding will not be reviewed again and will not be acted upon.
|
|
6534
6881
|
*/
|
|
6535
6882
|
Status?: WorkflowStatus;
|
|
6536
6883
|
}
|