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 } = {
85128512 },
85138513 'channelNamespaceName': '*',
85148514 'code': '*',
8515+ 'publishHandlerConfig': {
8516+ 'direct': 'boolean',
8517+ 'dataSource': '*',
8518+ 'lambdaInvokeType': 'LambdaInvokeType'
8519+ },
8520+ 'subscribeHandlerConfig': {
8521+ 'direct': 'boolean',
8522+ 'dataSource': '*',
8523+ 'lambdaInvokeType': 'LambdaInvokeType'
8524+ },
85158525 'authorizationConfig': {
85168526 'publishAuthModeTypes': 'AppSyncAuthorizationType',
85178527 'subscribeAuthModeTypes': 'AppSyncAuthorizationType'
@@ -15218,7 +15228,11 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
1521815228 'albController': {
1521915229 'version': '*',
1522015230 'repository': '*',
15221- 'policy': '*'
15231+ 'policy': '*',
15232+ 'additionalHelmChartValues': {
15233+ 'enableWafv2': 'boolean',
15234+ 'enableWaf': 'boolean'
15235+ }
1522215236 },
1522315237 'clusterLogging': 'ClusterLoggingTypes',
1522415238 'authenticationMode': 'AuthenticationMode',
@@ -15807,7 +15821,11 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
1580715821 'albController': {
1580815822 'version': '*',
1580915823 'repository': '*',
15810- 'policy': '*'
15824+ 'policy': '*',
15825+ 'additionalHelmChartValues': {
15826+ 'enableWafv2': 'boolean',
15827+ 'enableWaf': 'boolean'
15828+ }
1581115829 },
1581215830 'clusterLogging': 'ClusterLoggingTypes',
1581315831 'authenticationMode': 'AuthenticationMode',
Original file line number Diff line number Diff line change @@ -178,6 +178,15 @@ export const AWS_CDK_ENUMS: { [key: string]: any } = {
178178 'OPENID_CONNECT' ,
179179 'AWS_LAMBDA'
180180 ] ,
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+ ] ,
181190 'AppSyncFieldLogLevel' : [
182191 'NONE' ,
183192 'ERROR' ,
@@ -1312,6 +1321,10 @@ export const AWS_CDK_ENUMS: { [key: string]: any } = {
13121321 'resource-exhausted' ,
13131322 'unavailable'
13141323 ] ,
1324+ 'HandlerBehavior' : [
1325+ 'CODE' ,
1326+ 'DIRECT'
1327+ ] ,
13151328 'HandlerName' : [
13161329 'user' ,
13171330 'table' ,
@@ -2036,6 +2049,10 @@ export const AWS_CDK_ENUMS: { [key: string]: any } = {
20362049 'Event' ,
20372050 'DryRun'
20382051 ] ,
2052+ 'LambdaInvokeType' : [
2053+ 'EVENT' ,
2054+ 'REQUEST_RESPONSE'
2055+ ] ,
20392056 'LambdaVersion' : [
20402057 'V1_0' ,
20412058 'V2_0' ,
@@ -2861,6 +2878,12 @@ export const AWS_CDK_ENUMS: { [key: string]: any } = {
28612878 'ALL_ACTIONS' ,
28622879 'FAILED_ACTIONS'
28632880 ] ,
2881+ 'RevisionType' : [
2882+ 'COMMIT_ID' ,
2883+ 'IMAGE_DIGEST' ,
2884+ 'S3_OBJECT_VERSION_ID' ,
2885+ 'S3_OBJECT_KEY'
2886+ ] ,
28642887 'RevocationType' : [
28652888 'CRL'
28662889 ] ,
Original file line number Diff line number Diff line change 12061206 " AWS_LAMBDA"
12071207 ]
12081208 },
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+ },
12091230 "aws-cdk/packages/aws-cdk-lib/aws-appsync/lib/graphqlapi-base.ts" : {
12101231 "Visibility" : [
12111232 " GLOBAL" ,
20062027 " Events"
20072028 ]
20082029 },
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+ },
20092038 "aws-cdk/packages/aws-cdk-lib/aws-codepipeline-actions/lib/ecr/build-and-publish-action.ts" : {
20102039 "RegistryType" : [
20112040 " private" ,
You can’t perform that action at this time.
0 commit comments