aws-sdk 2.981.0 → 2.982.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.
@@ -543,6 +543,17 @@ declare namespace SecurityHub {
543
543
  Description: NonEmptyString;
544
544
  }
545
545
  export type ActionTargetList = ActionTarget[];
546
+ export interface Adjustment {
547
+ /**
548
+ * The metric to adjust.
549
+ */
550
+ Metric?: NonEmptyString;
551
+ /**
552
+ * The reason for the adjustment.
553
+ */
554
+ Reason?: NonEmptyString;
555
+ }
556
+ export type AdjustmentList = Adjustment[];
546
557
  export interface AdminAccount {
547
558
  /**
548
559
  * The Amazon Web Services account identifier of the Security Hub administrator account.
@@ -937,6 +948,131 @@ declare namespace SecurityHub {
937
948
  */
938
949
  CreatedTime?: NonEmptyString;
939
950
  }
951
+ export interface AwsAutoScalingLaunchConfigurationBlockDeviceMappingsDetails {
952
+ /**
953
+ * The device name that is exposed to the EC2 instance. For example, /dev/sdh or xvdh.
954
+ */
955
+ DeviceName?: NonEmptyString;
956
+ /**
957
+ * Parameters that are used to automatically set up Amazon EBS volumes when an instance is launched.
958
+ */
959
+ Ebs?: AwsAutoScalingLaunchConfigurationBlockDeviceMappingsEbsDetails;
960
+ /**
961
+ * Whether to suppress the device that is included in the block device mapping of the Amazon Machine Image (AMI). If NoDevice is true, then you cannot specify Ebs.>
962
+ */
963
+ NoDevice?: Boolean;
964
+ /**
965
+ * The name of the virtual device (for example, ephemeral0). You can provide either VirtualName or Ebs, but not both.
966
+ */
967
+ VirtualName?: NonEmptyString;
968
+ }
969
+ export interface AwsAutoScalingLaunchConfigurationBlockDeviceMappingsEbsDetails {
970
+ /**
971
+ * Whether to delete the volume when the instance is terminated.
972
+ */
973
+ DeleteOnTermination?: Boolean;
974
+ /**
975
+ * Whether to encrypt the volume.
976
+ */
977
+ Encrypted?: Boolean;
978
+ /**
979
+ * The number of input/output (I/O) operations per second (IOPS) to provision for the volume. Only supported for gp3 or io1 volumes. Required for io1 volumes. Not used with standard, gp2, st1, or sc1 volumes.
980
+ */
981
+ Iops?: Integer;
982
+ /**
983
+ * The snapshot ID of the volume to use. You must specify either VolumeSize or SnapshotId.
984
+ */
985
+ SnapshotId?: NonEmptyString;
986
+ /**
987
+ * The volume size, in GiBs. The following are the supported volumes sizes for each volume type: gp2 and gp3: 1-16,384 io1: 4-16,384 st1 and sc1: 125-16,384 standard: 1-1,024 You must specify either SnapshotId or VolumeSize. If you specify both SnapshotId and VolumeSize, the volume size must be equal or greater than the size of the snapshot.
988
+ */
989
+ VolumeSize?: Integer;
990
+ /**
991
+ * The volume type.
992
+ */
993
+ VolumeType?: NonEmptyString;
994
+ }
995
+ export type AwsAutoScalingLaunchConfigurationBlockDeviceMappingsList = AwsAutoScalingLaunchConfigurationBlockDeviceMappingsDetails[];
996
+ export interface AwsAutoScalingLaunchConfigurationDetails {
997
+ /**
998
+ * For Auto Scaling groups that run in a VPC, specifies whether to assign a public IP address to the group's instances.
999
+ */
1000
+ AssociatePublicIpAddress?: Boolean;
1001
+ /**
1002
+ * Specifies the block devices for the instance.
1003
+ */
1004
+ BlockDeviceMappings?: AwsAutoScalingLaunchConfigurationBlockDeviceMappingsList;
1005
+ /**
1006
+ * The identifier of a ClassicLink-enabled VPC that EC2-Classic instances are linked to.
1007
+ */
1008
+ ClassicLinkVpcId?: NonEmptyString;
1009
+ /**
1010
+ * The identifiers of one or more security groups for the VPC that is specified in ClassicLinkVPCId.
1011
+ */
1012
+ ClassicLinkVpcSecurityGroups?: NonEmptyStringList;
1013
+ /**
1014
+ * The creation date and time for the launch configuration. 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.
1015
+ */
1016
+ CreatedTime?: NonEmptyString;
1017
+ /**
1018
+ * Whether the launch configuration is optimized for Amazon EBS I/O.
1019
+ */
1020
+ EbsOptimized?: Boolean;
1021
+ /**
1022
+ * The name or the ARN of the instance profile associated with the IAM role for the instance. The instance profile contains the IAM role.
1023
+ */
1024
+ IamInstanceProfile?: NonEmptyString;
1025
+ /**
1026
+ * The identifier of the Amazon Machine Image (AMI) that is used to launch EC2 instances.
1027
+ */
1028
+ ImageId?: NonEmptyString;
1029
+ /**
1030
+ * Indicates the type of monitoring for instances in the group.
1031
+ */
1032
+ InstanceMonitoring?: AwsAutoScalingLaunchConfigurationInstanceMonitoringDetails;
1033
+ /**
1034
+ * The instance type for the instances.
1035
+ */
1036
+ InstanceType?: NonEmptyString;
1037
+ /**
1038
+ * The identifier of the kernel associated with the AMI.
1039
+ */
1040
+ KernelId?: NonEmptyString;
1041
+ /**
1042
+ * The name of the key pair.
1043
+ */
1044
+ KeyName?: NonEmptyString;
1045
+ /**
1046
+ * The name of the launch configuration.
1047
+ */
1048
+ LaunchConfigurationName?: NonEmptyString;
1049
+ /**
1050
+ * The tenancy of the instance. An instance with dedicated tenancy runs on isolated, single-tenant hardware and can only be launched into a VPC.
1051
+ */
1052
+ PlacementTenancy?: NonEmptyString;
1053
+ /**
1054
+ * The identifier of the RAM disk associated with the AMI.
1055
+ */
1056
+ RamdiskId?: NonEmptyString;
1057
+ /**
1058
+ * The security groups to assign to the instances in the Auto Scaling group.
1059
+ */
1060
+ SecurityGroups?: NonEmptyStringList;
1061
+ /**
1062
+ * The maximum hourly price to be paid for any Spot Instance that is launched to fulfill the request.
1063
+ */
1064
+ SpotPrice?: NonEmptyString;
1065
+ /**
1066
+ * The user data to make available to the launched EC2 instances. Must be base64-encoded text.
1067
+ */
1068
+ UserData?: NonEmptyString;
1069
+ }
1070
+ export interface AwsAutoScalingLaunchConfigurationInstanceMonitoringDetails {
1071
+ /**
1072
+ * If set to true, then instances in the group launch with detailed monitoring. If set to false, then instances in the group launch with basic monitoring.
1073
+ */
1074
+ Enabled?: Boolean;
1075
+ }
940
1076
  export interface AwsCertificateManagerCertificateDetails {
941
1077
  /**
942
1078
  * The ARN of the private certificate authority (CA) that will be used to issue the certificate.
@@ -1322,7 +1458,7 @@ declare namespace SecurityHub {
1322
1458
  }
1323
1459
  export interface AwsCodeBuildProjectDetails {
1324
1460
  /**
1325
- * The KMS customer master key (CMK) used to encrypt the build output artifacts. You can specify either the ARN of the CMK or, if available, the CMK alias (using the format alias/alias-name).
1461
+ * The KMS key used to encrypt the build output artifacts. You can specify either the ARN of the KMS key or, if available, the KMS key alias (using the format alias/alias-name).
1326
1462
  */
1327
1463
  EncryptionKey?: NonEmptyString;
1328
1464
  /**
@@ -1644,7 +1780,7 @@ declare namespace SecurityHub {
1644
1780
  */
1645
1781
  GlobalSecondaryIndexes?: AwsDynamoDbTableReplicaGlobalSecondaryIndexList;
1646
1782
  /**
1647
- * The identifier of the KMS customer master key (CMK) that will be used for KMS encryption for the replica.
1783
+ * The identifier of the KMS key that will be used for KMS encryption for the replica.
1648
1784
  */
1649
1785
  KmsMasterKeyId?: NonEmptyString;
1650
1786
  /**
@@ -1708,7 +1844,7 @@ declare namespace SecurityHub {
1708
1844
  */
1709
1845
  SseType?: NonEmptyString;
1710
1846
  /**
1711
- * The ARN of the KMS customer master key (CMK) that is used for the KMS encryption.
1847
+ * The ARN of the KMS key that is used for the KMS encryption.
1712
1848
  */
1713
1849
  KmsMasterKeyArn?: NonEmptyString;
1714
1850
  }
