cdk-comprehend-s3olap 2.0.9 → 2.0.12

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 (42) hide show
  1. package/.jsii +5 -5
  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 +10 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/connectcampaigns-2021-01-30.examples.json +5 -0
  8. package/node_modules/aws-sdk/apis/connectcampaigns-2021-01-30.min.json +767 -0
  9. package/node_modules/aws-sdk/apis/connectcampaigns-2021-01-30.paginators.json +10 -0
  10. package/node_modules/aws-sdk/apis/metadata.json +6 -0
  11. package/node_modules/aws-sdk/apis/redshift-data-2019-12-20.min.json +25 -16
  12. package/node_modules/aws-sdk/apis/redshiftserverless-2021-04-21.examples.json +5 -0
  13. package/node_modules/aws-sdk/apis/redshiftserverless-2021-04-21.min.json +1206 -0
  14. package/node_modules/aws-sdk/apis/redshiftserverless-2021-04-21.paginators.json +40 -0
  15. package/node_modules/aws-sdk/apis/securityhub-2018-10-26.min.json +841 -300
  16. package/node_modules/aws-sdk/clients/all.d.ts +2 -0
  17. package/node_modules/aws-sdk/clients/all.js +3 -1
  18. package/node_modules/aws-sdk/clients/connect.d.ts +1 -1
  19. package/node_modules/aws-sdk/clients/connectcampaigns.d.ts +446 -0
  20. package/node_modules/aws-sdk/clients/connectcampaigns.js +18 -0
  21. package/node_modules/aws-sdk/clients/dynamodb.d.ts +18 -18
  22. package/node_modules/aws-sdk/clients/dynamodbstreams.d.ts +1 -1
  23. package/node_modules/aws-sdk/clients/redshiftdata.d.ts +51 -14
  24. package/node_modules/aws-sdk/clients/redshiftserverless.d.ts +1525 -0
  25. package/node_modules/aws-sdk/clients/redshiftserverless.js +18 -0
  26. package/node_modules/aws-sdk/clients/secretsmanager.d.ts +6 -6
  27. package/node_modules/aws-sdk/clients/securityhub.d.ts +1020 -19
  28. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  29. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +80 -6
  30. package/node_modules/aws-sdk/dist/aws-sdk.js +9 -3
  31. package/node_modules/aws-sdk/dist/aws-sdk.min.js +36 -36
  32. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +4 -0
  33. package/node_modules/aws-sdk/lib/core.js +1 -1
  34. package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +11 -11
  35. package/node_modules/aws-sdk/package.json +1 -1
  36. package/node_modules/esbuild/install.js +5 -22
  37. package/node_modules/esbuild/lib/main.d.ts +4 -0
  38. package/node_modules/esbuild/lib/main.js +28 -31
  39. package/node_modules/esbuild/package.json +21 -21
  40. package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
  41. package/node_modules/esbuild-linux-64/package.json +1 -1
  42. package/package.json +8 -8
@@ -1417,6 +1417,89 @@ declare namespace SecurityHub {
1417
1417
  */
1418
1418
  Value?: NonEmptyString;
1419
1419
  }
1420
+ export interface AwsCloudFormationStackDetails {
1421
+ /**
1422
+ * The capabilities allowed in the stack.
1423
+ */
1424
+ Capabilities?: NonEmptyStringList;
1425
+ /**
1426
+ * The time at which the stack was created.
1427
+ */
1428
+ CreationTime?: NonEmptyString;
1429
+ /**
1430
+ * A user-defined description associated with the stack.
1431
+ */
1432
+ Description?: NonEmptyString;
1433
+ /**
1434
+ * Boolean to enable or disable rollback on stack creation failures.
1435
+ */
1436
+ DisableRollback?: Boolean;
1437
+ /**
1438
+ * Information about whether a stack's actual configuration differs, or has drifted, from its expected configuration, as defined in the stack template and any values specified as template parameters.
1439
+ */
1440
+ DriftInformation?: AwsCloudFormationStackDriftInformationDetails;
1441
+ /**
1442
+ * Whether termination protection is enabled for the stack.
1443
+ */
1444
+ EnableTerminationProtection?: Boolean;
1445
+ /**
1446
+ * The time the nested stack was last updated. This field will only be returned if the stack has been updated at least once.
1447
+ */
1448
+ LastUpdatedTime?: NonEmptyString;
1449
+ /**
1450
+ * The Amazon Resource Names (ARNs) of the Amazon SNS topic to which stack-related events are published.
1451
+ */
1452
+ NotificationArns?: NonEmptyStringList;
1453
+ /**
1454
+ * A list of output structures.
1455
+ */
1456
+ Outputs?: AwsCloudFormationStackOutputsList;
1457
+ /**
1458
+ * The ARN of an IAM role that's associated with the stack.
1459
+ */
1460
+ RoleArn?: NonEmptyString;
1461
+ /**
1462
+ * Unique identifier of the stack.
1463
+ */
1464
+ StackId?: NonEmptyString;
1465
+ /**
1466
+ * The name associated with the stack.
1467
+ */
1468
+ StackName?: NonEmptyString;
1469
+ /**
1470
+ * Current status of the stack.
1471
+ */
1472
+ StackStatus?: NonEmptyString;
1473
+ /**
1474
+ * Success or failure message associated with the stack status.
1475
+ */
1476
+ StackStatusReason?: NonEmptyString;
1477
+ /**
1478
+ * The length of time, in minutes, that CloudFormation waits for the nested stack to reach the CREATE_COMPLETE state.
1479
+ */
1480
+ TimeoutInMinutes?: Integer;
1481
+ }
1482
+ export interface AwsCloudFormationStackDriftInformationDetails {
1483
+ /**
1484
+ * Status of the stack's actual configuration compared to its expected template configuration.
1485
+ */
1486
+ StackDriftStatus?: NonEmptyString;
1487
+ }
1488
+ export interface AwsCloudFormationStackOutputsDetails {
1489
+ /**
1490
+ * A user-defined description associated with the output.
1491
+ */
1492
+ Description?: NonEmptyString;
1493
+ /**
1494
+ * The key associated with the output.
1495
+ */
1496
+ OutputKey?: NonEmptyString;
1497
+ /**
1498
+ * The value associated with the output.
1499
+ */
1500
+ OutputValue?: NonEmptyString;
1501
+ }
1502
+ export type AwsCloudFormationStackOutputsList = AwsCloudFormationStackOutputsDetails[];
1420
1503
  export interface AwsCloudFrontDistributionCacheBehavior {
1421
1504
  /**
1422
1505
  * The protocol that viewers can use to access the files in an origin. You can specify the following options: allow-all - Viewers can use HTTP or HTTPS. redirect-to-https - CloudFront responds to HTTP requests with an HTTP status code of 301 (Moved Permanently) and the HTTPS URL. The viewer then uses the new URL to resubmit. https-only - CloudFront responds to HTTP request with an HTTP status code of 403 (Forbidden).
@@ -1504,6 +1587,32 @@ declare namespace SecurityHub {
1504
1587
  */
1505
1588
  Prefix?: NonEmptyString;
1506
1589
  }
1590
+ export interface AwsCloudFrontDistributionOriginCustomOriginConfig {
1591
+ /**
1592
+ * The HTTP port that CloudFront uses to connect to the origin.
1593
+ */
1594
+ HttpPort?: Integer;
1595
+ /**
1596
+ * The HTTPS port that CloudFront uses to connect to the origin.
1597
+ */
1598
+ HttpsPort?: Integer;
1599
+ /**
1600
+ * Specifies how long, in seconds, CloudFront persists its connection to the origin.
1601
+ */
1602
+ OriginKeepaliveTimeout?: Integer;
1603
+ /**
1604
+ * Specifies the protocol (HTTP or HTTPS) that CloudFront uses to connect to the origin.
1605
+ */
1606
+ OriginProtocolPolicy?: NonEmptyString;
1607
+ /**
1608
+ * Specifies how long, in seconds, CloudFront waits for a response from the origin.
1609
+ */
1610
+ OriginReadTimeout?: Integer;
1611
+ /**
1612
+ * Specifies the minimum SSL/TLS protocol that CloudFront uses when connecting to your origin over HTTPS.
1613
+ */
1614
+ OriginSslProtocols?: AwsCloudFrontDistributionOriginSslProtocols;
1615
+ }
1507
1616
  export interface AwsCloudFrontDistributionOriginGroup {
1508
1617
  /**
1509
1618
  * Provides the criteria for an origin group to fail over.
@@ -1551,6 +1660,10 @@ declare namespace SecurityHub {
1551
1660
  * An origin that is an S3 bucket that is not configured with static website hosting.
1552
1661
  */
1553
1662
  S3OriginConfig?: AwsCloudFrontDistributionOriginS3OriginConfig;
1663
+ /**
1664
+ * An origin that is not an Amazon S3 bucket, with one exception. If the Amazon S3 bucket is configured with static website hosting, use this attribute. If the Amazon S3 bucket is not configured with static website hosting, use the S3OriginConfig type instead.
1665
+ */
1666
+ CustomOriginConfig?: AwsCloudFrontDistributionOriginCustomOriginConfig;
1554
1667
  }
