@rio-cloud/cdk-v2-constructs 6.6.1 → 6.7.1

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/docs/API.md CHANGED
@@ -988,6 +988,191 @@ The tree node.
988
988
  ---
989
989
 
990
990
 
991
+ ### DatadogLambdaInstrumentation <a name="DatadogLambdaInstrumentation" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentation"></a>
992
+
993
+ Wrapper construct for Datadog's Lambda instrumentation.
994
+
995
+ This construct will create a Datadog construct with the provided props and add the Lambda functions to it.
996
+ Per default, it will disable all additional features, that cause Datadog charging for Serverless Functions features.
997
+ So just change it, if you need the advanced features.
998
+
999
+ Additionally, some defaults from the datadog-integration account module are applied:
1000
+ - the secret for the API key is read from the secret manager `/rio/config/datadog-integration/api-key`
1001
+ - the site is read from the parameter store `/rio/config/datadog-integration/site`
1002
+
1003
+ To use it, install Datadog CDK Constructs package:
1004
+ ```bash
1005
+ npm i -D datadog-cdk-constructs-v2
1006
+ ```
1007
+
1008
+ #### Initializers <a name="Initializers" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentation.Initializer"></a>
1009
+
1010
+ ```typescript
1011
+ import { datadogv2 } from '@rio-cloud/cdk-v2-constructs'
1012
+
1013
+ new datadogv2.DatadogLambdaInstrumentation(scope: Construct, id: string, props: DatadogLambdaInstrumentationProps)
1014
+ ```
1015
+
1016
+ | **Name** | **Type** | **Description** |
1017
+ | --- | --- | --- |
1018
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentation.Initializer.parameter.scope">scope</a></code> | <code>constructs.Construct</code> | *No description.* |
1019
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentation.Initializer.parameter.id">id</a></code> | <code>string</code> | *No description.* |
1020
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentation.Initializer.parameter.props">props</a></code> | <code>@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps</code> | *No description.* |
1021
+
1022
+ ---
1023
+
1024
+ ##### `scope`<sup>Required</sup> <a name="scope" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentation.Initializer.parameter.scope"></a>
1025
+
1026
+ - *Type:* constructs.Construct
1027
+
1028
+ ---
1029
+
1030
+ ##### `id`<sup>Required</sup> <a name="id" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentation.Initializer.parameter.id"></a>
1031
+
1032
+ - *Type:* string
1033
+
1034
+ ---
1035
+
1036
+ ##### `props`<sup>Required</sup> <a name="props" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentation.Initializer.parameter.props"></a>
1037
+
1038
+ - *Type:* @rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps
1039
+
1040
+ ---
1041
+
1042
+ #### Methods <a name="Methods" id="Methods"></a>
1043
+
1044
+ | **Name** | **Description** |
1045
+ | --- | --- |
1046
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentation.toString">toString</a></code> | Returns a string representation of this construct. |
1047
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentation.addForwarderToNonLambdaLogGroups">addForwarderToNonLambdaLogGroups</a></code> | *No description.* |
1048
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentation.addGitCommitMetadata">addGitCommitMetadata</a></code> | *No description.* |
1049
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentation.addLambdaFunctions">addLambdaFunctions</a></code> | *No description.* |
1050
+
1051
+ ---
1052
+
1053
+ ##### `toString` <a name="toString" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentation.toString"></a>
1054
+
1055
+ ```typescript
1056
+ public toString(): string
1057
+ ```
1058
+
1059
+ Returns a string representation of this construct.
1060
+
1061
+ ##### `addForwarderToNonLambdaLogGroups` <a name="addForwarderToNonLambdaLogGroups" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentation.addForwarderToNonLambdaLogGroups"></a>
1062
+
1063
+ ```typescript
1064
+ public addForwarderToNonLambdaLogGroups(logGroups: ILogGroup[]): void
1065
+ ```
1066
+
1067
+ ###### `logGroups`<sup>Required</sup> <a name="logGroups" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentation.addForwarderToNonLambdaLogGroups.parameter.logGroups"></a>
1068
+
1069
+ - *Type:* aws-cdk-lib.aws_logs.ILogGroup[]
1070
+
1071
+ ---
1072
+
1073
+ ##### `addGitCommitMetadata` <a name="addGitCommitMetadata" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentation.addGitCommitMetadata"></a>
1074
+
1075
+ ```typescript
1076
+ public addGitCommitMetadata(lambdaFunctions: Function | SingletonFunction[], gitCommitSha?: string, gitRepoUrl?: string): void
1077
+ ```
1078
+
1079
+ ###### `lambdaFunctions`<sup>Required</sup> <a name="lambdaFunctions" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentation.addGitCommitMetadata.parameter.lambdaFunctions"></a>
1080
+
1081
+ - *Type:* aws-cdk-lib.aws_lambda.Function | aws-cdk-lib.aws_lambda.SingletonFunction[]
1082
+
1083
+ ---
1084
+
1085
+ ###### `gitCommitSha`<sup>Optional</sup> <a name="gitCommitSha" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentation.addGitCommitMetadata.parameter.gitCommitSha"></a>
1086
+
1087
+ - *Type:* string
1088
+
1089
+ ---
1090
+
1091
+ ###### `gitRepoUrl`<sup>Optional</sup> <a name="gitRepoUrl" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentation.addGitCommitMetadata.parameter.gitRepoUrl"></a>
1092
+
1093
+ - *Type:* string
1094
+
1095
+ ---
1096
+
1097
+ ##### `addLambdaFunctions` <a name="addLambdaFunctions" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentation.addLambdaFunctions"></a>
1098
+
1099
+ ```typescript
1100
+ public addLambdaFunctions(lambdaFunctions: Function | SingletonFunction[], construct?: Construct): void
1101
+ ```
1102
+
1103
+ ###### `lambdaFunctions`<sup>Required</sup> <a name="lambdaFunctions" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentation.addLambdaFunctions.parameter.lambdaFunctions"></a>
1104
+
1105
+ - *Type:* aws-cdk-lib.aws_lambda.Function | aws-cdk-lib.aws_lambda.SingletonFunction[]
1106
+
1107
+ ---
1108
+
1109
+ ###### `construct`<sup>Optional</sup> <a name="construct" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentation.addLambdaFunctions.parameter.construct"></a>
1110
+
1111
+ - *Type:* constructs.Construct
1112
+
1113
+ ---
1114
+
1115
+ #### Static Functions <a name="Static Functions" id="Static Functions"></a>
1116
+
1117
+ | **Name** | **Description** |
1118
+ | --- | --- |
1119
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentation.isConstruct">isConstruct</a></code> | Checks if `x` is a construct. |
1120
+
1121
+ ---
1122
+
1123
+ ##### `isConstruct` <a name="isConstruct" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentation.isConstruct"></a>
1124
+
1125
+ ```typescript
1126
+ import { datadogv2 } from '@rio-cloud/cdk-v2-constructs'
1127
+
1128
+ datadogv2.DatadogLambdaInstrumentation.isConstruct(x: any)
1129
+ ```
1130
+
1131
+ Checks if `x` is a construct.
1132
+
1133
+ Use this method instead of `instanceof` to properly detect `Construct`
1134
+ instances, even when the construct library is symlinked.
1135
+
1136
+ Explanation: in JavaScript, multiple copies of the `constructs` library on
1137
+ disk are seen as independent, completely different libraries. As a
1138
+ consequence, the class `Construct` in each copy of the `constructs` library
1139
+ is seen as a different class, and an instance of one class will not test as
1140
+ `instanceof` the other class. `npm install` will not create installations
1141
+ like this, but users may manually symlink construct libraries together or
1142
+ use a monorepo tool: in those cases, multiple copies of the `constructs`
1143
+ library can be accidentally installed, and `instanceof` will behave
1144
+ unpredictably. It is safest to avoid using `instanceof`, and using
1145
+ this type-testing method instead.
1146
+
1147
+ ###### `x`<sup>Required</sup> <a name="x" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentation.isConstruct.parameter.x"></a>
1148
+
1149
+ - *Type:* any
1150
+
1151
+ Any object.
1152
+
1153
+ ---
1154
+
1155
+ #### Properties <a name="Properties" id="Properties"></a>
1156
+
1157
+ | **Name** | **Type** | **Description** |
1158
+ | --- | --- | --- |
1159
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentation.property.node">node</a></code> | <code>constructs.Node</code> | The tree node. |
1160
+
1161
+ ---
1162
+
1163
+ ##### `node`<sup>Required</sup> <a name="node" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentation.property.node"></a>
1164
+
1165
+ ```typescript
1166
+ public readonly node: Node;
1167
+ ```
1168
+
1169
+ - *Type:* constructs.Node
1170
+
1171
+ The tree node.
1172
+
1173
+ ---
1174
+
1175
+
991
1176
  ### DataDogLogAlarm <a name="DataDogLogAlarm" id="@rio-cloud/cdk-v2-constructs.DataDogLogAlarm"></a>