@@ -2182,7 +2318,7 @@ declare namespace SecurityHub {
2182
2318
  */
2183
2319
  Status?: NonEmptyString;
2184
2320
  /**
2185
- * The ARN of the KMS customer master key (CMK) that was used to protect the volume encryption key for the volume.
2321
+ * The ARN of the KMS key that was used to protect the volume encryption key for the volume.
2186
2322
  */
2187
2323
  KmsKeyId?: NonEmptyString;
2188
2324
  /**
@@ -2208,6 +2344,193 @@ declare namespace SecurityHub {
2208
2344
  */
2209
2345
  State?: NonEmptyString;
2210
2346
  }
2347
+ export interface AwsEc2VpnConnectionDetails {
2348
+ /**
2349
+ * The identifier of the VPN connection.
2350
+ */
2351
+ VpnConnectionId?: NonEmptyString;
2352
+ /**
2353
+ * The current state of the VPN connection.
2354
+ */
2355
+ State?: NonEmptyString;
2356
+ /**
2357
+ * The identifier of the customer gateway that is at your end of the VPN connection.
2358
+ */
2359
+ CustomerGatewayId?: NonEmptyString;
2360
+ /**
2361
+ * The configuration information for the VPN connection's customer gateway, in the native XML format.
2362
+ */
2363
+ CustomerGatewayConfiguration?: NonEmptyString;
2364
+ /**
2365
+ * The type of VPN connection.
2366
+ */
2367
+ Type?: NonEmptyString;
2368
+ /**
2369
+ * The identifier of the virtual private gateway that is at the Amazon Web Services side of the VPN connection.
2370
+ */
2371
+ VpnGatewayId?: NonEmptyString;
2372
+ /**
2373
+ * The category of the VPN connection. VPN indicates an Amazon Web Services VPN connection. VPN-Classic indicates an Amazon Web Services Classic VPN connection.
2374
+ */
2375
+ Category?: NonEmptyString;
2376
+ /**
2377
+ * Information about the VPN tunnel.
2378
+ */
2379
+ VgwTelemetry?: AwsEc2VpnConnectionVgwTelemetryList;
2380
+ /**
2381
+ * The VPN connection options.
2382
+ */
2383
+ Options?: AwsEc2VpnConnectionOptionsDetails;
2384
+ /**
2385
+ * The static routes that are associated with the VPN connection.
2386
+ */
2387
+ Routes?: AwsEc2VpnConnectionRoutesList;
2388
+ /**
2389
+ * The identifier of the transit gateway that is associated with the VPN connection.
2390
+ */
2391
+ TransitGatewayId?: NonEmptyString;
2392
+ }
2393
+ export interface AwsEc2VpnConnectionOptionsDetails {
2394
+ /**
2395
+ * Whether the VPN connection uses static routes only.
2396
+ */
2397
+ StaticRoutesOnly?: Boolean;
2398
+ /**
2399
+ * The VPN tunnel options.
2400
+ */
2401
+ TunnelOptions?: AwsEc2VpnConnectionOptionsTunnelOptionsList;
2402
+ }
2403
+ export interface AwsEc2VpnConnectionOptionsTunnelOptionsDetails {
2404
+ /**
2405
+ * The number of seconds after which a Dead Peer Detection (DPD) timeout occurs.
2406
+ */
2407
+ DpdTimeoutSeconds?: Integer;
2408
+ /**
2409
+ * The Internet Key Exchange (IKE) versions that are permitted for the VPN tunnel.
2410
+ */
2411
+ IkeVersions?: NonEmptyStringList;
2412
+ /**
2413
+ * The external IP address of the VPN tunnel.
2414
+ */
2415
+ OutsideIpAddress?: NonEmptyString;
2416
+ /**
2417
+ * The permitted Diffie-Hellman group numbers for the VPN tunnel for phase 1 IKE negotiations.
2418
+ */
2419
+ Phase1DhGroupNumbers?: IntegerList;
2420
+ /**
2421
+ * The permitted encryption algorithms for the VPN tunnel for phase 1 IKE negotiations.
2422
+ */
2423
+ Phase1EncryptionAlgorithms?: NonEmptyStringList;
2424
+ /**
2425
+ * The permitted integrity algorithms for the VPN tunnel for phase 1 IKE negotiations.
2426
+ */
2427
+ Phase1IntegrityAlgorithms?: NonEmptyStringList;
2428
+ /**
2429
+ * The lifetime for phase 1 of the IKE negotiation, in seconds.
2430
+ */
2431
+ Phase1LifetimeSeconds?: Integer;
2432
+ /**
2433
+ * The permitted Diffie-Hellman group numbers for the VPN tunnel for phase 2 IKE negotiations.
2434
+ */
2435
+ Phase2DhGroupNumbers?: IntegerList;
2436
+ /**
2437
+ * The permitted encryption algorithms for the VPN tunnel for phase 2 IKE negotiations.
2438
+ */
2439
+ Phase2EncryptionAlgorithms?: NonEmptyStringList;
2440
+ /**
2441
+ * The permitted integrity algorithms for the VPN tunnel for phase 2 IKE negotiations.
2442
+ */
2443
+ Phase2IntegrityAlgorithms?: NonEmptyStringList;
2444
+ /**
2445
+ * The lifetime for phase 2 of the IKE negotiation, in seconds.
2446
+ */
2447
+ Phase2LifetimeSeconds?: Integer;
2448
+ /**
2449
+ * The preshared key to establish initial authentication between the virtual private gateway and the customer gateway.
2450
+ */
2451
+ PreSharedKey?: NonEmptyString;
2452
+ /**
2453
+ * The percentage of the rekey window, which is determined by RekeyMarginTimeSeconds during which the rekey time is randomly selected.
2454
+ */
2455
+ RekeyFuzzPercentage?: Integer;
2456
+ /**
2457
+ * The margin time, in seconds, before the phase 2 lifetime expires, during which the Amazon Web Services side of the VPN connection performs an IKE rekey.
2458
+ */
2459
+ RekeyMarginTimeSeconds?: Integer;
2460
+ /**
2461
+ * The number of packets in an IKE replay window.
2462
+ */
2463
+ ReplayWindowSize?: Integer;
2464
+ /**
2465
+ * The range of inside IPv4 addresses for the tunnel.
2466
+ */
2467
+ TunnelInsideCidr?: NonEmptyString;
2468
+ }
2469
+ export type AwsEc2VpnConnectionOptionsTunnelOptionsList = AwsEc2VpnConnectionOptionsTunnelOptionsDetails[];
2470
+ export interface AwsEc2VpnConnectionRoutesDetails {
2471
+ /**
2472
+ * The CIDR block associated with the local subnet of the customer data center.
2473
+ */
2474
+ DestinationCidrBlock?: NonEmptyString;
2475
+ /**
2476
+ * The current state of the static route.
2477
+ */
2478
+ State?: NonEmptyString;
2479
+ }
2480
+ export type AwsEc2VpnConnectionRoutesList = AwsEc2VpnConnectionRoutesDetails[];
2481
+ export interface AwsEc2VpnConnectionVgwTelemetryDetails {
2482
+ /**
2483
+ * The number of accepted routes.
2484
+ */
2485
+ AcceptedRouteCount?: Integer;
2486
+ /**
2487
+ * The ARN of the VPN tunnel endpoint certificate.
2488
+ */
2489
+ CertificateArn?: NonEmptyString;
2490
+ /**
2491
+ * The date and time of the last change in status. 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.
2492
+ */
2493
+ LastStatusChange?: NonEmptyString;
2494
+ /**
2495
+ * The Internet-routable IP address of the virtual private gateway's outside interface.
2496
+ */
2497
+ OutsideIpAddress?: NonEmptyString;
2498
+ /**
2499
+ * The status of the VPN tunnel.
2500
+ */
2501
+ Status?: NonEmptyString;
2502
+ /**
2503
+ * If an error occurs, a description of the error.
2504
+ */
2505
+ StatusMessage?: NonEmptyString;
2506
+ }
2507
+ export type AwsEc2VpnConnectionVgwTelemetryList = AwsEc2VpnConnectionVgwTelemetryDetails[];
2508
+ export interface AwsEcrContainerImageDetails {
2509
+ /**
2510
+ * The Amazon Web Services account identifier that is associated with the registry that the image belongs to.
2511
+ */
2512
+ RegistryId?: NonEmptyString;
2513
+ /**
2514
+ * The name of the repository that the image belongs to.
2515
+ */
2516
+ RepositoryName?: NonEmptyString;
2517
+ /**
2518
+ * The architecture of the image.
2519
+ */
2520
+ Architecture?: NonEmptyString;
2521
+ /**
2522
+ * The sha256 digest of the image manifest.
2523
+ */
2524
+ ImageDigest?: NonEmptyString;
2525
+ /**
2526
+ * The list of tags that are associated with the image.
2527
+ */
2528
+ ImageTags?: NonEmptyStringList;
2529
+ /**
2530
+ * The date and time when the image was pushed to the repository. 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.
2531
+ */
2532
+ ImagePublishedAt?: NonEmptyString;
2533
+ }
2211
2534
  export interface AwsEcsClusterClusterSettingsDetails {
2212
2535
  /**
2213
2536
  * The name of the setting.
@@ -4042,33 +4365,37 @@ declare namespace SecurityHub {
4042
4365
  export type AwsIamUserPolicyList = AwsIamUserPolicy[];
4043
4366
  export interface AwsKmsKeyDetails {
4044
4367
  /**
4045
- * The twelve-digit account ID of the Amazon Web Services account that owns the CMK.
4368
+ * The twelve-digit account ID of the Amazon Web Services account that owns the KMS key.
4046
4369
  */
4047
4370
  AWSAccountId?: NonEmptyString;
4048
4371
  /**
4049
- * Indicates when the CMK was created. 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.
4372
+ * Indicates when the KMS key was created. 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.
4050
4373
  */
4051
4374
  CreationDate?: Double;
4052
4375
  /**
4053
- * The globally unique identifier for the CMK.
4376
+ * The globally unique identifier for the KMS key.
4054
4377
  */
4055
4378
  KeyId?: NonEmptyString;
4056
4379
  /**
4057
- * The manager of the CMK. CMKs in your Amazon Web Services account are either customer managed or Amazon Web Services managed.
4380
+ * The manager of the KMS key. KMS keys in your Amazon Web Services account are either customer managed or Amazon Web Services managed.
4058
4381
  */
4059
4382
  KeyManager?: NonEmptyString;
4060
4383
  /**
4061
- * The state of the CMK.
4384
+ * The state of the KMS key.
4062
4385
  */
4063
4386
  KeyState?: NonEmptyString;
4064
4387
  /**
4065
- * The source of the CMK's key material. When this value is AWS_KMS, KMS created the key material. When this value is EXTERNAL, the key material was imported from your existing key management infrastructure or the CMK lacks key material. When this value is AWS_CLOUDHSM, the key material was created in the CloudHSM cluster associated with a custom key store.
4388
+ * The source of the KMS key material. When this value is AWS_KMS, KMS created the key material. When this value is EXTERNAL, the key material was imported from your existing key management infrastructure or the KMS key lacks key material. When this value is AWS_CLOUDHSM, the key material was created in the CloudHSM cluster associated with a custom key store.
4066
4389
  */
4067
4390
  Origin?: NonEmptyString;
4068
4391
  /**
4069
4392
  * A description of the key.
4070
4393
  */
4071
4394
  Description?: NonEmptyString;
4395
+ /**
4396
+ * Whether the key has key rotation enabled.
4397
+ */
4398
+ KeyRotationStatus?: Boolean;
4072
4399
  }