1555
1668
  export type AwsCloudFrontDistributionOriginItemList = AwsCloudFrontDistributionOriginItem[];
1556
1669
  export interface AwsCloudFrontDistributionOriginS3OriginConfig {
@@ -1559,6 +1672,16 @@ declare namespace SecurityHub {
1559
1672
  */
1560
1673
  OriginAccessIdentity?: NonEmptyString;
1561
1674
  }
1675
+ export interface AwsCloudFrontDistributionOriginSslProtocols {
1676
+ /**
1677
+ * A list that contains allowed SSL/TLS protocols for this distribution.
1678
+ */
1679
+ Items?: NonEmptyStringList;
1680
+ /**
1681
+ * The number of SSL/TLS protocols that you want to allow CloudFront to use when establishing an HTTPS connection with this origin.
1682
+ */
1683
+ Quantity?: Integer;
1684
+ }
1562
1685
  export interface AwsCloudFrontDistributionOrigins {
1563
1686
  /**
1564
1687
  * A complex type that contains origins or origin groups for this distribution.
@@ -1657,6 +1780,107 @@ declare namespace SecurityHub {
1657
1780
  */
1658
1781
  TrailArn?: NonEmptyString;
1659
1782
  }
1783
+ export interface AwsCloudWatchAlarmDetails {
1784
+ /**
1785
+ * Indicates whether actions should be executed during any changes to the alarm state.
1786
+ */
1787
+ ActionsEnabled?: Boolean;
1788
+ /**
1789
+ * The list of actions, specified as Amazon Resource Names (ARNs) to execute when this alarm transitions into an ALARM state from any other state.
1790
+ */
1791
+ AlarmActions?: NonEmptyStringList;
1792
+ /**
1793
+ * The ARN of the alarm.
1794
+ */
1795
+ AlarmArn?: NonEmptyString;
1796
+ /**
1797
+ * The time stamp of the last update to the alarm configuration.
1798
+ */
1799
+ AlarmConfigurationUpdatedTimestamp?: NonEmptyString;
1800
+ /**
1801
+ * The description of the alarm.
1802
+ */
1803
+ AlarmDescription?: NonEmptyString;
1804
+ /**
1805
+ * The name of the alarm. If you don't specify a name, CloudFront generates a unique physical ID and uses that ID for the alarm name.
1806
+ */
1807
+ AlarmName?: NonEmptyString;
1808
+ /**
1809
+ * The arithmetic operation to use when comparing the specified statistic and threshold. The specified statistic value is used as the first operand.
1810
+ */
1811
+ ComparisonOperator?: NonEmptyString;
1812
+ /**
1813
+ * The number of datapoints that must be breaching to trigger the alarm.
1814
+ */
1815
+ DatapointsToAlarm?: Integer;
1816
+ /**
1817
+ * The dimensions for the metric associated with the alarm.
1818
+ */
1819
+ Dimensions?: AwsCloudWatchAlarmDimensionsList;
1820
+ /**
1821
+ * Used only for alarms based on percentiles. If ignore, the alarm state does not change during periods with too few data points to be statistically significant. If evaluate or this parameter is not used, the alarm is always evaluated and possibly changes state no matter how many data points are available.
1822
+ */
1823
+ EvaluateLowSampleCountPercentile?: NonEmptyString;
1824
+ /**
1825
+ * The number of periods over which data is compared to the specified threshold.
1826
+ */
1827
+ EvaluationPeriods?: Integer;
1828
+ /**
1829
+ * The percentile statistic for the metric associated with the alarm.
1830
+ */
1831
+ ExtendedStatistic?: NonEmptyString;
1832
+ /**
1833
+ * The actions to execute when this alarm transitions to the INSUFFICIENT_DATA state from any other state. Each action is specified as an ARN.
1834
+ */
1835
+ InsufficientDataActions?: NonEmptyStringList;
1836
+ /**
1837
+ * The name of the metric associated with the alarm. This is required for an alarm based on a metric. For an alarm based on a math expression, you use Metrics instead and you can't specify MetricName.
1838
+ */
1839
+ MetricName?: NonEmptyString;
1840
+ /**
1841
+ * The namespace of the metric associated with the alarm. This is required for an alarm based on a metric. For an alarm based on a math expression, you can't specify Namespace and you use Metrics instead.
1842
+ */
1843
+ Namespace?: NonEmptyString;
1844
+ /**
1845
+ * The actions to execute when this alarm transitions to the OK state from any other state. Each action is specified as an ARN.
1846
+ */
1847
+ OkActions?: NonEmptyStringList;
1848
+ /**
1849
+ * The period, in seconds, over which the statistic is applied. This is required for an alarm based on a metric.
1850
+ */
1851
+ Period?: Integer;
1852
+ /**
1853
+ * The statistic for the metric associated with the alarm, other than percentile. For percentile statistics, use ExtendedStatistic. For an alarm based on a metric, you must specify either Statistic or ExtendedStatistic but not both. For an alarm based on a math expression, you can't specify Statistic. Instead, you use Metrics.
1854
+ */
1855
+ Statistic?: NonEmptyString;
1856
+ /**
1857
+ * The value to compare with the specified statistic.
1858
+ */
1859
+ Threshold?: Double;
1860
+ /**
1861
+ * n an alarm based on an anomaly detection model, this is the ID of the ANOMALY_DETECTION_BAND function used as the threshold for the alarm.
1862
+ */
1863
+ ThresholdMetricId?: NonEmptyString;
1864
+ /**
1865
+ * Sets how this alarm is to handle missing data points.
1866
+ */
1867
+ TreatMissingData?: NonEmptyString;
1868
+ /**
1869
+ * The unit of the metric associated with the alarm.
1870
+ */
1871
+ Unit?: NonEmptyString;
1872
+ }
1873
+ export interface AwsCloudWatchAlarmDimensionsDetails {
1874
+ /**
1875
+ * The name of a dimension.
1876
+ */
1877
+ Name?: NonEmptyString;
1878
+ /**
1879
+ * The value of a dimension.
1880
+ */
1881
+ Value?: NonEmptyString;
1882
+ }
1883
+ export type AwsCloudWatchAlarmDimensionsList = AwsCloudWatchAlarmDimensionsDetails[];
1660
1884
  export interface AwsCodeBuildProjectArtifactsDetails {
1661
1885
  /**
1662
1886
  * An identifier for the artifact definition.
@@ -2254,6 +2478,36 @@ declare namespace SecurityHub {
2254
2478
  * The identifiers of the network interfaces for the EC2 instance. The details for each network interface are in a corresponding AwsEc2NetworkInterfacesDetails object.
2255
2479
  */
2256
2480
  NetworkInterfaces?: AwsEc2InstanceNetworkInterfacesList;
2481
+ /**
2482
+ * The virtualization type of the Amazon Machine Image (AMI) required to launch the instance.
2483
+ */
2484
+ VirtualizationType?: NonEmptyString;
2485
+ /**
2486
+ * Details about the metadata options for the Amazon EC2 instance.
2487
+ */
2488
+ MetadataOptions?: AwsEc2InstanceMetadataOptions;
2489
+ }
2490
+ export interface AwsEc2InstanceMetadataOptions {
2491
+ /**
2492
+ * Enables or disables the HTTP metadata endpoint on the instance.
2493
+ */
2494
+ HttpEndpoint?: NonEmptyString;
2495
+ /**
2496
+ * Enables or disables the IPv6 endpoint for the instance metadata service.
2497
+ */
2498
+ HttpProtocolIpv6?: NonEmptyString;
2499
+ /**
2500
+ * The desired HTTP PUT response hop limit for instance metadata requests. The larger the number, the further instance metadata requests can travel.
2501
+ */
2502
+ HttpPutResponseHopLimit?: Integer;
2503
+ /**
2504
+ * The state of token usage for your instance metadata requests.
2505
+ */
2506
+ HttpTokens?: NonEmptyString;
2507
+ /**
2508
+ * Specifies whether to allow access to instance tags from the instance metadata.
2509
+ */
2510
+ InstanceMetadataTags?: NonEmptyString;
2257
2511
  }
2258
2512
  export interface AwsEc2InstanceNetworkInterfacesDetails {
2259
2513
  /**
@@ -2590,6 +2844,56 @@ declare namespace SecurityHub {
2590
2844
  */
2591
2845
  Ipv6CidrBlockAssociationSet?: Ipv6CidrBlockAssociationList;
2592
2846
  }
2847
+ export interface AwsEc2TransitGatewayDetails {
2848
+ /**
2849
+ * The ID of the transit gateway.
2850
+ */
2851
+ Id?: NonEmptyString;
2852
+ /**
2853
+ * The description of the transit gateway.
2854
+ */
2855
+ Description?: NonEmptyString;
2856
+ /**
2857
+ * Turn on or turn off automatic propagation of routes to the default propagation route table.
2858
+ */
2859
+ DefaultRouteTablePropagation?: NonEmptyString;
2860
+ /**
2861
+ * Turn on or turn off automatic acceptance of attachment requests.
2862
+ */
2863
+ AutoAcceptSharedAttachments?: NonEmptyString;
2864
+ /**
2865
+ * Turn on or turn off automatic association with the default association route table.
2866
+ */
2867
+ DefaultRouteTableAssociation?: NonEmptyString;
2868
+ /**
2869
+ * The transit gateway Classless Inter-Domain Routing (CIDR) blocks.
2870
+ */
2871
+ TransitGatewayCidrBlocks?: NonEmptyStringList;
2872
+ /**
2873
+ * The ID of the default association route table.
2874
+ */
2875
+ AssociationDefaultRouteTableId?: NonEmptyString;
2876
+ /**
2877
+ * The ID of the default propagation route table.
2878
+ */
2879
+ PropagationDefaultRouteTableId?: NonEmptyString;
2880
+ /**
2881
+ * Turn on or turn off Equal Cost Multipath Protocol (ECMP) support.
2882
+ */
2883
+ VpnEcmpSupport?: NonEmptyString;
2884
+ /**
2885
+ * Turn on or turn off DNS support.
2886
+ */
2887
+ DnsSupport?: NonEmptyString;
2888
+ /**
2889
+ * Indicates whether multicast is supported on the transit gateway.
2890
+ */
2891
+ MulticastSupport?: NonEmptyString;
2892
+ /**
2893
+ * A private Autonomous System Number (ASN) for the Amazon side of a BGP session.
2894
+ */
2895
+ AmazonSideAsn?: Integer;
2896
+ }
2593
2897
  export interface AwsEc2VolumeAttachment {
2594
2898
  /**
2595
2899
  * The datetime when the attachment initiated.
@@ -2615,7 +2919,11 @@ declare namespace SecurityHub {
2615
2919
  */
2616
2920
  CreateTime?: NonEmptyString;
2617
2921
  /**
2618
- * Whether the volume is encrypted.
2922
+ * The device name for the volume that is attached to the instance.
2923
+ */
2924
+ DeviceName?: NonEmptyString;
2925
+ /**
2926
+ * Specifies whether the volume is encrypted.
2619
2927
  */
2620
2928
  Encrypted?: Boolean;
2621
2929
  /**
@@ -2638,6 +2946,18 @@ declare namespace SecurityHub {
2638
2946
  * The volume attachments.
2639
2947
  */
2640
2948
  Attachments?: AwsEc2VolumeAttachmentList;
2949
+ /**
2950
+ * The ID of the volume.
2951
+ */
2952
+ VolumeId?: NonEmptyString;
2953
+ /**
2954
+ * The volume type.
2955
+ */
2956
+ VolumeType?: NonEmptyString;
2957
+ /**
2958
+ * Indicates whether the volume was scanned or skipped.
2959
+ */
2960
+ VolumeScanStatus?: NonEmptyString;
2641
2961
  }
2642
2962
  export interface AwsEc2VpcDetails {
2643
2963
  /**
@@ -2710,6 +3030,68 @@ declare namespace SecurityHub {
2710
3030
  ServiceType?: NonEmptyString;
2711
3031
  }
2712
3032
  export type AwsEc2VpcEndpointServiceServiceTypeList = AwsEc2VpcEndpointServiceServiceTypeDetails[];
3033
+ export interface AwsEc2VpcPeeringConnectionDetails {
3034
+ /**
3035
+ * Information about the accepter VPC.
3036
+ */
3037
+ AccepterVpcInfo?: AwsEc2VpcPeeringConnectionVpcInfoDetails;
3038
+ /**
3039
+ * The time at which an unaccepted VPC peering connection will expire.
3040
+ */
3041
+ ExpirationTime?: NonEmptyString;
3042
+ /**
3043
+ * Information about the requester VPC.
3044
+ */
3045
+ RequesterVpcInfo?: AwsEc2VpcPeeringConnectionVpcInfoDetails;
3046
+ /**
3047
+ * The status of the VPC peering connection.
3048
+ */
3049
+ Status?: AwsEc2VpcPeeringConnectionStatusDetails;
3050
+ /**
3051
+ * The ID of the VPC peering connection.
3052
+ */
3053
+ VpcPeeringConnectionId?: NonEmptyString;
3054
+ }
3055
+ export interface AwsEc2VpcPeeringConnectionStatusDetails {
3056
+ /**
3057
+ * The status of the VPC peering connection.
3058
+ */
3059
+ Code?: NonEmptyString;
3060
+ /**
3061
+ * A message that provides more information about the status, if applicable.
3062
+ */
3063
+ Message?: NonEmptyString;
3064
+ }
3065
+ export interface AwsEc2VpcPeeringConnectionVpcInfoDetails {
3066
+ /**
3067
+ * The IPv4 CIDR block for the VPC.
3068
+ */
3069
+ CidrBlock?: NonEmptyString;
3070
+ /**
3071
+ * Information about the IPv4 CIDR blocks for the VPC.
3072
+ */
3073
+ CidrBlockSet?: VpcInfoCidrBlockSetList;
3074
+ /**
3075
+ * The IPv6 CIDR block for the VPC.
3076
+ */
3077
+ Ipv6CidrBlockSet?: VpcInfoIpv6CidrBlockSetList;
3078
+ /**
3079
+ * The ID of the Amazon Web Services account that owns the VPC.
3080
+ */
3081
+ OwnerId?: NonEmptyString;
3082
+ /**
3083
+ * Information about the VPC peering connection options for the accepter or requester VPC.
3084
+ */
3085
+ PeeringOptions?: VpcInfoPeeringOptionsDetails;
3086
+ /**
3087
+ * The Amazon Web Services Region in which the VPC is located.
3088
+ */
3089
+ Region?: NonEmptyString;
3090
+ /**
3091
+ * The ID of the VPC.
3092
+ */
3093
+ VpcId?: NonEmptyString;
3094
+ }
2713
3095
  export interface AwsEc2VpnConnectionDetails {
2714
3096
  /**
2715
3097
  * The identifier of the VPN connection.
@@ -3008,6 +3390,14 @@ declare namespace SecurityHub {
3008
3390
  }
3009
3391
  export type AwsEcsClusterDefaultCapacityProviderStrategyList = AwsEcsClusterDefaultCapacityProviderStrategyDetails[];
3010
3392
  export interface AwsEcsClusterDetails {
3393
+ /**
3394
+ * The Amazon Resource Name (ARN) that identifies the cluster.
3395
+ */
3396
+ ClusterArn?: NonEmptyString;
3397
+ /**
3398
+ * The number of services that are running on the cluster in an ACTIVE state. You can view these services with the Amazon ECS ListServices API operation.
3399
+ */
3400
+ ActiveServicesCount?: Integer;
3011
3401
  /**
3012
3402
  * The short name of one or more capacity providers to associate with the cluster.
3013
3403
  */
@@ -3024,7 +3414,42 @@ declare namespace SecurityHub {
3024
3414
  * The default capacity provider strategy for the cluster. The default capacity provider strategy is used when services or tasks are run without a specified launch type or capacity provider strategy.
3025
3415
  */
3026
3416
  DefaultCapacityProviderStrategy?: AwsEcsClusterDefaultCapacityProviderStrategyList;
3417
+ /**
3418
+ * A name that you use to identify your cluster.
3419
+ */
3420
+ ClusterName?: NonEmptyString;
3421
+ /**
3422
+ * The number of container instances registered into the cluster. This includes container instances in both ACTIVE and DRAINING status.
3423
+ */
3424
+ RegisteredContainerInstancesCount?: Integer;
3425
+ /**
3426
+ * The number of tasks in the cluster that are in the RUNNING state.
3427
+ */
3428
+ RunningTasksCount?: Integer;
3429
+ /**
3430
+ * The status of the cluster.
3431
+ */
3432
+ Status?: NonEmptyString;
3433
+ }
3434
+ export interface AwsEcsContainerDetails {
3435
+ /**
3436
+ * The name of the container.
3437
+ */
3438
+ Name?: NonEmptyString;
3439
+ /**
3440
+ * The image used for the container.
3441
+ */
3442
+ Image?: NonEmptyString;
3443
+ /**
3444
+ * The mount points for data volumes in your container.
3445
+ */
3446
+ MountPoints?: AwsMountPointList;
3447
+ /**
3448
+ * When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user).
3449
+ */
3450
+ Privileged?: Boolean;
3027
3451
  }
3452
+ export type AwsEcsContainerDetailsList = AwsEcsContainerDetails[];
3028
3453
  export interface AwsEcsServiceCapacityProviderStrategyDetails {
3029
3454
  /**
3030
3455
  * The minimum number of tasks to run on the capacity provider. Only one strategy item can specify a value for Base. The value must be between 0 and 100000.
@@ -3849,6 +4274,125 @@ declare namespace SecurityHub {
3849
4274
  SourcePath?: NonEmptyString;
3850
4275
  }
3851
4276
  export type AwsEcsTaskDefinitionVolumesList = AwsEcsTaskDefinitionVolumesDetails[];
4277
+ export interface AwsEcsTaskDetails {
4278
+ /**
4279
+ * The Amazon Resource Name (ARN) of the cluster that hosts the task.
4280
+ */
4281
+ ClusterArn?: NonEmptyString;
4282
+ /**
4283
+ * The ARN of the task definition that creates the task.
4284
+ */
4285
+ TaskDefinitionArn?: NonEmptyString;
4286
+ /**
4287
+ * The version counter for the task.
4288
+ */
4289
+ Version?: NonEmptyString;
4290
+ /**
4291
+ * The Unix timestamp for the time when the task was created. More specifically, it's for the time when the task entered the PENDING state.
4292
+ */
4293
+ CreatedAt?: NonEmptyString;
4294
+ /**
4295
+ * The Unix timestamp for the time when the task started. More specifically, it's for the time when the task transitioned from the PENDING state to the RUNNING state.
4296
+ */
4297
+ StartedAt?: NonEmptyString;
4298
+ /**
4299
+ * The tag specified when a task is started. If an Amazon ECS service started the task, the startedBy parameter contains the deployment ID of that service.
4300
+ */
4301
+ StartedBy?: NonEmptyString;
4302
+ /**
4303
+ * The name of the task group that's associated with the task.
4304
+ */
4305
+ Group?: NonEmptyString;
4306
+ /**
4307
+ * Details about the data volume that is used in a task definition.
4308
+ */
4309
+ Volumes?: AwsEcsTaskVolumeDetailsList;
4310
+ /**
4311
+ * The containers that are associated with the task.
4312
+ */
4313
+ Containers?: AwsEcsContainerDetailsList;
4314
+ }
4315
+ export interface AwsEcsTaskVolumeDetails {
4316
+ /**
4317
+ * The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, underscores, and hyphens are allowed. This name is referenced in the sourceVolume parameter of container definition mountPoints.
4318
+ */
4319
+ Name?: NonEmptyString;
4320
+ /**
4321
+ * This parameter is specified when you use bind mount host volumes. The contents of the host parameter determine whether your bind mount host volume persists on the host container instance and where it's stored.
4322
+ */
4323
+ Host?: AwsEcsTaskVolumeHostDetails;
4324
+ }
4325
+ export type AwsEcsTaskVolumeDetailsList = AwsEcsTaskVolumeDetails[];
4326
+ export interface AwsEcsTaskVolumeHostDetails {
4327
+ /**
4328
+ * When the host parameter is used, specify a sourcePath to declare the path on the host container instance that's presented to the container.
4329
+ */
4330
+ SourcePath?: NonEmptyString;
4331
+ }
4332
+ export interface AwsEfsAccessPointDetails {
4333
+ /**
4334
+ * The ID of the Amazon EFS access point.
4335
+ */
4336
+ AccessPointId?: NonEmptyString;
4337
+ /**
4338
+ * The Amazon Resource Name (ARN) of the Amazon EFS access point.
4339
+ */
4340
+ Arn?: NonEmptyString;
4341
+ /**
4342
+ * The opaque string specified in the request to ensure idempotent creation.
4343
+ */
4344
+ ClientToken?: NonEmptyString;
4345
+ /**
4346
+ * The ID of the Amazon EFS file system that the access point applies to.
4347
+ */
4348
+ FileSystemId?: NonEmptyString;
4349
+ /**
4350
+ * The full POSIX identity, including the user ID, group ID, and secondary group IDs on the access point, that is used for all file operations by NFS clients using the access point.
4351
+ */
4352
+ PosixUser?: AwsEfsAccessPointPosixUserDetails;
4353
+ /**
4354
+ * The directory on the Amazon EFS file system that the access point exposes as the root directory to NFS clients using the access point.
4355
+ */
4356
+ RootDirectory?: AwsEfsAccessPointRootDirectoryDetails;
4357
+ }
4358
+ export interface AwsEfsAccessPointPosixUserDetails {
4359
+ /**
4360
+ * The POSIX group ID used for all file system operations using this access point.
4361
+ */
4362
+ Gid?: NonEmptyString;
4363
+ /**
4364
+ * Secondary POSIX group IDs used for all file system operations using this access point.
4365
+ */
4366
+ SecondaryGids?: NonEmptyStringList;
4367
+ /**
4368
+ * The POSIX user ID used for all file system operations using this access point.
4369
+ */
4370
+ Uid?: NonEmptyString;
4371
+ }
4372
+ export interface AwsEfsAccessPointRootDirectoryCreationInfoDetails {
4373
+ /**
4374
+ * Specifies the POSIX group ID to apply to the root directory.
4375
+ */
4376
+ OwnerGid?: NonEmptyString;
4377
+ /**
4378
+ * Specifies the POSIX user ID to apply to the root directory.
4379
+ */
4380
+ OwnerUid?: NonEmptyString;
4381
+ /**
4382
+ * Specifies the POSIX permissions to apply to the root directory, in the format of an octal number representing the file's mode bits.
4383
+ */
4384
+ Permissions?: NonEmptyString;
4385
+ }
4386
+ export interface AwsEfsAccessPointRootDirectoryDetails {
4387
+ /**
4388
+ * Specifies the POSIX IDs and permissions to apply to the access point's root directory.
4389
+ */
4390
+ CreationInfo?: AwsEfsAccessPointRootDirectoryCreationInfoDetails;
4391
+ /**
4392
+ * Specifies the path on the Amazon EFS file system to expose as the root directory to NFS clients using the access point to access the EFS file system. A path can have up to four subdirectories. If the specified path does not exist, you are required to provide CreationInfo.
4393
+ */
4394
+ Path?: NonEmptyString;
4395
+ }
3852
4396
  export interface AwsEksClusterDetails {
3853
4397
  /**
3854
4398
  * The ARN of the cluster.
@@ -4865,7 +5409,39 @@ declare namespace SecurityHub {
4865
5409
  */
4866
5410
  PolicyName?: NonEmptyString;
4867
5411
  }
4868
- export type AwsIamUserPolicyList = AwsIamUserPolicy[];
5412
+ export type AwsIamUserPolicyList = AwsIamUserPolicy[];
5413
+ export interface AwsKinesisStreamDetails {
5414
+ /**
5415
+ * The name of the Kinesis stream. If you don't specify a name, CloudFront generates a unique physical ID and uses that ID for the stream name.
5416
+ */
5417
+ Name?: NonEmptyString;
5418
+ /**
5419
+ * The Amazon Resource Name (ARN) of the Kinesis data stream.
5420
+ */
5421
+ Arn?: NonEmptyString;
5422
+ /**
5423
+ * When specified, enables or updates server-side encryption using an KMS key for a specified stream. Removing this property from your stack template and updating your stack disables encryption.
5424
+ */
5425
+ StreamEncryption?: AwsKinesisStreamStreamEncryptionDetails;
5426
+ /**
5427
+ * The number of shards that the stream uses.
5428
+ */
5429
+ ShardCount?: Integer;
5430
+ /**
5431
+ * The number of hours for the data records that are stored in shards to remain accessible.
5432
+ */
5433
+ RetentionPeriodHours?: Integer;
5434
+ }
5435
+ export interface AwsKinesisStreamStreamEncryptionDetails {
5436
+ /**
5437
+ * The encryption type to use.
5438
+ */
5439
+ EncryptionType?: NonEmptyString;
5440
+ /**
5441
+ * The globally unique identifier for the customer-managed KMS key to use for encryption.
5442
+ */
5443
+ KeyId?: NonEmptyString;
5444
+ }
4869
5445
  export interface AwsKmsKeyDetails {
4870
5446
  /**
4871
5447
  * The twelve-digit account ID of the Amazon Web Services account that owns the KMS key.
@@ -4892,7 +5468,7 @@ declare namespace SecurityHub {
4892
5468
  */
4893
5469
  Origin?: NonEmptyString;
4894
5470
  /**
4895
- * A description of the key.
5471
+ * A description of the KMS key.
4896
5472
  */
4897
5473
  Description?: NonEmptyString;
4898
5474
  /**
@@ -5064,6 +5640,17 @@ declare namespace SecurityHub {
5064
5640
  CreatedDate?: NonEmptyString;
5065
5641
  }
5066
5642
  export type AwsLambdaLayerVersionNumber = number;
5643
+ export interface AwsMountPoint {
5644
+ /**
5645
+ * The name of the volume to mount. Must be a volume name referenced in the name parameter of task definition volume.
5646
+ */
5647
+ SourceVolume?: NonEmptyString;
5648
+ /**
5649
+ * The path on the container to mount the host volume at.
5650
+ */
5651
+ ContainerPath?: NonEmptyString;
5652
+ }
5653
+ export type AwsMountPointList = AwsMountPoint[];
5067
5654
  export interface AwsNetworkFirewallFirewallDetails {
5068
5655
  /**
5069
5656
  * Whether the firewall is protected from deletion. If set to true, then the firewall cannot be deleted.
@@ -5165,6 +5752,20 @@ declare namespace SecurityHub {
5165
5752
  */
5166
5753
  Type?: NonEmptyString;
5167
5754
  }
5755
+ export interface AwsOpenSearchServiceDomainAdvancedSecurityOptionsDetails {
5756
+ /**
5757
+ * Enables fine-grained access control.
5758
+ */
5759
+ Enabled?: Boolean;
5760
+ /**
5761
+ * Enables the internal user database.
5762
+ */
5763
+ InternalUserDatabaseEnabled?: Boolean;
5764
+ /**
5765
+ * Specifies information about the master user of the domain.
5766
+ */
5767
+ MasterUserOptions?: AwsOpenSearchServiceDomainMasterUserOptionsDetails;
5768
+ }
5168
5769
  export interface AwsOpenSearchServiceDomainClusterConfigDetails {
5169
5770
  /**
5170
5771
  * The number of data nodes to use in the OpenSearch domain.
@@ -5270,6 +5871,10 @@ declare namespace SecurityHub {
5270
5871
  * The domain endpoints. Used if the OpenSearch domain resides in a VPC. This is a map of key-value pairs. The key is always vpc. The value is the endpoint.
5271
5872
  */
5272
5873
  DomainEndpoints?: FieldMap;
5874
+ /**
5875
+ * Specifies options for fine-grained access control.
5876
+ */
5877
+ AdvancedSecurityOptions?: AwsOpenSearchServiceDomainAdvancedSecurityOptionsDetails;
5273
5878
  }
5274
5879
  export interface AwsOpenSearchServiceDomainDomainEndpointOptionsDetails {
5275
5880
  /**
@@ -5327,6 +5932,20 @@ declare namespace SecurityHub {
5327
5932
  */
5328
5933
  AuditLogs?: AwsOpenSearchServiceDomainLogPublishingOption;
5329
5934
  }
5935
+ export interface AwsOpenSearchServiceDomainMasterUserOptionsDetails {
5936
+ /**
5937
+ * The Amazon Resource Name (ARN) for the master user.
5938
+ */
5939
+ MasterUserArn?: NonEmptyString;
5940
+ /**
5941
+ * The username for the master user.
5942
+ */
5943
+ MasterUserName?: NonEmptyString;
5944
+ /**
5945
+ * The password for the master user.
5946
+ */
5947
+ MasterUserPassword?: NonEmptyString;
5948
+ }
5330
5949
  export interface AwsOpenSearchServiceDomainNodeToNodeEncryptionOptionsDetails {
5331
5950
  /**
5332
5951
  * Whether node-to-node encryption is enabled.
@@ -7289,6 +7908,10 @@ declare namespace SecurityHub {
7289
7908
  * The details of process-related information about a finding.
7290
7909
  */
7291
7910
  Process?: ProcessDetails;
7911
+ /**
7912
+ * Details about the threat detected in a security finding and the file paths that were affected by the threat.
7913
+ */
7914
+ Threats?: ThreatList;
7292
7915
  /**
7293
7916
  * Threat intelligence details related to a finding.
7294
7917
  */
@@ -7746,17 +8369,45 @@ declare namespace SecurityHub {
7746
8369
  */
7747
8370
  KmsMasterKeyId?: NonEmptyString;
7748
8371
  /**
7749
- * Subscription is an embedded property that describes the subscription endpoints of an SNS topic.
8372
+ * Subscription is an embedded property that describes the subscription endpoints of an Amazon SNS topic.
7750
8373
  */
7751
8374
  Subscription?: AwsSnsTopicSubscriptionList;
7752
8375
  /**
7753
- * The name of the topic.
8376
+ * The name of the Amazon SNS topic.
7754
8377
  */
7755
8378
  TopicName?: NonEmptyString;
7756
8379
  /**
7757
8380
  * The subscription's owner.
7758
8381
  */
7759
8382
  Owner?: NonEmptyString;
8383
+ /**
8384
+ * Indicates successful message delivery status for an Amazon SNS topic that is subscribed to an Amazon SQS endpoint.
8385
+ */
8386
+ SqsSuccessFeedbackRoleArn?: NonEmptyString;
8387
+ /**
8388
+ * Indicates failed message delivery status for an Amazon SNS topic that is subscribed to an Amazon SQS endpoint.
8389
+ */
8390
+ SqsFailureFeedbackRoleArn?: NonEmptyString;
8391
+ /**
8392
+ * Indicates failed message delivery status for an Amazon SNS topic that is subscribed to a platform application endpoint.
8393
+ */
8394
+ ApplicationSuccessFeedbackRoleArn?: NonEmptyString;
8395
+ /**
8396
+ * Indicates successful message delivery status for an Amazon SNS topic that is subscribed to an Amazon Kinesis Data Firehose endpoint.
8397
+ */
8398
+ FirehoseSuccessFeedbackRoleArn?: NonEmptyString;
8399
+ /**
8400
+ * Indicates failed message delivery status for an Amazon SNS topic that is subscribed to an Amazon Kinesis Data Firehose endpoint.
8401
+ */
8402
+ FirehoseFailureFeedbackRoleArn?: NonEmptyString;
8403
+ /**
8404
+ * Indicates successful message delivery status for an Amazon SNS topic that is subscribed to an HTTP endpoint.
8405
+ */
8406
+ HttpSuccessFeedbackRoleArn?: NonEmptyString;
8407
+ /**
8408
+ * Indicates failed message delivery status for an Amazon SNS topic that is subscribed to an HTTP endpoint.
8409
+ */
8410
+ HttpFailureFeedbackRoleArn?: NonEmptyString;
7760
8411
  }
7761
8412
  export interface AwsSnsTopicSubscription {
7762
8413
  /**
@@ -7955,21 +8606,230 @@ declare namespace SecurityHub {
7955
8606
  Type?: NonEmptyString;
7956
8607
  }
7957
8608
  export type AwsWafRegionalRateBasedRuleMatchPredicateList = AwsWafRegionalRateBasedRuleMatchPredicate[];
8609
+ export interface AwsWafRegionalRuleDetails {
8610
+ /**
8611
+ * A name for the metrics for the rule.
8612
+ */
8613
+ MetricName?: NonEmptyString;
8614
+ /**
8615
+ * A descriptive name for the rule.
8616
+ */
8617
+ Name?: NonEmptyString;
8618
+ /**
8619
+ * Specifies the ByteMatchSet, IPSet, SqlInjectionMatchSet, XssMatchSet, RegexMatchSet, GeoMatchSet, and SizeConstraintSet objects that you want to add to a rule and, for each object, indicates whether you want to negate the settings.
8620
+ */
8621
+ PredicateList?: AwsWafRegionalRulePredicateList;
8622
+ /**
8623
+ * The ID of the rule.
8624
+ */
8625
+ RuleId?: NonEmptyString;
8626
+ }
8627
+ export interface AwsWafRegionalRuleGroupDetails {
8628
+ /**
8629
+ * A name for the metrics for this rule group.
8630
+ */
8631
+ MetricName?: NonEmptyString;
8632
+ /**
8633
+ * The descriptive name of the rule group.
8634
+ */
8635
+ Name?: NonEmptyString;
8636
+ /**
8637
+ * The ID of the rule group.
8638
+ */
8639
+ RuleGroupId?: NonEmptyString;
8640
+ /**
8641
+ * Provides information about the rule statements used to identify the web requests that you want to allow, block, or count.
8642
+ */
8643
+ Rules?: AwsWafRegionalRuleGroupRulesList;
8644
+ }
8645
+ export interface AwsWafRegionalRuleGroupRulesActionDetails {
8646
+ /**
8647
+ * Specifies the ByteMatchSet, IPSet, SqlInjectionMatchSet, XssMatchSet, RegexMatchSet, GeoMatchSet, and SizeConstraintSet objects that you want to add to a rule and, for each object, indicates whether you want to negate the settings.
8648
+ */
8649
+ Type?: NonEmptyString;
8650
+ }
8651
+ export interface AwsWafRegionalRuleGroupRulesDetails {
8652
+ /**
8653
+ * The action that WAF should take on a web request when it matches the criteria defined in the rule.
8654
+ */
8655
+ Action?: AwsWafRegionalRuleGroupRulesActionDetails;
8656
+ /**
8657
+ * If you define more than one rule in a web ACL, WAF evaluates each request against the rules in order based on the value of Priority.
8658
+ */
8659
+ Priority?: Integer;
8660
+ /**
8661
+ * The ID for a rule.
8662
+ */
8663
+ RuleId?: NonEmptyString;
8664
+ /**
8665
+ * The type of rule in the rule group.
8666
+ */
8667
+ Type?: NonEmptyString;
8668
+ }
8669
+ export type AwsWafRegionalRuleGroupRulesList = AwsWafRegionalRuleGroupRulesDetails[];
8670
+ export type AwsWafRegionalRulePredicateList = AwsWafRegionalRulePredicateListDetails[];
8671
+ export interface AwsWafRegionalRulePredicateListDetails {
8672
+ /**
8673
+ * A unique identifier for a predicate in a rule, such as ByteMatchSetId or IPSetId.
8674
+ */
8675
+ DataId?: NonEmptyString;
8676
+ /**
8677
+ * Specifies if you want WAF to allow, block, or count requests based on the settings in the ByteMatchSet, IPSet, SqlInjectionMatchSet, XssMatchSet, RegexMatchSet, GeoMatchSet, or SizeConstraintSet.
8678
+ */
8679
+ Negated?: Boolean;
8680
+ /**
8681
+ * The type of predicate in a rule, such as ByteMatch or IPSet.
8682
+ */
8683
+ Type?: NonEmptyString;
8684
+ }
8685
+ export interface AwsWafRegionalWebAclDetails {
8686
+ /**
8687
+ * The action to perform if none of the rules contained in the web ACL match.
8688
+ */
8689
+ DefaultAction?: NonEmptyString;
8690
+ /**
8691
+ * A name for the metrics for this web ACL.
8692
+ */
8693
+ MetricName?: NonEmptyString;
8694
+ /**
8695
+ * A descriptive name for the web ACL.
8696
+ */
8697
+ Name?: NonEmptyString;
8698
+ /**
8699
+ * An array that contains the action for each rule in a web ACL, the priority of the rule, and the ID of the rule.
8700
+ */
8701
+ RulesList?: AwsWafRegionalWebAclRulesList;
8702
+ /**
8703
+ * The ID of the web ACL.
8704
+ */
8705
+ WebAclId?: NonEmptyString;
8706
+ }
8707
+ export type AwsWafRegionalWebAclRulesList = AwsWafRegionalWebAclRulesListDetails[];
8708
+ export interface AwsWafRegionalWebAclRulesListActionDetails {
8709
+ /**
8710
+ * For actions that are associated with a rule, the action that WAF takes when a web request matches all conditions in a rule.
8711
+ */
8712
+ Type?: NonEmptyString;
8713
+ }
8714
+ export interface AwsWafRegionalWebAclRulesListDetails {
8715
+ /**
8716
+ * The action that AWS WAF takes when a web request matches all conditions in the rule, such as allow, block, or count the request.
8717
+ */
8718
+ Action?: AwsWafRegionalWebAclRulesListActionDetails;
8719
+ /**
8720
+ * Overrides the rule evaluation result in the rule group.
8721
+ */
8722
+ OverrideAction?: AwsWafRegionalWebAclRulesListOverrideActionDetails;
8723
+ /**
8724
+ * The order in which WAF evaluates the rules in a web ACL.
8725
+ */
8726
+ Priority?: Integer;
8727
+ /**
8728
+ * The ID of an WAF Regional rule to associate with a web ACL.
8729
+ */
8730
+ RuleId?: NonEmptyString;
8731
+ /**
8732
+ * For actions that are associated with a rule, the action that WAF takes when a web request matches all conditions in a rule.
8733
+ */
8734
+ Type?: NonEmptyString;
8735
+ }
8736
+ export interface AwsWafRegionalWebAclRulesListOverrideActionDetails {
8737
+ /**
8738
+ * Overrides the rule evaluation result in the rule group.
8739
+ */
8740
+ Type?: NonEmptyString;
8741
+ }
8742
+ export interface AwsWafRuleDetails {
8743
+ /**
8744
+ * The name of the metrics for this rule.
8745
+ */
8746
+ MetricName?: NonEmptyString;
8747
+ /**
8748
+ * A descriptive name for the rule.
8749
+ */
8750
+ Name?: NonEmptyString;
8751
+ /**
8752
+ * Specifies the ByteMatchSet, IPSet, SqlInjectionMatchSet, XssMatchSet, RegexMatchSet, GeoMatchSet, and SizeConstraintSet objects that you want to add to a rule and, for each object, indicates whether you want to negate the settings.
8753
+ */
8754
+ PredicateList?: AwsWafRulePredicateList;
8755
+ /**
8756
+ * The ID of the WAF rule.
8757
+ */
8758
+ RuleId?: NonEmptyString;
8759
+ }
8760
+ export interface AwsWafRuleGroupDetails {
8761
+ /**
8762
+ * The name of the metrics for this rule group.
8763
+ */
8764
+ MetricName?: NonEmptyString;
8765
+ /**
8766
+ * The name of the rule group.
8767
+ */
8768
+ Name?: NonEmptyString;
8769
+ /**
8770
+ * The ID of the rule group.
8771
+ */
8772
+ RuleGroupId?: NonEmptyString;
8773
+ /**
8774
+ * Provides information about the rules attached to the rule group. These rules identify the web requests that you want to allow, block, or count.
8775
+ */
8776
+ Rules?: AwsWafRuleGroupRulesList;
8777
+ }
8778
+ export interface AwsWafRuleGroupRulesActionDetails {
8779
+ /**
8780
+ * The action that WAF should take on a web request when it matches the rule's statement.
8781
+ */
8782
+ Type?: NonEmptyString;
8783
+ }
8784
+ export interface AwsWafRuleGroupRulesDetails {
8785
+ /**
8786
+ * Provides information about what action WAF should take on a web request when it matches the criteria defined in the rule.
8787
+ */
8788
+ Action?: AwsWafRuleGroupRulesActionDetails;
8789
+ /**
8790
+ * If you define more than one rule in a web ACL, WAF evaluates each request against the rules in order based on the value of Priority.
8791
+ */
8792
+ Priority?: Integer;
8793
+ /**
8794
+ * The rule ID for a rule.
8795
+ */
8796
+ RuleId?: NonEmptyString;
8797
+ /**
8798
+ * The type of rule.
8799
+ */
8800
+ Type?: NonEmptyString;
8801
+ }
8802
+ export type AwsWafRuleGroupRulesList = AwsWafRuleGroupRulesDetails[];
8803
+ export type AwsWafRulePredicateList = AwsWafRulePredicateListDetails[];
8804
+ export interface AwsWafRulePredicateListDetails {
8805
+ /**
8806
+ * A unique identifier for a predicate in a rule, such as ByteMatchSetId or IPSetId.
8807
+ */
8808
+ DataId?: NonEmptyString;
8809
+ /**
8810
+ * Specifies if you want WAF to allow, block, or count requests based on the settings in the ByteMatchSet, IPSet, SqlInjectionMatchSet, XssMatchSet, RegexMatchSet, GeoMatchSet, or SizeConstraintSet.
8811
+ */
8812
+ Negated?: Boolean;
8813
+ /**
8814
+ * The type of predicate in a rule, such as ByteMatch or IPSet.
8815
+ */
8816
+ Type?: NonEmptyString;
8817
+ }
7958
8818
  export interface AwsWafWebAclDetails {
7959
8819
  /**
7960
- * A friendly name or description of the WebACL. You can't change the name of a WebACL after you create it.
8820
+ * A friendly name or description of the web ACL. You can't change the name of a web ACL after you create it.
7961
8821
  */
7962
8822
  Name?: NonEmptyString;
7963
8823
  /**
7964
- * The action to perform if none of the rules contained in the WebACL match.
8824
+ * The action to perform if none of the rules contained in the web ACL match.
7965
8825
  */
7966
8826
  DefaultAction?: NonEmptyString;
7967
8827
  /**
7968
- * An array that contains the action for each rule in a WebACL, the priority of the rule, and the ID of the rule.
8828
+ * An array that contains the action for each rule in a web ACL, the priority of the rule, and the ID of the rule.
7969
8829
  */
7970
8830
  Rules?: AwsWafWebAclRuleList;
7971
8831
  /**
7972
- * A unique identifier for a WebACL.
8832
+ * A unique identifier for a web ACL.
7973
8833
  */
7974
8834
  WebAclId?: NonEmptyString;
7975
8835
  }
@@ -7983,11 +8843,11 @@ declare namespace SecurityHub {
7983
8843
  */
7984
8844
  ExcludedRules?: WafExcludedRuleList;
7985
8845
  /**
7986
- * Use the OverrideAction to test your RuleGroup. Any rule in a RuleGroup can potentially block a request. If you set the OverrideAction to None, the RuleGroup blocks a request if any individual rule in the RuleGroup matches the request and is configured to block that request. However, if you first want to test the RuleGroup, set the OverrideAction to Count. The RuleGroup then overrides any block action specified by individual rules contained within the group. Instead of blocking matching requests, those requests are counted. ActivatedRule|OverrideAction applies only when updating or adding a RuleGroup to a WebACL. In this case you do not use ActivatedRule|Action. For all other update requests, ActivatedRule|Action is used instead of ActivatedRule|OverrideAction.
8846
+ * Use the OverrideAction to test your RuleGroup. Any rule in a RuleGroup can potentially block a request. If you set the OverrideAction to None, the RuleGroup blocks a request if any individual rule in the RuleGroup matches the request and is configured to block that request. However, if you first want to test the RuleGroup, set the OverrideAction to Count. The RuleGroup then overrides any block action specified by individual rules contained within the group. Instead of blocking matching requests, those requests are counted. ActivatedRule|OverrideAction applies only when updating or adding a RuleGroup to a web ACL. In this case you do not use ActivatedRule Action. For all other update requests, ActivatedRule Action is used instead of ActivatedRule OverrideAction.
7987
8847
  */
7988
8848
  OverrideAction?: WafOverrideAction;
7989
8849
  /**
7990
- * Specifies the order in which the rules in a WebACL are evaluated. Rules with a lower value for Priority are evaluated before rules with a higher value. The value must be a unique integer. If you add multiple rules to a WebACL, the values do not need to be consecutive.
8850
+ * Specifies the order in which the rules in a web ACL are evaluated. Rules with a lower value for Priority are evaluated before rules with a higher value. The value must be a unique integer. If you add multiple rules to a web ACL, the values do not need to be consecutive.
7991
8851
  */
7992
8852
  Priority?: Integer;
7993
8853
  /**
@@ -8224,22 +9084,34 @@ declare namespace SecurityHub {
8224
9084
  }
8225
9085
  export type ComplianceStatus = "PASSED"|"WARNING"|"FAILED"|"NOT_AVAILABLE"|string;
8226
9086
  export interface ContainerDetails {
9087
+ /**
9088
+ * The runtime of the container.
9089
+ */
9090
+ ContainerRuntime?: NonEmptyString;
8227
9091
  /**
8228
9092
  * The name of the container related to a finding.
8229
9093
  */
8230
9094
  Name?: NonEmptyString;
8231
9095
  /**
8232
- * The identifier of the image related to a finding.
9096
+ * The identifier of the container image related to a finding.
8233
9097
  */
8234
9098
  ImageId?: NonEmptyString;
8235
9099
  /**
8236
- * The name of the image related to a finding.
9100
+ * The name of the container image related to a finding.
8237
9101
  */
8238
9102
  ImageName?: NonEmptyString;
8239
9103
  /**
8240
9104
  * Indicates when the container started. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
8241
9105
  */
8242
9106
  LaunchedAt?: NonEmptyString;
9107
+ /**
9108
+ * Provides information about the mounting of a volume in a container.
9109
+ */
9110
+ VolumeMounts?: VolumeMountList;
9111
+ /**
9112
+ * When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user).
9113
+ */
9114
+ Privileged?: Boolean;
8243
9115
  }
8244
9116
  export type ControlStatus = "ENABLED"|"DISABLED"|string;
8245
9117
  export interface Country {
@@ -8701,6 +9573,25 @@ declare namespace SecurityHub {
8701
9573
  export interface EnableSecurityHubResponse {
8702
9574
  }
8703
9575
  export type FieldMap = {[key: string]: NonEmptyString};
9576
+ export type FilePathList = FilePaths[];
9577
+ export interface FilePaths {
9578
+ /**
9579
+ * Path to the infected or suspicious file on the resource it was detected on.
9580
+ */
9581
+ FilePath?: NonEmptyString;
9582
+ /**
9583
+ * The name of the infected or suspicious file corresponding to the hash.
9584
+ */
9585
+ FileName?: NonEmptyString;
9586
+ /**
9587
+ * The Amazon Resource Name (ARN) of the resource on which the threat was detected.
9588
+ */
9589
+ ResourceId?: NonEmptyString;
9590
+ /**
9591
+ * The hash value for the infected or suspicious file.
9592
+ */
9593
+ Hash?: NonEmptyString;
9594
+ }
8704
9595
  export interface FindingAggregator {
8705
9596
  /**
8706
9597
  * The ARN of the finding aggregator. You use the finding aggregator ARN to retrieve details for, update, and delete the finding aggregator.
@@ -9772,11 +10663,11 @@ declare namespace SecurityHub {
9772
10663
  */
9773
10664
  AwsEc2SecurityGroup?: AwsEc2SecurityGroupDetails;
9774
10665
  /**
9775
- * Details for an EC2 volume.
10666
+ * Details for an Amazon EC2 volume.
9776
10667
  */
9777
10668
  AwsEc2Volume?: AwsEc2VolumeDetails;
9778
10669
  /**
9779
- * Details for an EC2 VPC.
10670
+ * Details for an Amazon EC2 VPC.
9780
10671
  */
9781
10672
  AwsEc2Vpc?: AwsEc2VpcDetails;
9782
10673
  /**
@@ -9904,7 +10795,7 @@ declare namespace SecurityHub {
9904
10795
  */
9905
10796
  AwsSqsQueue?: AwsSqsQueueDetails;
9906
10797
  /**
9907
- * Details for an WAF WebACL.
10798
+ * Details for an WAF web ACL.
9908
10799
  */
9909
10800
  AwsWafWebAcl?: AwsWafWebAclDetails;
9910
10801
  /**
@@ -9920,9 +10811,13 @@ declare namespace SecurityHub {
9920
10811
  */
9921
10812
  AwsRdsDbCluster?: AwsRdsDbClusterDetails;
9922
10813
  /**
9923
- * Details about an ECS cluster.
10814
+ * Details about an Amazon ECS cluster.
9924
10815
  */
9925
10816
  AwsEcsCluster?: AwsEcsClusterDetails;
10817
+ /**
10818
+ * Provides information about a Docker container that's part of a task.
10819
+ */
10820
+ AwsEcsContainer?: AwsEcsContainerDetails;
9926
10821
  /**
9927
10822
  * Details about a task definition. A task definition describes the container and volume definitions of an Amazon Elastic Container Service task.
9928
10823
  */
@@ -9948,7 +10843,7 @@ declare namespace SecurityHub {
9948
10843
  */
9949
10844
  AwsAutoScalingLaunchConfiguration?: AwsAutoScalingLaunchConfigurationDetails;
9950
10845
  /**
9951
- * Details about an EC2 VPN connection.
10846
+ * Details about an Amazon EC2 VPN connection.
9952
10847
  */
9953
10848
  AwsEc2VpnConnection?: AwsEc2VpnConnectionDetails;
9954
10849
  /**
@@ -9999,6 +10894,54 @@ declare namespace SecurityHub {
9999
10894
  * Details about an Amazon RDS DB security group.
10000
10895
  */
10001
10896
  AwsRdsDbSecurityGroup?: AwsRdsDbSecurityGroupDetails;
10897
+ /**
10898
+ * Details about an Amazon Kinesis data stream.
10899
+ */
10900
+ AwsKinesisStream?: AwsKinesisStreamDetails;
10901
+ /**
10902
+ * Details about an Amazon EC2 transit gateway that interconnects your virtual private clouds (VPC) and on-premises networks.
10903
+ */
10904
+ AwsEc2TransitGateway?: AwsEc2TransitGatewayDetails;
10905
+ /**
10906
+ * Details about an Amazon EFS access point. An access point is an application-specific view into an EFS file system that applies an operating system user and group, and a file system path, to any file system request made through the access point.
10907
+ */
10908
+ AwsEfsAccessPoint?: AwsEfsAccessPointDetails;
10909
+ /**
10910
+ * Details about an CloudFormation stack. A stack is a collection of Amazon Web Services resources that you can manage as a single unit.
10911
+ */
10912
+ AwsCloudFormationStack?: AwsCloudFormationStackDetails;
10913
+ /**
10914
+ * Details about an Amazon CloudWatch alarm. An alarm allows you to monitor and receive alerts about your Amazon Web Services resources and applications across multiple Regions.
10915
+ */
10916
+ AwsCloudWatchAlarm?: AwsCloudWatchAlarmDetails;
10917
+ /**
10918
+ * Details about an Amazon EC2 VPC peering connection. A VPC peering connection is a networking connection between two VPCs that enables you to route traffic between them privately.
10919
+ */
10920
+ AwsEc2VpcPeeringConnection?: AwsEc2VpcPeeringConnectionDetails;
10921
+ /**
10922
+ * Details about an WAF rule group for Regional resources.
10923
+ */
10924
+ AwsWafRegionalRuleGroup?: AwsWafRegionalRuleGroupDetails;
10925
+ /**
10926
+ * Details about an WAF rule for Regional resources.
10927
+ */
10928
+ AwsWafRegionalRule?: AwsWafRegionalRuleDetails;
10929
+ /**
10930
+ * Details about an WAF web access control list (web ACL) for Regional resources.
10931
+ */
10932
+ AwsWafRegionalWebAcl?: AwsWafRegionalWebAclDetails;
10933
+ /**
10934
+ * Details about an WAF rule for global resources.
10935
+ */
10936
+ AwsWafRule?: AwsWafRuleDetails;
10937
+ /**
10938
+ * Details about an WAF rule group for global resources.
10939
+ */
10940
+ AwsWafRuleGroup?: AwsWafRuleGroupDetails;
10941
+ /**
10942
+ * Details about a task in a cluster.
10943
+ */
10944
+ AwsEcsTask?: AwsEcsTaskDetails;
10002
10945
  }
10003
10946
  export type ResourceList = Resource[];
10004
10947
  export interface Result {
@@ -10519,6 +11462,24 @@ declare namespace SecurityHub {
10519
11462
  export interface TagResourceResponse {
10520
11463
  }
10521
11464
  export type TagValue = string;
11465
+ export interface Threat {
11466
+ /**
11467
+ * The name of the threat.
11468
+ */
11469
+ Name?: NonEmptyString;
11470
+ /**
11471
+ * The severity of the threat.
11472
+ */
11473
+ Severity?: NonEmptyString;
11474
+ /**
11475
+ * This total number of items in which the threat has been detected.
11476
+ */
11477
+ ItemCount?: Integer;
11478
+ /**
11479
+ * Provides information about the file paths that were affected by the threat.
11480
+ */
11481
+ FilePaths?: FilePathList;
11482
+ }
10522
11483
  export interface ThreatIntelIndicator {
10523
11484
  /**
10524
11485
  * The type of threat intelligence indicator.
@@ -10548,6 +11509,7 @@ declare namespace SecurityHub {
10548
11509
  export type ThreatIntelIndicatorCategory = "BACKDOOR"|"CARD_STEALER"|"COMMAND_AND_CONTROL"|"DROP_SITE"|"EXPLOIT_SITE"|"KEYLOGGER"|string;
10549
11510
  export type ThreatIntelIndicatorList = ThreatIntelIndicator[];
10550
11511
  export type ThreatIntelIndicatorType = "DOMAIN"|"EMAIL_ADDRESS"|"HASH_MD5"|"HASH_SHA1"|"HASH_SHA256"|"HASH_SHA512"|"IPV4_ADDRESS"|"IPV6_ADDRESS"|"MUTEX"|"PROCESS"|"URL"|string;
11512
+ export type ThreatList = Threat[];
10551
11513
  export type Timestamp = Date;
10552
11514
  export type TypeList = NonEmptyString[];
10553
11515
  export interface UntagResourceRequest {
@@ -10683,6 +11645,45 @@ declare namespace SecurityHub {
10683
11645
  export interface UpdateStandardsControlResponse {
10684
11646
  }
10685
11647
  export type VerificationState = "UNKNOWN"|"TRUE_POSITIVE"|"FALSE_POSITIVE"|"BENIGN_POSITIVE"|string;
11648
+ export interface VolumeMount {
11649
+ /**
11650
+ * The name of the volume.
11651
+ */
11652
+ Name?: NonEmptyString;
11653
+ /**
11654
+ * The path in the container at which the volume should be mounted.
11655
+ */
11656
+ MountPath?: NonEmptyString;
11657
+ }
11658
+ export type VolumeMountList = VolumeMount[];
11659
+ export interface VpcInfoCidrBlockSetDetails {
11660
+ /**
11661
+ * The IPv4 CIDR block for the VPC.
11662
+ */
11663
+ CidrBlock?: NonEmptyString;
11664
+ }
11665
+ export type VpcInfoCidrBlockSetList = VpcInfoCidrBlockSetDetails[];
11666
+ export interface VpcInfoIpv6CidrBlockSetDetails {
11667
+ /**
11668
+ * The IPv6 CIDR block for the VPC.
11669
+ */
11670
+ Ipv6CidrBlock?: NonEmptyString;
11671
+ }
11672
+ export type VpcInfoIpv6CidrBlockSetList = VpcInfoIpv6CidrBlockSetDetails[];
11673
+ export interface VpcInfoPeeringOptionsDetails {
11674
+ /**
11675
+ * Indicates whether a local VPC can resolve public DNS hostnames to private IP addresses when queried from instances in a peer VPC.
11676
+ */
11677
+ AllowDnsResolutionFromRemoteVpc?: Boolean;
11678
+ /**
11679
+ * Indicates whether a local ClassicLink connection can communicate with the peer VPC over the VPC peering connection.
11680
+ */
11681
+ AllowEgressFromLocalClassicLinkToRemoteVpc?: Boolean;
11682
+ /**
11683
+ * Indicates whether a local VPC can communicate with a ClassicLink connection in the peer VPC over the VPC peering connection.
11684
+ */
11685
+ AllowEgressFromLocalVpcToRemoteClassicLink?: Boolean;
11686
+ }
10686
11687
  export interface Vulnerability {
10687
11688
  /**
10688
11689
  * The identifier of the vulnerability.
@@ -10734,7 +11735,7 @@ declare namespace SecurityHub {
10734
11735
  }
10735
11736
  export interface WafAction {
10736
11737
  /**
10737
- * Specifies how you want WAF to respond to requests that match the settings in a rule. Valid settings include the following: ALLOW - WAF allows requests BLOCK - WAF blocks requests COUNT - WAF increments a counter of the requests that match all of the conditions in the rule. WAF then continues to inspect the web request based on the remaining rules in the web ACL. You can't specify COUNT for the default action for a WebACL.
11738
+ * Specifies how you want WAF to respond to requests that match the settings in a rule. Valid settings include the following: ALLOW - WAF allows requests BLOCK - WAF blocks requests COUNT - WAF increments a counter of the requests that match all of the conditions in the rule. WAF then continues to inspect the web request based on the remaining rules in the web ACL. You can't specify COUNT for the default action for a web ACL.
10738
11739
  */
10739
11740
  Type?: NonEmptyString;
10740
11741
  }