File tree Expand file tree Collapse file tree 3 files changed +72
-2
lines changed
packages/aws-cdk-lib/core/lib/analytics-data-source Expand file tree Collapse file tree 3 files changed +72
-2
lines changed Original file line number Diff line number Diff line change @@ -8512,6 +8512,16 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
8512
8512
},
8513
8513
'channelNamespaceName': '*',
8514
8514
'code': '*',
8515
+ 'publishHandlerConfig': {
8516
+ 'direct': 'boolean',
8517
+ 'dataSource': '*',
8518
+ 'lambdaInvokeType': 'LambdaInvokeType'
8519
+ },
8520
+ 'subscribeHandlerConfig': {
8521
+ 'direct': 'boolean',
8522
+ 'dataSource': '*',
8523
+ 'lambdaInvokeType': 'LambdaInvokeType'
8524
+ },
8515
8525
'authorizationConfig': {
8516
8526
'publishAuthModeTypes': 'AppSyncAuthorizationType',
8517
8527
'subscribeAuthModeTypes': 'AppSyncAuthorizationType'
@@ -15218,7 +15228,11 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
15218
15228
'albController': {
15219
15229
'version': '*',
15220
15230
'repository': '*',
15221
- 'policy': '*'
15231
+ 'policy': '*',
15232
+ 'additionalHelmChartValues': {
15233
+ 'enableWafv2': 'boolean',
15234
+ 'enableWaf': 'boolean'
15235
+ }
15222
15236
},
15223
15237
'clusterLogging': 'ClusterLoggingTypes',
15224
15238
'authenticationMode': 'AuthenticationMode',
@@ -15807,7 +15821,11 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
15807
15821
'albController': {
15808
15822
'version': '*',
15809
15823
'repository': '*',
15810
- 'policy': '*'
15824
+ 'policy': '*',
15825
+ 'additionalHelmChartValues': {
15826
+ 'enableWafv2': 'boolean',
15827
+ 'enableWaf': 'boolean'
15828
+ }
15811
15829
},
15812
15830
'clusterLogging': 'ClusterLoggingTypes',
15813
15831
'authenticationMode': 'AuthenticationMode',
Original file line number Diff line number Diff line change @@ -178,6 +178,15 @@ export const AWS_CDK_ENUMS: { [key: string]: any } = {
178
178
'OPENID_CONNECT' ,
179
179
'AWS_LAMBDA'
180
180
] ,
181
+ 'AppSyncDataSourceType' : [
182
+ 'AWS_LAMBDA' ,
183
+ 'AMAZON_DYNAMODB' ,
184
+ 'AMAZON_EVENTBRIDGE' ,
185
+ 'AMAZON_OPENSEARCH_SERVICE' ,
186
+ 'HTTP' ,
187
+ 'RELATIONAL_DATABASE' ,
188
+ 'AMAZON_BEDROCK_RUNTIME'
189
+ ] ,
181
190
'AppSyncFieldLogLevel' : [
182
191
'NONE' ,
183
192
'ERROR' ,
@@ -1312,6 +1321,10 @@ export const AWS_CDK_ENUMS: { [key: string]: any } = {
1312
1321
'resource-exhausted' ,
1313
1322
'unavailable'
1314
1323
] ,
1324
+ 'HandlerBehavior' : [
1325
+ 'CODE' ,
1326
+ 'DIRECT'
1327
+ ] ,
1315
1328
'HandlerName' : [
1316
1329
'user' ,
1317
1330
'table' ,
@@ -2036,6 +2049,10 @@ export const AWS_CDK_ENUMS: { [key: string]: any } = {
2036
2049
'Event' ,
2037
2050
'DryRun'
2038
2051
] ,
2052
+ 'LambdaInvokeType' : [
2053
+ 'EVENT' ,
2054
+ 'REQUEST_RESPONSE'
2055
+ ] ,
2039
2056
'LambdaVersion' : [
2040
2057
'V1_0' ,
2041
2058
'V2_0' ,
@@ -2861,6 +2878,12 @@ export const AWS_CDK_ENUMS: { [key: string]: any } = {
2861
2878
'ALL_ACTIONS' ,
2862
2879
'FAILED_ACTIONS'
2863
2880
] ,
2881
+ 'RevisionType' : [
2882
+ 'COMMIT_ID' ,
2883
+ 'IMAGE_DIGEST' ,
2884
+ 'S3_OBJECT_VERSION_ID' ,
2885
+ 'S3_OBJECT_KEY'
2886
+ ] ,
2864
2887
'RevocationType' : [
2865
2888
'CRL'
2866
2889
] ,
Original file line number Diff line number Diff line change 1206
1206
" AWS_LAMBDA"
1207
1207
]
1208
1208
},
1209
+ "aws-cdk/packages/aws-cdk-lib/aws-appsync/lib/channel-namespace.ts" : {
1210
+ "HandlerBehavior" : [
1211
+ " CODE" ,
1212
+ " DIRECT"
1213
+ ]
1214
+ },
1215
+ "aws-cdk/packages/aws-cdk-lib/aws-appsync/lib/data-source-common.ts" : {
1216
+ "AppSyncDataSourceType" : [
1217
+ " AWS_LAMBDA" ,
1218
+ " AMAZON_DYNAMODB" ,
1219
+ " AMAZON_EVENTBRIDGE" ,
1220
+ " AMAZON_OPENSEARCH_SERVICE" ,
1221
+ " HTTP" ,
1222
+ " RELATIONAL_DATABASE" ,
1223
+ " AMAZON_BEDROCK_RUNTIME"
1224
+ ],
1225
+ "LambdaInvokeType" : [
1226
+ " EVENT" ,
1227
+ " REQUEST_RESPONSE"
1228
+ ]
1229
+ },
1209
1230
"aws-cdk/packages/aws-cdk-lib/aws-appsync/lib/graphqlapi-base.ts" : {
1210
1231
"Visibility" : [
1211
1232
" GLOBAL" ,
2006
2027
" Events"
2007
2028
]
2008
2029
},
2030
+ "aws-cdk/packages/aws-cdk-lib/aws-codepipeline-actions/lib/codepipeline/invoke-action.ts" : {
2031
+ "RevisionType" : [
2032
+ " COMMIT_ID" ,
2033
+ " IMAGE_DIGEST" ,
2034
+ " S3_OBJECT_VERSION_ID" ,
2035
+ " S3_OBJECT_KEY"
2036
+ ]
2037
+ },
2009
2038
"aws-cdk/packages/aws-cdk-lib/aws-codepipeline-actions/lib/ecr/build-and-publish-action.ts" : {
2010
2039
"RegistryType" : [
2011
2040
" private" ,
You can’t perform that action at this time.
0 commit comments