4073
4400
  export interface AwsLambdaFunctionCode {
4074
4401
  /**
@@ -4120,7 +4447,7 @@ declare namespace SecurityHub {
4120
4447
  */
4121
4448
  Handler?: NonEmptyString;
4122
4449
  /**
4123
- * The KMS key that is used to encrypt the function's environment variables. This key is only returned if you've configured a customer managed CMK.
4450
+ * The KMS key that is used to encrypt the function's environment variables. This key is only returned if you've configured a customer managed customer managed key.
4124
4451
  */
4125
4452
  KmsKeyArn?: NonEmptyString;
4126
4453
  /**
@@ -5696,14 +6023,90 @@ declare namespace SecurityHub {
5696
6023
  * Provides information about the Amazon S3 Public Access Block configuration for the S3 bucket.
5697
6024
  */
5698
6025
  PublicAccessBlockConfiguration?: AwsS3AccountPublicAccessBlockDetails;
6026
+ /**
6027
+ * The access control list for the S3 bucket.
6028
+ */
6029
+ AccessControlList?: NonEmptyString;
6030
+ /**
6031
+ * The logging configuration for the S3 bucket.
6032
+ */
6033
+ BucketLoggingConfiguration?: AwsS3BucketLoggingConfiguration;
6034
+ /**
6035
+ * The website configuration parameters for the S3 bucket.
6036
+ */
6037
+ BucketWebsiteConfiguration?: AwsS3BucketWebsiteConfiguration;
6038
+ /**
6039
+ * The notification configuration for the S3 bucket.
6040
+ */
6041
+ BucketNotificationConfiguration?: AwsS3BucketNotificationConfiguration;
6042
+ }
6043
+ export interface AwsS3BucketLoggingConfiguration {
6044
+ /**
6045
+ * The name of the S3 bucket where log files for the S3 bucket are stored.
6046
+ */
6047
+ DestinationBucketName?: NonEmptyString;
6048
+ /**
6049
+ * The prefix added to log files for the S3 bucket.
6050
+ */
6051
+ LogFilePrefix?: NonEmptyString;
6052
+ }
6053
+ export interface AwsS3BucketNotificationConfiguration {
6054
+ /**
6055
+ * Configurations for S3 bucket notifications.
6056
+ */
6057
+ Configurations?: AwsS3BucketNotificationConfigurationDetails;
6058
+ }
6059
+ export interface AwsS3BucketNotificationConfigurationDetail {
6060
+ /**
6061
+ * The list of events that trigger a notification.
6062
+ */
6063
+ Events?: AwsS3BucketNotificationConfigurationEvents;
6064
+ /**
6065
+ * The filters that determine which S3 buckets generate notifications.
6066
+ */
6067
+ Filter?: AwsS3BucketNotificationConfigurationFilter;
6068
+ /**
6069
+ * The ARN of the Lambda function, Amazon SQS queue, or Amazon SNS topic that generates the notification.
6070
+ */
6071
+ Destination?: NonEmptyString;
6072
+ /**
6073
+ * Indicates the type of notification. Notifications can be generated using Lambda functions, Amazon SQS queues or Amazon SNS topics.
6074
+ */
6075
+ Type?: NonEmptyString;
6076
+ }
6077
+ export type AwsS3BucketNotificationConfigurationDetails = AwsS3BucketNotificationConfigurationDetail[];
6078
+ export type AwsS3BucketNotificationConfigurationEvents = NonEmptyString[];
6079
+ export interface AwsS3BucketNotificationConfigurationFilter {
6080
+ /**
6081
+ * Details for an Amazon S3 filter.
6082
+ */
6083
+ S3KeyFilter?: AwsS3BucketNotificationConfigurationS3KeyFilter;
5699
6084
  }
