Skip to content

Commit d3f3738

Browse files
chore: update analytics metadata blueprints
1 parent 23b896e commit d3f3738

File tree

3 files changed

+53
-3
lines changed

3 files changed

+53
-3
lines changed

packages/aws-cdk-lib/core/lib/analytics-data-source/classes.ts

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12945,6 +12945,8 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
1294512945
},
1294612946
'resourcePolicy': '*'
1294712947
},
12948+
'witnessRegion': '*',
12949+
'multiRegionConsistency': 'MultiRegionConsistency',
1294812950
'globalSecondaryIndexes': {
1294912951
'partitionKey': {
1295012952
'name': '*',
@@ -14124,7 +14126,8 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
1412414126
'lookupSupportedAzs': 'boolean',
1412514127
'ipAddressType': 'VpcEndpointIpAddressType',
1412614128
'dnsRecordIpType': 'VpcEndpointDnsRecordIpType',
14127-
'privateDnsOnlyForInboundResolverEndpoint': 'VpcEndpointPrivateDnsOnlyForInboundResolverEndpoint'
14129+
'privateDnsOnlyForInboundResolverEndpoint': 'VpcEndpointPrivateDnsOnlyForInboundResolverEndpoint',
14130+
'serviceRegion': '*'
1412814131
},
1412914132
'FlowLog': {
1413014133
'flowLogName': '*',
@@ -27531,7 +27534,8 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
2753127534
{
2753227535
'containerName': '*',
2753327536
'containerPort': '*',
27534-
'protocol': 'Protocol'
27537+
'protocol': 'Protocol',
27538+
'alternateTarget': '*'
2753527539
}
2753627540
],
2753727541
'_portRangeFromPortMapping': [
@@ -27945,6 +27949,9 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
2794527949
},
2794627950
'taskDefinitionRevision': '*',
2794727951
'volumeConfigurations': '*',
27952+
'deploymentStrategy': 'DeploymentStrategy',
27953+
'bakeTime': '*',
27954+
'lifecycleHooks': '*',
2794827955
'addPlacementStrategies': [
2794927956
'*'
2795027957
],
@@ -28197,6 +28204,9 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
2819728204
},
2819828205
'taskDefinitionRevision': '*',
2819928206
'volumeConfigurations': '*',
28207+
'deploymentStrategy': 'DeploymentStrategy',
28208+
'bakeTime': '*',
28209+
'lifecycleHooks': '*',
2820028210
'attachToApplicationTargetGroup': [
2820128211
{
2820228212
'metrics': '*',
@@ -28211,7 +28221,8 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
2821128221
{
2821228222
'containerName': '*',
2821328223
'containerPort': '*',
28214-
'protocol': 'Protocol'
28224+
'protocol': 'Protocol',
28225+
'alternateTarget': '*'
2821528226
}
2821628227
],
2821728228
'registerLoadBalancerTargets': [
@@ -28557,6 +28568,9 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
2855728568
},
2855828569
'taskDefinitionRevision': '*',
2855928570
'volumeConfigurations': '*',
28571+
'deploymentStrategy': 'DeploymentStrategy',
28572+
'bakeTime': '*',
28573+
'lifecycleHooks': '*',
2856028574
'attachToClassicLB': [
2856128575
'*'
2856228576
]

packages/aws-cdk-lib/core/lib/analytics-data-source/enums.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -994,6 +994,19 @@ export const AWS_CDK_ENUMS: { [key: string]: any } = {
994994
"CODE_DEPLOY",
995995
"EXTERNAL"
996996
],
997+
"DeploymentLifecycleStage": [
998+
"RECONCILE_SERVICE",
999+
"PRE_SCALE_UP",
1000+
"POST_SCALE_UP",
1001+
"TEST_TRAFFIC_SHIFT",
1002+
"POST_TEST_TRAFFIC_SHIFT",
1003+
"PRODUCTION_TRAFFIC_SHIFT",
1004+
"POST_PRODUCTION_TRAFFIC_SHIFT"
1005+
],
1006+
"DeploymentStrategy": [
1007+
"ROLLING",
1008+
"BLUE_GREEN"
1009+
],
9971010
"DesiredState": [
9981011
"RUNNING",
9991012
"STOPPED"
@@ -2418,6 +2431,10 @@ export const AWS_CDK_ENUMS: { [key: string]: any } = {
24182431
0,
24192432
1
24202433
],
2434+
"MultiRegionConsistency": [
2435+
"EVENTUAL",
2436+
"STRONG"
2437+
],
24212438
"MutualAuthenticationMode": [
24222439
"off",
24232440
"passthrough",

packages/aws-cdk-lib/core/lib/analytics-data-source/enums/module-enums.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2418,6 +2418,10 @@
24182418
"STANDARD",
24192419
"STANDARD_INFREQUENT_ACCESS"
24202420
],
2421+
"MultiRegionConsistency": [
2422+
"EVENTUAL",
2423+
"STRONG"
2424+
],
24212425
"TableEncryption": [
24222426
"AWS_OWNED",
24232427
"CUSTOMER_MANAGED",
@@ -3636,6 +3640,10 @@
36363640
"CODE_DEPLOY",
36373641
"EXTERNAL"
36383642
],
3643+
"DeploymentStrategy": [
3644+
"ROLLING",
3645+
"BLUE_GREEN"
3646+
],
36393647
"PropagatedTagSource": [
36403648
"SERVICE",
36413649
"TASK_DEFINITION",
@@ -3731,6 +3739,17 @@
37313739
"disabled"
37323740
]
37333741
},
3742+
"aws-cdk/packages/aws-cdk-lib/aws-ecs/lib/deployment-lifecycle-hook-target.ts": {
3743+
"DeploymentLifecycleStage": [
3744+
"RECONCILE_SERVICE",
3745+
"PRE_SCALE_UP",
3746+
"POST_SCALE_UP",
3747+
"TEST_TRAFFIC_SHIFT",
3748+
"POST_TEST_TRAFFIC_SHIFT",
3749+
"PRODUCTION_TRAFFIC_SHIFT",
3750+
"POST_PRODUCTION_TRAFFIC_SHIFT"
3751+
]
3752+
},
37343753
"aws-cdk/packages/aws-cdk-lib/aws-ecs/lib/environment-file.ts": {
37353754
"EnvironmentFileType": [
37363755
"s3"

0 commit comments

Comments
 (0)