@aws-sdk/client-securityhub 3.110.0 → 3.112.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.
Files changed (56) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/commands/TagResourceCommand.js +3 -3
  3. package/dist-cjs/commands/UntagResourceCommand.js +3 -3
  4. package/dist-cjs/commands/UpdateActionTargetCommand.js +3 -3
  5. package/dist-cjs/commands/UpdateFindingAggregatorCommand.js +3 -3
  6. package/dist-cjs/commands/UpdateFindingsCommand.js +3 -3
  7. package/dist-cjs/commands/UpdateInsightCommand.js +3 -3
  8. package/dist-cjs/commands/UpdateOrganizationConfigurationCommand.js +3 -3
  9. package/dist-cjs/commands/UpdateSecurityHubConfigurationCommand.js +3 -3
  10. package/dist-cjs/commands/UpdateStandardsControlCommand.js +3 -3
  11. package/dist-cjs/models/index.js +1 -0
  12. package/dist-cjs/models/models_0.js +161 -161
  13. package/dist-cjs/models/models_1.js +276 -114
  14. package/dist-cjs/models/models_2.js +111 -0
  15. package/dist-cjs/protocols/Aws_restJson1.js +1490 -33
  16. package/dist-es/commands/TagResourceCommand.js +1 -1
  17. package/dist-es/commands/UntagResourceCommand.js +1 -1
  18. package/dist-es/commands/UpdateActionTargetCommand.js +1 -1
  19. package/dist-es/commands/UpdateFindingAggregatorCommand.js +1 -1
  20. package/dist-es/commands/UpdateFindingsCommand.js +1 -1
  21. package/dist-es/commands/UpdateInsightCommand.js +1 -1
  22. package/dist-es/commands/UpdateOrganizationConfigurationCommand.js +1 -1
  23. package/dist-es/commands/UpdateSecurityHubConfigurationCommand.js +1 -1
  24. package/dist-es/commands/UpdateStandardsControlCommand.js +1 -1
  25. package/dist-es/models/index.js +1 -0
  26. package/dist-es/models/models_0.js +104 -104
  27. package/dist-es/models/models_1.js +180 -72
  28. package/dist-es/models/models_2.js +73 -0
  29. package/dist-es/protocols/Aws_restJson1.js +1207 -19
  30. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  31. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  32. package/dist-types/commands/UpdateActionTargetCommand.d.ts +1 -1
  33. package/dist-types/commands/UpdateFindingAggregatorCommand.d.ts +1 -1
  34. package/dist-types/commands/UpdateFindingsCommand.d.ts +1 -1
  35. package/dist-types/commands/UpdateInsightCommand.d.ts +1 -1
  36. package/dist-types/commands/UpdateOrganizationConfigurationCommand.d.ts +1 -1
  37. package/dist-types/commands/UpdateSecurityHubConfigurationCommand.d.ts +1 -1
  38. package/dist-types/commands/UpdateStandardsControlCommand.d.ts +1 -1
  39. package/dist-types/models/index.d.ts +1 -0
  40. package/dist-types/models/models_0.d.ts +1104 -975
  41. package/dist-types/models/models_1.d.ts +3525 -2223
  42. package/dist-types/models/models_2.d.ts +285 -0
  43. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  44. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  45. package/dist-types/ts3.4/commands/UpdateActionTargetCommand.d.ts +1 -1
  46. package/dist-types/ts3.4/commands/UpdateFindingAggregatorCommand.d.ts +1 -1
  47. package/dist-types/ts3.4/commands/UpdateFindingsCommand.d.ts +1 -1
  48. package/dist-types/ts3.4/commands/UpdateInsightCommand.d.ts +1 -1
  49. package/dist-types/ts3.4/commands/UpdateOrganizationConfigurationCommand.d.ts +1 -1
  50. package/dist-types/ts3.4/commands/UpdateSecurityHubConfigurationCommand.d.ts +1 -1
  51. package/dist-types/ts3.4/commands/UpdateStandardsControlCommand.d.ts +1 -1
  52. package/dist-types/ts3.4/models/index.d.ts +1 -0
  53. package/dist-types/ts3.4/models/models_0.d.ts +509 -519
  54. package/dist-types/ts3.4/models/models_1.d.ts +839 -228
  55. package/dist-types/ts3.4/models/models_2.d.ts +164 -0
  56. package/package.json +3 -3
@@ -919,6 +919,65 @@ export declare namespace AwsCertificateManagerCertificateDetails {
919
919
  const filterSensitiveLog: (obj: AwsCertificateManagerCertificateDetails) => any;
920
920
  }
921
921
 
