aws-sdk 2.1386.0 → 2.1388.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -1
- package/README.md +1 -1
- package/apis/chime-sdk-voice-2022-08-03.min.json +2 -1
- package/apis/config-2014-11-12.min.json +129 -112
- package/apis/frauddetector-2019-11-15.min.json +29 -12
- package/apis/glue-2017-03-31.min.json +510 -509
- package/apis/healthlake-2017-07-01.min.json +43 -17
- package/apis/iotfleetwise-2021-06-17.min.json +86 -43
- package/apis/location-2020-11-19.min.json +23 -16
- package/apis/m2-2021-04-28.min.json +90 -40
- package/apis/personalize-2018-05-22.min.json +32 -13
- package/apis/rds-2014-10-31.min.json +4 -2
- package/apis/securityhub-2018-10-26.examples.json +140 -3
- package/apis/securityhub-2018-10-26.min.json +465 -158
- package/apis/securitylake-2018-05-10.min.json +457 -447
- package/apis/securitylake-2018-05-10.paginators.json +7 -7
- package/apis/wafv2-2019-07-29.min.json +168 -159
- package/apis/workspaces-web-2020-07-08.min.json +360 -71
- package/apis/workspaces-web-2020-07-08.paginators.json +5 -0
- package/clients/chimesdkvoice.d.ts +5 -0
- package/clients/configservice.d.ts +34 -13
- package/clients/frauddetector.d.ts +18 -4
- package/clients/glue.d.ts +29 -24
- package/clients/groundstation.d.ts +2 -2
- package/clients/healthlake.d.ts +40 -10
- package/clients/iotfleetwise.d.ts +98 -13
- package/clients/location.d.ts +24 -8
- package/clients/m2.d.ts +81 -2
- package/clients/memorydb.d.ts +2 -2
- package/clients/personalize.d.ts +34 -17
- package/clients/polly.d.ts +2 -2
- package/clients/rds.d.ts +10 -2
- package/clients/securityhub.d.ts +539 -1
- package/clients/securitylake.d.ts +560 -541
- package/clients/servicecatalog.d.ts +8 -8
- package/clients/wafv2.d.ts +16 -6
- package/clients/workspacesweb.d.ts +254 -0
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +17 -17
- package/dist/aws-sdk.js +191 -146
- package/dist/aws-sdk.min.js +63 -63
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/securityhub.d.ts
CHANGED
@@ -713,6 +713,189 @@ declare namespace SecurityHub {
|
|
713
713
|
SubnetId?: NonEmptyString;
|
714
714
|
}
|
715
715
|
export type AvailabilityZones = AvailabilityZone[];
|
716
|
+
export interface AwsAmazonMqBrokerDetails {
|
717
|
+
/**
|
718
|
+
* The authentication strategy used to secure the broker. The default is SIMPLE.
|
719
|
+
*/
|
720
|
+
AuthenticationStrategy?: NonEmptyString;
|
721
|
+
/**
|
722
|
+
* Whether automatically upgrade new minor versions for brokers, as new versions are released and supported by Amazon MQ. Automatic upgrades occur during the scheduled maintenance window of the broker or after a manual broker reboot.
|
723
|
+
*/
|
724
|
+
AutoMinorVersionUpgrade?: Boolean;
|
725
|
+
/**
|
726
|
+
* The Amazon Resource Name (ARN) of the broker.
|
727
|
+
*/
|
728
|
+
BrokerArn?: NonEmptyString;
|
729
|
+
/**
|
730
|
+
* The broker's name.
|
731
|
+
*/
|
732
|
+
BrokerName?: NonEmptyString;
|
733
|
+
/**
|
734
|
+
* The broker's deployment mode.
|
735
|
+
*/
|
736
|
+
DeploymentMode?: NonEmptyString;
|
737
|
+
/**
|
738
|
+
* Encryption options for the broker. Doesn’t apply to RabbitMQ brokers.
|
739
|
+
*/
|
740
|
+
EncryptionOptions?: AwsAmazonMqBrokerEncryptionOptionsDetails;
|
741
|
+
/**
|
742
|
+
* The type of broker engine.
|
743
|
+
*/
|
744
|
+
EngineType?: NonEmptyString;
|
745
|
+
/**
|
746
|
+
* The version of the broker engine.
|
747
|
+
*/
|
748
|
+
EngineVersion?: NonEmptyString;
|
749
|
+
/**
|
750
|
+
* The broker's instance type.
|
751
|
+
*/
|
752
|
+
HostInstanceType?: NonEmptyString;
|
753
|
+
/**
|
754
|
+
* The unique ID that Amazon MQ generates for the broker.
|
755
|
+
*/
|
756
|
+
BrokerId?: NonEmptyString;
|
757
|
+
/**
|
758
|
+
* The metadata of the Lightweight Directory Access Protocol (LDAP) server used to authenticate and authorize connections to the broker. This is an optional failover server.
|
759
|
+
*/
|
760
|
+
LdapServerMetadata?: AwsAmazonMqBrokerLdapServerMetadataDetails;
|
761
|
+
/**
|
762
|
+
* Turns on Amazon CloudWatch logging for brokers.
|
763
|
+
*/
|
764
|
+
Logs?: AwsAmazonMqBrokerLogsDetails;
|
765
|
+
/**
|
766
|
+
* The scheduled time period (UTC) during which Amazon MQ begins to apply pending updates or patches to the broker.
|
767
|
+
*/
|
768
|
+
MaintenanceWindowStartTime?: AwsAmazonMqBrokerMaintenanceWindowStartTimeDetails;
|
769
|
+
/**
|
770
|
+
* Permits connections from applications outside of the VPC that hosts the broker's subnets.
|
771
|
+
*/
|
772
|
+
PubliclyAccessible?: Boolean;
|
773
|
+
/**
|
774
|
+
* The list of rules (one minimum, 125 maximum) that authorize connections to brokers.
|
775
|
+
*/
|
776
|
+
SecurityGroups?: StringList;
|
777
|
+
/**
|
778
|
+
* The broker's storage type.
|
779
|
+
*/
|
780
|
+
StorageType?: NonEmptyString;
|
781
|
+
/**
|
782
|
+
* The list of groups that define which subnets and IP ranges the broker can use from different Availability Zones.
|
783
|
+
*/
|
784
|
+
SubnetIds?: StringList;
|
785
|
+
/**
|
786
|
+
* The list of all broker usernames for the specified broker. Doesn't apply to RabbitMQ brokers.
|
787
|
+
*/
|
788
|
+
Users?: AwsAmazonMqBrokerUsersList;
|
789
|
+
}
|
790
|
+
export interface AwsAmazonMqBrokerEncryptionOptionsDetails {
|
791
|
+
/**
|
792
|
+
* The KMS key that’s used to encrypt your data at rest. If not provided, Amazon MQ will use a default KMS key to encrypt your data.
|
793
|
+
*/
|
794
|
+
KmsKeyId?: NonEmptyString;
|
795
|
+
/**
|
796
|
+
* Specifies that an KMS key should be used for at-rest encryption. Set to true by default if no value is provided (for example, for RabbitMQ brokers).
|
797
|
+
*/
|
798
|
+
UseAwsOwnedKey?: Boolean;
|
799
|
+
}
|
800
|
+
export interface AwsAmazonMqBrokerLdapServerMetadataDetails {
|
801
|
+
/**
|
802
|
+
* Specifies the location of the LDAP server, such as Amazon Web Services Directory Service for Microsoft Active Directory.
|
803
|
+
*/
|
804
|
+
Hosts?: StringList;
|
805
|
+
/**
|
806
|
+
* The distinguished name of the node in the directory information tree (DIT) to search for roles or groups.
|
807
|
+
*/
|
808
|
+
RoleBase?: NonEmptyString;
|
809
|
+
/**
|
810
|
+
* The group name attribute in a role entry whose value is the name of that role.
|
811
|
+
*/
|
812
|
+
RoleName?: NonEmptyString;
|
813
|
+
/**
|
814
|
+
* The LDAP search filter used to find roles within the roleBase.
|
815
|
+
*/
|
816
|
+
RoleSearchMatching?: NonEmptyString;
|
817
|
+
/**
|
818
|
+
* The directory search scope for the role. If set to true, the scope is to search the entire subtree.
|
819
|
+
*/
|
820
|
+
RoleSearchSubtree?: Boolean;
|
821
|
+
/**
|
822
|
+
* A username for the service account, which is an account in your LDAP server that has access to initiate a connection.
|
823
|
+
*/
|
824
|
+
ServiceAccountUsername?: NonEmptyString;
|
825
|
+
/**
|
826
|
+
* Selects a particular subtree of the directory information tree (DIT) to search for user entries.
|
827
|
+
*/
|
828
|
+
UserBase?: NonEmptyString;
|
829
|
+
/**
|
830
|
+
* The name of the LDAP attribute in the user's directory entry for the user's group membership.
|
831
|
+
*/
|
832
|
+
UserRoleName?: NonEmptyString;
|
833
|
+
/**
|
834
|
+
* The LDAP search filter used to find users within the userBase.
|
835
|
+
*/
|
836
|
+
UserSearchMatching?: NonEmptyString;
|
837
|
+
/**
|
838
|
+
* The directory search scope for the user. If set to true, the scope is to search the entire subtree.
|
839
|
+
*/
|
840
|
+
UserSearchSubtree?: Boolean;
|
841
|
+
}
|
842
|
+
export interface AwsAmazonMqBrokerLogsDetails {
|
843
|
+
/**
|
844
|
+
* Activates audit logging. Every user management action made using JMX or the ActiveMQ Web Console is logged. Doesn't apply to RabbitMQ brokers.
|
845
|
+
*/
|
846
|
+
Audit?: Boolean;
|
847
|
+
/**
|
848
|
+
* Activates general logging.
|
849
|
+
*/
|
850
|
+
General?: Boolean;
|
851
|
+
/**
|
852
|
+
* The location of the CloudWatch Logs log group where audit logs are sent.
|
853
|
+
*/
|
854
|
+
AuditLogGroup?: NonEmptyString;
|
855
|
+
/**
|
856
|
+
* The location of the CloudWatch Logs log group where general logs are sent.
|
857
|
+
*/
|
858
|
+
GeneralLogGroup?: NonEmptyString;
|
859
|
+
/**
|
860
|
+
* The list of information about logs that are to be turned on for the specified broker.
|
861
|
+
*/
|
862
|
+
Pending?: AwsAmazonMqBrokerLogsPendingDetails;
|
863
|
+
}
|
864
|
+
export interface AwsAmazonMqBrokerLogsPendingDetails {
|
865
|
+
/**
|
866
|
+
* Activates audit logging. Every user management action made using JMX or the ActiveMQ Web Console is logged. Doesn't apply to RabbitMQ brokers.
|
867
|
+
*/
|
868
|
+
Audit?: Boolean;
|
869
|
+
/**
|
870
|
+
* Activates general logging.
|
871
|
+
*/
|
872
|
+
General?: Boolean;
|
873
|
+
}
|
874
|
+
export interface AwsAmazonMqBrokerMaintenanceWindowStartTimeDetails {
|
875
|
+
/**
|
876
|
+
* The day of the week on which the maintenance window falls.
|
877
|
+
*/
|
878
|
+
DayOfWeek?: NonEmptyString;
|
879
|
+
/**
|
880
|
+
* The time, in 24-hour format, on which the maintenance window falls.
|
881
|
+
*/
|
882
|
+
TimeOfDay?: NonEmptyString;
|
883
|
+
/**
|
884
|
+
* The time zone in either the Country/City format or the UTC offset format. UTC is the default format.
|
885
|
+
*/
|
886
|
+
TimeZone?: NonEmptyString;
|
887
|
+
}
|
888
|
+
export interface AwsAmazonMqBrokerUsersDetails {
|
889
|
+
/**
|
890
|
+
* The type of change pending for the broker user.
|
891
|
+
*/
|
892
|
+
PendingChange?: NonEmptyString;
|
893
|
+
/**
|
894
|
+
* The username of the broker user.
|
895
|
+
*/
|
896
|
+
Username?: NonEmptyString;
|
897
|
+
}
|
898
|
+
export type AwsAmazonMqBrokerUsersList = AwsAmazonMqBrokerUsersDetails[];
|
716
899
|
export interface AwsApiCallAction {
|
717
900
|
/**
|
718
901
|
* The name of the API method that was issued.
|
@@ -1060,6 +1243,139 @@ declare namespace SecurityHub {
|
|
1060
1243
|
*/
|
1061
1244
|
ApiGatewayManaged?: Boolean;
|
1062
1245
|
}
|
1246
|
+
export interface AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetails {
|
1247
|
+
/**
|
1248
|
+
* The type of security configuration for your GraphQL API: API key, Identity and Access Management (IAM), OpenID Connect (OIDC), Amazon Cognito user pools, or Lambda.
|
1249
|
+
*/
|
1250
|
+
AuthenticationType?: NonEmptyString;
|
1251
|
+
/**
|
1252
|
+
* The configuration for Lambda function authorization.
|
1253
|
+
*/
|
1254
|
+
LambdaAuthorizerConfig?: AwsAppSyncGraphQlApiLambdaAuthorizerConfigDetails;
|
1255
|
+
/**
|
1256
|
+
* The OpenID Connect configuration.
|
1257
|
+
*/
|
1258
|
+
OpenIdConnectConfig?: AwsAppSyncGraphQlApiOpenIdConnectConfigDetails;
|
1259
|
+
/**
|
1260
|
+
* The Amazon Cognito user pools configuration.
|
1261
|
+
*/
|
1262
|
+
UserPoolConfig?: AwsAppSyncGraphQlApiUserPoolConfigDetails;
|
1263
|
+
}
|
1264
|
+
export type AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersList = AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetails[];
|
1265
|
+
export interface AwsAppSyncGraphQlApiDetails {
|
1266
|
+
/**
|
1267
|
+
* The unique identifier for the API.
|
1268
|
+
*/
|
1269
|
+
ApiId?: NonEmptyString;
|
1270
|
+
/**
|
1271
|
+
* The unique identifier for the API.
|
1272
|
+
*/
|
1273
|
+
Id?: NonEmptyString;
|
1274
|
+
/**
|
1275
|
+
* Specifies the authorization configuration for using an OpenID Connect compliant service with an AppSync GraphQL API endpoint.
|
1276
|
+
*/
|
1277
|
+
OpenIdConnectConfig?: AwsAppSyncGraphQlApiOpenIdConnectConfigDetails;
|
1278
|
+
/**
|
1279
|
+
* The API name.
|
1280
|
+
*/
|
1281
|
+
Name?: NonEmptyString;
|
1282
|
+
/**
|
1283
|
+
* Specifies the configuration for Lambda function authorization.
|
1284
|
+
*/
|
1285
|
+
LambdaAuthorizerConfig?: AwsAppSyncGraphQlApiLambdaAuthorizerConfigDetails;
|
1286
|
+
/**
|
1287
|
+
* Indicates whether to use X-Ray tracing for the GraphQL API.
|
1288
|
+
*/
|
1289
|
+
XrayEnabled?: Boolean;
|
1290
|
+
/**
|
1291
|
+
* The Amazon Resource Name (ARN) of the API.
|
1292
|
+
*/
|
1293
|
+
Arn?: NonEmptyString;
|
1294
|
+
/**
|
1295
|
+
* The Amazon Cognito user pools configuration.
|
1296
|
+
*/
|
1297
|
+
UserPoolConfig?: AwsAppSyncGraphQlApiUserPoolConfigDetails;
|
1298
|
+
/**
|
1299
|
+
* The type of security configuration for your GraphQL API: API key, Identity and Access Management (IAM), OpenID Connect (OIDC), Amazon Cognito user pools, or Lambda.
|
1300
|
+
*/
|
1301
|
+
AuthenticationType?: NonEmptyString;
|
1302
|
+
/**
|
1303
|
+
* The Amazon CloudWatch Logs configuration.
|
1304
|
+
*/
|
1305
|
+
LogConfig?: AwsAppSyncGraphQlApiLogConfigDetails;
|
1306
|
+
/**
|
1307
|
+
* A list of additional authentication providers for the GraphQL API.
|
1308
|
+
*/
|
1309
|
+
AdditionalAuthenticationProviders?: AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersList;
|
1310
|
+
/**
|
1311
|
+
* The Amazon Resource Name (ARN) of the WAF web access control list (web ACL) associated with this GraphQL API, if one exists.
|
1312
|
+
*/
|
1313
|
+
WafWebAclArn?: NonEmptyString;
|
1314
|
+
}
|
1315
|
+
export interface AwsAppSyncGraphQlApiLambdaAuthorizerConfigDetails {
|
1316
|
+
/**
|
1317
|
+
* The number of seconds a response should be cached for. The default is 5 minutes (300 seconds).
|
1318
|
+
*/
|
1319
|
+
AuthorizerResultTtlInSeconds?: Integer;
|
1320
|
+
/**
|
1321
|
+
* The Amazon Resource Name (ARN) of the Lambda function to be called for authorization. This can be a standard Lambda ARN, a version ARN (.../v3), or an alias ARN.
|
1322
|
+
*/
|
1323
|
+
AuthorizerUri?: NonEmptyString;
|
1324
|
+
/**
|
1325
|
+
* A regular expression for validation of tokens before the Lambda function is called.
|
1326
|
+
*/
|
1327
|
+
IdentityValidationExpression?: NonEmptyString;
|
1328
|
+
}
|
1329
|
+
export interface AwsAppSyncGraphQlApiLogConfigDetails {
|
1330
|
+
/**
|
1331
|
+
* The Amazon Resource Name (ARN) of the service role that AppSync assumes to publish to CloudWatch Logs in your account.
|
1332
|
+
*/
|
1333
|
+
CloudWatchLogsRoleArn?: NonEmptyString;
|
1334
|
+
/**
|
1335
|
+
* Set to TRUE to exclude sections that contain information such as headers, context, and evaluated mapping templates, regardless of logging level.
|
1336
|
+
*/
|
1337
|
+
ExcludeVerboseContent?: Boolean;
|
1338
|
+
/**
|
1339
|
+
* The field logging level.
|
1340
|
+
*/
|
1341
|
+
FieldLogLevel?: NonEmptyString;
|
1342
|
+
}
|
1343
|
+
export interface AwsAppSyncGraphQlApiOpenIdConnectConfigDetails {
|
1344
|
+
/**
|
1345
|
+
* The number of milliseconds that a token is valid after being authenticated.
|
1346
|
+
*/
|
1347
|
+
AuthTtL?: Long;
|
1348
|
+
/**
|
1349
|
+
* The client identifier of the relying party at the OpenID identity provider. This identifier is typically obtained when the relying party is registered with the OpenID identity provider. You can specify a regular expression so that AppSync can validate against multiple client identifiers at a time.
|
1350
|
+
*/
|
1351
|
+
ClientId?: NonEmptyString;
|
1352
|
+
/**
|
1353
|
+
* The number of milliseconds that a token is valid after it's issued to a user.
|
1354
|
+
*/
|
1355
|
+
IatTtL?: Long;
|
1356
|
+
/**
|
1357
|
+
* The issuer for the OIDC configuration. The issuer returned by discovery must exactly match the value of iss in the ID token.
|
1358
|
+
*/
|
1359
|
+
Issuer?: NonEmptyString;
|
1360
|
+
}
|
1361
|
+
export interface AwsAppSyncGraphQlApiUserPoolConfigDetails {
|
1362
|
+
/**
|
1363
|
+
* A regular expression for validating the incoming Amazon Cognito user pools app client ID. If this value isn't set, no filtering is applied.
|
1364
|
+
*/
|
1365
|
+
AppIdClientRegex?: NonEmptyString;
|
1366
|
+
/**
|
1367
|
+
* The Amazon Web Services Region in which the user pool was created.
|
1368
|
+
*/
|
1369
|
+
AwsRegion?: NonEmptyString;
|
1370
|
+
/**
|
1371
|
+
* The action that you want your GraphQL API to take when a request that uses Amazon Cognito user pools authentication doesn't match the Amazon Cognito user pools configuration.
|
1372
|
+
*/
|
1373
|
+
DefaultAction?: NonEmptyString;
|
1374
|
+
/**
|
1375
|
+
* The user pool ID.
|
1376
|
+
*/
|
1377
|
+
UserPoolId?: NonEmptyString;
|
1378
|
+
}
|
1063
1379
|
export type AwsAutoScalingAutoScalingGroupAvailabilityZonesList = AwsAutoScalingAutoScalingGroupAvailabilityZonesListDetails[];
|
1064
1380
|
export interface AwsAutoScalingAutoScalingGroupAvailabilityZonesListDetails {
|
1065
1381
|
/**
|
@@ -6127,6 +6443,141 @@ declare namespace SecurityHub {
|
|
6127
6443
|
*/
|
6128
6444
|
LoadBalancerAttributes?: AwsElbv2LoadBalancerAttributes;
|
6129
6445
|
}
|
6446
|
+
export interface AwsEventSchemasRegistryDetails {
|
6447
|
+
/**
|
6448
|
+
* A description of the registry to be created.
|
6449
|
+
*/
|
6450
|
+
Description?: NonEmptyString;
|
6451
|
+
/**
|
6452
|
+
* The Amazon Resource Name (ARN) of the registry.
|
6453
|
+
*/
|
6454
|
+
RegistryArn?: NonEmptyString;
|
6455
|
+
/**
|
6456
|
+
* The name of the schema registry.
|
6457
|
+
*/
|
6458
|
+
RegistryName?: NonEmptyString;
|
6459
|
+
}
|
6460
|
+
export interface AwsGuardDutyDetectorDataSourcesCloudTrailDetails {
|
6461
|
+
/**
|
6462
|
+
* Specifies whether CloudTrail is activated as a data source for the detector.
|
6463
|
+
*/
|
6464
|
+
Status?: NonEmptyString;
|
6465
|
+
}
|
6466
|
+
export interface AwsGuardDutyDetectorDataSourcesDetails {
|
6467
|
+
/**
|
6468
|
+
* An object that contains information on the status of CloudTrail as a data source for the detector.
|
6469
|
+
*/
|
6470
|
+
CloudTrail?: AwsGuardDutyDetectorDataSourcesCloudTrailDetails;
|
6471
|
+
/**
|
6472
|
+
* An object that contains information on the status of DNS logs as a data source for the detector.
|
6473
|
+
*/
|
6474
|
+
DnsLogs?: AwsGuardDutyDetectorDataSourcesDnsLogsDetails;
|
6475
|
+
/**
|
6476
|
+
* An object that contains information on the status of VPC Flow Logs as a data source for the detector.
|
6477
|
+
*/
|
6478
|
+
FlowLogs?: AwsGuardDutyDetectorDataSourcesFlowLogsDetails;
|
6479
|
+
/**
|
6480
|
+
* An object that contains information on the status of Kubernetes data sources for the detector.
|
6481
|
+
*/
|
6482
|
+
Kubernetes?: AwsGuardDutyDetectorDataSourcesKubernetesDetails;
|
6483
|
+
/**
|
6484
|
+
* An object that contains information on the status of Malware Protection as a data source for the detector.
|
6485
|
+
*/
|
6486
|
+
MalwareProtection?: AwsGuardDutyDetectorDataSourcesMalwareProtectionDetails;
|
6487
|
+
/**
|
6488
|
+
* An object that contains information on the status of S3 Data event logs as a data source for the detector.
|
6489
|
+
*/
|
6490
|
+
S3Logs?: AwsGuardDutyDetectorDataSourcesS3LogsDetails;
|
6491
|
+
}
|
6492
|
+
export interface AwsGuardDutyDetectorDataSourcesDnsLogsDetails {
|
6493
|
+
/**
|
6494
|
+
* Describes whether DNS logs is enabled as a data source for the detector.
|
6495
|
+
*/
|
6496
|
+
Status?: NonEmptyString;
|
6497
|
+
}
|
6498
|
+
export interface AwsGuardDutyDetectorDataSourcesFlowLogsDetails {
|
6499
|
+
/**
|
6500
|
+
* Describes whether VPC Flow Logs are activated as a data source for the detector.
|
6501
|
+
*/
|
6502
|
+
Status?: NonEmptyString;
|
6503
|
+
}
|
6504
|
+
export interface AwsGuardDutyDetectorDataSourcesKubernetesAuditLogsDetails {
|
6505
|
+
/**
|
6506
|
+
* Describes whether Kubernetes audit logs are activated as a data source for the detector.
|
6507
|
+
*/
|
6508
|
+
Status?: NonEmptyString;
|
6509
|
+
}
|
6510
|
+
export interface AwsGuardDutyDetectorDataSourcesKubernetesDetails {
|
6511
|
+
/**
|
6512
|
+
* Describes whether Kubernetes audit logs are activated as a data source for the detector.
|
6513
|
+
*/
|
6514
|
+
AuditLogs?: AwsGuardDutyDetectorDataSourcesKubernetesAuditLogsDetails;
|
6515
|
+
}
|
6516
|
+
export interface AwsGuardDutyDetectorDataSourcesMalwareProtectionDetails {
|
6517
|
+
/**
|
6518
|
+
* Describes the configuration of Malware Protection for EC2 instances with findings.
|
6519
|
+
*/
|
6520
|
+
ScanEc2InstanceWithFindings?: AwsGuardDutyDetectorDataSourcesMalwareProtectionScanEc2InstanceWithFindingsDetails;
|
6521
|
+
/**
|
6522
|
+
* The GuardDuty Malware Protection service role.
|
6523
|
+
*/
|
6524
|
+
ServiceRole?: NonEmptyString;
|
6525
|
+
}
|
6526
|
+
export interface AwsGuardDutyDetectorDataSourcesMalwareProtectionScanEc2InstanceWithFindingsDetails {
|
6527
|
+
/**
|
6528
|
+
* Describes the configuration of scanning EBS volumes (Malware Protection) as a data source.
|
6529
|
+
*/
|
6530
|
+
EbsVolumes?: AwsGuardDutyDetectorDataSourcesMalwareProtectionScanEc2InstanceWithFindingsEbsVolumesDetails;
|
6531
|
+
}
|
6532
|
+
export interface AwsGuardDutyDetectorDataSourcesMalwareProtectionScanEc2InstanceWithFindingsEbsVolumesDetails {
|
6533
|
+
/**
|
6534
|
+
* Specifies the reason why scanning EBS volumes (Malware Protection) isn’t activated as a data source.
|
6535
|
+
*/
|
6536
|
+
Reason?: NonEmptyString;
|
6537
|
+
/**
|
6538
|
+
* Describes whether scanning EBS volumes is activated as a data source for the detector.
|
6539
|
+
*/
|
6540
|
+
Status?: NonEmptyString;
|
6541
|
+
}
|
6542
|
+
export interface AwsGuardDutyDetectorDataSourcesS3LogsDetails {
|
6543
|
+
/**
|
6544
|
+
* A value that describes whether S3 data event logs are automatically enabled for new members of an organization.
|
6545
|
+
*/
|
6546
|
+
Status?: NonEmptyString;
|
6547
|
+
}
|
6548
|
+
export interface AwsGuardDutyDetectorDetails {
|
6549
|
+
/**
|
6550
|
+
* Describes which data sources are activated for the detector.
|
6551
|
+
*/
|
6552
|
+
DataSources?: AwsGuardDutyDetectorDataSourcesDetails;
|
6553
|
+
/**
|
6554
|
+
* Describes which features are activated for the detector.
|
6555
|
+
*/
|
6556
|
+
Features?: AwsGuardDutyDetectorFeaturesList;
|
6557
|
+
/**
|
6558
|
+
* The publishing frequency of the finding.
|
6559
|
+
*/
|
6560
|
+
FindingPublishingFrequency?: NonEmptyString;
|
6561
|
+
/**
|
6562
|
+
* The GuardDuty service role.
|
6563
|
+
*/
|
6564
|
+
ServiceRole?: NonEmptyString;
|
6565
|
+
/**
|
6566
|
+
* The activation status of the detector.
|
6567
|
+
*/
|
6568
|
+
Status?: NonEmptyString;
|
6569
|
+
}
|
6570
|
+
export interface AwsGuardDutyDetectorFeaturesDetails {
|
6571
|
+
/**
|
6572
|
+
* Indicates the name of the feature that is activated for the detector.
|
6573
|
+
*/
|
6574
|
+
Name?: NonEmptyString;
|
6575
|
+
/**
|
6576
|
+
* Indicates the status of the feature that is activated for the detector.
|
6577
|
+
*/
|
6578
|
+
Status?: NonEmptyString;
|
6579
|
+
}
|
6580
|
+
export type AwsGuardDutyDetectorFeaturesList = AwsGuardDutyDetectorFeaturesDetails[];
|
6130
6581
|
export interface AwsIamAccessKeyDetails {
|
6131
6582
|
/**
|
6132
6583
|
* The user associated with the IAM access key related to a finding. The UserName parameter has been replaced with the PrincipalName parameter because access keys can also be assigned to principals that are not IAM users.
|
@@ -9717,6 +10168,73 @@ declare namespace SecurityHub {
|
|
9717
10168
|
*/
|
9718
10169
|
Patch?: AwsSsmPatch;
|
9719
10170
|
}
|
10171
|
+
export interface AwsStepFunctionStateMachineDetails {
|
10172
|
+
/**
|
10173
|
+
* A user-defined or an auto-generated string that identifies a Map state. This parameter is present only if the stateMachineArn specified in input is a qualified state machine ARN.
|
10174
|
+
*/
|
10175
|
+
Label?: NonEmptyString;
|
10176
|
+
/**
|
10177
|
+
* Used to set CloudWatch Logs options.
|
10178
|
+
*/
|
10179
|
+
LoggingConfiguration?: AwsStepFunctionStateMachineLoggingConfigurationDetails;
|
10180
|
+
/**
|
10181
|
+
* The name of the state machine.
|
10182
|
+
*/
|
10183
|
+
Name?: NonEmptyString;
|
10184
|
+
/**
|
10185
|
+
* The Amazon Resource Name (ARN) of the IAM role used when creating this state machine.
|
10186
|
+
*/
|
10187
|
+
RoleArn?: NonEmptyString;
|
10188
|
+
/**
|
10189
|
+
* The ARN that identifies the state machine.
|
10190
|
+
*/
|
10191
|
+
StateMachineArn?: NonEmptyString;
|
10192
|
+
/**
|
10193
|
+
* The current status of the state machine.
|
10194
|
+
*/
|
10195
|
+
Status?: NonEmptyString;
|
10196
|
+
/**
|
10197
|
+
* Specifies whether X-Ray tracing is enabled.
|
10198
|
+
*/
|
10199
|
+
TracingConfiguration?: AwsStepFunctionStateMachineTracingConfigurationDetails;
|
10200
|
+
/**
|
10201
|
+
* The type of the state machine (STANDARD or EXPRESS).
|
10202
|
+
*/
|
10203
|
+
Type?: NonEmptyString;
|
10204
|
+
}
|
10205
|
+
export interface AwsStepFunctionStateMachineLoggingConfigurationDestinationsCloudWatchLogsLogGroupDetails {
|
10206
|
+
/**
|
10207
|
+
* The ARN (ends with :*) of the CloudWatch Logs log group to which you want your logs emitted.
|
10208
|
+
*/
|
10209
|
+
LogGroupArn?: NonEmptyString;
|
10210
|
+
}
|
10211
|
+
export interface AwsStepFunctionStateMachineLoggingConfigurationDestinationsDetails {
|
10212
|
+
/**
|
10213
|
+
* An object describing a CloudWatch Logs log group. For more information, see Amazon Web Services::Logs::LogGroup in the CloudFormation User Guide.
|
10214
|
+
*/
|
10215
|
+
CloudWatchLogsLogGroup?: AwsStepFunctionStateMachineLoggingConfigurationDestinationsCloudWatchLogsLogGroupDetails;
|
10216
|
+
}
|
10217
|
+
export type AwsStepFunctionStateMachineLoggingConfigurationDestinationsList = AwsStepFunctionStateMachineLoggingConfigurationDestinationsDetails[];
|
10218
|
+
export interface AwsStepFunctionStateMachineLoggingConfigurationDetails {
|
10219
|
+
/**
|
10220
|
+
* An array of objects that describes where your execution history events will be logged.
|
10221
|
+
*/
|
10222
|
+
Destinations?: AwsStepFunctionStateMachineLoggingConfigurationDestinationsList;
|
10223
|
+
/**
|
10224
|
+
* Determines whether execution data is included in your log. When set to false, data is excluded.
|
10225
|
+
*/
|
10226
|
+
IncludeExecutionData?: Boolean;
|
10227
|
+
/**
|
10228
|
+
* Defines which category of execution history events are logged.
|
10229
|
+
*/
|
10230
|
+
Level?: NonEmptyString;
|
10231
|
+
}
|
10232
|
+
export interface AwsStepFunctionStateMachineTracingConfigurationDetails {
|
10233
|
+
/**
|
10234
|
+
* When set to true, X-Ray tracing is enabled.
|
10235
|
+
*/
|
10236
|
+
Enabled?: Boolean;
|
10237
|
+
}
|
9720
10238
|
export interface AwsWafRateBasedRuleDetails {
|
9721
10239
|
/**
|
9722
10240
|
* The name of the metrics for the rate-based rule.
|
@@ -11064,7 +11582,7 @@ declare namespace SecurityHub {
|
|
11064
11582
|
export interface FindingHistoryRecord {
|
11065
11583
|
FindingIdentifier?: AwsSecurityFindingIdentifier;
|
11066
11584
|
/**
|
11067
|
-
* An ISO 8601-formatted timestamp that indicates when
|
11585
|
+
* An ISO 8601-formatted timestamp that indicates when Security Hub processed the updated finding record. A correctly formatted example is 2020-05-21T20:16:34.724Z. The value cannot contain spaces, and date and time should be separated by T. For more information, see RFC 3339 section 5.6, Internet Date/Time Format.
|
11068
11586
|
*/
|
11069
11587
|
UpdateTime?: Timestamp;
|
11070
11588
|
/**
|
@@ -12559,6 +13077,26 @@ declare namespace SecurityHub {
|
|
12559
13077
|
* Provides details about a route table. A route table contains a set of rules, called routes, that determine where to direct network traffic from your subnet or gateway.
|
12560
13078
|
*/
|
12561
13079
|
AwsEc2RouteTable?: AwsEc2RouteTableDetails;
|
13080
|
+
/**
|
13081
|
+
* Provides details about AppSync message broker. A message broker allows software applications and components to communicate using various programming languages, operating systems, and formal messaging protocols.
|
13082
|
+
*/
|
13083
|
+
AwsAmazonMqBroker?: AwsAmazonMqBrokerDetails;
|
13084
|
+
/**
|
13085
|
+
* Provides details about an AppSync Graph QL API, which lets you query multiple databases, microservices, and APIs from a single GraphQL endpoint.
|
13086
|
+
*/
|
13087
|
+
AwsAppSyncGraphQlApi?: AwsAppSyncGraphQlApiDetails;
|
13088
|
+
/**
|
13089
|
+
* A schema defines the structure of events that are sent to Amazon EventBridge. Schema registries are containers for schemas. They collect and organize schemas so that your schemas are in logical groups.
|
13090
|
+
*/
|
13091
|
+
AwsEventSchemasRegistry?: AwsEventSchemasRegistryDetails;
|
13092
|
+
/**
|
13093
|
+
* Provides details about an Amazon GuardDuty detector. A detector is an object that represents the GuardDuty service. A detector is required for GuardDuty to become operational.
|
13094
|
+
*/
|
13095
|
+
AwsGuardDutyDetector?: AwsGuardDutyDetectorDetails;
|
13096
|
+
/**
|
13097
|
+
* Provides details about an Step Functions state machine, which is a workflow consisting of a series of event-driven steps.
|
13098
|
+
*/
|
13099
|
+
AwsStepFunctionStateMachine?: AwsStepFunctionStateMachineDetails;
|
12562
13100
|
}
|
12563
13101
|
export type ResourceList = Resource[];
|
12564
13102
|
export interface Result {
|