992
1177
 
993
1178
  #### Initializers <a name="Initializers" id="@rio-cloud/cdk-v2-constructs.DataDogLogAlarm.Initializer"></a>
@@ -8455,6 +8640,407 @@ At least one of memoryLimitMiB and memoryReservationMiB is required for non-Farg
8455
8640
 
8456
8641
  ---
8457
8642
 
8643
+ ### DatadogLambdaInstrumentationProps <a name="DatadogLambdaInstrumentationProps" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps"></a>
8644
+
8645
+ Props for the DatadogLambdaInstrumentation construct.
8646
+
8647
+ Copied over from original Datadog construct.
8648
+ This interface is intentionally not extending the original DatadogProps, so that the dependency needs to be bundled as well.
8649
+
8650
+ > [dd.DatadogProps](dd.DatadogProps)
8651
+
8652
+ #### Initializer <a name="Initializer" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.Initializer"></a>
8653
+
8654
+ ```typescript
8655
+ import { datadogv2 } from '@rio-cloud/cdk-v2-constructs'
8656
+
8657
+ const datadogLambdaInstrumentationProps: datadogv2.DatadogLambdaInstrumentationProps = { ... }
8658
+ ```
8659
+
8660
+ #### Properties <a name="Properties" id="Properties"></a>
8661
+
8662
+ | **Name** | **Type** | **Description** |
8663
+ | --- | --- | --- |
8664
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.service">service</a></code> | <code>string</code> | *No description.* |
8665
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.addLayers">addLayers</a></code> | <code>boolean</code> | *No description.* |
8666
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.apiKey">apiKey</a></code> | <code>string</code> | *No description.* |
8667
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.apiKeySecret">apiKeySecret</a></code> | <code>aws-cdk-lib.aws_secretsmanager.ISecret</code> | *No description.* |
8668
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.apiKeySecretArn">apiKeySecretArn</a></code> | <code>string</code> | *No description.* |
8669
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.apiKmsKey">apiKmsKey</a></code> | <code>string</code> | *No description.* |
8670
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.apmFlushDeadline">apmFlushDeadline</a></code> | <code>string \| number</code> | *No description.* |
8671
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.captureLambdaPayload">captureLambdaPayload</a></code> | <code>boolean</code> | *No description.* |
8672
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.coldStartTraceSkipLibs">coldStartTraceSkipLibs</a></code> | <code>string</code> | *No description.* |
8673
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.createForwarderPermissions">createForwarderPermissions</a></code> | <code>boolean</code> | *No description.* |
8674
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.decodeAuthorizerContext">decodeAuthorizerContext</a></code> | <code>boolean</code> | *No description.* |
8675
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.enableColdStartTracing">enableColdStartTracing</a></code> | <code>boolean</code> | *No description.* |
8676
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.enableDatadogASM">enableDatadogASM</a></code> | <code>boolean</code> | *No description.* |
8677
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.enableDatadogLogs">enableDatadogLogs</a></code> | <code>boolean</code> | *No description.* |
8678
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.enableDatadogTracing">enableDatadogTracing</a></code> | <code>boolean</code> | *No description.* |
8679
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.enableEnhancedMetrics">enableEnhancedMetrics</a></code> | <code>boolean</code> | Whether to enable enhanced metrics for the Lambda functions. |
8680
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.enableMergeXrayTraces">enableMergeXrayTraces</a></code> | <code>boolean</code> | *No description.* |
8681
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.enableProfiling">enableProfiling</a></code> | <code>boolean</code> | *No description.* |
8682
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.encodeAuthorizerContext">encodeAuthorizerContext</a></code> | <code>boolean</code> | *No description.* |
8683
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.env">env</a></code> | <code>string</code> | *No description.* |
8684
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.extensionLayerVersion">extensionLayerVersion</a></code> | <code>number</code> | *No description.* |
8685
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.flushMetricsToLogs">flushMetricsToLogs</a></code> | <code>boolean</code> | *No description.* |
8686
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.forwarderArn">forwarderArn</a></code> | <code>string</code> | *No description.* |
8687
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.grantSecretReadAccess">grantSecretReadAccess</a></code> | <code>boolean</code> | *No description.* |
8688
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.injectLogContext">injectLogContext</a></code> | <code>boolean</code> | *No description.* |
8689
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.logLevel">logLevel</a></code> | <code>string</code> | *No description.* |
8690
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.minColdStartTraceDuration">minColdStartTraceDuration</a></code> | <code>number</code> | *No description.* |
8691
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.nodeLayerVersion">nodeLayerVersion</a></code> | <code>number</code> | *No description.* |
8692
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.redirectHandler">redirectHandler</a></code> | <code>boolean</code> | *No description.* |
8693
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.site">site</a></code> | <code>string</code> | *No description.* |
8694
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.sourceCodeIntegration">sourceCodeIntegration</a></code> | <code>boolean</code> | *No description.* |
8695
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.tags">tags</a></code> | <code>string</code> | *No description.* |
8696
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.useLayersFromAccount">useLayersFromAccount</a></code> | <code>string</code> | *No description.* |
8697
+ | <code><a href="#@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.version">version</a></code> | <code>string</code> | *No description.* |
8698
+
8699
+ ---
8700
+
8701
+ ##### `service`<sup>Required</sup> <a name="service" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.service"></a>
8702
+
8703
+ ```typescript
8704
+ public readonly service: string;
8705
+ ```
8706
+
8707
+ - *Type:* string
8708
+
8709
+ ---
8710
+
8711
+ ##### `addLayers`<sup>Optional</sup> <a name="addLayers" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.addLayers"></a>
8712
+
8713
+ ```typescript
8714
+ public readonly addLayers: boolean;
8715
+ ```
8716
+
8717
+ - *Type:* boolean
8718
+
8719
+ ---
8720
+
8721
+ ##### `apiKey`<sup>Optional</sup> <a name="apiKey" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.apiKey"></a>
8722
+
8723
+ ```typescript
8724
+ public readonly apiKey: string;
8725
+ ```
8726
+
8727
+ - *Type:* string
8728
+
8729
+ ---
8730
+
8731
+ ##### `apiKeySecret`<sup>Optional</sup> <a name="apiKeySecret" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.apiKeySecret"></a>
8732
+
8733
+ ```typescript
8734
+ public readonly apiKeySecret: ISecret;
8735
+ ```
8736
+
8737
+ - *Type:* aws-cdk-lib.aws_secretsmanager.ISecret
8738
+
8739
+ ---
8740
+
8741
+ ##### `apiKeySecretArn`<sup>Optional</sup> <a name="apiKeySecretArn" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.apiKeySecretArn"></a>
8742
+
8743
+ ```typescript
8744
+ public readonly apiKeySecretArn: string;
8745
+ ```
8746
+
8747
+ - *Type:* string
8748
+
8749
+ ---
8750
+
8751
+ ##### `apiKmsKey`<sup>Optional</sup> <a name="apiKmsKey" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.apiKmsKey"></a>
8752
+
8753
+ ```typescript
8754
+ public readonly apiKmsKey: string;
8755
+ ```
8756
+
8757
+ - *Type:* string
8758
+
8759
+ ---
8760
+
8761
+ ##### `apmFlushDeadline`<sup>Optional</sup> <a name="apmFlushDeadline" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.apmFlushDeadline"></a>
8762
+
8763
+ ```typescript
8764
+ public readonly apmFlushDeadline: string | number;
8765
+ ```
8766
+
8767
+ - *Type:* string | number
8768
+
8769
+ ---
8770
+
8771
+ ##### `captureLambdaPayload`<sup>Optional</sup> <a name="captureLambdaPayload" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.captureLambdaPayload"></a>
8772
+
8773
+ ```typescript
8774
+ public readonly captureLambdaPayload: boolean;
8775
+ ```
8776
+
8777
+ - *Type:* boolean
8778
+
8779
+ ---
8780
+
8781
+ ##### `coldStartTraceSkipLibs`<sup>Optional</sup> <a name="coldStartTraceSkipLibs" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.coldStartTraceSkipLibs"></a>
8782
+
8783
+ ```typescript
8784
+ public readonly coldStartTraceSkipLibs: string;
8785
+ ```
8786
+
8787
+ - *Type:* string
8788
+
8789
+ ---
8790
+
8791
+ ##### `createForwarderPermissions`<sup>Optional</sup> <a name="createForwarderPermissions" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.createForwarderPermissions"></a>
8792
+
8793
+ ```typescript
8794
+ public readonly createForwarderPermissions: boolean;
8795
+ ```
8796
+
8797
+ - *Type:* boolean
8798
+
8799
+ ---
8800
+
8801
+ ##### `decodeAuthorizerContext`<sup>Optional</sup> <a name="decodeAuthorizerContext" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.decodeAuthorizerContext"></a>
8802
+
8803
+ ```typescript
8804
+ public readonly decodeAuthorizerContext: boolean;
8805
+ ```
8806
+
8807
+ - *Type:* boolean
8808
+
8809
+ ---
8810
+
8811
+ ##### `enableColdStartTracing`<sup>Optional</sup> <a name="enableColdStartTracing" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.enableColdStartTracing"></a>
8812
+
8813
+ ```typescript
8814
+ public readonly enableColdStartTracing: boolean;
8815
+ ```
8816
+
8817
+ - *Type:* boolean
8818
+
8819
+ ---
8820
+
8821
+ ##### `enableDatadogASM`<sup>Optional</sup> <a name="enableDatadogASM" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.enableDatadogASM"></a>
8822
+
8823
+ ```typescript
8824
+ public readonly enableDatadogASM: boolean;
8825
+ ```
8826
+
8827
+ - *Type:* boolean
8828
+
8829
+ ---
8830
+
8831
+ ##### `enableDatadogLogs`<sup>Optional</sup> <a name="enableDatadogLogs" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.enableDatadogLogs"></a>
8832
+
8833
+ ```typescript
8834
+ public readonly enableDatadogLogs: boolean;
8835
+ ```
8836
+
8837
+ - *Type:* boolean
8838
+
8839
+ ---
8840
+
8841
+ ##### `enableDatadogTracing`<sup>Optional</sup> <a name="enableDatadogTracing" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.enableDatadogTracing"></a>
8842
+
8843
+ ```typescript
8844
+ public readonly enableDatadogTracing: boolean;
8845
+ ```
8846
+
8847
+ - *Type:* boolean
8848
+
8849
+ ---
8850
+
8851
+ ##### `enableEnhancedMetrics`<sup>Optional</sup> <a name="enableEnhancedMetrics" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.enableEnhancedMetrics"></a>
8852
+
8853
+ ```typescript
8854
+ public readonly enableEnhancedMetrics: boolean;
8855
+ ```
8856
+
8857
+ - *Type:* boolean
8858
+ - *Default:* false
8859
+
8860
+ Whether to enable enhanced metrics for the Lambda functions.
8861
+
8862
+ ---
8863
+
8864
+ ##### `enableMergeXrayTraces`<sup>Optional</sup> <a name="enableMergeXrayTraces" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.enableMergeXrayTraces"></a>
8865
+
8866
+ ```typescript
8867
+ public readonly enableMergeXrayTraces: boolean;
8868
+ ```
8869
+
8870
+ - *Type:* boolean
8871
+
8872
+ ---
8873
+
8874
+ ##### `enableProfiling`<sup>Optional</sup> <a name="enableProfiling" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.enableProfiling"></a>
8875
+
8876
+ ```typescript
8877
+ public readonly enableProfiling: boolean;
8878
+ ```
8879
+
8880
+ - *Type:* boolean
8881
+
8882
+ ---
8883
+
8884
+ ##### `encodeAuthorizerContext`<sup>Optional</sup> <a name="encodeAuthorizerContext" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.encodeAuthorizerContext"></a>
8885
+
8886
+ ```typescript
8887
+ public readonly encodeAuthorizerContext: boolean;
8888
+ ```
8889
+
8890
+ - *Type:* boolean
8891
+
8892
+ ---
8893
+
8894
+ ##### `env`<sup>Optional</sup> <a name="env" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.env"></a>
8895
+
8896
+ ```typescript
8897
+ public readonly env: string;
8898
+ ```
8899
+
8900
+ - *Type:* string
8901
+
8902
+ ---
8903
+
8904
+ ##### `extensionLayerVersion`<sup>Optional</sup> <a name="extensionLayerVersion" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.extensionLayerVersion"></a>
8905
+
8906
+ ```typescript
8907
+ public readonly extensionLayerVersion: number;
8908
+ ```
8909
+
8910
+ - *Type:* number
8911
+
8912
+ ---
8913
+
8914
+ ##### `flushMetricsToLogs`<sup>Optional</sup> <a name="flushMetricsToLogs" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.flushMetricsToLogs"></a>
8915
+
8916
+ ```typescript
8917
+ public readonly flushMetricsToLogs: boolean;
8918
+ ```
8919
+
8920
+ - *Type:* boolean
8921
+
8922
+ ---
8923
+
8924
+ ##### `forwarderArn`<sup>Optional</sup> <a name="forwarderArn" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.forwarderArn"></a>
8925
+
8926
+ ```typescript
8927
+ public readonly forwarderArn: string;
8928
+ ```
8929
+
8930
+ - *Type:* string
8931
+
8932
+ ---
8933
+
8934
+ ##### `grantSecretReadAccess`<sup>Optional</sup> <a name="grantSecretReadAccess" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.grantSecretReadAccess"></a>
8935
+
8936
+ ```typescript
8937
+ public readonly grantSecretReadAccess: boolean;
8938
+ ```
8939
+
8940
+ - *Type:* boolean
8941
+
8942
+ ---
8943
+
8944
+ ##### `injectLogContext`<sup>Optional</sup> <a name="injectLogContext" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.injectLogContext"></a>
8945
+
8946
+ ```typescript
8947
+ public readonly injectLogContext: boolean;
8948
+ ```
8949
+
8950
+ - *Type:* boolean
8951
+
8952
+ ---
8953
+
8954
+ ##### `logLevel`<sup>Optional</sup> <a name="logLevel" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.logLevel"></a>
8955
+
8956
+ ```typescript
8957
+ public readonly logLevel: string;
8958
+ ```
8959
+
8960
+ - *Type:* string
8961
+
8962
+ ---
8963
+
8964
+ ##### `minColdStartTraceDuration`<sup>Optional</sup> <a name="minColdStartTraceDuration" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.minColdStartTraceDuration"></a>
8965
+
8966
+ ```typescript
8967
+ public readonly minColdStartTraceDuration: number;
8968
+ ```
8969
+
8970
+ - *Type:* number
8971
+
8972
+ ---
8973
+
8974
+ ##### `nodeLayerVersion`<sup>Optional</sup> <a name="nodeLayerVersion" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.nodeLayerVersion"></a>
8975
+
8976
+ ```typescript
8977
+ public readonly nodeLayerVersion: number;
8978
+ ```
8979
+
8980
+ - *Type:* number
8981
+
8982
+ ---
8983
+
8984
+ ##### `redirectHandler`<sup>Optional</sup> <a name="redirectHandler" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.redirectHandler"></a>
8985
+
8986
+ ```typescript
8987
+ public readonly redirectHandler: boolean;
8988
+ ```
8989
+
8990
+ - *Type:* boolean
8991
+
8992
+ ---
8993
+
8994
+ ##### `site`<sup>Optional</sup> <a name="site" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.site"></a>
8995
+
8996
+ ```typescript
8997
+ public readonly site: string;
8998
+ ```
8999
+
9000
+ - *Type:* string
9001
+
9002
+ ---
9003
+
9004
+ ##### `sourceCodeIntegration`<sup>Optional</sup> <a name="sourceCodeIntegration" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.sourceCodeIntegration"></a>
9005
+
9006
+ ```typescript
9007
+ public readonly sourceCodeIntegration: boolean;
9008
+ ```
9009
+
9010
+ - *Type:* boolean
9011
+
9012
+ ---
9013
+
9014
+ ##### `tags`<sup>Optional</sup> <a name="tags" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.tags"></a>
9015
+
9016
+ ```typescript
9017
+ public readonly tags: string;
9018
+ ```
9019
+
9020
+ - *Type:* string
9021
+
9022
+ ---
9023
+
9024
+ ##### `useLayersFromAccount`<sup>Optional</sup> <a name="useLayersFromAccount" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.useLayersFromAccount"></a>
9025
+
9026
+ ```typescript
9027
+ public readonly useLayersFromAccount: string;
9028
+ ```
9029
+
9030
+ - *Type:* string
9031
+
9032
+ ---
9033
+
9034
+ ##### `version`<sup>Optional</sup> <a name="version" id="@rio-cloud/cdk-v2-constructs.datadogv2.DatadogLambdaInstrumentationProps.property.version"></a>
9035
+
9036
+ ```typescript
9037
+ public readonly version: string;
9038
+ ```
9039
+
9040
+ - *Type:* string
9041
+
9042
+ ---
9043
+
8458
9044
  ### DatadogLogIndexMonitoringProps <a name="DatadogLogIndexMonitoringProps" id="@rio-cloud/cdk-v2-constructs.DatadogLogIndexMonitoringProps"></a>
