Skip to content

Commit c9954f8

Browse files
chore: update analytics metadata blueprints
1 parent f9089b5 commit c9954f8

File tree

4 files changed

+121
-7
lines changed

4 files changed

+121
-7
lines changed

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

+56-3
Original file line numberDiff line numberDiff line change
@@ -13887,7 +13887,10 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
1388713887
'connections': '*'
1388813888
},
1388913889
'open': 'boolean',
13890-
'lookupSupportedAzs': 'boolean'
13890+
'lookupSupportedAzs': 'boolean',
13891+
'ipAddressType': 'VpcEndpointIpAddressType',
13892+
'dnsRecordIpType': 'VpcEndpointDnsRecordIpType',
13893+
'privateDnsOnlyForInboundResolverEndpoint': 'VpcEndpointPrivateDnsOnlyForInboundResolverEndpoint'
1389113894
},
1389213895
'FlowLog': {
1389313896
'flowLogName': '*',
@@ -22483,6 +22486,23 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
2248322486
'archiveAccessTierTime': '*'
2248422487
},
2248522488
'minimumTLSVersion': '*',
22489+
'replicationRole': {
22490+
'roleArn': '*',
22491+
'roleName': '*',
22492+
'assumeRoleAction': '*',
22493+
'policyFragment': '*',
22494+
'principalAccount': '*',
22495+
'grantPrincipal': {
22496+
'assumeRoleAction': '*',
22497+
'principalAccount': '*'
22498+
},
22499+
'stack': '*',
22500+
'env': {
22501+
'account': '*',
22502+
'region': '*'
22503+
},
22504+
'node': '*'
22505+
},
2248622506
'replicationRules': {
2248722507
'destination': {
2248822508
'bucketArn': '*',
@@ -25181,7 +25201,11 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
2518125201
'burstLimit': '*'
2518225202
},
2518325203
'description': '*',
25184-
'detailedMetricsEnabled': 'boolean'
25204+
'detailedMetricsEnabled': 'boolean',
25205+
'accessLogSettings': {
25206+
'destination': '*',
25207+
'format': '*'
25208+
}
2518525209
}
2518625210
],
2518725211
'addRoutes': [
@@ -25326,7 +25350,11 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
2532625350
'burstLimit': '*'
2532725351
},
2532825352
'description': '*',
25329-
'detailedMetricsEnabled': 'boolean'
25353+
'detailedMetricsEnabled': 'boolean',
25354+
'accessLogSettings': {
25355+
'destination': '*',
25356+
'format': '*'
25357+
}
2533025358
},
2533125359
'VpcLink': {
2533225360
'vpc': {
@@ -25553,6 +25581,10 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
2555325581
},
2555425582
'description': '*',
2555525583
'detailedMetricsEnabled': 'boolean',
25584+
'accessLogSettings': {
25585+
'destination': '*',
25586+
'format': '*'
25587+
},
2555625588
'grantManagementApiAccess': [
2555725589
{
2555825590
'grantPrincipal': {
@@ -29063,6 +29095,27 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
2906329095
'enforceSecurityGroupInboundRulesOnPrivateLinkTraffic': 'boolean',
2906429096
'zonalShift': 'boolean',
2906529097
'enablePrefixForIpv6SourceNat': 'boolean',
29098+
'subnetMappings': {
29099+
'subnet': {
29100+
'availabilityZone': '*',
29101+
'subnetId': '*',
29102+
'internetConnectivityEstablished': '*',
29103+
'ipv4CidrBlock': '*',
29104+
'routeTable': {
29105+
'routeTableId': '*'
29106+
},
29107+
'stack': '*',
29108+
'env': {
29109+
'account': '*',
29110+
'region': '*'
29111+
},
29112+
'node': '*'
29113+
},
29114+
'allocationId': '*',
29115+
'ipv6Address': '*',
29116+
'privateIpv4Address': '*',
29117+
'sourceNatIpv6Prefix': '*'
29118+
},
2906629119
'loadBalancerName': '*',
2906729120
'vpc': {
2906829121
'vpcId': '*',

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

+26-1
Original file line numberDiff line numberDiff line change
@@ -2437,6 +2437,10 @@ export const AWS_CDK_ENUMS: { [key: string]: any } = {
24372437
'cjs',
24382438
'esm'
24392439
],
2440+
'OutputType': [
2441+
'JSON',
2442+
'JSONL'
2443+
],
24402444
'ParameterDataType': [
24412445
'text',
24422446
'aws:ec2:image'
@@ -2914,7 +2918,8 @@ export const AWS_CDK_ENUMS: { [key: string]: any } = {
29142918
],
29152919
'SSLMethod': [
29162920
'sni-only',
2917-
'vip'
2921+
'vip',
2922+
'static-ip'
29182923
],
29192924
'ScalingEvent': [
29202925
'autoscaling:EC2_INSTANCE_LAUNCH',
@@ -3439,6 +3444,11 @@ export const AWS_CDK_ENUMS: { [key: string]: any } = {
34393444
0,
34403445
1
34413446
],
3447+
'Transformation': [
3448+
'NONE',
3449+
'COMPACT',
3450+
'FLATTEN'
3451+
],
34423452
'TransitGatewayFeatureStatus': [
34433453
'enable',
34443454
'disable'
@@ -3582,6 +3592,21 @@ export const AWS_CDK_ENUMS: { [key: string]: any } = {
35823592
'GLOBAL',
35833593
'PRIVATE'
35843594
],
3595+
'VpcEndpointDnsRecordIpType': [
3596+
'ipv4',
3597+
'ipv6',
3598+
'dualstack',
3599+
'service-defined'
3600+
],
3601+
'VpcEndpointIpAddressType': [
3602+
'ipv4',
3603+
'ipv6',
3604+
'dualstack'
3605+
],
3606+
'VpcEndpointPrivateDnsOnlyForInboundResolverEndpoint': [
3607+
'AllResolvers',
3608+
'OnlyInboundResolver'
3609+
],
35853610
'VpcEndpointType': [
35863611
'Interface',
35873612
'Gateway',

Diff for: packages/aws-cdk-lib/core/lib/analytics-data-source/enums/module-enumlikes.json

+11-2
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,13 @@
257257
"V1_3_2_0",
258258
"V1_3_2_1",
259259
"V1_3_3_0",
260-
"V1_3_4_0"
260+
"V1_3_4_0",
261+
"V1_4_0_0",
262+
"V1_4_1_0",
263+
"V1_4_2_0",
264+
"V1_4_3_0",
265+
"V1_4_4_0",
266+
"V1_4_5_0"
261267
],
262268
"LogType": [
263269
"AUDIT"
@@ -325,7 +331,8 @@
325331
"ParameterGroupFamily": [
326332
"NEPTUNE_1",
327333
"NEPTUNE_1_2",
328-
"NEPTUNE_1_3"
334+
"NEPTUNE_1_3",
335+
"NEPTUNE_1_4"
329336
]
330337
},
331338
"aws-cdk/packages/@aws-cdk/aws-sagemaker-alpha/lib/accelerator-type.ts": {
@@ -557,6 +564,7 @@
557564
"AMAZON_NOVA_PRO_V1_0_300_K",
558565
"AMAZON_NOVA_REEL_V1_0",
559566
"AMAZON_NOVA_REEL_V1_1",
567+
"AMAZON_NOVA_SONIC_V1_0",
560568
"AI21_J2_MID",
561569
"AI21_LABS_JURASSIC_2_MID_V1",
562570
"AI21_J2_ULTRA",
@@ -634,6 +642,7 @@
634642
"MISTRAL_LARGE_V0_1",
635643
"MISTRAL_SMALL_V0_1",
636644
"MISTRAL_LARGE_2_V0_1",
645+
"MISTRAL_PIXTRAL_LARGE_2502_V1_0",
637646
"STABILITY_STABLE_DIFFUSION_XL",
638647
"STABILITY_STABLE_DIFFUSION_XL_V0",
639648
"STABILITY_STABLE_DIFFUSION_XL_V1",

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

+28-1
Original file line numberDiff line numberDiff line change
@@ -1553,7 +1553,8 @@
15531553
],
15541554
"SSLMethod": [
15551555
"sni-only",
1556-
"vip"
1556+
"vip",
1557+
"static-ip"
15571558
],
15581559
"SecurityPolicyProtocol": [
15591560
"SSLv3",
@@ -2916,6 +2917,21 @@
29162917
"GatewayLoadBalancer",
29172918
"ServiceNetwork",
29182919
"Resource"
2920+
],
2921+
"VpcEndpointIpAddressType": [
2922+
"ipv4",
2923+
"ipv6",
2924+
"dualstack"
2925+
],
2926+
"VpcEndpointDnsRecordIpType": [
2927+
"ipv4",
2928+
"ipv6",
2929+
"dualstack",
2930+
"service-defined"
2931+
],
2932+
"VpcEndpointPrivateDnsOnlyForInboundResolverEndpoint": [
2933+
"AllResolvers",
2934+
"OnlyInboundResolver"
29192935
]
29202936
},
29212937
"aws-cdk/packages/aws-cdk-lib/aws-ec2/lib/vpc-flow-logs.ts": {
@@ -5054,6 +5070,17 @@
50545070
"TAB"
50555071
]
50565072
},
5073+
"aws-cdk/packages/aws-cdk-lib/aws-stepfunctions/lib/states/distributed-map/result-writer.ts": {
5074+
"Transformation": [
5075+
"NONE",
5076+
"COMPACT",
5077+
"FLATTEN"
5078+
],
5079+
"OutputType": [
5080+
"JSON",
5081+
"JSONL"
5082+
]
5083+
},
50575084
"aws-cdk/packages/aws-cdk-lib/aws-stepfunctions/lib/states/private/state-type.ts": {
50585085
"StateType": [
50595086
"Pass",

0 commit comments

Comments
 (0)