@aws-cdk/aws-neptune-alpha 2.44.0-alpha.0 → 2.45.0-alpha.0

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/.jsii CHANGED
@@ -8,7 +8,7 @@
8
8
  "url": "https://aws.amazon.com"
9
9
  },
10
10
  "dependencies": {
11
- "aws-cdk-lib": "^2.44.0",
11
+ "aws-cdk-lib": "^2.45.0",
12
12
  "constructs": "^10.0.0"
13
13
  },
14
14
  "dependencyClosure": {
@@ -730,6 +730,19 @@
730
730
  }
731
731
  }
732
732
  },
733
+ "aws-cdk-lib.aws_connectcampaigns": {
734
+ "targets": {
735
+ "dotnet": {
736
+ "namespace": "Amazon.CDK.AWS.ConnectCampaigns"
737
+ },
738
+ "java": {
739
+ "package": "software.amazon.awscdk.services.connectcampaigns"
740
+ },
741
+ "python": {
742
+ "module": "aws_cdk.aws_connectcampaigns"
743
+ }
744
+ }
745
+ },
733
746
  "aws-cdk-lib.aws_controltower": {
734
747
  "targets": {
735
748
  "dotnet": {
@@ -1510,6 +1523,19 @@
1510
1523
  }
1511
1524
  }
1512
1525
  },
1526
+ "aws-cdk-lib.aws_iotfleetwise": {
1527
+ "targets": {
1528
+ "dotnet": {
1529
+ "namespace": "Amazon.CDK.AWS.IoTFleetWise"
1530
+ },
1531
+ "java": {
1532
+ "package": "software.amazon.awscdk.services.iotfleetwise"
1533
+ },
1534
+ "python": {
1535
+ "module": "aws_cdk.aws_iotfleetwise"
1536
+ }
1537
+ }
1538
+ },
1513
1539
  "aws-cdk-lib.aws_iotsitewise": {
1514
1540
  "targets": {
1515
1541
  "dotnet": {
@@ -2303,6 +2329,19 @@
2303
2329
  }
2304
2330
  }
2305
2331
  },
