@aws-cdk/aws-neptune-alpha 2.118.0-alpha.0 → 2.120.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.118.0",
11
+ "aws-cdk-lib": "^2.120.0",
12
12
  "constructs": "^10.0.0"
13
13
  },
14
14
  "dependencyClosure": {
@@ -105,6 +105,19 @@
105
105
  }
106
106
  }
107
107
  },
108
+ "aws-cdk-lib.amzn_sdc": {
109
+ "targets": {
110
+ "dotnet": {
111
+ "package": "Amazon.CDK.AMZN.SDC"
112
+ },
113
+ "java": {
114
+ "package": "amzn.sdc"
115
+ },
116
+ "python": {
117
+ "module": "aws_cdk.amzn_sdc"
118
+ }
119
+ }
120
+ },
108
121
  "aws-cdk-lib.assertions": {
109
122
  "targets": {
110
123
  "dotnet": {
@@ -836,6 +849,19 @@
836
849
  }
837
850
  }
838
851
  },
852
+ "aws-cdk-lib.aws_codetest": {
853
+ "targets": {
854
+ "dotnet": {
855
+ "package": "Amazon.CDK.AWS.CodeTest"
856
+ },
857
+ "java": {
858
+ "package": "software.amazon.awscdk.services.codetest"
859
+ },
860
+ "python": {
861
+ "module": "aws_cdk.aws_codetest"
862
+ }
863
+ }
864
+ },
839
865
  "aws-cdk-lib.aws_cognito": {
840
866
  "targets": {
841
867
  "dotnet": {
@@ -3637,7 +3663,7 @@
3637
3663
  "stability": "experimental"
3638
3664
  },
3639
3665
  "homepage": "https://github.com/aws/aws-cdk",
3640
- "jsiiVersion": "5.2.41 (build 05fc426)",
3666
+ "jsiiVersion": "5.3.3 (build 720b620)",
3641
3667
  "keywords": [
3642
3668
  "aws",
3643
3669
  "cdk",
@@ -3658,7 +3684,7 @@
3658
3684
  },
3659
3685
  "name": "@aws-cdk/aws-neptune-alpha",
3660
3686
  "readme": {
3661
- "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-alpha` 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\n## Neptune Serverless\n\nYou can configure a Neptune Serverless cluster using the dedicated instance type along with the\n`serverlessScalingConfiguration` property.\n\n> Visit [Using Amazon Neptune Serverless](https://docs.aws.amazon.com/neptune/latest/userguide/neptune-serverless-using.html) for more details.\n\n```ts\nconst cluster = new neptune.DatabaseCluster(this, 'ServerlessDatabase', {\n vpc,\n instanceType: neptune.InstanceType.SERVERLESS,\n serverlessScalingConfiguration: {\n minCapacity: 1,\n maxCapacity: 5,\n },\n});\n```\n"
3687
+ "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-alpha` 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: To use the Neptune engine versions `1.2.0.0` or later, including the newly added `1.3` series, it's necessary to specify the appropriate `engineVersion` prop in `neptune.DatabaseCluster`. Additionally, for both 1.2 and 1.3 series, the corresponding `family` prop must be set to `ParameterGroupFamily.NEPTUNE_1_2` or `ParameterGroupFamily.NEPTUNE_1_3` respectively in `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\n## Neptune Serverless\n\nYou can configure a Neptune Serverless cluster using the dedicated instance type along with the\n`serverlessScalingConfiguration` property.\n\n> Visit [Using Amazon Neptune Serverless](https://docs.aws.amazon.com/neptune/latest/userguide/neptune-serverless-using.html) for more details.\n\n```ts\nconst cluster = new neptune.DatabaseCluster(this, 'ServerlessDatabase', {\n vpc,\n instanceType: neptune.InstanceType.SERVERLESS,\n serverlessScalingConfiguration: {\n minCapacity: 1,\n maxCapacity: 5,\n },\n});\n```\n"
3662
3688
  },
3663
3689
  "repository": {
3664
3690
  "directory": "packages/@aws-cdk/aws-neptune-alpha",
@@ -3715,7 +3741,7 @@
3715
3741
  },
3716
3742
  "locationInModule": {
3717
3743
  "filename": "lib/parameter-group.ts",
3718
- "line": 105
3744
+ "line": 109
3719
3745
  },
3720
3746
  "parameters": [
3721
3747
  {
@@ -3744,7 +3770,7 @@
3744
3770
  "kind": "class",
3745
3771
  "locationInModule": {
3746
3772
  "filename": "lib/parameter-group.ts",
3747
- "line": 89
3773
+ "line": 93
3748
3774
  },
3749
3775
  "methods": [
3750
3776
  {
@@ -3754,7 +3780,7 @@
3754
3780
  },
3755
3781
  "locationInModule": {
3756
3782
  "filename": "lib/parameter-group.ts",
3757
- "line": 93
3783
+ "line": 97
3758
3784
  },
3759
3785
  "name": "fromClusterParameterGroupName",
3760
3786
  "parameters": [
@@ -3795,7 +3821,7 @@
3795
3821
  "immutable": true,
3796
3822
  "locationInModule": {
3797
3823
  "filename": "lib/parameter-group.ts",
3798
- "line": 103
3824
+ "line": 107
3799
3825
  },
3800
3826
  "name": "clusterParameterGroupName",
3801
3827
  "overrides": "@aws-cdk/aws-neptune-alpha.IClusterParameterGroup",
@@ -3821,7 +3847,7 @@
3821
3847
  "kind": "interface",
3822
3848
  "locationInModule": {
3823
3849
  "filename": "lib/parameter-group.ts",
3824
- "line": 53
3850
+ "line": 57
3825
3851
  },
3826
3852
  "name": "ClusterParameterGroupProps",
3827
3853
  "properties": [
@@ -3834,7 +3860,7 @@
3834
3860
  "immutable": true,
3835
3861
  "locationInModule": {
3836
3862
  "filename": "lib/parameter-group.ts",
3837
- "line": 40
3863
+ "line": 44
3838
3864
  },
3839
3865
  "name": "parameters",
3840
3866
  "type": {
@@ -3856,7 +3882,7 @@
3856
3882
  "immutable": true,
3857
3883
  "locationInModule": {
3858
3884
  "filename": "lib/parameter-group.ts",
3859
- "line": 59
3885
+ "line": 63
3860
3886
  },
3861
3887
  "name": "clusterParameterGroupName",
3862
3888
  "optional": true,
@@ -3874,7 +3900,7 @@
3874
3900
  "immutable": true,
3875
3901
  "locationInModule": {
3876
3902
  "filename": "lib/parameter-group.ts",
3877
- "line": 35
3903
+ "line": 39
3878
3904
  },
3879
3905
  "name": "description",
3880
3906
  "optional": true,
@@ -3892,7 +3918,7 @@
3892
3918
  "immutable": true,
3893
3919
  "locationInModule": {
3894
3920
  "filename": "lib/parameter-group.ts",
3895
- "line": 47
3921
+ "line": 51
3896
3922
  },
3897
3923
  "name": "family",
3898
3924
  "optional": true,
@@ -3922,7 +3948,7 @@
3922
3948
  },
3923
3949
  "locationInModule": {
3924
3950
  "filename": "lib/cluster.ts",
3925
- "line": 549
3951
+ "line": 553
3926
3952
  },
3927
3953
  "parameters": [
3928
3954
  {
@@ -3951,7 +3977,7 @@
3951
3977
  "kind": "class",
3952
3978
  "locationInModule": {
3953
3979
  "filename": "lib/cluster.ts",
3954
- "line": 502
3980
+ "line": 506
3955
3981
  },
3956
3982
  "name": "DatabaseCluster",
3957
3983
  "properties": [
@@ -3964,7 +3990,7 @@
3964
3990
  "immutable": true,
3965
3991
  "locationInModule": {
3966
3992
  "filename": "lib/cluster.ts",
3967
- "line": 508
3993
+ "line": 512
3968
3994
  },
3969
3995
  "name": "DEFAULT_NUM_INSTANCES",
3970
3996
  "static": true,
@@ -3980,7 +4006,7 @@
3980
4006
  "immutable": true,
3981
4007
  "locationInModule": {
3982
4008
  "filename": "lib/cluster.ts",
3983
- "line": 511
4009
+ "line": 515
3984
4010
  },
3985
4011
  "name": "clusterEndpoint",
3986
4012
  "overrides": "@aws-cdk/aws-neptune-alpha.DatabaseClusterBase",
@@ -3996,7 +4022,7 @@
3996
4022
  "immutable": true,
3997
4023
  "locationInModule": {
3998
4024
  "filename": "lib/cluster.ts",
3999
- "line": 510
4025
+ "line": 514
4000
4026
  },
4001
4027
  "name": "clusterIdentifier",
4002
4028
  "overrides": "@aws-cdk/aws-neptune-alpha.DatabaseClusterBase",
@@ -4012,7 +4038,7 @@
4012
4038
  "immutable": true,
4013
4039
  "locationInModule": {
4014
4040
  "filename": "lib/cluster.ts",
4015
- "line": 512
4041
+ "line": 516
4016
4042
  },
4017
4043
  "name": "clusterReadEndpoint",
4018
4044
  "overrides": "@aws-cdk/aws-neptune-alpha.DatabaseClusterBase",
@@ -4032,7 +4058,7 @@
4032
4058
  "immutable": true,
4033
4059
  "locationInModule": {
4034
4060
  "filename": "lib/cluster.ts",
4035
- "line": 520
4061
+ "line": 524
4036
4062
  },
4037
4063
  "name": "clusterResourceIdentifier",
4038
4064
  "overrides": "@aws-cdk/aws-neptune-alpha.DatabaseClusterBase",
@@ -4048,7 +4074,7 @@
4048
4074
  "immutable": true,
4049
4075
  "locationInModule": {
4050
4076
  "filename": "lib/cluster.ts",
4051
- "line": 513
4077
+ "line": 517
4052
4078
  },
4053
4079
  "name": "connections",
4054
4080
  "overrides": "@aws-cdk/aws-neptune-alpha.DatabaseClusterBase",
@@ -4064,7 +4090,7 @@
4064
4090
  "immutable": true,
4065
4091
  "locationInModule": {
4066
4092
  "filename": "lib/cluster.ts",
4067
- "line": 545
4093
+ "line": 549
4068
4094
  },
4069
4095
  "name": "instanceEndpoints",
4070
4096
  "type": {
@@ -4084,7 +4110,7 @@
4084
4110
  "immutable": true,
4085
4111
  "locationInModule": {
4086
4112
  "filename": "lib/cluster.ts",
4087
- "line": 540
4113
+ "line": 544
4088
4114
  },
4089
4115
  "name": "instanceIdentifiers",
4090
4116
  "type": {
@@ -4104,7 +4130,7 @@
4104
4130
  "immutable": true,
4105
4131
  "locationInModule": {
4106
4132
  "filename": "lib/cluster.ts",
4107
- "line": 535
4133
+ "line": 539
4108
4134
  },
4109
4135
  "name": "subnetGroup",
4110
4136
  "type": {
@@ -4119,7 +4145,7 @@
4119
4145
  "immutable": true,
4120
4146
  "locationInModule": {
4121
4147
  "filename": "lib/cluster.ts",
4122
- "line": 525
4148
+ "line": 529
4123
4149
  },
4124
4150
  "name": "vpc",
4125
4151
  "type": {
@@ -4134,7 +4160,7 @@
4134
4160
  "immutable": true,
4135
4161
  "locationInModule": {
4136
4162
  "filename": "lib/cluster.ts",
4137
- "line": 530
4163
+ "line": 534
4138
4164
  },
4139
4165
  "name": "vpcSubnets",
4140
4166
  "type": {
@@ -4147,7 +4173,7 @@
4147
4173
  },
4148
4174
  "locationInModule": {
4149
4175
  "filename": "lib/cluster.ts",
4150
- "line": 547
4176
+ "line": 551
4151
4177
  },
4152
4178
  "name": "enableIamAuthentication",
4153
4179
  "optional": true,
@@ -4175,7 +4201,7 @@
4175
4201
  "kind": "interface",
4176
4202
  "locationInModule": {
4177
4203
  "filename": "lib/cluster.ts",
4178
- "line": 375
4204
+ "line": 379
4179
4205
  },
4180
4206
  "name": "DatabaseClusterAttributes",
4181
4207
  "properties": [
@@ -4188,7 +4214,7 @@
4188
4214
  "immutable": true,
4189
4215
  "locationInModule": {
4190
4216
  "filename": "lib/cluster.ts",
4191
- "line": 399
4217
+ "line": 403
4192
4218
  },
4193
4219
  "name": "clusterEndpointAddress",
4194
4220
  "type": {
@@ -4204,7 +4230,7 @@
4204
4230
  "immutable": true,
4205
4231
  "locationInModule": {
4206
4232
  "filename": "lib/cluster.ts",
4207
- "line": 389
4233
+ "line": 393
4208
4234
  },
4209
4235
  "name": "clusterIdentifier",
4210
4236
  "type": {
@@ -4220,7 +4246,7 @@
4220
4246
  "immutable": true,
4221
4247
  "locationInModule": {
4222
4248
  "filename": "lib/cluster.ts",
4223
- "line": 394
4249
+ "line": 398
4224
4250
  },
4225
4251
  "name": "clusterResourceIdentifier",
4226
4252
  "type": {
@@ -4236,7 +4262,7 @@
4236
4262
  "immutable": true,
4237
4263
  "locationInModule": {
4238
4264
  "filename": "lib/cluster.ts",
4239
- "line": 379
4265
+ "line": 383
4240
4266
  },
4241
4267
  "name": "port",
4242
4268
  "type": {
@@ -4252,7 +4278,7 @@
4252
4278
  "immutable": true,
4253
4279
  "locationInModule": {
4254
4280
  "filename": "lib/cluster.ts",
4255
- "line": 404
4281
+ "line": 408
4256
4282
  },
4257
4283
  "name": "readerEndpointAddress",
4258
4284
  "type": {
@@ -4268,7 +4294,7 @@
4268
4294
  "immutable": true,
4269
4295
  "locationInModule": {
4270
4296
  "filename": "lib/cluster.ts",
4271
- "line": 384
4297
+ "line": 388
4272
4298
  },
4273
4299
  "name": "securityGroup",
4274
4300
  "type": {
@@ -4327,7 +4353,7 @@
4327
4353
  "kind": "class",
4328
4354
  "locationInModule": {
4329
4355
  "filename": "lib/cluster.ts",
4330
- "line": 410
4356
+ "line": 414
4331
4357
  },
4332
4358
  "methods": [
4333
4359
  {
@@ -4337,7 +4363,7 @@
4337
4363
  },
4338
4364
  "locationInModule": {
4339
4365
  "filename": "lib/cluster.ts",
4340
- "line": 415
4366
+ "line": 419
4341
4367
  },
4342
4368
  "name": "fromDatabaseClusterAttributes",
4343
4369
  "parameters": [
@@ -4374,7 +4400,7 @@
4374
4400
  },
4375
4401
  "locationInModule": {
4376
4402
  "filename": "lib/cluster.ts",
4377
- "line": 459
4403
+ "line": 463
4378
4404
  },
4379
4405
  "name": "grant",
4380
4406
  "overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
@@ -4407,7 +4433,7 @@
4407
4433
  },
4408
4434
  "locationInModule": {
4409
4435
  "filename": "lib/cluster.ts",
4410
- "line": 481
4436
+ "line": 485
4411
4437
  },
4412
4438
  "name": "grantConnect",
4413
4439
  "overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
@@ -4432,7 +4458,7 @@
4432
4458
  },
4433
4459
  "locationInModule": {
4434
4460
  "filename": "lib/cluster.ts",
4435
- "line": 485
4461
+ "line": 489
4436
4462
  },
4437
4463
  "name": "metric",
4438
4464
  "overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
@@ -4469,7 +4495,7 @@
4469
4495
  "immutable": true,
4470
4496
  "locationInModule": {
4471
4497
  "filename": "lib/cluster.ts",
4472
- "line": 445
4498
+ "line": 449
4473
4499
  },
4474
4500
  "name": "clusterEndpoint",
4475
4501
  "overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
@@ -4486,7 +4512,7 @@
4486
4512
  "immutable": true,
4487
4513
  "locationInModule": {
4488
4514
  "filename": "lib/cluster.ts",
4489
- "line": 435
4515
+ "line": 439
4490
4516
  },
4491
4517
  "name": "clusterIdentifier",
4492
4518
  "overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
@@ -4503,7 +4529,7 @@
4503
4529
  "immutable": true,
4504
4530
  "locationInModule": {
4505
4531
  "filename": "lib/cluster.ts",
4506
- "line": 450
4532
+ "line": 454
4507
4533
  },
4508
4534
  "name": "clusterReadEndpoint",
4509
4535
  "overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
@@ -4520,7 +4546,7 @@
4520
4546
  "immutable": true,
4521
4547
  "locationInModule": {
4522
4548
  "filename": "lib/cluster.ts",
4523
- "line": 440
4549
+ "line": 444
4524
4550
  },
4525
4551
  "name": "clusterResourceIdentifier",
4526
4552
  "overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
@@ -4537,7 +4563,7 @@
4537
4563
  "immutable": true,
4538
4564
  "locationInModule": {
4539
4565
  "filename": "lib/cluster.ts",
4540
- "line": 455
4566
+ "line": 459
4541
4567
  },
4542
4568
  "name": "connections",
4543
4569
  "overrides": "aws-cdk-lib.aws_ec2.IConnectable",
@@ -4552,7 +4578,7 @@
4552
4578
  },
4553
4579
  "locationInModule": {
4554
4580
  "filename": "lib/cluster.ts",
4555
- "line": 457
4581
+ "line": 461
4556
4582
  },
4557
4583
  "name": "enableIamAuthentication",
4558
4584
  "optional": true,
@@ -4579,7 +4605,7 @@
4579
4605
  "kind": "interface",
4580
4606
  "locationInModule": {
4581
4607
  "filename": "lib/cluster.ts",
4582
- "line": 122
4608
+ "line": 126
4583
4609
  },
4584
4610
  "name": "DatabaseClusterProps",
4585
4611
  "properties": [
@@ -4592,7 +4618,7 @@
4592
4618
  "immutable": true,
4593
4619
  "locationInModule": {
4594
4620
  "filename": "lib/cluster.ts",
4595
- "line": 197
4621
+ "line": 201
4596
4622
  },
4597
4623
  "name": "instanceType",
4598
4624
  "type": {
@@ -4609,7 +4635,7 @@
4609
4635
  "immutable": true,
4610
4636
  "locationInModule": {
4611
4637
  "filename": "lib/cluster.ts",
4612
- "line": 251
4638
+ "line": 255
4613
4639
  },
4614
4640
  "name": "vpc",
4615
4641
  "type": {
@@ -4626,7 +4652,7 @@
4626
4652
  "immutable": true,
4627
4653
  "locationInModule": {
4628
4654
  "filename": "lib/cluster.ts",
4629
- "line": 204
4655
+ "line": 208
4630
4656
  },
4631
4657
  "name": "associatedRoles",
4632
4658
  "optional": true,
@@ -4649,7 +4675,7 @@
4649
4675
  "immutable": true,
4650
4676
  "locationInModule": {
4651
4677
  "filename": "lib/cluster.ts",
4652
- "line": 283
4678
+ "line": 287
4653
4679
  },
4654
4680
  "name": "autoMinorVersionUpgrade",
4655
4681
  "optional": true,
@@ -4667,7 +4693,7 @@
4667
4693
  "immutable": true,
4668
4694
  "locationInModule": {
4669
4695
  "filename": "lib/cluster.ts",
4670
- "line": 135
4696
+ "line": 139
4671
4697
  },
4672
4698
  "name": "backupRetention",
4673
4699
  "optional": true,
@@ -4686,7 +4712,7 @@
4686
4712
  "immutable": true,
4687
4713
  "locationInModule": {
4688
4714
  "filename": "lib/cluster.ts",
4689
- "line": 294
4715
+ "line": 298
4690
4716
  },
4691
4717
  "name": "cloudwatchLogsExports",
4692
4718
  "optional": true,
@@ -4710,7 +4736,7 @@
4710
4736
  "immutable": true,
4711
4737
  "locationInModule": {
4712
4738
  "filename": "lib/cluster.ts",
4713
- "line": 303
4739
+ "line": 307
4714
4740
  },
4715
4741
  "name": "cloudwatchLogsRetention",
4716
4742
  "optional": true,
@@ -4728,7 +4754,7 @@
4728
4754
  "immutable": true,
4729
4755
  "locationInModule": {
4730
4756
  "filename": "lib/cluster.ts",
4731
- "line": 311
4757
+ "line": 315
4732
4758
  },
4733
4759
  "name": "cloudwatchLogsRetentionRole",
4734
4760
  "optional": true,
@@ -4746,7 +4772,7 @@
4746
4772
  "immutable": true,
4747
4773
  "locationInModule": {
4748
4774
  "filename": "lib/cluster.ts",
4749
- "line": 230
4775
+ "line": 234
4750
4776
  },
4751
4777
  "name": "clusterParameterGroup",
4752
4778
  "optional": true,
@@ -4764,7 +4790,7 @@
4764
4790
  "immutable": true,
4765
4791
  "locationInModule": {
4766
4792
  "filename": "lib/cluster.ts",
4767
- "line": 175
4793
+ "line": 179
4768
4794
  },
4769
4795
  "name": "dbClusterName",
4770
4796
  "optional": true,
@@ -4782,7 +4808,7 @@
4782
4808
  "immutable": true,
4783
4809
  "locationInModule": {
4784
4810
  "filename": "lib/cluster.ts",
4785
- "line": 211
4811
+ "line": 215
4786
4812
  },
4787
4813
  "name": "deletionProtection",
4788
4814
  "optional": true,
@@ -4800,7 +4826,7 @@
4800
4826
  "immutable": true,
4801
4827
  "locationInModule": {
4802
4828
  "filename": "lib/cluster.ts",
4803
- "line": 128
4829
+ "line": 132
4804
4830
  },
4805
4831
  "name": "engineVersion",
4806
4832
  "optional": true,
@@ -4818,7 +4844,7 @@
4818
4844
  "immutable": true,
4819
4845
  "locationInModule": {
4820
4846
  "filename": "lib/cluster.ts",
4821
- "line": 182
4847
+ "line": 186
4822
4848
  },
4823
4849
  "name": "iamAuthentication",
4824
4850
  "optional": true,
@@ -4837,7 +4863,7 @@
4837
4863
  "immutable": true,
4838
4864
  "locationInModule": {
4839
4865
  "filename": "lib/cluster.ts",
4840
- "line": 192
4866
+ "line": 196
4841
4867
  },
4842
4868
  "name": "instanceIdentifierBase",
4843
4869
  "optional": true,
@@ -4855,7 +4881,7 @@
4855
4881
  "immutable": true,
4856
4882
  "locationInModule": {
4857
4883
  "filename": "lib/cluster.ts",
4858
- "line": 168
4884
+ "line": 172
4859
4885
  },
4860
4886
  "name": "instances",
4861
4887
  "optional": true,
@@ -4873,7 +4899,7 @@
4873
4899
  "immutable": true,
4874
4900
  "locationInModule": {
4875
4901
  "filename": "lib/cluster.ts",
4876
- "line": 154
4902
+ "line": 158
4877
4903
  },
4878
4904
  "name": "kmsKey",
4879
4905
  "optional": true,
@@ -4891,7 +4917,7 @@
4891
4917
  "immutable": true,
4892
4918
  "locationInModule": {
4893
4919
  "filename": "lib/cluster.ts",
4894
- "line": 237
4920
+ "line": 241
4895
4921
  },
4896
4922
  "name": "parameterGroup",
4897
4923
  "optional": true,
@@ -4910,7 +4936,7 @@
4910
4936
  "immutable": true,
4911
4937
  "locationInModule": {
4912
4938
  "filename": "lib/cluster.ts",
4913
- "line": 147
4939
+ "line": 151
4914
4940
  },
4915
4941
  "name": "preferredBackupWindow",
4916
4942
  "optional": true,
@@ -4929,7 +4955,7 @@
4929
4955
  "immutable": true,
4930
4956
  "locationInModule": {
4931
4957
  "filename": "lib/cluster.ts",
4932
- "line": 223
4958
+ "line": 227
4933
4959
  },
4934
4960
  "name": "preferredMaintenanceWindow",
4935
4961
  "optional": true,
@@ -4948,7 +4974,7 @@
4948
4974
  "immutable": true,
4949
4975
  "locationInModule": {
4950
4976
  "filename": "lib/cluster.ts",
4951
- "line": 275
4977
+ "line": 279
4952
4978
  },
4953
4979
  "name": "removalPolicy",
4954
4980
  "optional": true,
@@ -4966,7 +4992,7 @@
4966
4992
  "immutable": true,
4967
4993
  "locationInModule": {
4968
4994
  "filename": "lib/cluster.ts",
4969
- "line": 265
4995
+ "line": 269
4970
4996
  },
4971
4997
  "name": "securityGroups",
4972
4998
  "optional": true,
@@ -4990,7 +5016,7 @@
4990
5016
  "immutable": true,
4991
5017
  "locationInModule": {
4992
5018
  "filename": "lib/cluster.ts",
4993
- "line": 319
5019
+ "line": 323
4994
5020
  },
4995
5021
  "name": "serverlessScalingConfiguration",
4996
5022
  "optional": true,
@@ -5008,7 +5034,7 @@
5008
5034
  "immutable": true,
5009
5035
  "locationInModule": {
5010
5036
  "filename": "lib/cluster.ts",
5011
- "line": 161
5037
+ "line": 165
5012
5038
  },
5013
5039
  "name": "storageEncrypted",
5014
5040
  "optional": true,
@@ -5026,7 +5052,7 @@
5026
5052
  "immutable": true,
5027
5053
  "locationInModule": {
5028
5054
  "filename": "lib/cluster.ts",
5029
- "line": 244
5055
+ "line": 248
5030
5056
  },
5031
5057
  "name": "subnetGroup",
5032
5058
  "optional": true,
@@ -5044,7 +5070,7 @@
5044
5070
  "immutable": true,
5045
5071
  "locationInModule": {
5046
5072
  "filename": "lib/cluster.ts",
5047
- "line": 258
5073
+ "line": 262
5048
5074
  },
5049
5075
  "name": "vpcSubnets",
5050
5076
  "optional": true,
@@ -5716,7 +5742,7 @@
5716
5742
  },
5717
5743
  "locationInModule": {
5718
5744
  "filename": "lib/cluster.ts",
5719
- "line": 84
5745
+ "line": 88
5720
5746
  },
5721
5747
  "parameters": [
5722
5748
  {
@@ -5992,6 +6018,23 @@
5992
6018
  "fqn": "@aws-cdk/aws-neptune-alpha.EngineVersion"
5993
6019
  }
5994
6020
  },
6021
+ {
6022
+ "const": true,
6023
+ "docs": {
6024
+ "stability": "experimental",
6025
+ "summary": "Neptune engine version 1.3.0.0."
6026
+ },
6027
+ "immutable": true,
6028
+ "locationInModule": {
6029
+ "filename": "lib/cluster.ts",
6030
+ "line": 82
6031
+ },
6032
+ "name": "V1_3_0_0",
6033
+ "static": true,
6034
+ "type": {
6035
+ "fqn": "@aws-cdk/aws-neptune-alpha.EngineVersion"
6036
+ }
6037
+ },
5995
6038
  {
5996
6039
  "docs": {
5997
6040
  "stability": "experimental",
@@ -6000,7 +6043,7 @@
6000
6043
  "immutable": true,
6001
6044
  "locationInModule": {
6002
6045
  "filename": "lib/cluster.ts",
6003
- "line": 84
6046
+ "line": 88
6004
6047
  },
6005
6048
  "name": "version",
6006
6049
  "type": {
@@ -6023,7 +6066,7 @@
6023
6066
  "kind": "interface",
6024
6067
  "locationInModule": {
6025
6068
  "filename": "lib/parameter-group.ts",
6026
- "line": 77
6069
+ "line": 81
6027
6070
  },
6028
6071
  "name": "IClusterParameterGroup",
6029
6072
  "properties": [
@@ -6036,7 +6079,7 @@
6036
6079
  "immutable": true,
6037
6080
  "locationInModule": {
6038
6081
  "filename": "lib/parameter-group.ts",
6039
- "line": 81
6082
+ "line": 85
6040
6083
  },
6041
6084
  "name": "clusterParameterGroupName",
6042
6085
  "type": {
@@ -6060,7 +6103,7 @@
6060
6103
  "kind": "interface",
6061
6104
  "locationInModule": {
6062
6105
  "filename": "lib/cluster.ts",
6063
- "line": 325
6106
+ "line": 329
6064
6107
  },
6065
6108
  "methods": [
6066
6109
  {
@@ -6072,7 +6115,7 @@
6072
6115
  },
6073
6116
  "locationInModule": {
6074
6117
  "filename": "lib/cluster.ts",
6075
- "line": 356
6118
+ "line": 360
6076
6119
  },
6077
6120
  "name": "grant",
6078
6121
  "parameters": [
@@ -6111,7 +6154,7 @@
6111
6154
  },
6112
6155
  "locationInModule": {
6113
6156
  "filename": "lib/cluster.ts",
6114
- "line": 361
6157
+ "line": 365
6115
6158
  },
6116
6159
  "name": "grantConnect",
6117
6160
  "parameters": [
@@ -6137,7 +6180,7 @@
6137
6180
  },
6138
6181
  "locationInModule": {
6139
6182
  "filename": "lib/cluster.ts",
6140
- "line": 369
6183
+ "line": 373
6141
6184
  },
6142
6185
  "name": "metric",
6143
6186
  "parameters": [
@@ -6176,7 +6219,7 @@
6176
6219
  "immutable": true,
6177
6220
  "locationInModule": {
6178
6221
  "filename": "lib/cluster.ts",
6179
- "line": 341
6222
+ "line": 345
6180
6223
  },
6181
6224
  "name": "clusterEndpoint",
6182
6225
  "type": {
@@ -6192,7 +6235,7 @@
6192
6235
  "immutable": true,
6193
6236
  "locationInModule": {
6194
6237
  "filename": "lib/cluster.ts",
6195
- "line": 329
6238
+ "line": 333
6196
6239
  },
6197
6240
  "name": "clusterIdentifier",
6198
6241
  "type": {
@@ -6211,7 +6254,7 @@
6211
6254
  "immutable": true,
6212
6255
  "locationInModule": {
6213
6256
  "filename": "lib/cluster.ts",
6214
- "line": 347
6257
+ "line": 351
6215
6258
  },
6216
6259
  "name": "clusterReadEndpoint",
6217
6260
  "type": {
@@ -6230,7 +6273,7 @@
6230
6273
  "immutable": true,
6231
6274
  "locationInModule": {
6232
6275
  "filename": "lib/cluster.ts",
6233
- "line": 335
6276
+ "line": 339
6234
6277
  },
6235
6278
  "name": "clusterResourceIdentifier",
6236
6279
  "type": {
@@ -6378,7 +6421,7 @@
6378
6421
  "kind": "interface",
6379
6422
  "locationInModule": {
6380
6423
  "filename": "lib/parameter-group.ts",
6381
- "line": 122
6424
+ "line": 126
6382
6425
  },
6383
6426
  "name": "IParameterGroup",
6384
6427
  "properties": [
@@ -6391,7 +6434,7 @@
6391
6434
  "immutable": true,
6392
6435
  "locationInModule": {
6393
6436
  "filename": "lib/parameter-group.ts",
6394
- "line": 126
6437
+ "line": 130
6395
6438
  },
6396
6439
  "name": "parameterGroupName",
6397
6440
  "type": {
@@ -6881,7 +6924,7 @@
6881
6924
  },
6882
6925
  "locationInModule": {
6883
6926
  "filename": "lib/cluster.ts",
6884
- "line": 104
6927
+ "line": 108
6885
6928
  },
6886
6929
  "parameters": [
6887
6930
  {
@@ -6898,7 +6941,7 @@
6898
6941
  "kind": "class",
6899
6942
  "locationInModule": {
6900
6943
  "filename": "lib/cluster.ts",
6901
- "line": 92
6944
+ "line": 96
6902
6945
  },
6903
6946
  "name": "LogType",
6904
6947
  "properties": [
@@ -6912,7 +6955,7 @@
6912
6955
  "immutable": true,
6913
6956
  "locationInModule": {
6914
6957
  "filename": "lib/cluster.ts",
6915
- "line": 98
6958
+ "line": 102
6916
6959
  },
6917
6960
  "name": "AUDIT",
6918
6961
  "static": true,
@@ -6928,7 +6971,7 @@
6928
6971
  "immutable": true,
6929
6972
  "locationInModule": {
6930
6973
  "filename": "lib/cluster.ts",
6931
- "line": 104
6974
+ "line": 108
6932
6975
  },
6933
6976
  "name": "value",
6934
6977
  "type": {
@@ -6957,7 +7000,7 @@
6957
7000
  },
6958
7001
  "locationInModule": {
6959
7002
  "filename": "lib/parameter-group.ts",
6960
- "line": 150
7003
+ "line": 154
6961
7004
  },
6962
7005
  "parameters": [
6963
7006
  {
@@ -6986,7 +7029,7 @@
6986
7029
  "kind": "class",
6987
7030
  "locationInModule": {
6988
7031
  "filename": "lib/parameter-group.ts",
6989
- "line": 134
7032
+ "line": 138
6990
7033
  },
6991
7034
  "methods": [
6992
7035
  {
@@ -6996,7 +7039,7 @@
6996
7039
  },
6997
7040
  "locationInModule": {
6998
7041
  "filename": "lib/parameter-group.ts",
6999
- "line": 138
7042
+ "line": 142
7000
7043
  },
7001
7044
  "name": "fromParameterGroupName",
7002
7045
  "parameters": [
@@ -7037,7 +7080,7 @@
7037
7080
  "immutable": true,
7038
7081
  "locationInModule": {
7039
7082
  "filename": "lib/parameter-group.ts",
7040
- "line": 148
7083
+ "line": 152
7041
7084
  },
7042
7085
  "name": "parameterGroupName",
7043
7086
  "overrides": "@aws-cdk/aws-neptune-alpha.IParameterGroup",
@@ -7053,7 +7096,7 @@
7053
7096
  "docs": {
7054
7097
  "stability": "experimental",
7055
7098
  "summary": "The DB parameter group family that a DB parameter group is compatible with.",
7056
- "example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as neptune_alpha from '@aws-cdk/aws-neptune-alpha';\nconst parameterGroupFamily = new neptune_alpha.ParameterGroupFamily('family');",
7099
+ "example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as neptune_alpha from '@aws-cdk/aws-neptune-alpha';\nconst parameterGroupFamily = neptune_alpha.ParameterGroupFamily.NEPTUNE_1;",
7057
7100
  "custom": {
7058
7101
  "exampleMetadata": "fixture=_generated"
7059
7102
  }
@@ -7066,7 +7109,7 @@
7066
7109
  },
7067
7110
  "locationInModule": {
7068
7111
  "filename": "lib/parameter-group.ts",
7069
- "line": 23
7112
+ "line": 27
7070
7113
  },
7071
7114
  "parameters": [
7072
7115
  {
@@ -7121,6 +7164,23 @@
7121
7164
  "fqn": "@aws-cdk/aws-neptune-alpha.ParameterGroupFamily"
7122
7165
  }
7123
7166
  },
7167
+ {
7168
+ "const": true,
7169
+ "docs": {
7170
+ "stability": "experimental",
7171
+ "summary": "Family used by Neptune engine versions 1.3.0.0 and later."
7172
+ },
7173
+ "immutable": true,
7174
+ "locationInModule": {
7175
+ "filename": "lib/parameter-group.ts",
7176
+ "line": 21
7177
+ },
7178
+ "name": "NEPTUNE_1_3",
7179
+ "static": true,
7180
+ "type": {
7181
+ "fqn": "@aws-cdk/aws-neptune-alpha.ParameterGroupFamily"
7182
+ }
7183
+ },
7124
7184
  {
7125
7185
  "docs": {
7126
7186
  "stability": "experimental",
@@ -7129,7 +7189,7 @@
7129
7189
  "immutable": true,
7130
7190
  "locationInModule": {
7131
7191
  "filename": "lib/parameter-group.ts",
7132
- "line": 23
7192
+ "line": 27
7133
7193
  },
7134
7194
  "name": "family",
7135
7195
  "type": {
@@ -7154,7 +7214,7 @@
7154
7214
  "kind": "interface",
7155
7215
  "locationInModule": {
7156
7216
  "filename": "lib/parameter-group.ts",
7157
- "line": 65
7217
+ "line": 69
7158
7218
  },
7159
7219
  "name": "ParameterGroupProps",
7160
7220
  "properties": [
@@ -7167,7 +7227,7 @@
7167
7227
  "immutable": true,
7168
7228
  "locationInModule": {
7169
7229
  "filename": "lib/parameter-group.ts",
7170
- "line": 40
7230
+ "line": 44
7171
7231
  },
7172
7232
  "name": "parameters",
7173
7233
  "type": {
@@ -7189,7 +7249,7 @@
7189
7249
  "immutable": true,
7190
7250
  "locationInModule": {
7191
7251
  "filename": "lib/parameter-group.ts",
7192
- "line": 35
7252
+ "line": 39
7193
7253
  },
7194
7254
  "name": "description",
7195
7255
  "optional": true,
@@ -7207,7 +7267,7 @@
7207
7267
  "immutable": true,
7208
7268
  "locationInModule": {
7209
7269
  "filename": "lib/parameter-group.ts",
7210
- "line": 47
7270
+ "line": 51
7211
7271
  },
7212
7272
  "name": "family",
7213
7273
  "optional": true,
@@ -7225,7 +7285,7 @@
7225
7285
  "immutable": true,
7226
7286
  "locationInModule": {
7227
7287
  "filename": "lib/parameter-group.ts",
7228
- "line": 71
7288
+ "line": 75
7229
7289
  },
7230
7290
  "name": "parameterGroupName",
7231
7291
  "optional": true,
@@ -7250,7 +7310,7 @@
7250
7310
  "kind": "interface",
7251
7311
  "locationInModule": {
7252
7312
  "filename": "lib/cluster.ts",
7253
- "line": 107
7313
+ "line": 111
7254
7314
  },
7255
7315
  "name": "ServerlessScalingConfiguration",
7256
7316
  "properties": [
@@ -7263,7 +7323,7 @@
7263
7323
  "immutable": true,
7264
7324
  "locationInModule": {
7265
7325
  "filename": "lib/cluster.ts",
7266
- "line": 116
7326
+ "line": 120
7267
7327
  },
7268
7328
  "name": "maxCapacity",
7269
7329
  "type": {
@@ -7279,7 +7339,7 @@
7279
7339
  "immutable": true,
7280
7340
  "locationInModule": {
7281
7341
  "filename": "lib/cluster.ts",
7282
- "line": 111
7342
+ "line": 115
7283
7343
  },
7284
7344
  "name": "minCapacity",
7285
7345
  "type": {
@@ -7510,6 +7570,6 @@
7510
7570
  "symbolId": "lib/subnet-group:SubnetGroupProps"
7511
7571
  }
7512
7572
  },
7513
- "version": "2.118.0-alpha.0",
7573
+ "version": "2.120.0-alpha.0",
7514
7574
  "fingerprint": "**********"
7515
7575
  }