6085
+ export interface AwsS3BucketNotificationConfigurationS3KeyFilter {
6086
+ /**
6087
+ * The filter rules for the filter.
6088
+ */
6089
+ FilterRules?: AwsS3BucketNotificationConfigurationS3KeyFilterRules;
6090
+ }
6091
+ export interface AwsS3BucketNotificationConfigurationS3KeyFilterRule {
6092
+ /**
6093
+ * Indicates whether the filter is based on the prefix or suffix of the Amazon S3 key.
6094
+ */
6095
+ Name?: AwsS3BucketNotificationConfigurationS3KeyFilterRuleName;
6096
+ /**
6097
+ * The filter value.
6098
+ */
6099
+ Value?: NonEmptyString;
6100
+ }
6101
+ export type AwsS3BucketNotificationConfigurationS3KeyFilterRuleName = "Prefix"|"Suffix"|string;
6102
+ export type AwsS3BucketNotificationConfigurationS3KeyFilterRules = AwsS3BucketNotificationConfigurationS3KeyFilterRule[];
5700
6103
  export interface AwsS3BucketServerSideEncryptionByDefault {
5701
6104
  /**
5702
6105
  * Server-side encryption algorithm to use for the default encryption.
5703
6106
  */
5704
6107
  SSEAlgorithm?: NonEmptyString;
5705
6108
  /**
5706
- * KMS customer master key (CMK) ID to use for the default encryption.
6109
+ * KMS key ID to use for the default encryption.
5707
6110
  */
5708
6111
  KMSMasterKeyID?: NonEmptyString;
5709
6112
  }