2332
+ "aws-cdk-lib.aws_rolesanywhere": {
2333
+ "targets": {
2334
+ "dotnet": {
2335
+ "namespace": "Amazon.CDK.AWS.RolesAnywhere"
2336
+ },
2337
+ "java": {
2338
+ "package": "software.amazon.awscdk.services.rolesanywhere"
2339
+ },
2340
+ "python": {
2341
+ "module": "aws_cdk.aws_rolesanywhere"
2342
+ }
2343
+ }
2344
+ },
2306
2345
  "aws-cdk-lib.aws_route53": {
2307
2346
  "targets": {
2308
2347
  "dotnet": {
@@ -3084,7 +3123,7 @@
3084
3123
  },
3085
3124
  "name": "@aws-cdk/aws-neptune-alpha",
3086
3125
  "readme": {
3087
- "markdown": "# Amazon Neptune Construct Library\n<!--BEGIN STABILITY BANNER-->\n\n---\n\n![cdk-constructs: Experimental](https://img.shields.io/badge/cdk--constructs-experimental-important.svg?style=for-the-badge)\n\n> The APIs of higher level constructs in this module are experimental and under active development.\n> They are subject to non-backward compatible changes or removal in any future version. These are\n> not subject to the [Semantic Versioning](https://semver.org/) model and breaking changes will be\n> announced in the release notes. This means that while you may use them, you may need to update\n> your source code when upgrading to a newer version of this package.\n\n---\n\n<!--END STABILITY BANNER-->\n\nAmazon Neptune is a fast, reliable, fully managed graph database service that makes it easy to build and run applications that work with highly connected datasets. The core of Neptune is a purpose-built, high-performance graph database engine. This engine is optimized for storing billions of relationships and querying the graph with milliseconds latency. Neptune supports the popular graph query languages Apache TinkerPop Gremlin and W3C’s SPARQL, enabling you to build queries that efficiently navigate highly connected datasets.\n\nThe `@aws-cdk/aws-neptune` package contains primitives for setting up Neptune database clusters and instances.\n\n```ts nofixture\nimport * as neptune from '@aws-cdk/aws-neptune-alpha';\n```\n\n## Starting a Neptune Database\n\nTo set up a Neptune database, define a `DatabaseCluster`. You must always launch a database in a VPC.\n\n```ts\nconst cluster = new neptune.DatabaseCluster(this, 'Database', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n});\n```\n\nBy default only writer instance is provisioned with this construct.\n\n## Connecting\n\nTo control who can access the cluster, use the `.connections` attribute. Neptune databases have a default port, so\nyou don't need to specify the port:\n\n```ts fixture=with-cluster\ncluster.connections.allowDefaultPortFromAnyIpv4('Open to the world');\n```\n\nThe endpoints to access your database cluster will be available as the `.clusterEndpoint` and `.clusterReadEndpoint`\nattributes:\n\n```ts fixture=with-cluster\nconst writeAddress = cluster.clusterEndpoint.socketAddress; // \"HOSTNAME:PORT\"\n```\n\n## IAM Authentication\n\nYou can also authenticate to a database cluster using AWS Identity and Access Management (IAM) database authentication;\nSee <https://docs.aws.amazon.com/neptune/latest/userguide/iam-auth.html> for more information and a list of supported\nversions and limitations.\n\nThe following example shows enabling IAM authentication for a database cluster and granting connection access to an IAM role.\n\n```ts\nconst cluster = new neptune.DatabaseCluster(this, 'Cluster', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n iamAuthentication: true, // Optional - will be automatically set if you call grantConnect() or grant().\n});\nconst role = new iam.Role(this, 'DBRole', { assumedBy: new iam.AccountPrincipal(this.account) });\n// Use one of the following statements to grant the role the necessary permissions\ncluster.grantConnect(role); // Grant the role neptune-db:* access to the DB\ncluster.grant(role, 'neptune-db:ReadDataViaQuery', 'neptune-db:WriteDataViaQuery'); // Grant the role the specified actions to the DB\n```\n\n## Customizing parameters\n\nNeptune allows configuring database behavior by supplying custom parameter groups. For more details, refer to the\nfollowing link: <https://docs.aws.amazon.com/neptune/latest/userguide/parameters.html>\n\n```ts\nconst clusterParams = new neptune.ClusterParameterGroup(this, 'ClusterParams', {\n description: 'Cluster parameter group',\n parameters: {\n neptune_enable_audit_log: '1'\n },\n});\n\nconst dbParams = new neptune.ParameterGroup(this, 'DbParams', {\n description: 'Db parameter group',\n parameters: {\n neptune_query_timeout: '120000',\n },\n});\n\nconst cluster = new neptune.DatabaseCluster(this, 'Database', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n clusterParameterGroup: clusterParams,\n parameterGroup: dbParams,\n});\n```\n\nNote: if you want to use Neptune engine `1.2.0.0` or later, you need to specify the corresponding `engineVersion` prop to `neptune.DatabaseCluster` and `family` prop of `ParameterGroupFamily.NEPTUNE_1_2` to `neptune.ClusterParameterGroup` and `neptune.ParameterGroup`.\n\n## Adding replicas\n\n`DatabaseCluster` allows launching replicas along with the writer instance. This can be specified using the `instanceCount`\nattribute.\n\n```ts\nconst cluster = new neptune.DatabaseCluster(this, 'Database', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n instances: 2,\n});\n```\n\nAdditionally, it is also possible to add replicas using `DatabaseInstance` for an existing cluster.\n\n```ts fixture=with-cluster\nconst replica1 = new neptune.DatabaseInstance(this, 'Instance', {\n cluster,\n instanceType: neptune.InstanceType.R5_LARGE,\n});\n```\n\n## Automatic minor version upgrades\n\nBy setting `autoMinorVersionUpgrade` to true, Neptune will automatically update\nthe engine of the entire cluster to the latest minor version after a stabilization\nwindow of 2 to 3 weeks.\n\n```ts\nnew neptune.DatabaseCluster(this, 'Cluster', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n autoMinorVersionUpgrade: true,\n});\n```\n\n## Metrics\n\nBoth `DatabaseCluster` and `DatabaseInstance` provide a `metric()` method to help with cluster-level and instance-level monitoring.\n\n```ts\ndeclare const cluster: neptune.DatabaseCluster;\ndeclare const instance: neptune.DatabaseInstance;\n\ncluster.metric('SparqlRequestsPerSec'); // cluster-level SparqlErrors metric\ninstance.metric('SparqlRequestsPerSec') // instance-level SparqlErrors metric\n```\n\nFor more details on the available metrics, refer to https://docs.aws.amazon.com/neptune/latest/userguide/cw-metrics.html\n"
3126
+ "markdown": "# Amazon Neptune Construct Library\n<!--BEGIN STABILITY BANNER-->\n\n---\n\n![cdk-constructs: Experimental](https://img.shields.io/badge/cdk--constructs-experimental-important.svg?style=for-the-badge)\n\n> The APIs of higher level constructs in this module are experimental and under active development.\n> They are subject to non-backward compatible changes or removal in any future version. These are\n> not subject to the [Semantic Versioning](https://semver.org/) model and breaking changes will be\n> announced in the release notes. This means that while you may use them, you may need to update\n> your source code when upgrading to a newer version of this package.\n\n---\n\n<!--END STABILITY BANNER-->\n\nAmazon Neptune is a fast, reliable, fully managed graph database service that makes it easy to build and run applications that work with highly connected datasets. The core of Neptune is a purpose-built, high-performance graph database engine. This engine is optimized for storing billions of relationships and querying the graph with milliseconds latency. Neptune supports the popular graph query languages Apache TinkerPop Gremlin and W3C’s SPARQL, enabling you to build queries that efficiently navigate highly connected datasets.\n\nThe `@aws-cdk/aws-neptune` package contains primitives for setting up Neptune database clusters and instances.\n\n```ts nofixture\nimport * as neptune from '@aws-cdk/aws-neptune-alpha';\n```\n\n## Starting a Neptune Database\n\nTo set up a Neptune database, define a `DatabaseCluster`. You must always launch a database in a VPC.\n\n```ts\nconst cluster = new neptune.DatabaseCluster(this, 'Database', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n});\n```\n\nBy default only writer instance is provisioned with this construct.\n\n## Connecting\n\nTo control who can access the cluster, use the `.connections` attribute. Neptune databases have a default port, so\nyou don't need to specify the port:\n\n```ts fixture=with-cluster\ncluster.connections.allowDefaultPortFromAnyIpv4('Open to the world');\n```\n\nThe endpoints to access your database cluster will be available as the `.clusterEndpoint` and `.clusterReadEndpoint`\nattributes:\n\n```ts fixture=with-cluster\nconst writeAddress = cluster.clusterEndpoint.socketAddress; // \"HOSTNAME:PORT\"\n```\n\n## IAM Authentication\n\nYou can also authenticate to a database cluster using AWS Identity and Access Management (IAM) database authentication;\nSee <https://docs.aws.amazon.com/neptune/latest/userguide/iam-auth.html> for more information and a list of supported\nversions and limitations.\n\nThe following example shows enabling IAM authentication for a database cluster and granting connection access to an IAM role.\n\n```ts\nconst cluster = new neptune.DatabaseCluster(this, 'Cluster', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n iamAuthentication: true, // Optional - will be automatically set if you call grantConnect() or grant().\n});\nconst role = new iam.Role(this, 'DBRole', { assumedBy: new iam.AccountPrincipal(this.account) });\n// Use one of the following statements to grant the role the necessary permissions\ncluster.grantConnect(role); // Grant the role neptune-db:* access to the DB\ncluster.grant(role, 'neptune-db:ReadDataViaQuery', 'neptune-db:WriteDataViaQuery'); // Grant the role the specified actions to the DB\n```\n\n## Customizing parameters\n\nNeptune allows configuring database behavior by supplying custom parameter groups. For more details, refer to the\nfollowing link: <https://docs.aws.amazon.com/neptune/latest/userguide/parameters.html>\n\n```ts\nconst clusterParams = new neptune.ClusterParameterGroup(this, 'ClusterParams', {\n description: 'Cluster parameter group',\n parameters: {\n neptune_enable_audit_log: '1'\n },\n});\n\nconst dbParams = new neptune.ParameterGroup(this, 'DbParams', {\n description: 'Db parameter group',\n parameters: {\n neptune_query_timeout: '120000',\n },\n});\n\nconst cluster = new neptune.DatabaseCluster(this, 'Database', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n clusterParameterGroup: clusterParams,\n parameterGroup: dbParams,\n});\n```\n\nNote: if you want to use Neptune engine `1.2.0.0` or later, you need to specify the corresponding `engineVersion` prop to `neptune.DatabaseCluster` and `family` prop of `ParameterGroupFamily.NEPTUNE_1_2` to `neptune.ClusterParameterGroup` and `neptune.ParameterGroup`.\n\n## Adding replicas\n\n`DatabaseCluster` allows launching replicas along with the writer instance. This can be specified using the `instanceCount`\nattribute.\n\n```ts\nconst cluster = new neptune.DatabaseCluster(this, 'Database', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n instances: 2,\n});\n```\n\nAdditionally, it is also possible to add replicas using `DatabaseInstance` for an existing cluster.\n\n```ts fixture=with-cluster\nconst replica1 = new neptune.DatabaseInstance(this, 'Instance', {\n cluster,\n instanceType: neptune.InstanceType.R5_LARGE,\n});\n```\n\n## Automatic minor version upgrades\n\nBy setting `autoMinorVersionUpgrade` to true, Neptune will automatically update\nthe engine of the entire cluster to the latest minor version after a stabilization\nwindow of 2 to 3 weeks.\n\n```ts\nnew neptune.DatabaseCluster(this, 'Cluster', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n autoMinorVersionUpgrade: true,\n});\n```\n\n## Logging\n\nNeptune supports various methods for monitoring performance and usage. One of those methods is logging\n\n1. Neptune provides logs e.g. audit logs which can be viewed or downloaded via the AWS Console. Audit logs can be enabled using the `neptune_enable_audit_log` parameter in `ClusterParameterGroup` or `ParameterGroup`\n2. Neptune provides the ability to export those logs to CloudWatch Logs\n\n```ts\n// Cluster parameter group with the neptune_enable_audit_log param set to 1\nconst clusterParameterGroup = new neptune.ClusterParameterGroup(this, 'ClusterParams', {\n description: 'Cluster parameter group',\n parameters: {\n neptune_enable_audit_log: '1'\n },\n});\n\nconst cluster = new neptune.DatabaseCluster(this, 'Database', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n // Audit logs are enabled via the clusterParameterGroup\n clusterParameterGroup,\n // Optionally configuring audit logs to be exported to CloudWatch Logs\n cloudwatchLogsExports: [neptune.LogType.AUDIT],\n // Optionally set a retention period on exported CloudWatch Logs\n cloudwatchLogsRetention: logs.RetentionDays.ONE_MONTH,\n});\n```\n\nFor more information on monitoring, refer to https://docs.aws.amazon.com/neptune/latest/userguide/monitoring.html.\nFor more information on audit logs, refer to https://docs.aws.amazon.com/neptune/latest/userguide/auditing.html.\nFor more information on exporting logs to CloudWatch Logs, refer to https://docs.aws.amazon.com/neptune/latest/userguide/cloudwatch-logs.html.\n\n## Metrics\n\nBoth `DatabaseCluster` and `DatabaseInstance` provide a `metric()` method to help with cluster-level and instance-level monitoring.\n\n```ts\ndeclare const cluster: neptune.DatabaseCluster;\ndeclare const instance: neptune.DatabaseInstance;\n\ncluster.metric('SparqlRequestsPerSec'); // cluster-level SparqlErrors metric\ninstance.metric('SparqlRequestsPerSec') // instance-level SparqlErrors metric\n```\n\nFor more details on the available metrics, refer to https://docs.aws.amazon.com/neptune/latest/userguide/cw-metrics.html\n"
3088
3127
  },
3089
3128
  "repository": {
3090
3129
  "directory": "packages/individual-packages/aws-neptune",
@@ -3348,7 +3387,7 @@
3348
3387
  },
3349
3388
  "locationInModule": {
3350
3389
  "filename": "lib/cluster.ts",
3351
- "line": 475
3390
+ "line": 524
3352
3391
  },
3353
3392
  "parameters": [
3354
3393
  {
@@ -3377,7 +3416,7 @@
3377
3416
  "kind": "class",
3378
3417
  "locationInModule": {
3379
3418
  "filename": "lib/cluster.ts",
3380
- "line": 428
3419
+ "line": 477
3381
3420
  },
3382
3421
  "name": "DatabaseCluster",
3383
3422
  "properties": [
@@ -3390,7 +3429,7 @@
3390
3429
  "immutable": true,
3391
3430
  "locationInModule": {
3392
3431
  "filename": "lib/cluster.ts",
3393
- "line": 434
3432
+ "line": 483
3394
3433
  },
3395
3434
  "name": "DEFAULT_NUM_INSTANCES",
3396
3435
  "static": true,
@@ -3406,7 +3445,7 @@
3406
3445
  "immutable": true,
3407
3446
  "locationInModule": {
3408
3447
  "filename": "lib/cluster.ts",
3409
- "line": 437
3448
+ "line": 486
3410
3449
  },
3411
3450
  "name": "clusterEndpoint",
3412
3451
  "overrides": "@aws-cdk/aws-neptune-alpha.DatabaseClusterBase",
@@ -3422,7 +3461,7 @@
3422
3461
  "immutable": true,
3423
3462
  "locationInModule": {
3424
3463
  "filename": "lib/cluster.ts",
3425
- "line": 436
3464
+ "line": 485
3426
3465
  },
3427
3466
  "name": "clusterIdentifier",
3428
3467
  "overrides": "@aws-cdk/aws-neptune-alpha.DatabaseClusterBase",
@@ -3438,7 +3477,7 @@
3438
3477
  "immutable": true,
3439
3478
  "locationInModule": {
3440
3479
  "filename": "lib/cluster.ts",
3441
- "line": 438
3480
+ "line": 487
3442
3481
  },
3443
3482
  "name": "clusterReadEndpoint",
3444
3483
  "overrides": "@aws-cdk/aws-neptune-alpha.DatabaseClusterBase",
@@ -3458,7 +3497,7 @@
3458
3497
  "immutable": true,
3459
3498
  "locationInModule": {
3460
3499
  "filename": "lib/cluster.ts",
3461
- "line": 446
3500
+ "line": 495
3462
3501
  },
3463
3502
  "name": "clusterResourceIdentifier",
3464
3503
  "overrides": "@aws-cdk/aws-neptune-alpha.DatabaseClusterBase",
@@ -3474,7 +3513,7 @@
3474
3513
  "immutable": true,
3475
3514
  "locationInModule": {
3476
3515
  "filename": "lib/cluster.ts",
3477
- "line": 439
3516
+ "line": 488
3478
3517
  },
3479
3518
  "name": "connections",
3480
3519
  "overrides": "@aws-cdk/aws-neptune-alpha.DatabaseClusterBase",
@@ -3490,7 +3529,7 @@
3490
3529
  "immutable": true,
3491
3530
  "locationInModule": {
3492
3531
  "filename": "lib/cluster.ts",
3493
- "line": 471
3532
+ "line": 520
3494
3533
  },
3495
3534
  "name": "instanceEndpoints",
3496
3535
  "type": {
@@ -3510,7 +3549,7 @@
3510
3549
  "immutable": true,
3511
3550
  "locationInModule": {
3512
3551
  "filename": "lib/cluster.ts",
3513
- "line": 466
3552
+ "line": 515
3514
3553
  },
3515
3554
  "name": "instanceIdentifiers",
3516
3555
  "type": {
@@ -3530,7 +3569,7 @@
3530
3569
  "immutable": true,
3531
3570
  "locationInModule": {
3532
3571
  "filename": "lib/cluster.ts",
3533
- "line": 461
3572
+ "line": 510
3534
3573
  },
3535
3574
  "name": "subnetGroup",
3536
3575
  "type": {
@@ -3545,7 +3584,7 @@
3545
3584
  "immutable": true,
3546
3585
  "locationInModule": {
3547
3586
  "filename": "lib/cluster.ts",
3548
- "line": 451
3587
+ "line": 500
3549
3588
  },
3550
3589
  "name": "vpc",
3551
3590
  "type": {
@@ -3560,7 +3599,7 @@
3560
3599
  "immutable": true,
3561
3600
  "locationInModule": {
3562
3601
  "filename": "lib/cluster.ts",
3563
- "line": 456
3602
+ "line": 505
3564
3603
  },
3565
3604
  "name": "vpcSubnets",
3566
3605
  "type": {
@@ -3573,7 +3612,7 @@
3573
3612
  },
3574
3613
  "locationInModule": {
3575
3614
  "filename": "lib/cluster.ts",
3576
- "line": 473
3615
+ "line": 522
3577
3616
  },
3578
3617
  "name": "enableIamAuthentication",
3579
3618
  "optional": true,
@@ -3601,7 +3640,7 @@
3601
3640
  "kind": "interface",
3602
3641
  "locationInModule": {
3603
3642
  "filename": "lib/cluster.ts",
3604
- "line": 301
3643
+ "line": 350
3605
3644
  },
3606
3645
  "name": "DatabaseClusterAttributes",
3607
3646
  "properties": [
@@ -3614,7 +3653,7 @@
3614
3653
  "immutable": true,
3615
3654
  "locationInModule": {
3616
3655
  "filename": "lib/cluster.ts",
3617
- "line": 325
3656
+ "line": 374
3618
3657
  },
3619
3658
  "name": "clusterEndpointAddress",
3620
3659
  "type": {
@@ -3630,7 +3669,7 @@
3630
3669
  "immutable": true,
3631
3670
  "locationInModule": {
3632
3671
  "filename": "lib/cluster.ts",
3633
- "line": 315
3672
+ "line": 364
3634
3673
  },
3635
3674
  "name": "clusterIdentifier",
3636
3675
  "type": {
@@ -3646,7 +3685,7 @@
3646
3685
  "immutable": true,
3647
3686
  "locationInModule": {
3648
3687
  "filename": "lib/cluster.ts",
3649
- "line": 320
3688
+ "line": 369
3650
3689
  },
3651
3690
  "name": "clusterResourceIdentifier",
3652
3691
  "type": {
@@ -3662,7 +3701,7 @@
3662
3701
  "immutable": true,
3663
3702
  "locationInModule": {
3664
3703
  "filename": "lib/cluster.ts",
3665
- "line": 305
3704
+ "line": 354
3666
3705
  },
3667
3706
  "name": "port",
3668
3707
  "type": {
@@ -3678,7 +3717,7 @@
3678
3717
  "immutable": true,
3679
3718
  "locationInModule": {
3680
3719
  "filename": "lib/cluster.ts",
3681
- "line": 330
3720
+ "line": 379
3682
3721
  },
3683
3722
  "name": "readerEndpointAddress",
3684
3723
  "type": {
@@ -3694,7 +3733,7 @@
3694
3733
  "immutable": true,
3695
3734
  "locationInModule": {
3696
3735
  "filename": "lib/cluster.ts",
3697
- "line": 310
3736
+ "line": 359
3698
3737
  },
3699
3738
  "name": "securityGroup",
3700
3739
  "type": {
@@ -3753,7 +3792,7 @@
3753
3792
  "kind": "class",
3754
3793
  "locationInModule": {
3755
3794
  "filename": "lib/cluster.ts",
3756
- "line": 336
3795
+ "line": 385
3757
3796
  },
3758
3797
  "methods": [
3759
3798
  {
@@ -3763,7 +3802,7 @@
3763
3802
  },
3764
3803
  "locationInModule": {
3765
3804
  "filename": "lib/cluster.ts",
3766
- "line": 341
3805
+ "line": 390
3767
3806
  },
3768
3807
  "name": "fromDatabaseClusterAttributes",
3769
3808
  "parameters": [
@@ -3800,7 +3839,7 @@
3800
3839
  },
3801
3840
  "locationInModule": {
3802
3841
  "filename": "lib/cluster.ts",
3803
- "line": 385
3842
+ "line": 434
3804
3843
  },
3805
3844
  "name": "grant",
3806
3845
  "overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
@@ -3833,7 +3872,7 @@
3833
3872
  },
3834
3873
  "locationInModule": {
3835
3874
  "filename": "lib/cluster.ts",
3836
- "line": 407
3875
+ "line": 456
3837
3876
  },
3838
3877
  "name": "grantConnect",
3839
3878
  "overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
@@ -3858,7 +3897,7 @@
3858
3897
  },
3859
3898
  "locationInModule": {
3860
3899
  "filename": "lib/cluster.ts",
3861
- "line": 411
3900
+ "line": 460
3862
3901
  },
3863
3902
  "name": "metric",
3864
3903
  "overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
@@ -3895,7 +3934,7 @@
3895
3934
  "immutable": true,
3896
3935
  "locationInModule": {
3897
3936
  "filename": "lib/cluster.ts",
3898
- "line": 371
3937
+ "line": 420
3899
3938
  },
3900
3939
  "name": "clusterEndpoint",
3901
3940
  "overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
@@ -3912,7 +3951,7 @@
3912
3951
  "immutable": true,
3913
3952
  "locationInModule": {
3914
3953
  "filename": "lib/cluster.ts",
3915
- "line": 361
3954
+ "line": 410
3916
3955
  },
3917
3956
  "name": "clusterIdentifier",
3918
3957
  "overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
@@ -3929,7 +3968,7 @@
3929
3968
  "immutable": true,
3930
3969
  "locationInModule": {
3931
3970
  "filename": "lib/cluster.ts",
3932
- "line": 376
3971
+ "line": 425
3933
3972
  },
3934
3973
  "name": "clusterReadEndpoint",
3935
3974
  "overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
@@ -3946,7 +3985,7 @@
3946
3985
  "immutable": true,
3947
3986
  "locationInModule": {
3948
3987
  "filename": "lib/cluster.ts",
3949
- "line": 366
3988
+ "line": 415
3950
3989
  },
3951
3990
  "name": "clusterResourceIdentifier",
3952
3991
  "overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
@@ -3963,7 +4002,7 @@
3963
4002
  "immutable": true,
3964
4003
  "locationInModule": {
3965
4004
  "filename": "lib/cluster.ts",
3966
- "line": 381
4005
+ "line": 430
3967
4006
  },
3968
4007
  "name": "connections",
3969
4008
  "overrides": "aws-cdk-lib.aws_ec2.IConnectable",
@@ -3978,7 +4017,7 @@
3978
4017
  },
3979
4018
  "locationInModule": {
3980
4019
  "filename": "lib/cluster.ts",
3981
- "line": 383
4020
+ "line": 432
3982
4021
  },
3983
4022
  "name": "enableIamAuthentication",
3984
4023
  "optional": true,
@@ -4005,7 +4044,7 @@
4005
4044
  "kind": "interface",
4006
4045
  "locationInModule": {
4007
4046
  "filename": "lib/cluster.ts",
4008
- "line": 77
4047
+ "line": 98
4009
4048
  },
4010
4049
  "name": "DatabaseClusterProps",
4011
4050
  "properties": [
@@ -4018,7 +4057,7 @@
4018
4057
  "immutable": true,
4019
4058
  "locationInModule": {
4020
4059
  "filename": "lib/cluster.ts",
4021
- "line": 159
4060
+ "line": 180
4022
4061
  },
4023
4062
  "name": "instanceType",
4024
4063
  "type": {
@@ -4035,7 +4074,7 @@
4035
4074
  "immutable": true,
4036
4075
  "locationInModule": {
4037
4076
  "filename": "lib/cluster.ts",
4038
- "line": 213
4077
+ "line": 234
4039
4078
  },
4040
4079
  "name": "vpc",
4041
4080
  "type": {
@@ -4052,7 +4091,7 @@
4052
4091
  "immutable": true,
4053
4092
  "locationInModule": {
4054
4093
  "filename": "lib/cluster.ts",
4055
- "line": 166
4094
+ "line": 187
4056
4095
  },
4057
4096
  "name": "associatedRoles",
4058
4097
  "optional": true,
@@ -4075,7 +4114,7 @@
4075
4114
  "immutable": true,
4076
4115
  "locationInModule": {
4077
4116
  "filename": "lib/cluster.ts",
4078
- "line": 245
4117
+ "line": 266
4079
4118
  },
4080
4119
  "name": "autoMinorVersionUpgrade",
4081
4120
  "optional": true,
@@ -4093,7 +4132,7 @@
4093
4132
  "immutable": true,
4094
4133
  "locationInModule": {
4095
4134
  "filename": "lib/cluster.ts",
4096
- "line": 97
4135
+ "line": 118
4097
4136
  },
4098
4137
  "name": "backupRetention",
4099
4138
  "optional": true,
@@ -4101,6 +4140,67 @@
4101
4140
  "fqn": "aws-cdk-lib.Duration"
4102
4141
  }
4103
4142
  },
4143
+ {
4144
+ "abstract": true,
4145
+ "docs": {
4146
+ "default": "- no log exports",
4147
+ "see": "https://docs.aws.amazon.com/neptune/latest/userguide/auditing.html#auditing-enable",
4148
+ "stability": "experimental",
4149
+ "summary": "The list of log types that need to be enabled for exporting to CloudWatch Logs."
4150
+ },
4151
+ "immutable": true,
4152
+ "locationInModule": {
4153
+ "filename": "lib/cluster.ts",
4154
+ "line": 277
4155
+ },
4156
+ "name": "cloudwatchLogsExports",
4157
+ "optional": true,
4158
+ "type": {
4159
+ "collection": {
4160
+ "elementtype": {
4161
+ "fqn": "@aws-cdk/aws-neptune-alpha.LogType"
4162
+ },
4163
+ "kind": "array"
4164
+ }
4165
+ }
4166
+ },
4167
+ {
4168
+ "abstract": true,
4169
+ "docs": {
4170
+ "default": "- logs never expire",
4171
+ "remarks": "When updating\nthis property, unsetting it doesn't remove the log retention policy. To\nremove the retention policy, set the value to `Infinity`.",
4172
+ "stability": "experimental",
4173
+ "summary": "The number of days log events are kept in CloudWatch Logs."
4174
+ },
4175
+ "immutable": true,
4176
+ "locationInModule": {
4177
+ "filename": "lib/cluster.ts",
4178
+ "line": 286
4179
+ },
4180
+ "name": "cloudwatchLogsRetention",
4181
+ "optional": true,
4182
+ "type": {
4183
+ "fqn": "aws-cdk-lib.aws_logs.RetentionDays"
4184
+ }
4185
+ },
4186
+ {
4187
+ "abstract": true,
4188
+ "docs": {
4189
+ "default": "- a new role is created.",
4190
+ "stability": "experimental",
4191
+ "summary": "The IAM role for the Lambda function associated with the custom resource that sets the retention policy."
4192
+ },
4193
+ "immutable": true,
4194
+ "locationInModule": {
4195
+ "filename": "lib/cluster.ts",
4196
+ "line": 294
4197
+ },
4198
+ "name": "cloudwatchLogsRetentionRole",
4199
+ "optional": true,
4200
+ "type": {
4201
+ "fqn": "aws-cdk-lib.aws_iam.IRole"
4202
+ }
4203
+ },
4104
4204
  {
4105
4205
  "abstract": true,
4106
4206
  "docs": {
@@ -4111,7 +4211,7 @@
4111
4211
  "immutable": true,
4112
4212
  "locationInModule": {
4113
4213
  "filename": "lib/cluster.ts",
4114
- "line": 192
4214
+ "line": 213
4115
4215
  },
4116
4216
  "name": "clusterParameterGroup",
4117
4217
  "optional": true,
@@ -4129,7 +4229,7 @@
4129
4229
  "immutable": true,
4130
4230
  "locationInModule": {
4131
4231
  "filename": "lib/cluster.ts",
4132
- "line": 137
4232
+ "line": 158
4133
4233
  },
4134
4234
  "name": "dbClusterName",
4135
4235
  "optional": true,
@@ -4147,7 +4247,7 @@
4147
4247
  "immutable": true,
4148
4248
  "locationInModule": {
4149
4249
  "filename": "lib/cluster.ts",
4150
- "line": 173
4250
+ "line": 194
4151
4251
  },
4152
4252
  "name": "deletionProtection",
4153
4253
  "optional": true,
@@ -4165,7 +4265,7 @@
4165
4265
  "immutable": true,
4166
4266
  "locationInModule": {
4167
4267
  "filename": "lib/cluster.ts",
4168
- "line": 83
4268
+ "line": 104
4169
4269
  },
4170
4270
  "name": "engineVersion",
4171
4271
  "optional": true,
@@ -4183,7 +4283,7 @@
4183
4283
  "immutable": true,
4184
4284
  "locationInModule": {
4185
4285
  "filename": "lib/cluster.ts",
4186
- "line": 144
4286
+ "line": 165
4187
4287
  },
4188
4288
  "name": "iamAuthentication",
4189
4289
  "optional": true,
@@ -4202,7 +4302,7 @@
4202
4302
  "immutable": true,
4203
4303
  "locationInModule": {
4204
4304
  "filename": "lib/cluster.ts",
4205
- "line": 154
4305
+ "line": 175
4206
4306
  },
4207
4307
  "name": "instanceIdentifierBase",
4208
4308
  "optional": true,
@@ -4220,7 +4320,7 @@
4220
4320
  "immutable": true,
4221
4321
  "locationInModule": {
4222
4322
  "filename": "lib/cluster.ts",
4223
- "line": 130
4323
+ "line": 151
4224
4324
  },
4225
4325
  "name": "instances",
4226
4326
  "optional": true,
@@ -4238,7 +4338,7 @@
4238
4338
  "immutable": true,
4239
4339
  "locationInModule": {
4240
4340
  "filename": "lib/cluster.ts",
4241
- "line": 116
4341
+ "line": 137
4242
4342
  },
4243
4343
  "name": "kmsKey",
4244
4344
  "optional": true,
@@ -4256,7 +4356,7 @@
4256
4356
  "immutable": true,
4257
4357
  "locationInModule": {
4258
4358
  "filename": "lib/cluster.ts",
4259
- "line": 199
4359
+ "line": 220
4260
4360
  },
4261
4361
  "name": "parameterGroup",
4262
4362
  "optional": true,
@@ -4274,7 +4374,7 @@
4274
4374
  "immutable": true,
4275
4375
  "locationInModule": {
4276
4376
  "filename": "lib/cluster.ts",
4277
- "line": 90
4377
+ "line": 111
4278
4378
  },
4279
4379
  "name": "port",
4280
4380
  "optional": true,
@@ -4293,7 +4393,7 @@
4293
4393
  "immutable": true,
4294
4394
  "locationInModule": {
4295
4395
  "filename": "lib/cluster.ts",
4296
- "line": 109
4396
+ "line": 130
4297
4397
  },
4298
4398
  "name": "preferredBackupWindow",
4299
4399
  "optional": true,
@@ -4312,7 +4412,7 @@
4312
4412
  "immutable": true,
4313
4413
  "locationInModule": {
4314
4414
  "filename": "lib/cluster.ts",
4315
- "line": 185
4415
+ "line": 206
4316
4416
  },
4317
4417
  "name": "preferredMaintenanceWindow",
4318
4418
  "optional": true,
@@ -4331,7 +4431,7 @@
4331
4431
  "immutable": true,
4332
4432
  "locationInModule": {
4333
4433
  "filename": "lib/cluster.ts",
4334
- "line": 237
4434
+ "line": 258
4335
4435
  },
4336
4436
  "name": "removalPolicy",
4337
4437
  "optional": true,
@@ -4349,7 +4449,7 @@
4349
4449
  "immutable": true,
4350
4450
  "locationInModule": {
4351
4451
  "filename": "lib/cluster.ts",
4352
- "line": 227
4452
+ "line": 248
4353
4453
  },
4354
4454
  "name": "securityGroups",
4355
4455
  "optional": true,
@@ -4372,7 +4472,7 @@
4372
4472
  "immutable": true,
4373
4473
  "locationInModule": {
4374
4474
  "filename": "lib/cluster.ts",
4375
- "line": 123
4475
+ "line": 144
4376
4476
  },
4377
4477
  "name": "storageEncrypted",
4378
4478
  "optional": true,
@@ -4390,7 +4490,7 @@
4390
4490
  "immutable": true,
4391
4491
  "locationInModule": {
4392
4492
  "filename": "lib/cluster.ts",
4393
- "line": 206
4493
+ "line": 227
4394
4494
  },
4395
4495
  "name": "subnetGroup",
4396
4496
  "optional": true,
@@ -4408,7 +4508,7 @@
4408
4508
  "immutable": true,
4409
4509
  "locationInModule": {
4410
4510
  "filename": "lib/cluster.ts",
4411
- "line": 220
4511
+ "line": 241
4412
4512
  },
4413
4513
  "name": "vpcSubnets",
4414
4514
  "optional": true,
@@ -5080,7 +5180,7 @@
5080
5180
  },
5081
5181
  "locationInModule": {
5082
5182
  "filename": "lib/cluster.ts",
5083
- "line": 71
5183
+ "line": 72
5084
5184
  },
5085
5185
  "parameters": [
5086
5186
  {
@@ -5097,7 +5197,7 @@
5097
5197
  "kind": "class",
5098
5198
  "locationInModule": {
5099
5199
  "filename": "lib/cluster.ts",
5100
- "line": 17
5200
+ "line": 18
5101
5201
  },
5102
5202
  "name": "EngineVersion",
5103
5203
  "properties": [
@@ -5110,7 +5210,7 @@
5110
5210
  "immutable": true,
5111
5211
  "locationInModule": {
5112
5212
  "filename": "lib/cluster.ts",
5113
- "line": 21
5213
+ "line": 22
5114
5214
  },
5115
5215
  "name": "V1_0_1_0",
5116
5216
  "static": true,
@@ -5127,7 +5227,7 @@
5127
5227
  "immutable": true,
5128
5228
  "locationInModule": {
5129
5229
  "filename": "lib/cluster.ts",
5130
- "line": 25
5230
+ "line": 26
5131
5231
  },
5132
5232
  "name": "V1_0_1_1",
5133
5233
  "static": true,
@@ -5144,7 +5244,7 @@
5144
5244
  "immutable": true,
5145
5245
  "locationInModule": {
5146
5246
  "filename": "lib/cluster.ts",
5147
- "line": 29
5247
+ "line": 30
5148
5248
  },
5149
5249
  "name": "V1_0_1_2",
5150
5250
  "static": true,
@@ -5161,7 +5261,7 @@
5161
5261
  "immutable": true,
5162
5262
  "locationInModule": {
5163
5263
  "filename": "lib/cluster.ts",
5164
- "line": 33
5264
+ "line": 34
5165
5265
  },
5166
5266
  "name": "V1_0_2_1",
5167
5267
  "static": true,
@@ -5178,7 +5278,7 @@
5178
5278
  "immutable": true,
5179
5279
  "locationInModule": {
5180
5280
  "filename": "lib/cluster.ts",
5181
- "line": 37
5281
+ "line": 38
5182
5282
  },
5183
5283
  "name": "V1_0_2_2",
5184
5284
  "static": true,
@@ -5195,7 +5295,7 @@
5195
5295
  "immutable": true,
5196
5296
  "locationInModule": {
5197
5297
  "filename": "lib/cluster.ts",
5198
- "line": 41
5298
+ "line": 42
5199
5299
  },
5200
5300
  "name": "V1_0_3_0",
5201
5301
  "static": true,
@@ -5212,7 +5312,7 @@
5212
5312
  "immutable": true,
5213
5313
  "locationInModule": {
5214
5314
  "filename": "lib/cluster.ts",
5215
- "line": 45
5315
+ "line": 46
5216
5316
  },
5217
5317
  "name": "V1_0_4_0",
5218
5318
  "static": true,
@@ -5229,7 +5329,7 @@
5229
5329
  "immutable": true,
5230
5330
  "locationInModule": {
5231
5331
  "filename": "lib/cluster.ts",
5232
- "line": 49
5332
+ "line": 50
5233
5333
  },
5234
5334
  "name": "V1_0_4_1",
5235
5335
  "static": true,
@@ -5246,7 +5346,7 @@
5246
5346
  "immutable": true,
5247
5347
  "locationInModule": {
5248
5348
  "filename": "lib/cluster.ts",
5249
- "line": 53
5349
+ "line": 54
5250
5350
  },
5251
5351
  "name": "V1_0_5_0",
5252
5352
  "static": true,
@@ -5263,7 +5363,7 @@
5263
5363
  "immutable": true,
5264
5364
  "locationInModule": {
5265
5365
  "filename": "lib/cluster.ts",
5266
- "line": 57
5366
+ "line": 58
5267
5367
  },
5268
5368
  "name": "V1_1_0_0",
5269
5369
  "static": true,
@@ -5280,7 +5380,7 @@
5280
5380
  "immutable": true,
5281
5381
  "locationInModule": {
5282
5382
  "filename": "lib/cluster.ts",
5283
- "line": 61
5383
+ "line": 62
5284
5384
  },
5285
5385
  "name": "V1_1_1_0",
5286
5386
  "static": true,
@@ -5297,7 +5397,7 @@
5297
5397
  "immutable": true,
5298
5398
  "locationInModule": {
5299
5399
  "filename": "lib/cluster.ts",
5300
- "line": 65
5400
+ "line": 66
5301
5401
  },
5302
5402
  "name": "V1_2_0_0",
5303
5403
  "static": true,
@@ -5313,7 +5413,7 @@
5313
5413
  "immutable": true,
5314
5414
  "locationInModule": {
5315
5415
  "filename": "lib/cluster.ts",
5316
- "line": 71
5416
+ "line": 72
5317
5417
  },
5318
5418
  "name": "version",
5319
5419
  "type": {
@@ -5373,7 +5473,7 @@
5373
5473
  "kind": "interface",
5374
5474
  "locationInModule": {
5375
5475
  "filename": "lib/cluster.ts",
5376
- "line": 251
5476
+ "line": 300
5377
5477
  },
5378
5478
  "methods": [
5379
5479
  {
@@ -5385,7 +5485,7 @@
5385
5485
  },
5386
5486
  "locationInModule": {
5387
5487
  "filename": "lib/cluster.ts",
5388
- "line": 282
5488
+ "line": 331
5389
5489
  },
5390
5490
  "name": "grant",
5391
5491
  "parameters": [
@@ -5424,7 +5524,7 @@
5424
5524
  },
5425
5525
  "locationInModule": {
5426
5526
  "filename": "lib/cluster.ts",
5427
- "line": 287
5527
+ "line": 336
5428
5528
  },
5429
5529
  "name": "grantConnect",
5430
5530
  "parameters": [
@@ -5450,7 +5550,7 @@
5450
5550
  },
5451
5551
  "locationInModule": {
5452
5552
  "filename": "lib/cluster.ts",
5453
- "line": 295
5553
+ "line": 344
5454
5554
  },
5455
5555
  "name": "metric",
5456
5556
  "parameters": [
@@ -5489,7 +5589,7 @@
5489
5589
  "immutable": true,
5490
5590
  "locationInModule": {
5491
5591
  "filename": "lib/cluster.ts",
5492
- "line": 267
5592
+ "line": 316
5493
5593
  },
5494
5594
  "name": "clusterEndpoint",
5495
5595
  "type": {
@@ -5505,7 +5605,7 @@
5505
5605
  "immutable": true,
5506
5606
  "locationInModule": {
5507
5607
  "filename": "lib/cluster.ts",
5508
- "line": 255
5608
+ "line": 304
5509
5609
  },
5510
5610
  "name": "clusterIdentifier",
5511
5611
  "type": {
@@ -5524,7 +5624,7 @@
5524
5624
  "immutable": true,
5525
5625
  "locationInModule": {
5526
5626
  "filename": "lib/cluster.ts",
5527
- "line": 273
5627
+ "line": 322
5528
5628
  },
5529
5629
  "name": "clusterReadEndpoint",
5530
5630
  "type": {
@@ -5543,7 +5643,7 @@
5543
5643
  "immutable": true,
5544
5644
  "locationInModule": {
5545
5645
  "filename": "lib/cluster.ts",
5546
- "line": 261
5646
+ "line": 310
5547
5647
  },
5548
5648
  "name": "clusterResourceIdentifier",
5549
5649
  "type": {
@@ -6158,6 +6258,82 @@
6158
6258
  ],
6159
6259
  "symbolId": "lib/instance:InstanceType"
6160
6260
  },
6261
+ "@aws-cdk/aws-neptune-alpha.LogType": {
6262
+ "assembly": "@aws-cdk/aws-neptune-alpha",
6263
+ "docs": {
6264
+ "see": "https://docs.aws.amazon.com/neptune/latest/userguide/cloudwatch-logs.html",
6265
+ "stability": "experimental",
6266
+ "summary": "Neptune log types that can be exported to CloudWatch logs.",
6267
+ "example": "// Cluster parameter group with the neptune_enable_audit_log param set to 1\nconst clusterParameterGroup = new neptune.ClusterParameterGroup(this, 'ClusterParams', {\n description: 'Cluster parameter group',\n parameters: {\n neptune_enable_audit_log: '1'\n },\n});\n\nconst cluster = new neptune.DatabaseCluster(this, 'Database', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n // Audit logs are enabled via the clusterParameterGroup\n clusterParameterGroup,\n // Optionally configuring audit logs to be exported to CloudWatch Logs\n cloudwatchLogsExports: [neptune.LogType.AUDIT],\n // Optionally set a retention period on exported CloudWatch Logs\n cloudwatchLogsRetention: logs.RetentionDays.ONE_MONTH,\n});",
6268
+ "custom": {
6269
+ "exampleMetadata": "infused"
6270
+ }
6271
+ },
6272
+ "fqn": "@aws-cdk/aws-neptune-alpha.LogType",
6273
+ "initializer": {
6274
+ "docs": {
6275
+ "stability": "experimental",
6276
+ "summary": "Constructor for specifying a custom log type."
6277
+ },
6278
+ "locationInModule": {
6279
+ "filename": "lib/cluster.ts",
6280
+ "line": 92
6281
+ },
6282
+ "parameters": [
6283
+ {
6284
+ "docs": {
6285
+ "summary": "the log type."
6286
+ },
6287
+ "name": "value",
6288
+ "type": {
6289
+ "primitive": "string"
6290
+ }
6291
+ }
6292
+ ]
6293
+ },
6294
+ "kind": "class",
6295
+ "locationInModule": {
6296
+ "filename": "lib/cluster.ts",
6297
+ "line": 80
6298
+ },
6299
+ "name": "LogType",
6300
+ "properties": [
6301
+ {
6302
+ "const": true,
6303
+ "docs": {
6304
+ "see": "https://docs.aws.amazon.com/neptune/latest/userguide/auditing.html",
6305
+ "stability": "experimental",
6306
+ "summary": "Audit logs."
6307
+ },
6308
+ "immutable": true,
6309
+ "locationInModule": {
6310
+ "filename": "lib/cluster.ts",
6311
+ "line": 86
6312
+ },
6313
+ "name": "AUDIT",
6314
+ "static": true,
6315
+ "type": {
6316
+ "fqn": "@aws-cdk/aws-neptune-alpha.LogType"
6317
+ }
6318
+ },
6319
+ {
6320
+ "docs": {
6321
+ "stability": "experimental",
6322
+ "summary": "the log type."
6323
+ },
6324
+ "immutable": true,
6325
+ "locationInModule": {
6326
+ "filename": "lib/cluster.ts",
6327
+ "line": 92
6328
+ },
6329
+ "name": "value",
6330
+ "type": {
6331
+ "primitive": "string"
6332
+ }
6333
+ }
6334
+ ],
6335
+ "symbolId": "lib/cluster:LogType"
6336
+ },
6161
6337
  "@aws-cdk/aws-neptune-alpha.ParameterGroup": {
6162
6338
  "assembly": "@aws-cdk/aws-neptune-alpha",
6163
6339
  "base": "aws-cdk-lib.Resource",
@@ -6677,6 +6853,6 @@
6677
6853
  "symbolId": "lib/subnet-group:SubnetGroupProps"
6678
6854
  }
6679
6855
  },
6680
- "version": "2.44.0-alpha.0",
6856
+ "version": "2.45.0-alpha.0",
6681
6857
  "fingerprint": "**********"
6682
6858
  }