922
+ export interface AwsCloudFormationStackDriftInformationDetails {
923
+
924
+ StackDriftStatus?: string;
925
+ }
926
+ export declare namespace AwsCloudFormationStackDriftInformationDetails {
927
+
928
+ const filterSensitiveLog: (obj: AwsCloudFormationStackDriftInformationDetails) => any;
929
+ }
930
+
931
+ export interface AwsCloudFormationStackOutputsDetails {
932
+
933
+ Description?: string;
934
+
935
+ OutputKey?: string;
936
+
937
+ OutputValue?: string;
938
+ }
939
+ export declare namespace AwsCloudFormationStackOutputsDetails {
940
+
941
+ const filterSensitiveLog: (obj: AwsCloudFormationStackOutputsDetails) => any;
942
+ }
943
+
944
+ export interface AwsCloudFormationStackDetails {
945
+
946
+ Capabilities?: string[];
947
+
948
+ CreationTime?: string;
949
+
950
+ Description?: string;
951
+
952
+ DisableRollback?: boolean;
953
+
954
+ DriftInformation?: AwsCloudFormationStackDriftInformationDetails;
955
+
956
+ EnableTerminationProtection?: boolean;
957
+
958
+ LastUpdatedTime?: string;
959
+
960
+ NotificationArns?: string[];
961
+
962
+ Outputs?: AwsCloudFormationStackOutputsDetails[];
963
+
964
+ RoleArn?: string;
965
+
966
+ StackId?: string;
967
+
968
+ StackName?: string;
969
+
970
+ StackStatus?: string;
971
+
972
+ StackStatusReason?: string;
973
+
974
+ TimeoutInMinutes?: number;
975
+ }
976
+ export declare namespace AwsCloudFormationStackDetails {
977
+
978
+ const filterSensitiveLog: (obj: AwsCloudFormationStackDetails) => any;
979
+ }
980
+
922
981
  export interface AwsCloudFrontDistributionCacheBehavior {
923
982
 
924
983
  ViewerProtocolPolicy?: string;
@@ -999,6 +1058,36 @@ export declare namespace AwsCloudFrontDistributionOriginGroups {
999
1058
  const filterSensitiveLog: (obj: AwsCloudFrontDistributionOriginGroups) => any;
1000
1059
  }
1001
1060
 
1061
+ export interface AwsCloudFrontDistributionOriginSslProtocols {
1062
+
1063
+ Items?: string[];
1064
+
1065
+ Quantity?: number;
1066
+ }
1067
+ export declare namespace AwsCloudFrontDistributionOriginSslProtocols {
1068
+
1069
+ const filterSensitiveLog: (obj: AwsCloudFrontDistributionOriginSslProtocols) => any;
1070
+ }
1071
+
1072
+ export interface AwsCloudFrontDistributionOriginCustomOriginConfig {
1073
+
1074
+ HttpPort?: number;
1075
+
1076
+ HttpsPort?: number;
1077
+
1078
+ OriginKeepaliveTimeout?: number;
1079
+
1080
+ OriginProtocolPolicy?: string;
1081
+
1082
+ OriginReadTimeout?: number;
1083
+
1084
+ OriginSslProtocols?: AwsCloudFrontDistributionOriginSslProtocols;
1085
+ }
1086
+ export declare namespace AwsCloudFrontDistributionOriginCustomOriginConfig {
1087
+
1088
+ const filterSensitiveLog: (obj: AwsCloudFrontDistributionOriginCustomOriginConfig) => any;
1089
+ }
1090
+
1002
1091
  export interface AwsCloudFrontDistributionOriginS3OriginConfig {
1003
1092
 
1004
1093
  OriginAccessIdentity?: string;
@@ -1017,6 +1106,8 @@ export interface AwsCloudFrontDistributionOriginItem {
1017
1106
  OriginPath?: string;
1018
1107
 
1019
1108
  S3OriginConfig?: AwsCloudFrontDistributionOriginS3OriginConfig;
1109
+
1110
+ CustomOriginConfig?: AwsCloudFrontDistributionOriginCustomOriginConfig;
1020
1111
  }
1021
1112
  export declare namespace AwsCloudFrontDistributionOriginItem {
1022
1113
 
@@ -1121,6 +1212,68 @@ export declare namespace AwsCloudTrailTrailDetails {
1121
1212
  const filterSensitiveLog: (obj: AwsCloudTrailTrailDetails) => any;
1122
1213
  }
1123
1214
 
1215
+ export interface AwsCloudWatchAlarmDimensionsDetails {
1216
+
1217
+ Name?: string;
1218
+
1219
+ Value?: string;
1220
+ }
1221
+ export declare namespace AwsCloudWatchAlarmDimensionsDetails {
1222
+
1223
+ const filterSensitiveLog: (obj: AwsCloudWatchAlarmDimensionsDetails) => any;
1224
+ }
1225
+
1226
+ export interface AwsCloudWatchAlarmDetails {
1227
+
1228
+ ActionsEnabled?: boolean;
1229
+
1230
+ AlarmActions?: string[];
1231
+
1232
+ AlarmArn?: string;
1233
+
1234
+ AlarmConfigurationUpdatedTimestamp?: string;
1235
+
1236
+ AlarmDescription?: string;
1237
+
1238
+ AlarmName?: string;
1239
+
1240
+ ComparisonOperator?: string;
1241
+
1242
+ DatapointsToAlarm?: number;
1243
+
1244
+ Dimensions?: AwsCloudWatchAlarmDimensionsDetails[];
1245
+
1246
+ EvaluateLowSampleCountPercentile?: string;
1247
+
1248
+ EvaluationPeriods?: number;
1249
+
1250
+ ExtendedStatistic?: string;
1251
+
1252
+ InsufficientDataActions?: string[];
1253
+
1254
+ MetricName?: string;
1255
+
1256
+ Namespace?: string;
1257
+
1258
+ OkActions?: string[];
1259
+
1260
+ Period?: number;
1261
+
1262
+ Statistic?: string;
1263
+
1264
+ Threshold?: number;
1265
+
1266
+ ThresholdMetricId?: string;
1267
+
1268
+ TreatMissingData?: string;
1269
+
1270
+ Unit?: string;
1271
+ }
1272
+ export declare namespace AwsCloudWatchAlarmDetails {
1273
+
1274
+ const filterSensitiveLog: (obj: AwsCloudWatchAlarmDetails) => any;
1275
+ }
1276
+
1124
1277
  export interface AwsCodeBuildProjectArtifactsDetails {
1125
1278
 
1126
1279
  ArtifactIdentifier?: string;
@@ -1532,6 +1685,23 @@ export declare namespace AwsEc2EipDetails {
1532
1685
  const filterSensitiveLog: (obj: AwsEc2EipDetails) => any;
1533
1686
  }
1534
1687
 
1688
+ export interface AwsEc2InstanceMetadataOptions {
1689
+
1690
+ HttpEndpoint?: string;
1691
+
1692
+ HttpProtocolIpv6?: string;
1693
+
1694
+ HttpPutResponseHopLimit?: number;
1695
+
1696
+ HttpTokens?: string;
1697
+
1698
+ InstanceMetadataTags?: string;
1699
+ }
1700
+ export declare namespace AwsEc2InstanceMetadataOptions {
1701
+
1702
+ const filterSensitiveLog: (obj: AwsEc2InstanceMetadataOptions) => any;
1703
+ }
1704
+
1535
1705
  export interface AwsEc2InstanceNetworkInterfacesDetails {
1536
1706
 
1537
1707
  NetworkInterfaceId?: string;
@@ -1562,6 +1732,10 @@ export interface AwsEc2InstanceDetails {
1562
1732
  LaunchedAt?: string;
1563
1733
 
1564
1734
  NetworkInterfaces?: AwsEc2InstanceNetworkInterfacesDetails[];
1735
+
1736
+ VirtualizationType?: string;
1737
+
1738
+ MetadataOptions?: AwsEc2InstanceMetadataOptions;
1565
1739
  }
1566
1740
  export declare namespace AwsEc2InstanceDetails {
1567
1741
 
@@ -1852,6 +2026,37 @@ export declare namespace AwsEc2SubnetDetails {
1852
2026
  const filterSensitiveLog: (obj: AwsEc2SubnetDetails) => any;
1853
2027
  }
1854
2028
 
2029
+ export interface AwsEc2TransitGatewayDetails {
2030
+
2031
+ Id?: string;
2032
+
2033
+ Description?: string;
2034
+
2035
+ DefaultRouteTablePropagation?: string;
2036
+
2037
+ AutoAcceptSharedAttachments?: string;
2038
+
2039
+ DefaultRouteTableAssociation?: string;
2040
+
2041
+ TransitGatewayCidrBlocks?: string[];
2042
+
2043
+ AssociationDefaultRouteTableId?: string;
2044
+
2045
+ PropagationDefaultRouteTableId?: string;
2046
+
2047
+ VpnEcmpSupport?: string;
2048
+
2049
+ DnsSupport?: string;
2050
+
2051
+ MulticastSupport?: string;
2052
+
2053
+ AmazonSideAsn?: number;
2054
+ }
2055
+ export declare namespace AwsEc2TransitGatewayDetails {
2056
+
2057
+ const filterSensitiveLog: (obj: AwsEc2TransitGatewayDetails) => any;
2058
+ }
2059
+
1855
2060
  export interface AwsEc2VolumeAttachment {
1856
2061
 
1857
2062
  AttachTime?: string;
@@ -1871,6 +2076,8 @@ export interface AwsEc2VolumeDetails {
1871
2076
 
1872
2077
  CreateTime?: string;
1873
2078
 
2079
+ DeviceName?: string;
2080
+
1874
2081
  Encrypted?: boolean;
1875
2082
 
1876
2083
  Size?: number;
@@ -1882,6 +2089,12 @@ export interface AwsEc2VolumeDetails {
1882
2089
  KmsKeyId?: string;
1883
2090
 
1884
2091
  Attachments?: AwsEc2VolumeAttachment[];
2092
+
2093
+ VolumeId?: string;
2094
+
2095
+ VolumeType?: string;
2096
+
2097
+ VolumeScanStatus?: string;
1885
2098
  }
1886
2099
  export declare namespace AwsEc2VolumeDetails {
1887
2100
 
@@ -1954,6 +2167,86 @@ export declare namespace AwsEc2VpcEndpointServiceDetails {
1954
2167
  const filterSensitiveLog: (obj: AwsEc2VpcEndpointServiceDetails) => any;
1955
2168
  }
1956
2169
 
2170
+ export interface VpcInfoCidrBlockSetDetails {
2171
+
2172
+ CidrBlock?: string;
2173
+ }
2174
+ export declare namespace VpcInfoCidrBlockSetDetails {
2175
+
2176
+ const filterSensitiveLog: (obj: VpcInfoCidrBlockSetDetails) => any;
2177
+ }
2178
+
2179
+ export interface VpcInfoIpv6CidrBlockSetDetails {
2180
+
2181
+ Ipv6CidrBlock?: string;
2182
+ }
2183
+ export declare namespace VpcInfoIpv6CidrBlockSetDetails {
2184
+
2185
+ const filterSensitiveLog: (obj: VpcInfoIpv6CidrBlockSetDetails) => any;
2186
+ }
2187
+
2188
+ export interface VpcInfoPeeringOptionsDetails {
2189
+
2190
+ AllowDnsResolutionFromRemoteVpc?: boolean;
2191
+
2192
+ AllowEgressFromLocalClassicLinkToRemoteVpc?: boolean;
2193
+
2194
+ AllowEgressFromLocalVpcToRemoteClassicLink?: boolean;
2195
+ }
2196
+ export declare namespace VpcInfoPeeringOptionsDetails {
2197
+
2198
+ const filterSensitiveLog: (obj: VpcInfoPeeringOptionsDetails) => any;
2199
+ }
2200
+
2201
+ export interface AwsEc2VpcPeeringConnectionVpcInfoDetails {
2202
+
2203
+ CidrBlock?: string;
2204
+
2205
+ CidrBlockSet?: VpcInfoCidrBlockSetDetails[];
2206
+
2207
+ Ipv6CidrBlockSet?: VpcInfoIpv6CidrBlockSetDetails[];
2208
+
2209
+ OwnerId?: string;
2210
+
2211
+ PeeringOptions?: VpcInfoPeeringOptionsDetails;
2212
+
2213
+ Region?: string;
2214
+
2215
+ VpcId?: string;
2216
+ }
2217
+ export declare namespace AwsEc2VpcPeeringConnectionVpcInfoDetails {
2218
+
2219
+ const filterSensitiveLog: (obj: AwsEc2VpcPeeringConnectionVpcInfoDetails) => any;
2220
+ }
2221
+
2222
+ export interface AwsEc2VpcPeeringConnectionStatusDetails {
2223
+
2224
+ Code?: string;
2225
+
2226
+ Message?: string;
2227
+ }
2228
+ export declare namespace AwsEc2VpcPeeringConnectionStatusDetails {
2229
+
2230
+ const filterSensitiveLog: (obj: AwsEc2VpcPeeringConnectionStatusDetails) => any;
2231
+ }
2232
+
2233
+ export interface AwsEc2VpcPeeringConnectionDetails {
2234
+
2235
+ AccepterVpcInfo?: AwsEc2VpcPeeringConnectionVpcInfoDetails;
2236
+
2237
+ ExpirationTime?: string;
2238
+
2239
+ RequesterVpcInfo?: AwsEc2VpcPeeringConnectionVpcInfoDetails;
2240
+
2241
+ Status?: AwsEc2VpcPeeringConnectionStatusDetails;
2242
+
2243
+ VpcPeeringConnectionId?: string;
2244
+ }
2245
+ export declare namespace AwsEc2VpcPeeringConnectionDetails {
2246
+
2247
+ const filterSensitiveLog: (obj: AwsEc2VpcPeeringConnectionDetails) => any;
2248
+ }
2249
+
1957
2250
  export interface AwsEc2VpnConnectionOptionsTunnelOptionsDetails {
1958
2251
 
1959
2252
  DpdTimeoutSeconds?: number;
@@ -2186,6 +2479,10 @@ export declare namespace AwsEcsClusterDefaultCapacityProviderStrategyDetails {
2186
2479
 
2187
2480
  export interface AwsEcsClusterDetails {
2188
2481
 
2482
+ ClusterArn?: string;
2483
+
2484
+ ActiveServicesCount?: number;
2485
+
2189
2486
  CapacityProviders?: string[];
2190
2487
 
2191
2488
  ClusterSettings?: AwsEcsClusterClusterSettingsDetails[];
@@ -2193,12 +2490,46 @@ export interface AwsEcsClusterDetails {
2193
2490
  Configuration?: AwsEcsClusterConfigurationDetails;
2194
2491
 
2195
2492
  DefaultCapacityProviderStrategy?: AwsEcsClusterDefaultCapacityProviderStrategyDetails[];
2493
+
2494
+ ClusterName?: string;
2495
+
2496
+ RegisteredContainerInstancesCount?: number;
2497
+
2498
+ RunningTasksCount?: number;
2499
+
2500
+ Status?: string;
2196
2501
  }
2197
2502
  export declare namespace AwsEcsClusterDetails {
2198
2503
 
2199
2504
  const filterSensitiveLog: (obj: AwsEcsClusterDetails) => any;
2200
2505
  }
2201
2506
 
2507
+ export interface AwsMountPoint {
2508
+
2509
+ SourceVolume?: string;
2510
+
2511
+ ContainerPath?: string;
2512
+ }
2513
+ export declare namespace AwsMountPoint {
2514
+
2515
+ const filterSensitiveLog: (obj: AwsMountPoint) => any;
2516
+ }
2517
+
2518
+ export interface AwsEcsContainerDetails {
2519
+
2520
+ Name?: string;
2521
+
2522
+ Image?: string;
2523
+
2524
+ MountPoints?: AwsMountPoint[];
2525
+
2526
+ Privileged?: boolean;
2527
+ }
2528
+ export declare namespace AwsEcsContainerDetails {
2529
+
2530
+ const filterSensitiveLog: (obj: AwsEcsContainerDetails) => any;
2531
+ }
2532
+
2202
2533
  export interface AwsEcsServiceCapacityProviderStrategyDetails {
2203
2534
 
2204
2535
  Base?: number;
@@ -2851,93 +3182,194 @@ export declare namespace AwsEcsTaskDefinitionDetails {
2851
3182
  const filterSensitiveLog: (obj: AwsEcsTaskDefinitionDetails) => any;
2852
3183
  }
2853
3184
 
2854
- export interface AwsEksClusterLoggingClusterLoggingDetails {
2855
-
2856
- Enabled?: boolean;
2857
-
2858
- Types?: string[];
2859
- }
2860
- export declare namespace AwsEksClusterLoggingClusterLoggingDetails {
2861
-
2862
- const filterSensitiveLog: (obj: AwsEksClusterLoggingClusterLoggingDetails) => any;
2863
- }
2864
-
2865
- export interface AwsEksClusterLoggingDetails {
3185
+ export interface AwsEcsTaskVolumeHostDetails {
2866
3186
 
2867
- ClusterLogging?: AwsEksClusterLoggingClusterLoggingDetails[];
3187
+ SourcePath?: string;
2868
3188
  }
2869
- export declare namespace AwsEksClusterLoggingDetails {
3189
+ export declare namespace AwsEcsTaskVolumeHostDetails {
2870
3190
 
2871
- const filterSensitiveLog: (obj: AwsEksClusterLoggingDetails) => any;
3191
+ const filterSensitiveLog: (obj: AwsEcsTaskVolumeHostDetails) => any;
2872
3192
  }
2873
3193
 
2874
- export interface AwsEksClusterResourcesVpcConfigDetails {
3194
+ export interface AwsEcsTaskVolumeDetails {
2875
3195
 
2876
- SecurityGroupIds?: string[];
3196
+ Name?: string;
2877
3197
 
2878
- SubnetIds?: string[];
3198
+ Host?: AwsEcsTaskVolumeHostDetails;
2879
3199
  }
2880
- export declare namespace AwsEksClusterResourcesVpcConfigDetails {
3200
+ export declare namespace AwsEcsTaskVolumeDetails {
2881
3201
 
2882
- const filterSensitiveLog: (obj: AwsEksClusterResourcesVpcConfigDetails) => any;
3202
+ const filterSensitiveLog: (obj: AwsEcsTaskVolumeDetails) => any;
2883
3203
  }
2884
3204
 
2885
- export interface AwsEksClusterDetails {
3205
+ export interface AwsEcsTaskDetails {
2886
3206
 
2887
- Arn?: string;
3207
+ ClusterArn?: string;
2888
3208
 
2889
- CertificateAuthorityData?: string;
3209
+ TaskDefinitionArn?: string;
2890
3210
 
2891
- ClusterStatus?: string;
3211
+ Version?: string;
2892
3212
 
2893
- Endpoint?: string;
3213
+ CreatedAt?: string;
2894
3214
 
2895
- Name?: string;
3215
+ StartedAt?: string;
2896
3216
 
2897
- ResourcesVpcConfig?: AwsEksClusterResourcesVpcConfigDetails;
3217
+ StartedBy?: string;
2898
3218
 
2899
- RoleArn?: string;
3219
+ Group?: string;
2900
3220
 
2901
- Version?: string;
3221
+ Volumes?: AwsEcsTaskVolumeDetails[];
2902
3222
 
2903
- Logging?: AwsEksClusterLoggingDetails;
3223
+ Containers?: AwsEcsContainerDetails[];
2904
3224
  }
2905
- export declare namespace AwsEksClusterDetails {
3225
+ export declare namespace AwsEcsTaskDetails {
2906
3226
 
2907
- const filterSensitiveLog: (obj: AwsEksClusterDetails) => any;
3227
+ const filterSensitiveLog: (obj: AwsEcsTaskDetails) => any;
2908
3228
  }
2909
3229
 
2910
- export interface AwsElasticBeanstalkEnvironmentEnvironmentLink {
3230
+ export interface AwsEfsAccessPointPosixUserDetails {
2911
3231
 
2912
- EnvironmentName?: string;
3232
+ Gid?: string;
2913
3233
 
2914
- LinkName?: string;
3234
+ SecondaryGids?: string[];
3235
+
3236
+ Uid?: string;
2915
3237
  }
2916
- export declare namespace AwsElasticBeanstalkEnvironmentEnvironmentLink {
3238
+ export declare namespace AwsEfsAccessPointPosixUserDetails {
2917
3239
 
2918
- const filterSensitiveLog: (obj: AwsElasticBeanstalkEnvironmentEnvironmentLink) => any;
3240
+ const filterSensitiveLog: (obj: AwsEfsAccessPointPosixUserDetails) => any;
2919
3241
  }
2920
3242
 
2921
- export interface AwsElasticBeanstalkEnvironmentOptionSetting {
2922
-
2923
- Namespace?: string;
3243
+ export interface AwsEfsAccessPointRootDirectoryCreationInfoDetails {
2924
3244
 
2925
- OptionName?: string;
3245
+ OwnerGid?: string;
2926
3246
 
2927
- ResourceName?: string;
3247
+ OwnerUid?: string;
2928
3248
 
2929
- Value?: string;
3249
+ Permissions?: string;
2930
3250
  }
2931
- export declare namespace AwsElasticBeanstalkEnvironmentOptionSetting {
3251
+ export declare namespace AwsEfsAccessPointRootDirectoryCreationInfoDetails {
2932
3252
 
2933
- const filterSensitiveLog: (obj: AwsElasticBeanstalkEnvironmentOptionSetting) => any;
3253
+ const filterSensitiveLog: (obj: AwsEfsAccessPointRootDirectoryCreationInfoDetails) => any;
2934
3254
  }
2935
3255
 
2936
- export interface AwsElasticBeanstalkEnvironmentTier {
2937
-
2938
- Name?: string;
3256
+ export interface AwsEfsAccessPointRootDirectoryDetails {
2939
3257
 
2940
- Type?: string;
3258
+ CreationInfo?: AwsEfsAccessPointRootDirectoryCreationInfoDetails;
3259
+
3260
+ Path?: string;
3261
+ }
3262
+ export declare namespace AwsEfsAccessPointRootDirectoryDetails {
3263
+
3264
+ const filterSensitiveLog: (obj: AwsEfsAccessPointRootDirectoryDetails) => any;
3265
+ }
3266
+
3267
+ export interface AwsEfsAccessPointDetails {
3268
+
3269
+ AccessPointId?: string;
3270
+
3271
+ Arn?: string;
3272
+
3273
+ ClientToken?: string;
3274
+
3275
+ FileSystemId?: string;
3276
+
3277
+ PosixUser?: AwsEfsAccessPointPosixUserDetails;
3278
+
3279
+ RootDirectory?: AwsEfsAccessPointRootDirectoryDetails;
3280
+ }
3281
+ export declare namespace AwsEfsAccessPointDetails {
3282
+
3283
+ const filterSensitiveLog: (obj: AwsEfsAccessPointDetails) => any;
3284
+ }
3285
+
3286
+ export interface AwsEksClusterLoggingClusterLoggingDetails {
3287
+
3288
+ Enabled?: boolean;
3289
+
3290
+ Types?: string[];
3291
+ }
3292
+ export declare namespace AwsEksClusterLoggingClusterLoggingDetails {
3293
+
3294
+ const filterSensitiveLog: (obj: AwsEksClusterLoggingClusterLoggingDetails) => any;
3295
+ }
3296
+
3297
+ export interface AwsEksClusterLoggingDetails {
3298
+
3299
+ ClusterLogging?: AwsEksClusterLoggingClusterLoggingDetails[];
3300
+ }
3301
+ export declare namespace AwsEksClusterLoggingDetails {
3302
+
3303
+ const filterSensitiveLog: (obj: AwsEksClusterLoggingDetails) => any;
3304
+ }
3305
+
3306
+ export interface AwsEksClusterResourcesVpcConfigDetails {
3307
+
3308
+ SecurityGroupIds?: string[];
3309
+
3310
+ SubnetIds?: string[];
3311
+ }
3312
+ export declare namespace AwsEksClusterResourcesVpcConfigDetails {
3313
+
3314
+ const filterSensitiveLog: (obj: AwsEksClusterResourcesVpcConfigDetails) => any;
3315
+ }
3316
+
3317
+ export interface AwsEksClusterDetails {
3318
+
3319
+ Arn?: string;
3320
+
3321
+ CertificateAuthorityData?: string;
3322
+
3323
+ ClusterStatus?: string;
3324
+
3325
+ Endpoint?: string;
3326
+
3327
+ Name?: string;
3328
+
3329
+ ResourcesVpcConfig?: AwsEksClusterResourcesVpcConfigDetails;
3330
+
3331
+ RoleArn?: string;
3332
+
3333
+ Version?: string;
3334
+
3335
+ Logging?: AwsEksClusterLoggingDetails;
3336
+ }
3337
+ export declare namespace AwsEksClusterDetails {
3338
+
3339
+ const filterSensitiveLog: (obj: AwsEksClusterDetails) => any;
3340
+ }
3341
+
3342
+ export interface AwsElasticBeanstalkEnvironmentEnvironmentLink {
3343
+
3344
+ EnvironmentName?: string;
3345
+
3346
+ LinkName?: string;
3347
+ }
3348
+ export declare namespace AwsElasticBeanstalkEnvironmentEnvironmentLink {
3349
+
3350
+ const filterSensitiveLog: (obj: AwsElasticBeanstalkEnvironmentEnvironmentLink) => any;
3351
+ }
3352
+
3353
+ export interface AwsElasticBeanstalkEnvironmentOptionSetting {
3354
+
3355
+ Namespace?: string;
3356
+
3357
+ OptionName?: string;
3358
+
3359
+ ResourceName?: string;
3360
+
3361
+ Value?: string;
3362
+ }
3363
+ export declare namespace AwsElasticBeanstalkEnvironmentOptionSetting {
3364
+
3365
+ const filterSensitiveLog: (obj: AwsElasticBeanstalkEnvironmentOptionSetting) => any;
3366
+ }
3367
+
3368
+ export interface AwsElasticBeanstalkEnvironmentTier {
3369
+
3370
+ Name?: string;
3371
+
3372
+ Type?: string;
2941
3373
 
2942
3374
  Version?: string;
2943
3375
  }
@@ -3680,6 +4112,34 @@ export declare namespace AwsIamUserDetails {
3680
4112
  const filterSensitiveLog: (obj: AwsIamUserDetails) => any;
3681
4113
  }
3682
4114
 
4115
+ export interface AwsKinesisStreamStreamEncryptionDetails {
4116
+
4117
+ EncryptionType?: string;
4118
+
4119
+ KeyId?: string;
4120
+ }
4121
+ export declare namespace AwsKinesisStreamStreamEncryptionDetails {
4122
+
4123
+ const filterSensitiveLog: (obj: AwsKinesisStreamStreamEncryptionDetails) => any;
4124
+ }
4125
+
4126
+ export interface AwsKinesisStreamDetails {
4127
+
4128
+ Name?: string;
4129
+
4130
+ Arn?: string;
4131
+
4132
+ StreamEncryption?: AwsKinesisStreamStreamEncryptionDetails;
4133
+
4134
+ ShardCount?: number;
4135
+
4136
+ RetentionPeriodHours?: number;
4137
+ }
4138
+ export declare namespace AwsKinesisStreamDetails {
4139
+
4140
+ const filterSensitiveLog: (obj: AwsKinesisStreamDetails) => any;
4141
+ }
4142
+
3683
4143
  export interface AwsKmsKeyDetails {
3684
4144
 
3685
4145
  AWSAccountId?: string;
@@ -4159,473 +4619,3 @@ export declare namespace RuleGroupVariablesIpSetsDetails {
4159
4619
 
4160
4620
  const filterSensitiveLog: (obj: RuleGroupVariablesIpSetsDetails) => any;
4161
4621
  }
4162
-
4163
- export interface RuleGroupVariablesPortSetsDetails {
4164
-
4165
- Definition?: string[];
4166
- }
4167
- export declare namespace RuleGroupVariablesPortSetsDetails {
4168
-
4169
- const filterSensitiveLog: (obj: RuleGroupVariablesPortSetsDetails) => any;
4170
- }
4171
-
4172
- export interface RuleGroupVariables {
4173
-
4174
- IpSets?: RuleGroupVariablesIpSetsDetails;
4175
-
4176
- PortSets?: RuleGroupVariablesPortSetsDetails;
4177
- }
4178
- export declare namespace RuleGroupVariables {
4179
-
4180
- const filterSensitiveLog: (obj: RuleGroupVariables) => any;
4181
- }
4182
-
4183
- export interface RuleGroupDetails {
4184
-
4185
- RuleVariables?: RuleGroupVariables;
4186
-
4187
- RulesSource?: RuleGroupSource;
4188
- }
4189
- export declare namespace RuleGroupDetails {
4190
-
4191
- const filterSensitiveLog: (obj: RuleGroupDetails) => any;
4192
- }
4193
-
4194
- export interface AwsNetworkFirewallRuleGroupDetails {
4195
-
4196
- Capacity?: number;
4197
-
4198
- Description?: string;
4199
-
4200
- RuleGroup?: RuleGroupDetails;
4201
-
4202
- RuleGroupArn?: string;
4203
-
4204
- RuleGroupId?: string;
4205
-
4206
- RuleGroupName?: string;
4207
-
4208
- Type?: string;
4209
- }
4210
- export declare namespace AwsNetworkFirewallRuleGroupDetails {
4211
-
4212
- const filterSensitiveLog: (obj: AwsNetworkFirewallRuleGroupDetails) => any;
4213
- }
4214
-
4215
- export interface AwsOpenSearchServiceDomainClusterConfigZoneAwarenessConfigDetails {
4216
-
4217
- AvailabilityZoneCount?: number;
4218
- }
4219
- export declare namespace AwsOpenSearchServiceDomainClusterConfigZoneAwarenessConfigDetails {
4220
-
4221
- const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainClusterConfigZoneAwarenessConfigDetails) => any;
4222
- }
4223
-
4224
- export interface AwsOpenSearchServiceDomainClusterConfigDetails {
4225
-
4226
- InstanceCount?: number;
4227
-
4228
- WarmEnabled?: boolean;
4229
-
4230
- WarmCount?: number;
4231
-
4232
- DedicatedMasterEnabled?: boolean;
4233
-
4234
- ZoneAwarenessConfig?: AwsOpenSearchServiceDomainClusterConfigZoneAwarenessConfigDetails;
4235
-
4236
- DedicatedMasterCount?: number;
4237
-
4238
- InstanceType?: string;
4239
-
4240
- WarmType?: string;
4241
-
4242
- ZoneAwarenessEnabled?: boolean;
4243
-
4244
- DedicatedMasterType?: string;
4245
- }
4246
- export declare namespace AwsOpenSearchServiceDomainClusterConfigDetails {
4247
-
4248
- const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainClusterConfigDetails) => any;
4249
- }
4250
-
4251
- export interface AwsOpenSearchServiceDomainDomainEndpointOptionsDetails {
4252
-
4253
- CustomEndpointCertificateArn?: string;
4254
-
4255
- CustomEndpointEnabled?: boolean;
4256
-
4257
- EnforceHTTPS?: boolean;
4258
-
4259
- CustomEndpoint?: string;
4260
-
4261
- TLSSecurityPolicy?: string;
4262
- }
4263
- export declare namespace AwsOpenSearchServiceDomainDomainEndpointOptionsDetails {
4264
-
4265
- const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainDomainEndpointOptionsDetails) => any;
4266
- }
4267
-
4268
- export interface AwsOpenSearchServiceDomainEncryptionAtRestOptionsDetails {
4269
-
4270
- Enabled?: boolean;
4271
-
4272
- KmsKeyId?: string;
4273
- }
4274
- export declare namespace AwsOpenSearchServiceDomainEncryptionAtRestOptionsDetails {
4275
-
4276
- const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainEncryptionAtRestOptionsDetails) => any;
4277
- }
4278
-
4279
- export interface AwsOpenSearchServiceDomainLogPublishingOption {
4280
-
4281
- CloudWatchLogsLogGroupArn?: string;
4282
-
4283
- Enabled?: boolean;
4284
- }
4285
- export declare namespace AwsOpenSearchServiceDomainLogPublishingOption {
4286
-
4287
- const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainLogPublishingOption) => any;
4288
- }
4289
-
4290
- export interface AwsOpenSearchServiceDomainLogPublishingOptionsDetails {
4291
-
4292
- IndexSlowLogs?: AwsOpenSearchServiceDomainLogPublishingOption;
4293
-
4294
- SearchSlowLogs?: AwsOpenSearchServiceDomainLogPublishingOption;
4295
-
4296
- AuditLogs?: AwsOpenSearchServiceDomainLogPublishingOption;
4297
- }
4298
- export declare namespace AwsOpenSearchServiceDomainLogPublishingOptionsDetails {
4299
-
4300
- const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainLogPublishingOptionsDetails) => any;
4301
- }
4302
-
4303
- export interface AwsOpenSearchServiceDomainNodeToNodeEncryptionOptionsDetails {
4304
-
4305
- Enabled?: boolean;
4306
- }
4307
- export declare namespace AwsOpenSearchServiceDomainNodeToNodeEncryptionOptionsDetails {
4308
-
4309
- const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainNodeToNodeEncryptionOptionsDetails) => any;
4310
- }
4311
-
4312
- export interface AwsOpenSearchServiceDomainServiceSoftwareOptionsDetails {
4313
-
4314
- AutomatedUpdateDate?: string;
4315
-
4316
- Cancellable?: boolean;
4317
-
4318
- CurrentVersion?: string;
4319
-
4320
- Description?: string;
4321
-
4322
- NewVersion?: string;
4323
-
4324
- UpdateAvailable?: boolean;
4325
-
4326
- UpdateStatus?: string;
4327
-
4328
- OptionalDeployment?: boolean;
4329
- }
4330
- export declare namespace AwsOpenSearchServiceDomainServiceSoftwareOptionsDetails {
4331
-
4332
- const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainServiceSoftwareOptionsDetails) => any;
4333
- }
4334
-
4335
- export interface AwsOpenSearchServiceDomainVpcOptionsDetails {
4336
-
4337
- SecurityGroupIds?: string[];
4338
-
4339
- SubnetIds?: string[];
4340
- }
4341
- export declare namespace AwsOpenSearchServiceDomainVpcOptionsDetails {
4342
-
4343
- const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainVpcOptionsDetails) => any;
4344
- }
4345
-
4346
- export interface AwsOpenSearchServiceDomainDetails {
4347
-
4348
- Arn?: string;
4349
-
4350
- AccessPolicies?: string;
4351
-
4352
- DomainName?: string;
4353
-
4354
- Id?: string;
4355
-
4356
- DomainEndpoint?: string;
4357
-
4358
- EngineVersion?: string;
4359
-
4360
- EncryptionAtRestOptions?: AwsOpenSearchServiceDomainEncryptionAtRestOptionsDetails;
4361
-
4362
- NodeToNodeEncryptionOptions?: AwsOpenSearchServiceDomainNodeToNodeEncryptionOptionsDetails;
4363
-
4364
- ServiceSoftwareOptions?: AwsOpenSearchServiceDomainServiceSoftwareOptionsDetails;
4365
-
4366
- ClusterConfig?: AwsOpenSearchServiceDomainClusterConfigDetails;
4367
-
4368
- DomainEndpointOptions?: AwsOpenSearchServiceDomainDomainEndpointOptionsDetails;
4369
-
4370
- VpcOptions?: AwsOpenSearchServiceDomainVpcOptionsDetails;
4371
-
4372
- LogPublishingOptions?: AwsOpenSearchServiceDomainLogPublishingOptionsDetails;
4373
-
4374
- DomainEndpoints?: Record<string, string>;
4375
- }
4376
- export declare namespace AwsOpenSearchServiceDomainDetails {
4377
-
4378
- const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainDetails) => any;
4379
- }
4380
-
4381
- export interface AwsRdsDbClusterAssociatedRole {
4382
-
4383
- RoleArn?: string;
4384
-
4385
- Status?: string;
4386
- }
4387
- export declare namespace AwsRdsDbClusterAssociatedRole {
4388
-
4389
- const filterSensitiveLog: (obj: AwsRdsDbClusterAssociatedRole) => any;
4390
- }
4391
-
4392
- export interface AwsRdsDbClusterMember {
4393
-
4394
- IsClusterWriter?: boolean;
4395
-
4396
- PromotionTier?: number;
4397
-
4398
- DbInstanceIdentifier?: string;
4399
-
4400
- DbClusterParameterGroupStatus?: string;
4401
- }
4402
- export declare namespace AwsRdsDbClusterMember {
4403
-
4404
- const filterSensitiveLog: (obj: AwsRdsDbClusterMember) => any;
4405
- }
4406
-
4407
- export interface AwsRdsDbClusterOptionGroupMembership {
4408
-
4409
- DbClusterOptionGroupName?: string;
4410
-
4411
- Status?: string;
4412
- }
4413
- export declare namespace AwsRdsDbClusterOptionGroupMembership {
4414
-
4415
- const filterSensitiveLog: (obj: AwsRdsDbClusterOptionGroupMembership) => any;
4416
- }
4417
-
4418
- export interface AwsRdsDbDomainMembership {
4419
-
4420
- Domain?: string;
4421
-
4422
- Status?: string;
4423
-
4424
- Fqdn?: string;
4425
-
4426
- IamRoleName?: string;
4427
- }
4428
- export declare namespace AwsRdsDbDomainMembership {
4429
-
4430
- const filterSensitiveLog: (obj: AwsRdsDbDomainMembership) => any;
4431
- }
4432
-
4433
- export interface AwsRdsDbInstanceVpcSecurityGroup {
4434
-
4435
- VpcSecurityGroupId?: string;
4436
-
4437
- Status?: string;
4438
- }
4439
- export declare namespace AwsRdsDbInstanceVpcSecurityGroup {
4440
-
4441
- const filterSensitiveLog: (obj: AwsRdsDbInstanceVpcSecurityGroup) => any;
4442
- }
4443
-
4444
- export interface AwsRdsDbClusterDetails {
4445
-
4446
- AllocatedStorage?: number;
4447
-
4448
- AvailabilityZones?: string[];
4449
-
4450
- BackupRetentionPeriod?: number;
4451
-
4452
- DatabaseName?: string;
4453
-
4454
- Status?: string;
4455
-
4456
- Endpoint?: string;
4457
-
4458
- ReaderEndpoint?: string;
4459
-
4460
- CustomEndpoints?: string[];
4461
-
4462
- MultiAz?: boolean;
4463
-
4464
- Engine?: string;
4465
-
4466
- EngineVersion?: string;
4467
-
4468
- Port?: number;
4469
-
4470
- MasterUsername?: string;
4471
-
4472
- PreferredBackupWindow?: string;
4473
-
4474
- PreferredMaintenanceWindow?: string;
4475
-
4476
- ReadReplicaIdentifiers?: string[];
4477
-
4478
- VpcSecurityGroups?: AwsRdsDbInstanceVpcSecurityGroup[];
4479
-
4480
- HostedZoneId?: string;
4481
-
4482
- StorageEncrypted?: boolean;
4483
-
4484
- KmsKeyId?: string;
4485
-
4486
- DbClusterResourceId?: string;
4487
-
4488
- AssociatedRoles?: AwsRdsDbClusterAssociatedRole[];
4489
-
4490
- ClusterCreateTime?: string;
4491
-
4492
- EnabledCloudWatchLogsExports?: string[];
4493
-
4494
- EngineMode?: string;
4495
-
4496
- DeletionProtection?: boolean;
4497
-
4498
- HttpEndpointEnabled?: boolean;
4499
-
4500
- ActivityStreamStatus?: string;
4501
-
4502
- CopyTagsToSnapshot?: boolean;
4503
-
4504
- CrossAccountClone?: boolean;
4505
-
4506
- DomainMemberships?: AwsRdsDbDomainMembership[];
4507
-
4508
- DbClusterParameterGroup?: string;
4509
-
4510
- DbSubnetGroup?: string;
4511
-
4512
- DbClusterOptionGroupMemberships?: AwsRdsDbClusterOptionGroupMembership[];
4513
-
4514
- DbClusterIdentifier?: string;
4515
-
4516
- DbClusterMembers?: AwsRdsDbClusterMember[];
4517
-
4518
- IamDatabaseAuthenticationEnabled?: boolean;
4519
- }
4520
- export declare namespace AwsRdsDbClusterDetails {
4521
-
4522
- const filterSensitiveLog: (obj: AwsRdsDbClusterDetails) => any;
4523
- }
4524
-
4525
- export interface AwsRdsDbClusterSnapshotDetails {
4526
-
4527
- AvailabilityZones?: string[];
4528
-
4529
- SnapshotCreateTime?: string;
4530
-
4531
- Engine?: string;
4532
-
4533
- AllocatedStorage?: number;
4534
-
4535
- Status?: string;
4536
-
4537
- Port?: number;
4538
-
4539
- VpcId?: string;
4540
-
4541
- ClusterCreateTime?: string;
4542
-
4543
- MasterUsername?: string;
4544
-
4545
- EngineVersion?: string;
4546
-
4547
- LicenseModel?: string;
4548
-
4549
- SnapshotType?: string;
4550
-
4551
- PercentProgress?: number;
4552
-
4553
- StorageEncrypted?: boolean;
4554
-
4555
- KmsKeyId?: string;
4556
-
4557
- DbClusterIdentifier?: string;
4558
-
4559
- DbClusterSnapshotIdentifier?: string;
4560
-
4561
- IamDatabaseAuthenticationEnabled?: boolean;
4562
- }
4563
- export declare namespace AwsRdsDbClusterSnapshotDetails {
4564
-
4565
- const filterSensitiveLog: (obj: AwsRdsDbClusterSnapshotDetails) => any;
4566
- }
4567
-
4568
- export interface AwsRdsDbInstanceAssociatedRole {
4569
-
4570
- RoleArn?: string;
4571
-
4572
- FeatureName?: string;
4573
-
4574
- Status?: string;
4575
- }
4576
- export declare namespace AwsRdsDbInstanceAssociatedRole {
4577
-
4578
- const filterSensitiveLog: (obj: AwsRdsDbInstanceAssociatedRole) => any;
4579
- }
4580
-
4581
- export interface AwsRdsDbParameterGroup {
4582
-
4583
- DbParameterGroupName?: string;
4584
-
4585
- ParameterApplyStatus?: string;
4586
- }
4587
- export declare namespace AwsRdsDbParameterGroup {
4588
-
4589
- const filterSensitiveLog: (obj: AwsRdsDbParameterGroup) => any;
4590
- }
4591
-
4592
- export interface AwsRdsDbSubnetGroupSubnetAvailabilityZone {
4593
-
4594
- Name?: string;
4595
- }
4596
- export declare namespace AwsRdsDbSubnetGroupSubnetAvailabilityZone {
4597
-
4598
- const filterSensitiveLog: (obj: AwsRdsDbSubnetGroupSubnetAvailabilityZone) => any;
4599
- }
4600
-
4601
- export interface AwsRdsDbSubnetGroupSubnet {
4602
-
4603
- SubnetIdentifier?: string;
4604
-
4605
- SubnetAvailabilityZone?: AwsRdsDbSubnetGroupSubnetAvailabilityZone;
4606
-
4607
- SubnetStatus?: string;
4608
- }
4609
- export declare namespace AwsRdsDbSubnetGroupSubnet {
4610
-
4611
- const filterSensitiveLog: (obj: AwsRdsDbSubnetGroupSubnet) => any;
4612
- }
4613
-
4614
- export interface AwsRdsDbSubnetGroup {
4615
-
4616
- DbSubnetGroupName?: string;
4617
-
4618
- DbSubnetGroupDescription?: string;
4619
-
4620
- VpcId?: string;
4621
-
4622
- SubnetGroupStatus?: string;
4623
-
4624
- Subnets?: AwsRdsDbSubnetGroupSubnet[];
4625
-
4626
- DbSubnetGroupArn?: string;
4627
- }
4628
- export declare namespace AwsRdsDbSubnetGroup {
4629
-
4630
- const filterSensitiveLog: (obj: AwsRdsDbSubnetGroup) => any;
4631
- }