@@ -5720,6 +6123,77 @@ declare namespace SecurityHub {
5720
6123
  ApplyServerSideEncryptionByDefault?: AwsS3BucketServerSideEncryptionByDefault;
5721
6124
  }
5722
6125
  export type AwsS3BucketServerSideEncryptionRules = AwsS3BucketServerSideEncryptionRule[];
6126
+ export interface AwsS3BucketWebsiteConfiguration {
6127
+ /**
6128
+ * The name of the error document for the website.
6129
+ */
6130
+ ErrorDocument?: NonEmptyString;
6131
+ /**
6132
+ * The name of the index document for the website.
6133
+ */
6134
+ IndexDocumentSuffix?: NonEmptyString;
6135
+ /**
6136
+ * The redirect behavior for requests to the website.
6137
+ */
6138
+ RedirectAllRequestsTo?: AwsS3BucketWebsiteConfigurationRedirectTo;
6139
+ /**
6140
+ * The rules for applying redirects for requests to the website.
6141
+ */
6142
+ RoutingRules?: AwsS3BucketWebsiteConfigurationRoutingRules;
6143
+ }
6144
+ export interface AwsS3BucketWebsiteConfigurationRedirectTo {
6145
+ /**
6146
+ * The name of the host to redirect requests to.
6147
+ */
6148
+ Hostname?: NonEmptyString;
6149
+ /**
6150
+ * The protocol to use when redirecting requests. By default, uses the same protocol as the original request.
6151
+ */
6152
+ Protocol?: NonEmptyString;
6153
+ }
6154
+ export interface AwsS3BucketWebsiteConfigurationRoutingRule {
6155
+ /**
6156
+ * Provides the condition that must be met in order to apply the routing rule.
6157
+ */
6158
+ Condition?: AwsS3BucketWebsiteConfigurationRoutingRuleCondition;
6159
+ /**
6160
+ * Provides the rules to redirect the request if the condition in Condition is met.
6161
+ */
6162
+ Redirect?: AwsS3BucketWebsiteConfigurationRoutingRuleRedirect;
6163
+ }
6164
+ export interface AwsS3BucketWebsiteConfigurationRoutingRuleCondition {
6165
+ /**
6166
+ * Indicates to redirect the request if the HTTP error code matches this value.
6167
+ */
6168
+ HttpErrorCodeReturnedEquals?: NonEmptyString;
6169
+ /**
6170
+ * Indicates to redirect the request if the key prefix matches this value.
6171
+ */
6172
+ KeyPrefixEquals?: NonEmptyString;
6173
+ }
6174
+ export interface AwsS3BucketWebsiteConfigurationRoutingRuleRedirect {
6175
+ /**
6176
+ * The host name to use in the redirect request.
6177
+ */
6178
+ Hostname?: NonEmptyString;
6179
+ /**
6180
+ * The HTTP redirect code to use in the response.
6181
+ */
6182
+ HttpRedirectCode?: NonEmptyString;
6183
+ /**
6184
+ * The protocol to use to redirect the request. By default, uses the protocol from the original request.
6185
+ */
6186
+ Protocol?: NonEmptyString;
6187
+ /**
6188
+ * The object key prefix to use in the redirect request. Cannot be provided if ReplaceKeyWith is present.
6189
+ */
6190
+ ReplaceKeyPrefixWith?: NonEmptyString;
6191
+ /**
6192
+ * The specific object key to use in the redirect request. Cannot be provided if ReplaceKeyPrefixWith is present.
6193
+ */
6194
+ ReplaceKeyWith?: NonEmptyString;
6195
+ }
6196
+ export type AwsS3BucketWebsiteConfigurationRoutingRules = AwsS3BucketWebsiteConfigurationRoutingRule[];
5723
6197
  export interface AwsS3ObjectDetails {
5724
6198
  /**
5725
6199
  * Indicates when the object was last modified. 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.
@@ -5742,7 +6216,7 @@ declare namespace SecurityHub {
5742
6216
  */
5743
6217
  ServerSideEncryption?: NonEmptyString;
5744
6218
  /**
5745
- * The identifier of the KMS symmetric customer managed customer master key (CMK) that was used for the object.
6219
+ * The identifier of the KMS symmetric customer managed key that was used for the object.
5746
6220
  */
5747
6221
  SSEKMSKeyId?: NonEmptyString;
5748
6222
  }