8459
9045
 
8460
9046
  #### Initializer <a name="Initializer" id="@rio-cloud/cdk-v2-constructs.DatadogLogIndexMonitoringProps.Initializer"></a>
@@ -10219,7 +10805,6 @@ const kafkaAclStatement: KafkaAclStatement = { ... }
10219
10805
  | --- | --- | --- |
10220
10806
  | <code><a href="#@rio-cloud/cdk-v2-constructs.KafkaAclStatement.property.read">read</a></code> | <code>string[]</code> | List of clients that should get read permissions. |
10221
10807
  | <code><a href="#@rio-cloud/cdk-v2-constructs.KafkaAclStatement.property.write">write</a></code> | <code>string[]</code> | List of clients that should get write permissions. |
10222
- | <code><a href="#@rio-cloud/cdk-v2-constructs.KafkaAclStatement.property.delete">delete</a></code> | <code>string[]</code> | List of clients that should get delete permissions. |
10223
10808
 
10224
10809
  ---
10225
10810
 
@@ -10247,22 +10832,6 @@ List of clients that should get write permissions.
10247
10832
 
10248
10833
  ---
10249
10834
 
10250
- ##### `delete`<sup>Optional</sup> <a name="delete" id="@rio-cloud/cdk-v2-constructs.KafkaAclStatement.property.delete"></a>
10251
-
10252
- ```typescript
10253
- public readonly delete: string[];
10254
- ```
10255
-
10256
- - *Type:* string[]
10257
-
10258
- List of clients that should get delete permissions.
10259
-
10260
- Attention: Only use Deletion policy if you know what you are doing!
10261
- This is only necessary for KStream and allows the application to delete messages and the topic.<br>
10262
- If you just want to "delete" a message on a log compacted topic, you should not set this permission and send a tombstone message instead.
10263
-
10264
- ---
10265
-
10266
10835
  ### KafkaAclStatement <a name="KafkaAclStatement" id="@rio-cloud/cdk-v2-constructs.kafka.KafkaAclStatement"></a>
