@aws-cdk/aws-neptune-alpha 2.189.1-alpha.0 → 2.191.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 +223 -104
- package/.jsii.tabl.json.gz +0 -0
- package/README.md +1 -1
- package/lib/cluster.d.ts +24 -0
- package/lib/cluster.js +29 -5
- package/lib/endpoint.js +1 -1
- package/lib/instance.js +3 -3
- package/lib/parameter-group.d.ts +4 -0
- package/lib/parameter-group.js +8 -4
- package/lib/subnet-group.js +1 -1
- package/package.json +6 -6
package/.jsii
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"url": "https://aws.amazon.com"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"aws-cdk-lib": "^2.
|
|
11
|
+
"aws-cdk-lib": "^2.191.0",
|
|
12
12
|
"constructs": "^10.0.0"
|
|
13
13
|
},
|
|
14
14
|
"dependencyClosure": {
|
|
@@ -3973,7 +3973,7 @@
|
|
|
3973
3973
|
},
|
|
3974
3974
|
"name": "@aws-cdk/aws-neptune-alpha",
|
|
3975
3975
|
"readme": {
|
|
3976
|
-
"markdown": "# Amazon Neptune Construct Library\n<!--BEGIN STABILITY BANNER-->\n\n---\n\n\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.
|
|
3976
|
+
"markdown": "# Amazon Neptune Construct Library\n<!--BEGIN STABILITY BANNER-->\n\n---\n\n\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.4` series, it's necessary to specify the appropriate `engineVersion` prop in `neptune.DatabaseCluster`. Additionally, for both 1.2, 1.3 and 1.4 series, the corresponding `family` prop must be set to `ParameterGroupFamily.NEPTUNE_1_2`, `ParameterGroupFamily.NEPTUNE_1_3` or `ParameterGroupFamily.NEPTUNE_1_4` 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\nYou can also specify `autoMinorVersionUpgrade` to a database instance.\nEven within the same cluster, you can modify the `autoMinorVersionUpgrade` setting on a per-instance basis.\n\n```ts fixture=with-cluster\nnew neptune.DatabaseInstance(this, 'Instance', {\n cluster,\n instanceType: neptune.InstanceType.R5_LARGE,\n autoMinorVersionUpgrade: true,\n});\n```\n\n## Port\n\nBy default, Neptune uses port `8182`. You can override the default port by specifying the `port` property:\n\n```ts\nconst cluster = new neptune.DatabaseCluster(this, 'Database', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n port: 12345,\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## Copy tags to snapshot\n\nBy setting `copyTagsToSnapshot` to true, all tags of the cluster are copied to the snapshots when they are created.\n\n```ts\nconst cluster = new neptune.DatabaseCluster(this, 'Database', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n copyTagsToSnapshot: true // whether to save the cluster tags when creating the snapshot.\n});\n```\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"
|
|
3977
3977
|
},
|
|
3978
3978
|
"repository": {
|
|
3979
3979
|
"directory": "packages/@aws-cdk/aws-neptune-alpha",
|
|
@@ -4030,7 +4030,7 @@
|
|
|
4030
4030
|
},
|
|
4031
4031
|
"locationInModule": {
|
|
4032
4032
|
"filename": "lib/parameter-group.ts",
|
|
4033
|
-
"line":
|
|
4033
|
+
"line": 113
|
|
4034
4034
|
},
|
|
4035
4035
|
"parameters": [
|
|
4036
4036
|
{
|
|
@@ -4059,7 +4059,7 @@
|
|
|
4059
4059
|
"kind": "class",
|
|
4060
4060
|
"locationInModule": {
|
|
4061
4061
|
"filename": "lib/parameter-group.ts",
|
|
4062
|
-
"line":
|
|
4062
|
+
"line": 97
|
|
4063
4063
|
},
|
|
4064
4064
|
"methods": [
|
|
4065
4065
|
{
|
|
@@ -4069,7 +4069,7 @@
|
|
|
4069
4069
|
},
|
|
4070
4070
|
"locationInModule": {
|
|
4071
4071
|
"filename": "lib/parameter-group.ts",
|
|
4072
|
-
"line":
|
|
4072
|
+
"line": 101
|
|
4073
4073
|
},
|
|
4074
4074
|
"name": "fromClusterParameterGroupName",
|
|
4075
4075
|
"parameters": [
|
|
@@ -4110,7 +4110,7 @@
|
|
|
4110
4110
|
"immutable": true,
|
|
4111
4111
|
"locationInModule": {
|
|
4112
4112
|
"filename": "lib/parameter-group.ts",
|
|
4113
|
-
"line":
|
|
4113
|
+
"line": 111
|
|
4114
4114
|
},
|
|
4115
4115
|
"name": "clusterParameterGroupName",
|
|
4116
4116
|
"overrides": "@aws-cdk/aws-neptune-alpha.IClusterParameterGroup",
|
|
@@ -4136,7 +4136,7 @@
|
|
|
4136
4136
|
"kind": "interface",
|
|
4137
4137
|
"locationInModule": {
|
|
4138
4138
|
"filename": "lib/parameter-group.ts",
|
|
4139
|
-
"line":
|
|
4139
|
+
"line": 61
|
|
4140
4140
|
},
|
|
4141
4141
|
"name": "ClusterParameterGroupProps",
|
|
4142
4142
|
"properties": [
|
|
@@ -4149,7 +4149,7 @@
|
|
|
4149
4149
|
"immutable": true,
|
|
4150
4150
|
"locationInModule": {
|
|
4151
4151
|
"filename": "lib/parameter-group.ts",
|
|
4152
|
-
"line":
|
|
4152
|
+
"line": 48
|
|
4153
4153
|
},
|
|
4154
4154
|
"name": "parameters",
|
|
4155
4155
|
"type": {
|
|
@@ -4171,7 +4171,7 @@
|
|
|
4171
4171
|
"immutable": true,
|
|
4172
4172
|
"locationInModule": {
|
|
4173
4173
|
"filename": "lib/parameter-group.ts",
|
|
4174
|
-
"line":
|
|
4174
|
+
"line": 67
|
|
4175
4175
|
},
|
|
4176
4176
|
"name": "clusterParameterGroupName",
|
|
4177
4177
|
"optional": true,
|
|
@@ -4189,7 +4189,7 @@
|
|
|
4189
4189
|
"immutable": true,
|
|
4190
4190
|
"locationInModule": {
|
|
4191
4191
|
"filename": "lib/parameter-group.ts",
|
|
4192
|
-
"line":
|
|
4192
|
+
"line": 43
|
|
4193
4193
|
},
|
|
4194
4194
|
"name": "description",
|
|
4195
4195
|
"optional": true,
|
|
@@ -4207,7 +4207,7 @@
|
|
|
4207
4207
|
"immutable": true,
|
|
4208
4208
|
"locationInModule": {
|
|
4209
4209
|
"filename": "lib/parameter-group.ts",
|
|
4210
|
-
"line":
|
|
4210
|
+
"line": 55
|
|
4211
4211
|
},
|
|
4212
4212
|
"name": "family",
|
|
4213
4213
|
"optional": true,
|
|
@@ -4237,7 +4237,7 @@
|
|
|
4237
4237
|
},
|
|
4238
4238
|
"locationInModule": {
|
|
4239
4239
|
"filename": "lib/cluster.ts",
|
|
4240
|
-
"line":
|
|
4240
|
+
"line": 618
|
|
4241
4241
|
},
|
|
4242
4242
|
"parameters": [
|
|
4243
4243
|
{
|
|
@@ -4266,7 +4266,7 @@
|
|
|
4266
4266
|
"kind": "class",
|
|
4267
4267
|
"locationInModule": {
|
|
4268
4268
|
"filename": "lib/cluster.ts",
|
|
4269
|
-
"line":
|
|
4269
|
+
"line": 572
|
|
4270
4270
|
},
|
|
4271
4271
|
"name": "DatabaseCluster",
|
|
4272
4272
|
"properties": [
|
|
@@ -4279,7 +4279,7 @@
|
|
|
4279
4279
|
"immutable": true,
|
|
4280
4280
|
"locationInModule": {
|
|
4281
4281
|
"filename": "lib/cluster.ts",
|
|
4282
|
-
"line":
|
|
4282
|
+
"line": 577
|
|
4283
4283
|
},
|
|
4284
4284
|
"name": "DEFAULT_NUM_INSTANCES",
|
|
4285
4285
|
"static": true,
|
|
@@ -4295,7 +4295,7 @@
|
|
|
4295
4295
|
"immutable": true,
|
|
4296
4296
|
"locationInModule": {
|
|
4297
4297
|
"filename": "lib/cluster.ts",
|
|
4298
|
-
"line":
|
|
4298
|
+
"line": 580
|
|
4299
4299
|
},
|
|
4300
4300
|
"name": "clusterEndpoint",
|
|
4301
4301
|
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseClusterBase",
|
|
@@ -4311,7 +4311,7 @@
|
|
|
4311
4311
|
"immutable": true,
|
|
4312
4312
|
"locationInModule": {
|
|
4313
4313
|
"filename": "lib/cluster.ts",
|
|
4314
|
-
"line":
|
|
4314
|
+
"line": 579
|
|
4315
4315
|
},
|
|
4316
4316
|
"name": "clusterIdentifier",
|
|
4317
4317
|
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseClusterBase",
|
|
@@ -4327,7 +4327,7 @@
|
|
|
4327
4327
|
"immutable": true,
|
|
4328
4328
|
"locationInModule": {
|
|
4329
4329
|
"filename": "lib/cluster.ts",
|
|
4330
|
-
"line":
|
|
4330
|
+
"line": 581
|
|
4331
4331
|
},
|
|
4332
4332
|
"name": "clusterReadEndpoint",
|
|
4333
4333
|
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseClusterBase",
|
|
@@ -4347,7 +4347,7 @@
|
|
|
4347
4347
|
"immutable": true,
|
|
4348
4348
|
"locationInModule": {
|
|
4349
4349
|
"filename": "lib/cluster.ts",
|
|
4350
|
-
"line":
|
|
4350
|
+
"line": 589
|
|
4351
4351
|
},
|
|
4352
4352
|
"name": "clusterResourceIdentifier",
|
|
4353
4353
|
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseClusterBase",
|
|
@@ -4363,7 +4363,7 @@
|
|
|
4363
4363
|
"immutable": true,
|
|
4364
4364
|
"locationInModule": {
|
|
4365
4365
|
"filename": "lib/cluster.ts",
|
|
4366
|
-
"line":
|
|
4366
|
+
"line": 582
|
|
4367
4367
|
},
|
|
4368
4368
|
"name": "connections",
|
|
4369
4369
|
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseClusterBase",
|
|
@@ -4379,7 +4379,7 @@
|
|
|
4379
4379
|
"immutable": true,
|
|
4380
4380
|
"locationInModule": {
|
|
4381
4381
|
"filename": "lib/cluster.ts",
|
|
4382
|
-
"line":
|
|
4382
|
+
"line": 614
|
|
4383
4383
|
},
|
|
4384
4384
|
"name": "instanceEndpoints",
|
|
4385
4385
|
"type": {
|
|
@@ -4399,7 +4399,7 @@
|
|
|
4399
4399
|
"immutable": true,
|
|
4400
4400
|
"locationInModule": {
|
|
4401
4401
|
"filename": "lib/cluster.ts",
|
|
4402
|
-
"line":
|
|
4402
|
+
"line": 609
|
|
4403
4403
|
},
|
|
4404
4404
|
"name": "instanceIdentifiers",
|
|
4405
4405
|
"type": {
|
|
@@ -4419,7 +4419,7 @@
|
|
|
4419
4419
|
"immutable": true,
|
|
4420
4420
|
"locationInModule": {
|
|
4421
4421
|
"filename": "lib/cluster.ts",
|
|
4422
|
-
"line":
|
|
4422
|
+
"line": 604
|
|
4423
4423
|
},
|
|
4424
4424
|
"name": "subnetGroup",
|
|
4425
4425
|
"type": {
|
|
@@ -4434,7 +4434,7 @@
|
|
|
4434
4434
|
"immutable": true,
|
|
4435
4435
|
"locationInModule": {
|
|
4436
4436
|
"filename": "lib/cluster.ts",
|
|
4437
|
-
"line":
|
|
4437
|
+
"line": 594
|
|
4438
4438
|
},
|
|
4439
4439
|
"name": "vpc",
|
|
4440
4440
|
"type": {
|
|
@@ -4449,7 +4449,7 @@
|
|
|
4449
4449
|
"immutable": true,
|
|
4450
4450
|
"locationInModule": {
|
|
4451
4451
|
"filename": "lib/cluster.ts",
|
|
4452
|
-
"line":
|
|
4452
|
+
"line": 599
|
|
4453
4453
|
},
|
|
4454
4454
|
"name": "vpcSubnets",
|
|
4455
4455
|
"type": {
|
|
@@ -4462,7 +4462,7 @@
|
|
|
4462
4462
|
},
|
|
4463
4463
|
"locationInModule": {
|
|
4464
4464
|
"filename": "lib/cluster.ts",
|
|
4465
|
-
"line":
|
|
4465
|
+
"line": 616
|
|
4466
4466
|
},
|
|
4467
4467
|
"name": "enableIamAuthentication",
|
|
4468
4468
|
"optional": true,
|
|
@@ -4490,7 +4490,7 @@
|
|
|
4490
4490
|
"kind": "interface",
|
|
4491
4491
|
"locationInModule": {
|
|
4492
4492
|
"filename": "lib/cluster.ts",
|
|
4493
|
-
"line":
|
|
4493
|
+
"line": 446
|
|
4494
4494
|
},
|
|
4495
4495
|
"name": "DatabaseClusterAttributes",
|
|
4496
4496
|
"properties": [
|
|
@@ -4503,7 +4503,7 @@
|
|
|
4503
4503
|
"immutable": true,
|
|
4504
4504
|
"locationInModule": {
|
|
4505
4505
|
"filename": "lib/cluster.ts",
|
|
4506
|
-
"line":
|
|
4506
|
+
"line": 470
|
|
4507
4507
|
},
|
|
4508
4508
|
"name": "clusterEndpointAddress",
|
|
4509
4509
|
"type": {
|
|
@@ -4519,7 +4519,7 @@
|
|
|
4519
4519
|
"immutable": true,
|
|
4520
4520
|
"locationInModule": {
|
|
4521
4521
|
"filename": "lib/cluster.ts",
|
|
4522
|
-
"line":
|
|
4522
|
+
"line": 460
|
|
4523
4523
|
},
|
|
4524
4524
|
"name": "clusterIdentifier",
|
|
4525
4525
|
"type": {
|
|
@@ -4535,7 +4535,7 @@
|
|
|
4535
4535
|
"immutable": true,
|
|
4536
4536
|
"locationInModule": {
|
|
4537
4537
|
"filename": "lib/cluster.ts",
|
|
4538
|
-
"line":
|
|
4538
|
+
"line": 465
|
|
4539
4539
|
},
|
|
4540
4540
|
"name": "clusterResourceIdentifier",
|
|
4541
4541
|
"type": {
|
|
@@ -4551,7 +4551,7 @@
|
|
|
4551
4551
|
"immutable": true,
|
|
4552
4552
|
"locationInModule": {
|
|
4553
4553
|
"filename": "lib/cluster.ts",
|
|
4554
|
-
"line":
|
|
4554
|
+
"line": 450
|
|
4555
4555
|
},
|
|
4556
4556
|
"name": "port",
|
|
4557
4557
|
"type": {
|
|
@@ -4567,7 +4567,7 @@
|
|
|
4567
4567
|
"immutable": true,
|
|
4568
4568
|
"locationInModule": {
|
|
4569
4569
|
"filename": "lib/cluster.ts",
|
|
4570
|
-
"line":
|
|
4570
|
+
"line": 475
|
|
4571
4571
|
},
|
|
4572
4572
|
"name": "readerEndpointAddress",
|
|
4573
4573
|
"type": {
|
|
@@ -4583,7 +4583,7 @@
|
|
|
4583
4583
|
"immutable": true,
|
|
4584
4584
|
"locationInModule": {
|
|
4585
4585
|
"filename": "lib/cluster.ts",
|
|
4586
|
-
"line":
|
|
4586
|
+
"line": 455
|
|
4587
4587
|
},
|
|
4588
4588
|
"name": "securityGroup",
|
|
4589
4589
|
"type": {
|
|
@@ -4642,7 +4642,7 @@
|
|
|
4642
4642
|
"kind": "class",
|
|
4643
4643
|
"locationInModule": {
|
|
4644
4644
|
"filename": "lib/cluster.ts",
|
|
4645
|
-
"line":
|
|
4645
|
+
"line": 481
|
|
4646
4646
|
},
|
|
4647
4647
|
"methods": [
|
|
4648
4648
|
{
|
|
@@ -4652,7 +4652,7 @@
|
|
|
4652
4652
|
},
|
|
4653
4653
|
"locationInModule": {
|
|
4654
4654
|
"filename": "lib/cluster.ts",
|
|
4655
|
-
"line":
|
|
4655
|
+
"line": 485
|
|
4656
4656
|
},
|
|
4657
4657
|
"name": "fromDatabaseClusterAttributes",
|
|
4658
4658
|
"parameters": [
|
|
@@ -4689,7 +4689,7 @@
|
|
|
4689
4689
|
},
|
|
4690
4690
|
"locationInModule": {
|
|
4691
4691
|
"filename": "lib/cluster.ts",
|
|
4692
|
-
"line":
|
|
4692
|
+
"line": 529
|
|
4693
4693
|
},
|
|
4694
4694
|
"name": "grant",
|
|
4695
4695
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
|
|
@@ -4722,7 +4722,7 @@
|
|
|
4722
4722
|
},
|
|
4723
4723
|
"locationInModule": {
|
|
4724
4724
|
"filename": "lib/cluster.ts",
|
|
4725
|
-
"line":
|
|
4725
|
+
"line": 551
|
|
4726
4726
|
},
|
|
4727
4727
|
"name": "grantConnect",
|
|
4728
4728
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
|
|
@@ -4747,7 +4747,7 @@
|
|
|
4747
4747
|
},
|
|
4748
4748
|
"locationInModule": {
|
|
4749
4749
|
"filename": "lib/cluster.ts",
|
|
4750
|
-
"line":
|
|
4750
|
+
"line": 555
|
|
4751
4751
|
},
|
|
4752
4752
|
"name": "metric",
|
|
4753
4753
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
|
|
@@ -4784,7 +4784,7 @@
|
|
|
4784
4784
|
"immutable": true,
|
|
4785
4785
|
"locationInModule": {
|
|
4786
4786
|
"filename": "lib/cluster.ts",
|
|
4787
|
-
"line":
|
|
4787
|
+
"line": 515
|
|
4788
4788
|
},
|
|
4789
4789
|
"name": "clusterEndpoint",
|
|
4790
4790
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
|
|
@@ -4801,7 +4801,7 @@
|
|
|
4801
4801
|
"immutable": true,
|
|
4802
4802
|
"locationInModule": {
|
|
4803
4803
|
"filename": "lib/cluster.ts",
|
|
4804
|
-
"line":
|
|
4804
|
+
"line": 505
|
|
4805
4805
|
},
|
|
4806
4806
|
"name": "clusterIdentifier",
|
|
4807
4807
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
|
|
@@ -4818,7 +4818,7 @@
|
|
|
4818
4818
|
"immutable": true,
|
|
4819
4819
|
"locationInModule": {
|
|
4820
4820
|
"filename": "lib/cluster.ts",
|
|
4821
|
-
"line":
|
|
4821
|
+
"line": 520
|
|
4822
4822
|
},
|
|
4823
4823
|
"name": "clusterReadEndpoint",
|
|
4824
4824
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
|
|
@@ -4835,7 +4835,7 @@
|
|
|
4835
4835
|
"immutable": true,
|
|
4836
4836
|
"locationInModule": {
|
|
4837
4837
|
"filename": "lib/cluster.ts",
|
|
4838
|
-
"line":
|
|
4838
|
+
"line": 510
|
|
4839
4839
|
},
|
|
4840
4840
|
"name": "clusterResourceIdentifier",
|
|
4841
4841
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
|
|
@@ -4852,7 +4852,7 @@
|
|
|
4852
4852
|
"immutable": true,
|
|
4853
4853
|
"locationInModule": {
|
|
4854
4854
|
"filename": "lib/cluster.ts",
|
|
4855
|
-
"line":
|
|
4855
|
+
"line": 525
|
|
4856
4856
|
},
|
|
4857
4857
|
"name": "connections",
|
|
4858
4858
|
"overrides": "aws-cdk-lib.aws_ec2.IConnectable",
|
|
@@ -4867,7 +4867,7 @@
|
|
|
4867
4867
|
},
|
|
4868
4868
|
"locationInModule": {
|
|
4869
4869
|
"filename": "lib/cluster.ts",
|
|
4870
|
-
"line":
|
|
4870
|
+
"line": 527
|
|
4871
4871
|
},
|
|
4872
4872
|
"name": "enableIamAuthentication",
|
|
4873
4873
|
"optional": true,
|
|
@@ -4894,7 +4894,7 @@
|
|
|
4894
4894
|
"kind": "interface",
|
|
4895
4895
|
"locationInModule": {
|
|
4896
4896
|
"filename": "lib/cluster.ts",
|
|
4897
|
-
"line":
|
|
4897
|
+
"line": 179
|
|
4898
4898
|
},
|
|
4899
4899
|
"name": "DatabaseClusterProps",
|
|
4900
4900
|
"properties": [
|
|
@@ -4907,7 +4907,7 @@
|
|
|
4907
4907
|
"immutable": true,
|
|
4908
4908
|
"locationInModule": {
|
|
4909
4909
|
"filename": "lib/cluster.ts",
|
|
4910
|
-
"line":
|
|
4910
|
+
"line": 254
|
|
4911
4911
|
},
|
|
4912
4912
|
"name": "instanceType",
|
|
4913
4913
|
"type": {
|
|
@@ -4924,7 +4924,7 @@
|
|
|
4924
4924
|
"immutable": true,
|
|
4925
4925
|
"locationInModule": {
|
|
4926
4926
|
"filename": "lib/cluster.ts",
|
|
4927
|
-
"line":
|
|
4927
|
+
"line": 308
|
|
4928
4928
|
},
|
|
4929
4929
|
"name": "vpc",
|
|
4930
4930
|
"type": {
|
|
@@ -4941,7 +4941,7 @@
|
|
|
4941
4941
|
"immutable": true,
|
|
4942
4942
|
"locationInModule": {
|
|
4943
4943
|
"filename": "lib/cluster.ts",
|
|
4944
|
-
"line":
|
|
4944
|
+
"line": 261
|
|
4945
4945
|
},
|
|
4946
4946
|
"name": "associatedRoles",
|
|
4947
4947
|
"optional": true,
|
|
@@ -4964,7 +4964,7 @@
|
|
|
4964
4964
|
"immutable": true,
|
|
4965
4965
|
"locationInModule": {
|
|
4966
4966
|
"filename": "lib/cluster.ts",
|
|
4967
|
-
"line":
|
|
4967
|
+
"line": 340
|
|
4968
4968
|
},
|
|
4969
4969
|
"name": "autoMinorVersionUpgrade",
|
|
4970
4970
|
"optional": true,
|
|
@@ -4982,7 +4982,7 @@
|
|
|
4982
4982
|
"immutable": true,
|
|
4983
4983
|
"locationInModule": {
|
|
4984
4984
|
"filename": "lib/cluster.ts",
|
|
4985
|
-
"line":
|
|
4985
|
+
"line": 192
|
|
4986
4986
|
},
|
|
4987
4987
|
"name": "backupRetention",
|
|
4988
4988
|
"optional": true,
|
|
@@ -5001,7 +5001,7 @@
|
|
|
5001
5001
|
"immutable": true,
|
|
5002
5002
|
"locationInModule": {
|
|
5003
5003
|
"filename": "lib/cluster.ts",
|
|
5004
|
-
"line":
|
|
5004
|
+
"line": 351
|
|
5005
5005
|
},
|
|
5006
5006
|
"name": "cloudwatchLogsExports",
|
|
5007
5007
|
"optional": true,
|
|
@@ -5025,7 +5025,7 @@
|
|
|
5025
5025
|
"immutable": true,
|
|
5026
5026
|
"locationInModule": {
|
|
5027
5027
|
"filename": "lib/cluster.ts",
|
|
5028
|
-
"line":
|
|
5028
|
+
"line": 360
|
|
5029
5029
|
},
|
|
5030
5030
|
"name": "cloudwatchLogsRetention",
|
|
5031
5031
|
"optional": true,
|
|
@@ -5043,7 +5043,7 @@
|
|
|
5043
5043
|
"immutable": true,
|
|
5044
5044
|
"locationInModule": {
|
|
5045
5045
|
"filename": "lib/cluster.ts",
|
|
5046
|
-
"line":
|
|
5046
|
+
"line": 368
|
|
5047
5047
|
},
|
|
5048
5048
|
"name": "cloudwatchLogsRetentionRole",
|
|
5049
5049
|
"optional": true,
|
|
@@ -5061,7 +5061,7 @@
|
|
|
5061
5061
|
"immutable": true,
|
|
5062
5062
|
"locationInModule": {
|
|
5063
5063
|
"filename": "lib/cluster.ts",
|
|
5064
|
-
"line":
|
|
5064
|
+
"line": 287
|
|
5065
5065
|
},
|
|
5066
5066
|
"name": "clusterParameterGroup",
|
|
5067
5067
|
"optional": true,
|
|
@@ -5079,7 +5079,7 @@
|
|
|
5079
5079
|
"immutable": true,
|
|
5080
5080
|
"locationInModule": {
|
|
5081
5081
|
"filename": "lib/cluster.ts",
|
|
5082
|
-
"line":
|
|
5082
|
+
"line": 383
|
|
5083
5083
|
},
|
|
5084
5084
|
"name": "copyTagsToSnapshot",
|
|
5085
5085
|
"optional": true,
|
|
@@ -5097,7 +5097,7 @@
|
|
|
5097
5097
|
"immutable": true,
|
|
5098
5098
|
"locationInModule": {
|
|
5099
5099
|
"filename": "lib/cluster.ts",
|
|
5100
|
-
"line":
|
|
5100
|
+
"line": 232
|
|
5101
5101
|
},
|
|
5102
5102
|
"name": "dbClusterName",
|
|
5103
5103
|
"optional": true,
|
|
@@ -5115,7 +5115,7 @@
|
|
|
5115
5115
|
"immutable": true,
|
|
5116
5116
|
"locationInModule": {
|
|
5117
5117
|
"filename": "lib/cluster.ts",
|
|
5118
|
-
"line":
|
|
5118
|
+
"line": 268
|
|
5119
5119
|
},
|
|
5120
5120
|
"name": "deletionProtection",
|
|
5121
5121
|
"optional": true,
|
|
@@ -5133,7 +5133,7 @@
|
|
|
5133
5133
|
"immutable": true,
|
|
5134
5134
|
"locationInModule": {
|
|
5135
5135
|
"filename": "lib/cluster.ts",
|
|
5136
|
-
"line":
|
|
5136
|
+
"line": 185
|
|
5137
5137
|
},
|
|
5138
5138
|
"name": "engineVersion",
|
|
5139
5139
|
"optional": true,
|
|
@@ -5151,7 +5151,7 @@
|
|
|
5151
5151
|
"immutable": true,
|
|
5152
5152
|
"locationInModule": {
|
|
5153
5153
|
"filename": "lib/cluster.ts",
|
|
5154
|
-
"line":
|
|
5154
|
+
"line": 239
|
|
5155
5155
|
},
|
|
5156
5156
|
"name": "iamAuthentication",
|
|
5157
5157
|
"optional": true,
|
|
@@ -5170,7 +5170,7 @@
|
|
|
5170
5170
|
"immutable": true,
|
|
5171
5171
|
"locationInModule": {
|
|
5172
5172
|
"filename": "lib/cluster.ts",
|
|
5173
|
-
"line":
|
|
5173
|
+
"line": 249
|
|
5174
5174
|
},
|
|
5175
5175
|
"name": "instanceIdentifierBase",
|
|
5176
5176
|
"optional": true,
|
|
@@ -5188,7 +5188,7 @@
|
|
|
5188
5188
|
"immutable": true,
|
|
5189
5189
|
"locationInModule": {
|
|
5190
5190
|
"filename": "lib/cluster.ts",
|
|
5191
|
-
"line":
|
|
5191
|
+
"line": 225
|
|
5192
5192
|
},
|
|
5193
5193
|
"name": "instances",
|
|
5194
5194
|
"optional": true,
|
|
@@ -5206,7 +5206,7 @@
|
|
|
5206
5206
|
"immutable": true,
|
|
5207
5207
|
"locationInModule": {
|
|
5208
5208
|
"filename": "lib/cluster.ts",
|
|
5209
|
-
"line":
|
|
5209
|
+
"line": 211
|
|
5210
5210
|
},
|
|
5211
5211
|
"name": "kmsKey",
|
|
5212
5212
|
"optional": true,
|
|
@@ -5224,7 +5224,7 @@
|
|
|
5224
5224
|
"immutable": true,
|
|
5225
5225
|
"locationInModule": {
|
|
5226
5226
|
"filename": "lib/cluster.ts",
|
|
5227
|
-
"line":
|
|
5227
|
+
"line": 294
|
|
5228
5228
|
},
|
|
5229
5229
|
"name": "parameterGroup",
|
|
5230
5230
|
"optional": true,
|
|
@@ -5242,7 +5242,7 @@
|
|
|
5242
5242
|
"immutable": true,
|
|
5243
5243
|
"locationInModule": {
|
|
5244
5244
|
"filename": "lib/cluster.ts",
|
|
5245
|
-
"line":
|
|
5245
|
+
"line": 390
|
|
5246
5246
|
},
|
|
5247
5247
|
"name": "port",
|
|
5248
5248
|
"optional": true,
|
|
@@ -5261,7 +5261,7 @@
|
|
|
5261
5261
|
"immutable": true,
|
|
5262
5262
|
"locationInModule": {
|
|
5263
5263
|
"filename": "lib/cluster.ts",
|
|
5264
|
-
"line":
|
|
5264
|
+
"line": 204
|
|
5265
5265
|
},
|
|
5266
5266
|
"name": "preferredBackupWindow",
|
|
5267
5267
|
"optional": true,
|
|
@@ -5280,7 +5280,7 @@
|
|
|
5280
5280
|
"immutable": true,
|
|
5281
5281
|
"locationInModule": {
|
|
5282
5282
|
"filename": "lib/cluster.ts",
|
|
5283
|
-
"line":
|
|
5283
|
+
"line": 280
|
|
5284
5284
|
},
|
|
5285
5285
|
"name": "preferredMaintenanceWindow",
|
|
5286
5286
|
"optional": true,
|
|
@@ -5299,7 +5299,7 @@
|
|
|
5299
5299
|
"immutable": true,
|
|
5300
5300
|
"locationInModule": {
|
|
5301
5301
|
"filename": "lib/cluster.ts",
|
|
5302
|
-
"line":
|
|
5302
|
+
"line": 332
|
|
5303
5303
|
},
|
|
5304
5304
|
"name": "removalPolicy",
|
|
5305
5305
|
"optional": true,
|
|
@@ -5317,7 +5317,7 @@
|
|
|
5317
5317
|
"immutable": true,
|
|
5318
5318
|
"locationInModule": {
|
|
5319
5319
|
"filename": "lib/cluster.ts",
|
|
5320
|
-
"line":
|
|
5320
|
+
"line": 322
|
|
5321
5321
|
},
|
|
5322
5322
|
"name": "securityGroups",
|
|
5323
5323
|
"optional": true,
|
|
@@ -5341,7 +5341,7 @@
|
|
|
5341
5341
|
"immutable": true,
|
|
5342
5342
|
"locationInModule": {
|
|
5343
5343
|
"filename": "lib/cluster.ts",
|
|
5344
|
-
"line":
|
|
5344
|
+
"line": 376
|
|
5345
5345
|
},
|
|
5346
5346
|
"name": "serverlessScalingConfiguration",
|
|
5347
5347
|
"optional": true,
|
|
@@ -5359,7 +5359,7 @@
|
|
|
5359
5359
|
"immutable": true,
|
|
5360
5360
|
"locationInModule": {
|
|
5361
5361
|
"filename": "lib/cluster.ts",
|
|
5362
|
-
"line":
|
|
5362
|
+
"line": 218
|
|
5363
5363
|
},
|
|
5364
5364
|
"name": "storageEncrypted",
|
|
5365
5365
|
"optional": true,
|
|
@@ -5377,7 +5377,7 @@
|
|
|
5377
5377
|
"immutable": true,
|
|
5378
5378
|
"locationInModule": {
|
|
5379
5379
|
"filename": "lib/cluster.ts",
|
|
5380
|
-
"line":
|
|
5380
|
+
"line": 301
|
|
5381
5381
|
},
|
|
5382
5382
|
"name": "subnetGroup",
|
|
5383
5383
|
"optional": true,
|
|
@@ -5395,7 +5395,7 @@
|
|
|
5395
5395
|
"immutable": true,
|
|
5396
5396
|
"locationInModule": {
|
|
5397
5397
|
"filename": "lib/cluster.ts",
|
|
5398
|
-
"line":
|
|
5398
|
+
"line": 315
|
|
5399
5399
|
},
|
|
5400
5400
|
"name": "vpcSubnets",
|
|
5401
5401
|
"optional": true,
|
|
@@ -6085,7 +6085,7 @@
|
|
|
6085
6085
|
},
|
|
6086
6086
|
"locationInModule": {
|
|
6087
6087
|
"filename": "lib/cluster.ts",
|
|
6088
|
-
"line":
|
|
6088
|
+
"line": 141
|
|
6089
6089
|
},
|
|
6090
6090
|
"parameters": [
|
|
6091
6091
|
{
|
|
@@ -6497,6 +6497,108 @@
|
|
|
6497
6497
|
"fqn": "@aws-cdk/aws-neptune-alpha.EngineVersion"
|
|
6498
6498
|
}
|
|
6499
6499
|
},
|
|
6500
|
+
{
|
|
6501
|
+
"const": true,
|
|
6502
|
+
"docs": {
|
|
6503
|
+
"stability": "experimental",
|
|
6504
|
+
"summary": "Neptune engine version 1.4.0.0."
|
|
6505
|
+
},
|
|
6506
|
+
"immutable": true,
|
|
6507
|
+
"locationInModule": {
|
|
6508
|
+
"filename": "lib/cluster.ts",
|
|
6509
|
+
"line": 115
|
|
6510
|
+
},
|
|
6511
|
+
"name": "V1_4_0_0",
|
|
6512
|
+
"static": true,
|
|
6513
|
+
"type": {
|
|
6514
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.EngineVersion"
|
|
6515
|
+
}
|
|
6516
|
+
},
|
|
6517
|
+
{
|
|
6518
|
+
"const": true,
|
|
6519
|
+
"docs": {
|
|
6520
|
+
"stability": "experimental",
|
|
6521
|
+
"summary": "Neptune engine version 1.4.1.0."
|
|
6522
|
+
},
|
|
6523
|
+
"immutable": true,
|
|
6524
|
+
"locationInModule": {
|
|
6525
|
+
"filename": "lib/cluster.ts",
|
|
6526
|
+
"line": 119
|
|
6527
|
+
},
|
|
6528
|
+
"name": "V1_4_1_0",
|
|
6529
|
+
"static": true,
|
|
6530
|
+
"type": {
|
|
6531
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.EngineVersion"
|
|
6532
|
+
}
|
|
6533
|
+
},
|
|
6534
|
+
{
|
|
6535
|
+
"const": true,
|
|
6536
|
+
"docs": {
|
|
6537
|
+
"stability": "experimental",
|
|
6538
|
+
"summary": "Neptune engine version 1.4.2.0."
|
|
6539
|
+
},
|
|
6540
|
+
"immutable": true,
|
|
6541
|
+
"locationInModule": {
|
|
6542
|
+
"filename": "lib/cluster.ts",
|
|
6543
|
+
"line": 123
|
|
6544
|
+
},
|
|
6545
|
+
"name": "V1_4_2_0",
|
|
6546
|
+
"static": true,
|
|
6547
|
+
"type": {
|
|
6548
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.EngineVersion"
|
|
6549
|
+
}
|
|
6550
|
+
},
|
|
6551
|
+
{
|
|
6552
|
+
"const": true,
|
|
6553
|
+
"docs": {
|
|
6554
|
+
"stability": "experimental",
|
|
6555
|
+
"summary": "Neptune engine version 1.4.3.0."
|
|
6556
|
+
},
|
|
6557
|
+
"immutable": true,
|
|
6558
|
+
"locationInModule": {
|
|
6559
|
+
"filename": "lib/cluster.ts",
|
|
6560
|
+
"line": 127
|
|
6561
|
+
},
|
|
6562
|
+
"name": "V1_4_3_0",
|
|
6563
|
+
"static": true,
|
|
6564
|
+
"type": {
|
|
6565
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.EngineVersion"
|
|
6566
|
+
}
|
|
6567
|
+
},
|
|
6568
|
+
{
|
|
6569
|
+
"const": true,
|
|
6570
|
+
"docs": {
|
|
6571
|
+
"stability": "experimental",
|
|
6572
|
+
"summary": "Neptune engine version 1.4.4.0."
|
|
6573
|
+
},
|
|
6574
|
+
"immutable": true,
|
|
6575
|
+
"locationInModule": {
|
|
6576
|
+
"filename": "lib/cluster.ts",
|
|
6577
|
+
"line": 131
|
|
6578
|
+
},
|
|
6579
|
+
"name": "V1_4_4_0",
|
|
6580
|
+
"static": true,
|
|
6581
|
+
"type": {
|
|
6582
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.EngineVersion"
|
|
6583
|
+
}
|
|
6584
|
+
},
|
|
6585
|
+
{
|
|
6586
|
+
"const": true,
|
|
6587
|
+
"docs": {
|
|
6588
|
+
"stability": "experimental",
|
|
6589
|
+
"summary": "Neptune engine version 1.4.5.0."
|
|
6590
|
+
},
|
|
6591
|
+
"immutable": true,
|
|
6592
|
+
"locationInModule": {
|
|
6593
|
+
"filename": "lib/cluster.ts",
|
|
6594
|
+
"line": 135
|
|
6595
|
+
},
|
|
6596
|
+
"name": "V1_4_5_0",
|
|
6597
|
+
"static": true,
|
|
6598
|
+
"type": {
|
|
6599
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.EngineVersion"
|
|
6600
|
+
}
|
|
6601
|
+
},
|
|
6500
6602
|
{
|
|
6501
6603
|
"docs": {
|
|
6502
6604
|
"stability": "experimental",
|
|
@@ -6505,7 +6607,7 @@
|
|
|
6505
6607
|
"immutable": true,
|
|
6506
6608
|
"locationInModule": {
|
|
6507
6609
|
"filename": "lib/cluster.ts",
|
|
6508
|
-
"line":
|
|
6610
|
+
"line": 141
|
|
6509
6611
|
},
|
|
6510
6612
|
"name": "version",
|
|
6511
6613
|
"type": {
|
|
@@ -6528,7 +6630,7 @@
|
|
|
6528
6630
|
"kind": "interface",
|
|
6529
6631
|
"locationInModule": {
|
|
6530
6632
|
"filename": "lib/parameter-group.ts",
|
|
6531
|
-
"line":
|
|
6633
|
+
"line": 85
|
|
6532
6634
|
},
|
|
6533
6635
|
"name": "IClusterParameterGroup",
|
|
6534
6636
|
"properties": [
|
|
@@ -6541,7 +6643,7 @@
|
|
|
6541
6643
|
"immutable": true,
|
|
6542
6644
|
"locationInModule": {
|
|
6543
6645
|
"filename": "lib/parameter-group.ts",
|
|
6544
|
-
"line":
|
|
6646
|
+
"line": 89
|
|
6545
6647
|
},
|
|
6546
6648
|
"name": "clusterParameterGroupName",
|
|
6547
6649
|
"type": {
|
|
@@ -6565,7 +6667,7 @@
|
|
|
6565
6667
|
"kind": "interface",
|
|
6566
6668
|
"locationInModule": {
|
|
6567
6669
|
"filename": "lib/cluster.ts",
|
|
6568
|
-
"line":
|
|
6670
|
+
"line": 396
|
|
6569
6671
|
},
|
|
6570
6672
|
"methods": [
|
|
6571
6673
|
{
|
|
@@ -6577,7 +6679,7 @@
|
|
|
6577
6679
|
},
|
|
6578
6680
|
"locationInModule": {
|
|
6579
6681
|
"filename": "lib/cluster.ts",
|
|
6580
|
-
"line":
|
|
6682
|
+
"line": 427
|
|
6581
6683
|
},
|
|
6582
6684
|
"name": "grant",
|
|
6583
6685
|
"parameters": [
|
|
@@ -6616,7 +6718,7 @@
|
|
|
6616
6718
|
},
|
|
6617
6719
|
"locationInModule": {
|
|
6618
6720
|
"filename": "lib/cluster.ts",
|
|
6619
|
-
"line":
|
|
6721
|
+
"line": 432
|
|
6620
6722
|
},
|
|
6621
6723
|
"name": "grantConnect",
|
|
6622
6724
|
"parameters": [
|
|
@@ -6642,7 +6744,7 @@
|
|
|
6642
6744
|
},
|
|
6643
6745
|
"locationInModule": {
|
|
6644
6746
|
"filename": "lib/cluster.ts",
|
|
6645
|
-
"line":
|
|
6747
|
+
"line": 440
|
|
6646
6748
|
},
|
|
6647
6749
|
"name": "metric",
|
|
6648
6750
|
"parameters": [
|
|
@@ -6681,7 +6783,7 @@
|
|
|
6681
6783
|
"immutable": true,
|
|
6682
6784
|
"locationInModule": {
|
|
6683
6785
|
"filename": "lib/cluster.ts",
|
|
6684
|
-
"line":
|
|
6786
|
+
"line": 412
|
|
6685
6787
|
},
|
|
6686
6788
|
"name": "clusterEndpoint",
|
|
6687
6789
|
"type": {
|
|
@@ -6697,7 +6799,7 @@
|
|
|
6697
6799
|
"immutable": true,
|
|
6698
6800
|
"locationInModule": {
|
|
6699
6801
|
"filename": "lib/cluster.ts",
|
|
6700
|
-
"line":
|
|
6802
|
+
"line": 400
|
|
6701
6803
|
},
|
|
6702
6804
|
"name": "clusterIdentifier",
|
|
6703
6805
|
"type": {
|
|
@@ -6716,7 +6818,7 @@
|
|
|
6716
6818
|
"immutable": true,
|
|
6717
6819
|
"locationInModule": {
|
|
6718
6820
|
"filename": "lib/cluster.ts",
|
|
6719
|
-
"line":
|
|
6821
|
+
"line": 418
|
|
6720
6822
|
},
|
|
6721
6823
|
"name": "clusterReadEndpoint",
|
|
6722
6824
|
"type": {
|
|
@@ -6735,7 +6837,7 @@
|
|
|
6735
6837
|
"immutable": true,
|
|
6736
6838
|
"locationInModule": {
|
|
6737
6839
|
"filename": "lib/cluster.ts",
|
|
6738
|
-
"line":
|
|
6840
|
+
"line": 406
|
|
6739
6841
|
},
|
|
6740
6842
|
"name": "clusterResourceIdentifier",
|
|
6741
6843
|
"type": {
|
|
@@ -6883,7 +6985,7 @@
|
|
|
6883
6985
|
"kind": "interface",
|
|
6884
6986
|
"locationInModule": {
|
|
6885
6987
|
"filename": "lib/parameter-group.ts",
|
|
6886
|
-
"line":
|
|
6988
|
+
"line": 132
|
|
6887
6989
|
},
|
|
6888
6990
|
"name": "IParameterGroup",
|
|
6889
6991
|
"properties": [
|
|
@@ -6896,7 +6998,7 @@
|
|
|
6896
6998
|
"immutable": true,
|
|
6897
6999
|
"locationInModule": {
|
|
6898
7000
|
"filename": "lib/parameter-group.ts",
|
|
6899
|
-
"line":
|
|
7001
|
+
"line": 136
|
|
6900
7002
|
},
|
|
6901
7003
|
"name": "parameterGroupName",
|
|
6902
7004
|
"type": {
|
|
@@ -7930,7 +8032,7 @@
|
|
|
7930
8032
|
},
|
|
7931
8033
|
"locationInModule": {
|
|
7932
8034
|
"filename": "lib/cluster.ts",
|
|
7933
|
-
"line":
|
|
8035
|
+
"line": 161
|
|
7934
8036
|
},
|
|
7935
8037
|
"parameters": [
|
|
7936
8038
|
{
|
|
@@ -7947,7 +8049,7 @@
|
|
|
7947
8049
|
"kind": "class",
|
|
7948
8050
|
"locationInModule": {
|
|
7949
8051
|
"filename": "lib/cluster.ts",
|
|
7950
|
-
"line":
|
|
8052
|
+
"line": 149
|
|
7951
8053
|
},
|
|
7952
8054
|
"name": "LogType",
|
|
7953
8055
|
"properties": [
|
|
@@ -7961,7 +8063,7 @@
|
|
|
7961
8063
|
"immutable": true,
|
|
7962
8064
|
"locationInModule": {
|
|
7963
8065
|
"filename": "lib/cluster.ts",
|
|
7964
|
-
"line":
|
|
8066
|
+
"line": 155
|
|
7965
8067
|
},
|
|
7966
8068
|
"name": "AUDIT",
|
|
7967
8069
|
"static": true,
|
|
@@ -7977,7 +8079,7 @@
|
|
|
7977
8079
|
"immutable": true,
|
|
7978
8080
|
"locationInModule": {
|
|
7979
8081
|
"filename": "lib/cluster.ts",
|
|
7980
|
-
"line":
|
|
8082
|
+
"line": 161
|
|
7981
8083
|
},
|
|
7982
8084
|
"name": "value",
|
|
7983
8085
|
"type": {
|
|
@@ -8006,7 +8108,7 @@
|
|
|
8006
8108
|
},
|
|
8007
8109
|
"locationInModule": {
|
|
8008
8110
|
"filename": "lib/parameter-group.ts",
|
|
8009
|
-
"line":
|
|
8111
|
+
"line": 160
|
|
8010
8112
|
},
|
|
8011
8113
|
"parameters": [
|
|
8012
8114
|
{
|
|
@@ -8035,7 +8137,7 @@
|
|
|
8035
8137
|
"kind": "class",
|
|
8036
8138
|
"locationInModule": {
|
|
8037
8139
|
"filename": "lib/parameter-group.ts",
|
|
8038
|
-
"line":
|
|
8140
|
+
"line": 144
|
|
8039
8141
|
},
|
|
8040
8142
|
"methods": [
|
|
8041
8143
|
{
|
|
@@ -8045,7 +8147,7 @@
|
|
|
8045
8147
|
},
|
|
8046
8148
|
"locationInModule": {
|
|
8047
8149
|
"filename": "lib/parameter-group.ts",
|
|
8048
|
-
"line":
|
|
8150
|
+
"line": 148
|
|
8049
8151
|
},
|
|
8050
8152
|
"name": "fromParameterGroupName",
|
|
8051
8153
|
"parameters": [
|
|
@@ -8086,7 +8188,7 @@
|
|
|
8086
8188
|
"immutable": true,
|
|
8087
8189
|
"locationInModule": {
|
|
8088
8190
|
"filename": "lib/parameter-group.ts",
|
|
8089
|
-
"line":
|
|
8191
|
+
"line": 158
|
|
8090
8192
|
},
|
|
8091
8193
|
"name": "parameterGroupName",
|
|
8092
8194
|
"overrides": "@aws-cdk/aws-neptune-alpha.IParameterGroup",
|
|
@@ -8115,7 +8217,7 @@
|
|
|
8115
8217
|
},
|
|
8116
8218
|
"locationInModule": {
|
|
8117
8219
|
"filename": "lib/parameter-group.ts",
|
|
8118
|
-
"line":
|
|
8220
|
+
"line": 31
|
|
8119
8221
|
},
|
|
8120
8222
|
"parameters": [
|
|
8121
8223
|
{
|
|
@@ -8187,6 +8289,23 @@
|
|
|
8187
8289
|
"fqn": "@aws-cdk/aws-neptune-alpha.ParameterGroupFamily"
|
|
8188
8290
|
}
|
|
8189
8291
|
},
|
|
8292
|
+
{
|
|
8293
|
+
"const": true,
|
|
8294
|
+
"docs": {
|
|
8295
|
+
"stability": "experimental",
|
|
8296
|
+
"summary": "Family used by Neptune engine versions 1.4.0.0 and later."
|
|
8297
|
+
},
|
|
8298
|
+
"immutable": true,
|
|
8299
|
+
"locationInModule": {
|
|
8300
|
+
"filename": "lib/parameter-group.ts",
|
|
8301
|
+
"line": 25
|
|
8302
|
+
},
|
|
8303
|
+
"name": "NEPTUNE_1_4",
|
|
8304
|
+
"static": true,
|
|
8305
|
+
"type": {
|
|
8306
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.ParameterGroupFamily"
|
|
8307
|
+
}
|
|
8308
|
+
},
|
|
8190
8309
|
{
|
|
8191
8310
|
"docs": {
|
|
8192
8311
|
"stability": "experimental",
|
|
@@ -8195,7 +8314,7 @@
|
|
|
8195
8314
|
"immutable": true,
|
|
8196
8315
|
"locationInModule": {
|
|
8197
8316
|
"filename": "lib/parameter-group.ts",
|
|
8198
|
-
"line":
|
|
8317
|
+
"line": 31
|
|
8199
8318
|
},
|
|
8200
8319
|
"name": "family",
|
|
8201
8320
|
"type": {
|
|
@@ -8220,7 +8339,7 @@
|
|
|
8220
8339
|
"kind": "interface",
|
|
8221
8340
|
"locationInModule": {
|
|
8222
8341
|
"filename": "lib/parameter-group.ts",
|
|
8223
|
-
"line":
|
|
8342
|
+
"line": 73
|
|
8224
8343
|
},
|
|
8225
8344
|
"name": "ParameterGroupProps",
|
|
8226
8345
|
"properties": [
|
|
@@ -8233,7 +8352,7 @@
|
|
|
8233
8352
|
"immutable": true,
|
|
8234
8353
|
"locationInModule": {
|
|
8235
8354
|
"filename": "lib/parameter-group.ts",
|
|
8236
|
-
"line":
|
|
8355
|
+
"line": 48
|
|
8237
8356
|
},
|
|
8238
8357
|
"name": "parameters",
|
|
8239
8358
|
"type": {
|
|
@@ -8255,7 +8374,7 @@
|
|
|
8255
8374
|
"immutable": true,
|
|
8256
8375
|
"locationInModule": {
|
|
8257
8376
|
"filename": "lib/parameter-group.ts",
|
|
8258
|
-
"line":
|
|
8377
|
+
"line": 43
|
|
8259
8378
|
},
|
|
8260
8379
|
"name": "description",
|
|
8261
8380
|
"optional": true,
|
|
@@ -8273,7 +8392,7 @@
|
|
|
8273
8392
|
"immutable": true,
|
|
8274
8393
|
"locationInModule": {
|
|
8275
8394
|
"filename": "lib/parameter-group.ts",
|
|
8276
|
-
"line":
|
|
8395
|
+
"line": 55
|
|
8277
8396
|
},
|
|
8278
8397
|
"name": "family",
|
|
8279
8398
|
"optional": true,
|
|
@@ -8291,7 +8410,7 @@
|
|
|
8291
8410
|
"immutable": true,
|
|
8292
8411
|
"locationInModule": {
|
|
8293
8412
|
"filename": "lib/parameter-group.ts",
|
|
8294
|
-
"line":
|
|
8413
|
+
"line": 79
|
|
8295
8414
|
},
|
|
8296
8415
|
"name": "parameterGroupName",
|
|
8297
8416
|
"optional": true,
|
|
@@ -8316,7 +8435,7 @@
|
|
|
8316
8435
|
"kind": "interface",
|
|
8317
8436
|
"locationInModule": {
|
|
8318
8437
|
"filename": "lib/cluster.ts",
|
|
8319
|
-
"line":
|
|
8438
|
+
"line": 164
|
|
8320
8439
|
},
|
|
8321
8440
|
"name": "ServerlessScalingConfiguration",
|
|
8322
8441
|
"properties": [
|
|
@@ -8329,7 +8448,7 @@
|
|
|
8329
8448
|
"immutable": true,
|
|
8330
8449
|
"locationInModule": {
|
|
8331
8450
|
"filename": "lib/cluster.ts",
|
|
8332
|
-
"line":
|
|
8451
|
+
"line": 173
|
|
8333
8452
|
},
|
|
8334
8453
|
"name": "maxCapacity",
|
|
8335
8454
|
"type": {
|
|
@@ -8345,7 +8464,7 @@
|
|
|
8345
8464
|
"immutable": true,
|
|
8346
8465
|
"locationInModule": {
|
|
8347
8466
|
"filename": "lib/cluster.ts",
|
|
8348
|
-
"line":
|
|
8467
|
+
"line": 168
|
|
8349
8468
|
},
|
|
8350
8469
|
"name": "minCapacity",
|
|
8351
8470
|
"type": {
|
|
@@ -8576,6 +8695,6 @@
|
|
|
8576
8695
|
"symbolId": "lib/subnet-group:SubnetGroupProps"
|
|
8577
8696
|
}
|
|
8578
8697
|
},
|
|
8579
|
-
"version": "2.
|
|
8698
|
+
"version": "2.191.0-alpha.0",
|
|
8580
8699
|
"fingerprint": "**********"
|
|
8581
8700
|
}
|