@@ -5756,7 +6230,7 @@ declare namespace SecurityHub {
5756
6230
  */
5757
6231
  RotationOccurredWithinFrequency?: Boolean;
5758
6232
  /**
5759
- * The ARN, Key ID, or alias of the KMS customer master key (CMK) used to encrypt the SecretString or SecretBinary values for versions of this secret.
6233
+ * The ARN, Key ID, or alias of the KMS key used to encrypt the SecretString or SecretBinary values for versions of this secret.
5760
6234
  */
5761
6235
  KmsKeyId?: NonEmptyString;
5762
6236
  /**
@@ -5800,7 +6274,7 @@ declare namespace SecurityHub {
5800
6274
  */
5801
6275
  ProductArn: NonEmptyString;
5802
6276
  /**
5803
- * The name of the product that generated the finding. Security Hub populates this attribute automatically for each finding. You cannot update it using BatchImportFindings or BatchUpdateFindings. The exception to this is when you use a custom integration. When you use the Security Hub console to filter findings by product name, you use this attribute. When you use the Security Hub API to filter findings by product name, you use the aws/securityhub/ProductyName attribute under ProductFields. Security Hub does not synchronize those two attributes.
6277
+ * The name of the product that generated the finding. Security Hub populates this attribute automatically for each finding. You cannot update it using BatchImportFindings or BatchUpdateFindings. The exception to this is when you use a custom integration. When you use the Security Hub console to filter findings by product name, you use this attribute. When you use the Security Hub API to filter findings by product name, you use the aws/securityhub/ProductName attribute under ProductFields. Security Hub does not synchronize those two attributes.
5804
6278
  */
5805
6279
  ProductName?: NonEmptyString;
5806
6280
  /**
@@ -6336,7 +6810,7 @@ declare namespace SecurityHub {
6336
6810
  export type AwsSecurityFindingList = AwsSecurityFinding[];
6337
6811
  export interface AwsSnsTopicDetails {
6338
6812
  /**
6339
- * The ID of an Amazon Web Services managed customer master key (CMK) for Amazon SNS or a custom CMK.
6813
+ * The ID of an Amazon Web Services managed key for Amazon SNS or a customer managed key.
6340
6814
  */
6341
6815
  KmsMasterKeyId?: NonEmptyString;
6342
6816
  /**
@@ -6369,7 +6843,7 @@ declare namespace SecurityHub {
6369
6843
  */
6370
6844
  KmsDataKeyReusePeriodSeconds?: Integer;
6371
6845
  /**
6372
- * The ID of an Amazon Web Services managed customer master key (CMK) for Amazon SQS or a custom CMK.
6846
+ * The ID of an Amazon Web Services managed key for Amazon SQS or a custom KMS key.
6373
6847
  */
6374
6848
  KmsMasterKeyId?: NonEmptyString;
6375
6849
  /**
@@ -6838,6 +7312,14 @@ declare namespace SecurityHub {
6838
7312
  * The base scoring vector for the CVSS score.
6839
7313
  */
6840
7314
  BaseVector?: NonEmptyString;
7315
+ /**
7316
+ * The origin of the original CVSS score and vector.
7317
+ */
7318
+ Source?: NonEmptyString;
7319
+ /**
7320
+ * Adjustments to the CVSS metrics.
7321
+ */
7322
+ Adjustments?: AdjustmentList;
6841
7323
  }