10267
10836
 
10268
10837
  Read and write permissions for the topic.
@@ -10283,7 +10852,6 @@ const kafkaAclStatement: kafka.KafkaAclStatement = { ... }
10283
10852
  | --- | --- | --- |
10284
10853
  | <code><a href="#@rio-cloud/cdk-v2-constructs.kafka.KafkaAclStatement.property.read">read</a></code> | <code>string[]</code> | List of clients that should get read permissions. |
10285
10854
  | <code><a href="#@rio-cloud/cdk-v2-constructs.kafka.KafkaAclStatement.property.write">write</a></code> | <code>string[]</code> | List of clients that should get write permissions. |
10286
- | <code><a href="#@rio-cloud/cdk-v2-constructs.kafka.KafkaAclStatement.property.delete">delete</a></code> | <code>string[]</code> | List of clients that should get delete permissions. |
10287
10855
 
10288
10856
  ---
10289
10857
 
@@ -10311,22 +10879,6 @@ List of clients that should get write permissions.
10311
10879
 
10312
10880
  ---
10313
10881
 
10314
- ##### `delete`<sup>Optional</sup> <a name="delete" id="@rio-cloud/cdk-v2-constructs.kafka.KafkaAclStatement.property.delete"></a>
10315
-
10316
- ```typescript
10317
- public readonly delete: string[];
10318
- ```
10319
-
10320
- - *Type:* string[]
10321
-
10322
- List of clients that should get delete permissions.
10323
-
10324
- Attention: Only use Deletion policy if you know what you are doing!
10325
- This is only necessary for KStream and allows the application to delete messages and the topic.<br>
10326
- If you just want to "delete" a message on a log compacted topic, you should not set this permission and send a tombstone message instead.
10327
-
10328
- ---
10329
-
10330
10882
  ### KafkaEventSpecProps <a name="KafkaEventSpecProps" id="@rio-cloud/cdk-v2-constructs.KafkaEventSpecProps"></a>
10331
10883
 
10332
10884
  #### Initializer <a name="Initializer" id="@rio-cloud/cdk-v2-constructs.KafkaEventSpecProps.Initializer"></a>