6842
7324
  export type CvssList = Cvss[];
6843
7325
  export interface DataClassificationDetails {
@@ -7381,6 +7863,7 @@ declare namespace SecurityHub {
7381
7863
  ResultValues: InsightResultValueList;
7382
7864
  }
7383
7865
  export type Integer = number;
7866
+ export type IntegerList = Integer[];
7384
7867
  export type IntegrationType = "SEND_FINDINGS_TO_SECURITY_HUB"|"RECEIVE_FINDINGS_FROM_SECURITY_HUB"|"UPDATE_FINDINGS_IN_SECURITY_HUB"|string;
7385
7868
  export type IntegrationTypeList = IntegrationType[];
7386
7869
  export interface Invitation {
@@ -7981,7 +8464,7 @@ declare namespace SecurityHub {
7981
8464
  */
7982
8465
  IntegrationTypes?: IntegrationTypeList;
7983
8466
  /**
7984
- * For integrations with Amazon Web Services services, the Amazon Web Services Console URL from which to activate the service. For integrations with third-party products, the Marketplace URL from which to subscribe to or purchase the product.
8467
+ * For integrations with Amazon Web Services services, the Amazon Web Services Console URL from which to activate the service. For integrations with third-party products, the Amazon Web Services Marketplace URL from which to subscribe to or purchase the product.
7985
8468
  */
7986
8469
  MarketplaceUrl?: NonEmptyString;
7987
8470
  /**
@@ -8208,7 +8691,7 @@ declare namespace SecurityHub {
8208
8691
  */
8209
8692
  AwsRedshiftCluster?: AwsRedshiftClusterDetails;
8210
8693
  /**
8211
- * contains details about a Classic Load Balancer.
8694
+ * Contains details about a Classic Load Balancer.
8212
8695
  */
8213
8696
  AwsElbLoadBalancer?: AwsElbLoadBalancerDetails;
8214
8697
  /**
@@ -8283,6 +8766,18 @@ declare namespace SecurityHub {
8283
8766
  * Details about a service within an ECS cluster.
8284
8767
  */
8285
8768
  AwsEcsService?: AwsEcsServiceDetails;
8769
+ /**
8770
+ * Provides details about a launch configuration.
8771
+ */
8772
+ AwsAutoScalingLaunchConfiguration?: AwsAutoScalingLaunchConfigurationDetails;
8773
+ /**
8774
+ * Details about an EC2 VPN connection.
8775
+ */
8776
+ AwsEc2VpnConnection?: AwsEc2VpnConnectionDetails;
8777
+ /**
8778
+ * information about an Amazon ECR image.
8779
+ */
8780
+ AwsEcrContainerImage?: AwsEcrContainerImageDetails;
8286
8781
  }
8287
8782
  export type ResourceList = Resource[];
8288
8783
  export interface Result {
@@ -8383,6 +8878,14 @@ declare namespace SecurityHub {
8383
8878
  * The architecture used for the software package.
8384
8879
  */
8385
8880
  Architecture?: NonEmptyString;
8881
+ /**
8882
+ * The source of the package.
8883
+ */
8884
+ PackageManager?: NonEmptyString;
8885
+ /**
8886
+ * The file system path to the package manager inventory file.
8887
+ */
8888
+ FilePath?: NonEmptyString;
8386
8889
  }
8387
8890
  export type SoftwarePackageList = SoftwarePackage[];
8388
8891
  export type SortCriteria = SortCriterion[];
@@ -8730,7 +9233,7 @@ declare namespace SecurityHub {
8730
9233
  }
8731
9234
  export interface Workflow {
8732
9235
  /**
8733
- * 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.
9236
+ * The status of the investigation into the finding. The workflow status is specific to an individual finding. It does not affect the generation of new findings. For example, setting the workflow status to SUPPRESSED or RESOLVED does not prevent a new finding for the same issue. 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 - Indicates that you reviewed the finding and do not believe that any action is needed. The finding is no longer updated. RESOLVED - The finding was reviewed and remediated and is now considered resolved.
8734
9237
  */
8735
9238
  Status?: WorkflowStatus;
8736
9239
  }
@@ -8738,7 +9241,7 @@ declare namespace SecurityHub {
8738
9241
  export type WorkflowStatus = "NEW"|"NOTIFIED"|"RESOLVED"|"SUPPRESSED"|string;
8739
9242
  export interface WorkflowUpdate {
8740
9243
  /**
8741
- * 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.
9244
+ * The status of the investigation into the finding. The workflow status is specific to an individual finding. It does not affect the generation of new findings. For example, setting the workflow status to SUPPRESSED or RESOLVED does not prevent a new finding for the same issue. 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 - Indicates that you reviewed the finding and do not believe that any action is needed. The finding is no longer updated.
8742
9245
  */
8743
9246
  Status?: WorkflowStatus;
8744
9247
  }