@aws-cdk/aws-neptune-alpha 2.155.0-alpha.0 → 2.157.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 +876 -203
- package/.jsii.tabl.json.gz +0 -0
- package/README.md +12 -0
- package/lib/cluster.d.ts +26 -0
- package/lib/cluster.js +26 -5
- package/lib/endpoint.js +1 -1
- package/lib/instance.d.ts +130 -2
- package/lib/instance.js +134 -6
- package/lib/parameter-group.js +3 -3
- package/lib/subnet-group.js +1 -1
- package/package.json +7 -7
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.157.0",
|
|
12
12
|
"constructs": "^10.0.0"
|
|
13
13
|
},
|
|
14
14
|
"dependencyClosure": {
|
|
@@ -2697,6 +2697,19 @@
|
|
|
2697
2697
|
}
|
|
2698
2698
|
}
|
|
2699
2699
|
},
|
|
2700
|
+
"aws-cdk-lib.aws_pcaconnectorscep": {
|
|
2701
|
+
"targets": {
|
|
2702
|
+
"dotnet": {
|
|
2703
|
+
"package": "Amazon.CDK.AWS.PCAConnectorSCEP"
|
|
2704
|
+
},
|
|
2705
|
+
"java": {
|
|
2706
|
+
"package": "software.amazon.awscdk.services.pcaconnectorscep"
|
|
2707
|
+
},
|
|
2708
|
+
"python": {
|
|
2709
|
+
"module": "aws_cdk.aws_pcaconnectorscep"
|
|
2710
|
+
}
|
|
2711
|
+
}
|
|
2712
|
+
},
|
|
2700
2713
|
"aws-cdk-lib.aws_personalize": {
|
|
2701
2714
|
"targets": {
|
|
2702
2715
|
"dotnet": {
|
|
@@ -3412,6 +3425,19 @@
|
|
|
3412
3425
|
}
|
|
3413
3426
|
}
|
|
3414
3427
|
},
|
|
3428
|
+
"aws-cdk-lib.aws_ssmquicksetup": {
|
|
3429
|
+
"targets": {
|
|
3430
|
+
"dotnet": {
|
|
3431
|
+
"package": "Amazon.CDK.AWS.SSMQuickSetup"
|
|
3432
|
+
},
|
|
3433
|
+
"java": {
|
|
3434
|
+
"package": "software.amazon.awscdk.services.ssmquicksetup"
|
|
3435
|
+
},
|
|
3436
|
+
"python": {
|
|
3437
|
+
"module": "aws_cdk.aws_ssmquicksetup"
|
|
3438
|
+
}
|
|
3439
|
+
}
|
|
3440
|
+
},
|
|
3415
3441
|
"aws-cdk-lib.aws_sso": {
|
|
3416
3442
|
"targets": {
|
|
3417
3443
|
"dotnet": {
|
|
@@ -3856,7 +3882,7 @@
|
|
|
3856
3882
|
},
|
|
3857
3883
|
"name": "@aws-cdk/aws-neptune-alpha",
|
|
3858
3884
|
"readme": {
|
|
3859
|
-
"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.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## 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"
|
|
3885
|
+
"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.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## 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"
|
|
3860
3886
|
},
|
|
3861
3887
|
"repository": {
|
|
3862
3888
|
"directory": "packages/@aws-cdk/aws-neptune-alpha",
|
|
@@ -4120,7 +4146,7 @@
|
|
|
4120
4146
|
},
|
|
4121
4147
|
"locationInModule": {
|
|
4122
4148
|
"filename": "lib/cluster.ts",
|
|
4123
|
-
"line":
|
|
4149
|
+
"line": 591
|
|
4124
4150
|
},
|
|
4125
4151
|
"parameters": [
|
|
4126
4152
|
{
|
|
@@ -4149,7 +4175,7 @@
|
|
|
4149
4175
|
"kind": "class",
|
|
4150
4176
|
"locationInModule": {
|
|
4151
4177
|
"filename": "lib/cluster.ts",
|
|
4152
|
-
"line":
|
|
4178
|
+
"line": 544
|
|
4153
4179
|
},
|
|
4154
4180
|
"name": "DatabaseCluster",
|
|
4155
4181
|
"properties": [
|
|
@@ -4162,7 +4188,7 @@
|
|
|
4162
4188
|
"immutable": true,
|
|
4163
4189
|
"locationInModule": {
|
|
4164
4190
|
"filename": "lib/cluster.ts",
|
|
4165
|
-
"line":
|
|
4191
|
+
"line": 550
|
|
4166
4192
|
},
|
|
4167
4193
|
"name": "DEFAULT_NUM_INSTANCES",
|
|
4168
4194
|
"static": true,
|
|
@@ -4178,7 +4204,7 @@
|
|
|
4178
4204
|
"immutable": true,
|
|
4179
4205
|
"locationInModule": {
|
|
4180
4206
|
"filename": "lib/cluster.ts",
|
|
4181
|
-
"line":
|
|
4207
|
+
"line": 553
|
|
4182
4208
|
},
|
|
4183
4209
|
"name": "clusterEndpoint",
|
|
4184
4210
|
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseClusterBase",
|
|
@@ -4194,7 +4220,7 @@
|
|
|
4194
4220
|
"immutable": true,
|
|
4195
4221
|
"locationInModule": {
|
|
4196
4222
|
"filename": "lib/cluster.ts",
|
|
4197
|
-
"line":
|
|
4223
|
+
"line": 552
|
|
4198
4224
|
},
|
|
4199
4225
|
"name": "clusterIdentifier",
|
|
4200
4226
|
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseClusterBase",
|
|
@@ -4210,7 +4236,7 @@
|
|
|
4210
4236
|
"immutable": true,
|
|
4211
4237
|
"locationInModule": {
|
|
4212
4238
|
"filename": "lib/cluster.ts",
|
|
4213
|
-
"line":
|
|
4239
|
+
"line": 554
|
|
4214
4240
|
},
|
|
4215
4241
|
"name": "clusterReadEndpoint",
|
|
4216
4242
|
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseClusterBase",
|
|
@@ -4230,7 +4256,7 @@
|
|
|
4230
4256
|
"immutable": true,
|
|
4231
4257
|
"locationInModule": {
|
|
4232
4258
|
"filename": "lib/cluster.ts",
|
|
4233
|
-
"line":
|
|
4259
|
+
"line": 562
|
|
4234
4260
|
},
|
|
4235
4261
|
"name": "clusterResourceIdentifier",
|
|
4236
4262
|
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseClusterBase",
|
|
@@ -4246,7 +4272,7 @@
|
|
|
4246
4272
|
"immutable": true,
|
|
4247
4273
|
"locationInModule": {
|
|
4248
4274
|
"filename": "lib/cluster.ts",
|
|
4249
|
-
"line":
|
|
4275
|
+
"line": 555
|
|
4250
4276
|
},
|
|
4251
4277
|
"name": "connections",
|
|
4252
4278
|
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseClusterBase",
|
|
@@ -4262,7 +4288,7 @@
|
|
|
4262
4288
|
"immutable": true,
|
|
4263
4289
|
"locationInModule": {
|
|
4264
4290
|
"filename": "lib/cluster.ts",
|
|
4265
|
-
"line":
|
|
4291
|
+
"line": 587
|
|
4266
4292
|
},
|
|
4267
4293
|
"name": "instanceEndpoints",
|
|
4268
4294
|
"type": {
|
|
@@ -4282,7 +4308,7 @@
|
|
|
4282
4308
|
"immutable": true,
|
|
4283
4309
|
"locationInModule": {
|
|
4284
4310
|
"filename": "lib/cluster.ts",
|
|
4285
|
-
"line":
|
|
4311
|
+
"line": 582
|
|
4286
4312
|
},
|
|
4287
4313
|
"name": "instanceIdentifiers",
|
|
4288
4314
|
"type": {
|
|
@@ -4302,7 +4328,7 @@
|
|
|
4302
4328
|
"immutable": true,
|
|
4303
4329
|
"locationInModule": {
|
|
4304
4330
|
"filename": "lib/cluster.ts",
|
|
4305
|
-
"line":
|
|
4331
|
+
"line": 577
|
|
4306
4332
|
},
|
|
4307
4333
|
"name": "subnetGroup",
|
|
4308
4334
|
"type": {
|
|
@@ -4317,7 +4343,7 @@
|
|
|
4317
4343
|
"immutable": true,
|
|
4318
4344
|
"locationInModule": {
|
|
4319
4345
|
"filename": "lib/cluster.ts",
|
|
4320
|
-
"line":
|
|
4346
|
+
"line": 567
|
|
4321
4347
|
},
|
|
4322
4348
|
"name": "vpc",
|
|
4323
4349
|
"type": {
|
|
@@ -4332,7 +4358,7 @@
|
|
|
4332
4358
|
"immutable": true,
|
|
4333
4359
|
"locationInModule": {
|
|
4334
4360
|
"filename": "lib/cluster.ts",
|
|
4335
|
-
"line":
|
|
4361
|
+
"line": 572
|
|
4336
4362
|
},
|
|
4337
4363
|
"name": "vpcSubnets",
|
|
4338
4364
|
"type": {
|
|
@@ -4345,7 +4371,7 @@
|
|
|
4345
4371
|
},
|
|
4346
4372
|
"locationInModule": {
|
|
4347
4373
|
"filename": "lib/cluster.ts",
|
|
4348
|
-
"line":
|
|
4374
|
+
"line": 589
|
|
4349
4375
|
},
|
|
4350
4376
|
"name": "enableIamAuthentication",
|
|
4351
4377
|
"optional": true,
|
|
@@ -4373,7 +4399,7 @@
|
|
|
4373
4399
|
"kind": "interface",
|
|
4374
4400
|
"locationInModule": {
|
|
4375
4401
|
"filename": "lib/cluster.ts",
|
|
4376
|
-
"line":
|
|
4402
|
+
"line": 417
|
|
4377
4403
|
},
|
|
4378
4404
|
"name": "DatabaseClusterAttributes",
|
|
4379
4405
|
"properties": [
|
|
@@ -4386,7 +4412,7 @@
|
|
|
4386
4412
|
"immutable": true,
|
|
4387
4413
|
"locationInModule": {
|
|
4388
4414
|
"filename": "lib/cluster.ts",
|
|
4389
|
-
"line":
|
|
4415
|
+
"line": 441
|
|
4390
4416
|
},
|
|
4391
4417
|
"name": "clusterEndpointAddress",
|
|
4392
4418
|
"type": {
|
|
@@ -4402,7 +4428,7 @@
|
|
|
4402
4428
|
"immutable": true,
|
|
4403
4429
|
"locationInModule": {
|
|
4404
4430
|
"filename": "lib/cluster.ts",
|
|
4405
|
-
"line":
|
|
4431
|
+
"line": 431
|
|
4406
4432
|
},
|
|
4407
4433
|
"name": "clusterIdentifier",
|
|
4408
4434
|
"type": {
|
|
@@ -4418,7 +4444,7 @@
|
|
|
4418
4444
|
"immutable": true,
|
|
4419
4445
|
"locationInModule": {
|
|
4420
4446
|
"filename": "lib/cluster.ts",
|
|
4421
|
-
"line":
|
|
4447
|
+
"line": 436
|
|
4422
4448
|
},
|
|
4423
4449
|
"name": "clusterResourceIdentifier",
|
|
4424
4450
|
"type": {
|
|
@@ -4434,7 +4460,7 @@
|
|
|
4434
4460
|
"immutable": true,
|
|
4435
4461
|
"locationInModule": {
|
|
4436
4462
|
"filename": "lib/cluster.ts",
|
|
4437
|
-
"line":
|
|
4463
|
+
"line": 421
|
|
4438
4464
|
},
|
|
4439
4465
|
"name": "port",
|
|
4440
4466
|
"type": {
|
|
@@ -4450,7 +4476,7 @@
|
|
|
4450
4476
|
"immutable": true,
|
|
4451
4477
|
"locationInModule": {
|
|
4452
4478
|
"filename": "lib/cluster.ts",
|
|
4453
|
-
"line":
|
|
4479
|
+
"line": 446
|
|
4454
4480
|
},
|
|
4455
4481
|
"name": "readerEndpointAddress",
|
|
4456
4482
|
"type": {
|
|
@@ -4466,7 +4492,7 @@
|
|
|
4466
4492
|
"immutable": true,
|
|
4467
4493
|
"locationInModule": {
|
|
4468
4494
|
"filename": "lib/cluster.ts",
|
|
4469
|
-
"line":
|
|
4495
|
+
"line": 426
|
|
4470
4496
|
},
|
|
4471
4497
|
"name": "securityGroup",
|
|
4472
4498
|
"type": {
|
|
@@ -4525,7 +4551,7 @@
|
|
|
4525
4551
|
"kind": "class",
|
|
4526
4552
|
"locationInModule": {
|
|
4527
4553
|
"filename": "lib/cluster.ts",
|
|
4528
|
-
"line":
|
|
4554
|
+
"line": 452
|
|
4529
4555
|
},
|
|
4530
4556
|
"methods": [
|
|
4531
4557
|
{
|
|
@@ -4535,7 +4561,7 @@
|
|
|
4535
4561
|
},
|
|
4536
4562
|
"locationInModule": {
|
|
4537
4563
|
"filename": "lib/cluster.ts",
|
|
4538
|
-
"line":
|
|
4564
|
+
"line": 457
|
|
4539
4565
|
},
|
|
4540
4566
|
"name": "fromDatabaseClusterAttributes",
|
|
4541
4567
|
"parameters": [
|
|
@@ -4572,7 +4598,7 @@
|
|
|
4572
4598
|
},
|
|
4573
4599
|
"locationInModule": {
|
|
4574
4600
|
"filename": "lib/cluster.ts",
|
|
4575
|
-
"line":
|
|
4601
|
+
"line": 501
|
|
4576
4602
|
},
|
|
4577
4603
|
"name": "grant",
|
|
4578
4604
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
|
|
@@ -4605,7 +4631,7 @@
|
|
|
4605
4631
|
},
|
|
4606
4632
|
"locationInModule": {
|
|
4607
4633
|
"filename": "lib/cluster.ts",
|
|
4608
|
-
"line":
|
|
4634
|
+
"line": 523
|
|
4609
4635
|
},
|
|
4610
4636
|
"name": "grantConnect",
|
|
4611
4637
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
|
|
@@ -4630,7 +4656,7 @@
|
|
|
4630
4656
|
},
|
|
4631
4657
|
"locationInModule": {
|
|
4632
4658
|
"filename": "lib/cluster.ts",
|
|
4633
|
-
"line":
|
|
4659
|
+
"line": 527
|
|
4634
4660
|
},
|
|
4635
4661
|
"name": "metric",
|
|
4636
4662
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
|
|
@@ -4667,7 +4693,7 @@
|
|
|
4667
4693
|
"immutable": true,
|
|
4668
4694
|
"locationInModule": {
|
|
4669
4695
|
"filename": "lib/cluster.ts",
|
|
4670
|
-
"line":
|
|
4696
|
+
"line": 487
|
|
4671
4697
|
},
|
|
4672
4698
|
"name": "clusterEndpoint",
|
|
4673
4699
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
|
|
@@ -4684,7 +4710,7 @@
|
|
|
4684
4710
|
"immutable": true,
|
|
4685
4711
|
"locationInModule": {
|
|
4686
4712
|
"filename": "lib/cluster.ts",
|
|
4687
|
-
"line":
|
|
4713
|
+
"line": 477
|
|
4688
4714
|
},
|
|
4689
4715
|
"name": "clusterIdentifier",
|
|
4690
4716
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
|
|
@@ -4701,7 +4727,7 @@
|
|
|
4701
4727
|
"immutable": true,
|
|
4702
4728
|
"locationInModule": {
|
|
4703
4729
|
"filename": "lib/cluster.ts",
|
|
4704
|
-
"line":
|
|
4730
|
+
"line": 492
|
|
4705
4731
|
},
|
|
4706
4732
|
"name": "clusterReadEndpoint",
|
|
4707
4733
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
|
|
@@ -4718,7 +4744,7 @@
|
|
|
4718
4744
|
"immutable": true,
|
|
4719
4745
|
"locationInModule": {
|
|
4720
4746
|
"filename": "lib/cluster.ts",
|
|
4721
|
-
"line":
|
|
4747
|
+
"line": 482
|
|
4722
4748
|
},
|
|
4723
4749
|
"name": "clusterResourceIdentifier",
|
|
4724
4750
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
|
|
@@ -4735,7 +4761,7 @@
|
|
|
4735
4761
|
"immutable": true,
|
|
4736
4762
|
"locationInModule": {
|
|
4737
4763
|
"filename": "lib/cluster.ts",
|
|
4738
|
-
"line":
|
|
4764
|
+
"line": 497
|
|
4739
4765
|
},
|
|
4740
4766
|
"name": "connections",
|
|
4741
4767
|
"overrides": "aws-cdk-lib.aws_ec2.IConnectable",
|
|
@@ -4750,7 +4776,7 @@
|
|
|
4750
4776
|
},
|
|
4751
4777
|
"locationInModule": {
|
|
4752
4778
|
"filename": "lib/cluster.ts",
|
|
4753
|
-
"line":
|
|
4779
|
+
"line": 499
|
|
4754
4780
|
},
|
|
4755
4781
|
"name": "enableIamAuthentication",
|
|
4756
4782
|
"optional": true,
|
|
@@ -4777,7 +4803,7 @@
|
|
|
4777
4803
|
"kind": "interface",
|
|
4778
4804
|
"locationInModule": {
|
|
4779
4805
|
"filename": "lib/cluster.ts",
|
|
4780
|
-
"line":
|
|
4806
|
+
"line": 150
|
|
4781
4807
|
},
|
|
4782
4808
|
"name": "DatabaseClusterProps",
|
|
4783
4809
|
"properties": [
|
|
@@ -4790,7 +4816,7 @@
|
|
|
4790
4816
|
"immutable": true,
|
|
4791
4817
|
"locationInModule": {
|
|
4792
4818
|
"filename": "lib/cluster.ts",
|
|
4793
|
-
"line":
|
|
4819
|
+
"line": 225
|
|
4794
4820
|
},
|
|
4795
4821
|
"name": "instanceType",
|
|
4796
4822
|
"type": {
|
|
@@ -4807,7 +4833,7 @@
|
|
|
4807
4833
|
"immutable": true,
|
|
4808
4834
|
"locationInModule": {
|
|
4809
4835
|
"filename": "lib/cluster.ts",
|
|
4810
|
-
"line":
|
|
4836
|
+
"line": 279
|
|
4811
4837
|
},
|
|
4812
4838
|
"name": "vpc",
|
|
4813
4839
|
"type": {
|
|
@@ -4824,7 +4850,7 @@
|
|
|
4824
4850
|
"immutable": true,
|
|
4825
4851
|
"locationInModule": {
|
|
4826
4852
|
"filename": "lib/cluster.ts",
|
|
4827
|
-
"line":
|
|
4853
|
+
"line": 232
|
|
4828
4854
|
},
|
|
4829
4855
|
"name": "associatedRoles",
|
|
4830
4856
|
"optional": true,
|
|
@@ -4847,7 +4873,7 @@
|
|
|
4847
4873
|
"immutable": true,
|
|
4848
4874
|
"locationInModule": {
|
|
4849
4875
|
"filename": "lib/cluster.ts",
|
|
4850
|
-
"line":
|
|
4876
|
+
"line": 311
|
|
4851
4877
|
},
|
|
4852
4878
|
"name": "autoMinorVersionUpgrade",
|
|
4853
4879
|
"optional": true,
|
|
@@ -4865,7 +4891,7 @@
|
|
|
4865
4891
|
"immutable": true,
|
|
4866
4892
|
"locationInModule": {
|
|
4867
4893
|
"filename": "lib/cluster.ts",
|
|
4868
|
-
"line":
|
|
4894
|
+
"line": 163
|
|
4869
4895
|
},
|
|
4870
4896
|
"name": "backupRetention",
|
|
4871
4897
|
"optional": true,
|
|
@@ -4884,7 +4910,7 @@
|
|
|
4884
4910
|
"immutable": true,
|
|
4885
4911
|
"locationInModule": {
|
|
4886
4912
|
"filename": "lib/cluster.ts",
|
|
4887
|
-
"line":
|
|
4913
|
+
"line": 322
|
|
4888
4914
|
},
|
|
4889
4915
|
"name": "cloudwatchLogsExports",
|
|
4890
4916
|
"optional": true,
|
|
@@ -4908,7 +4934,7 @@
|
|
|
4908
4934
|
"immutable": true,
|
|
4909
4935
|
"locationInModule": {
|
|
4910
4936
|
"filename": "lib/cluster.ts",
|
|
4911
|
-
"line":
|
|
4937
|
+
"line": 331
|
|
4912
4938
|
},
|
|
4913
4939
|
"name": "cloudwatchLogsRetention",
|
|
4914
4940
|
"optional": true,
|
|
@@ -4926,7 +4952,7 @@
|
|
|
4926
4952
|
"immutable": true,
|
|
4927
4953
|
"locationInModule": {
|
|
4928
4954
|
"filename": "lib/cluster.ts",
|
|
4929
|
-
"line":
|
|
4955
|
+
"line": 339
|
|
4930
4956
|
},
|
|
4931
4957
|
"name": "cloudwatchLogsRetentionRole",
|
|
4932
4958
|
"optional": true,
|
|
@@ -4944,7 +4970,7 @@
|
|
|
4944
4970
|
"immutable": true,
|
|
4945
4971
|
"locationInModule": {
|
|
4946
4972
|
"filename": "lib/cluster.ts",
|
|
4947
|
-
"line":
|
|
4973
|
+
"line": 258
|
|
4948
4974
|
},
|
|
4949
4975
|
"name": "clusterParameterGroup",
|
|
4950
4976
|
"optional": true,
|
|
@@ -4962,7 +4988,7 @@
|
|
|
4962
4988
|
"immutable": true,
|
|
4963
4989
|
"locationInModule": {
|
|
4964
4990
|
"filename": "lib/cluster.ts",
|
|
4965
|
-
"line":
|
|
4991
|
+
"line": 354
|
|
4966
4992
|
},
|
|
4967
4993
|
"name": "copyTagsToSnapshot",
|
|
4968
4994
|
"optional": true,
|
|
@@ -4980,7 +5006,7 @@
|
|
|
4980
5006
|
"immutable": true,
|
|
4981
5007
|
"locationInModule": {
|
|
4982
5008
|
"filename": "lib/cluster.ts",
|
|
4983
|
-
"line":
|
|
5009
|
+
"line": 203
|
|
4984
5010
|
},
|
|
4985
5011
|
"name": "dbClusterName",
|
|
4986
5012
|
"optional": true,
|
|
@@ -4998,7 +5024,7 @@
|
|
|
4998
5024
|
"immutable": true,
|
|
4999
5025
|
"locationInModule": {
|
|
5000
5026
|
"filename": "lib/cluster.ts",
|
|
5001
|
-
"line":
|
|
5027
|
+
"line": 239
|
|
5002
5028
|
},
|
|
5003
5029
|
"name": "deletionProtection",
|
|
5004
5030
|
"optional": true,
|
|
@@ -5016,7 +5042,7 @@
|
|
|
5016
5042
|
"immutable": true,
|
|
5017
5043
|
"locationInModule": {
|
|
5018
5044
|
"filename": "lib/cluster.ts",
|
|
5019
|
-
"line":
|
|
5045
|
+
"line": 156
|
|
5020
5046
|
},
|
|
5021
5047
|
"name": "engineVersion",
|
|
5022
5048
|
"optional": true,
|
|
@@ -5034,7 +5060,7 @@
|
|
|
5034
5060
|
"immutable": true,
|
|
5035
5061
|
"locationInModule": {
|
|
5036
5062
|
"filename": "lib/cluster.ts",
|
|
5037
|
-
"line":
|
|
5063
|
+
"line": 210
|
|
5038
5064
|
},
|
|
5039
5065
|
"name": "iamAuthentication",
|
|
5040
5066
|
"optional": true,
|
|
@@ -5053,7 +5079,7 @@
|
|
|
5053
5079
|
"immutable": true,
|
|
5054
5080
|
"locationInModule": {
|
|
5055
5081
|
"filename": "lib/cluster.ts",
|
|
5056
|
-
"line":
|
|
5082
|
+
"line": 220
|
|
5057
5083
|
},
|
|
5058
5084
|
"name": "instanceIdentifierBase",
|
|
5059
5085
|
"optional": true,
|
|
@@ -5071,7 +5097,7 @@
|
|
|
5071
5097
|
"immutable": true,
|
|
5072
5098
|
"locationInModule": {
|
|
5073
5099
|
"filename": "lib/cluster.ts",
|
|
5074
|
-
"line":
|
|
5100
|
+
"line": 196
|
|
5075
5101
|
},
|
|
5076
5102
|
"name": "instances",
|
|
5077
5103
|
"optional": true,
|
|
@@ -5089,7 +5115,7 @@
|
|
|
5089
5115
|
"immutable": true,
|
|
5090
5116
|
"locationInModule": {
|
|
5091
5117
|
"filename": "lib/cluster.ts",
|
|
5092
|
-
"line":
|
|
5118
|
+
"line": 182
|
|
5093
5119
|
},
|
|
5094
5120
|
"name": "kmsKey",
|
|
5095
5121
|
"optional": true,
|
|
@@ -5107,7 +5133,7 @@
|
|
|
5107
5133
|
"immutable": true,
|
|
5108
5134
|
"locationInModule": {
|
|
5109
5135
|
"filename": "lib/cluster.ts",
|
|
5110
|
-
"line":
|
|
5136
|
+
"line": 265
|
|
5111
5137
|
},
|
|
5112
5138
|
"name": "parameterGroup",
|
|
5113
5139
|
"optional": true,
|
|
@@ -5115,6 +5141,24 @@
|
|
|
5115
5141
|
"fqn": "@aws-cdk/aws-neptune-alpha.IParameterGroup"
|
|
5116
5142
|
}
|
|
5117
5143
|
},
|
|
5144
|
+
{
|
|
5145
|
+
"abstract": true,
|
|
5146
|
+
"docs": {
|
|
5147
|
+
"default": "8182",
|
|
5148
|
+
"stability": "experimental",
|
|
5149
|
+
"summary": "The port number on which the DB instances in the DB cluster accept connections."
|
|
5150
|
+
},
|
|
5151
|
+
"immutable": true,
|
|
5152
|
+
"locationInModule": {
|
|
5153
|
+
"filename": "lib/cluster.ts",
|
|
5154
|
+
"line": 361
|
|
5155
|
+
},
|
|
5156
|
+
"name": "port",
|
|
5157
|
+
"optional": true,
|
|
5158
|
+
"type": {
|
|
5159
|
+
"primitive": "number"
|
|
5160
|
+
}
|
|
5161
|
+
},
|
|
5118
5162
|
{
|
|
5119
5163
|
"abstract": true,
|
|
5120
5164
|
"docs": {
|
|
@@ -5126,7 +5170,7 @@
|
|
|
5126
5170
|
"immutable": true,
|
|
5127
5171
|
"locationInModule": {
|
|
5128
5172
|
"filename": "lib/cluster.ts",
|
|
5129
|
-
"line":
|
|
5173
|
+
"line": 175
|
|
5130
5174
|
},
|
|
5131
5175
|
"name": "preferredBackupWindow",
|
|
5132
5176
|
"optional": true,
|
|
@@ -5145,7 +5189,7 @@
|
|
|
5145
5189
|
"immutable": true,
|
|
5146
5190
|
"locationInModule": {
|
|
5147
5191
|
"filename": "lib/cluster.ts",
|
|
5148
|
-
"line":
|
|
5192
|
+
"line": 251
|
|
5149
5193
|
},
|
|
5150
5194
|
"name": "preferredMaintenanceWindow",
|
|
5151
5195
|
"optional": true,
|
|
@@ -5164,7 +5208,7 @@
|
|
|
5164
5208
|
"immutable": true,
|
|
5165
5209
|
"locationInModule": {
|
|
5166
5210
|
"filename": "lib/cluster.ts",
|
|
5167
|
-
"line":
|
|
5211
|
+
"line": 303
|
|
5168
5212
|
},
|
|
5169
5213
|
"name": "removalPolicy",
|
|
5170
5214
|
"optional": true,
|
|
@@ -5182,7 +5226,7 @@
|
|
|
5182
5226
|
"immutable": true,
|
|
5183
5227
|
"locationInModule": {
|
|
5184
5228
|
"filename": "lib/cluster.ts",
|
|
5185
|
-
"line":
|
|
5229
|
+
"line": 293
|
|
5186
5230
|
},
|
|
5187
5231
|
"name": "securityGroups",
|
|
5188
5232
|
"optional": true,
|
|
@@ -5206,7 +5250,7 @@
|
|
|
5206
5250
|
"immutable": true,
|
|
5207
5251
|
"locationInModule": {
|
|
5208
5252
|
"filename": "lib/cluster.ts",
|
|
5209
|
-
"line":
|
|
5253
|
+
"line": 347
|
|
5210
5254
|
},
|
|
5211
5255
|
"name": "serverlessScalingConfiguration",
|
|
5212
5256
|
"optional": true,
|
|
@@ -5224,7 +5268,7 @@
|
|
|
5224
5268
|
"immutable": true,
|
|
5225
5269
|
"locationInModule": {
|
|
5226
5270
|
"filename": "lib/cluster.ts",
|
|
5227
|
-
"line":
|
|
5271
|
+
"line": 189
|
|
5228
5272
|
},
|
|
5229
5273
|
"name": "storageEncrypted",
|
|
5230
5274
|
"optional": true,
|
|
@@ -5242,7 +5286,7 @@
|
|
|
5242
5286
|
"immutable": true,
|
|
5243
5287
|
"locationInModule": {
|
|
5244
5288
|
"filename": "lib/cluster.ts",
|
|
5245
|
-
"line":
|
|
5289
|
+
"line": 272
|
|
5246
5290
|
},
|
|
5247
5291
|
"name": "subnetGroup",
|
|
5248
5292
|
"optional": true,
|
|
@@ -5260,7 +5304,7 @@
|
|
|
5260
5304
|
"immutable": true,
|
|
5261
5305
|
"locationInModule": {
|
|
5262
5306
|
"filename": "lib/cluster.ts",
|
|
5263
|
-
"line":
|
|
5307
|
+
"line": 286
|
|
5264
5308
|
},
|
|
5265
5309
|
"name": "vpcSubnets",
|
|
5266
5310
|
"optional": true,
|
|
@@ -5290,7 +5334,7 @@
|
|
|
5290
5334
|
},
|
|
5291
5335
|
"locationInModule": {
|
|
5292
5336
|
"filename": "lib/instance.ts",
|
|
5293
|
-
"line":
|
|
5337
|
+
"line": 493
|
|
5294
5338
|
},
|
|
5295
5339
|
"parameters": [
|
|
5296
5340
|
{
|
|
@@ -5319,7 +5363,7 @@
|
|
|
5319
5363
|
"kind": "class",
|
|
5320
5364
|
"locationInModule": {
|
|
5321
5365
|
"filename": "lib/instance.ts",
|
|
5322
|
-
"line":
|
|
5366
|
+
"line": 466
|
|
5323
5367
|
},
|
|
5324
5368
|
"name": "DatabaseInstance",
|
|
5325
5369
|
"properties": [
|
|
@@ -5331,7 +5375,7 @@
|
|
|
5331
5375
|
"immutable": true,
|
|
5332
5376
|
"locationInModule": {
|
|
5333
5377
|
"filename": "lib/instance.ts",
|
|
5334
|
-
"line":
|
|
5378
|
+
"line": 471
|
|
5335
5379
|
},
|
|
5336
5380
|
"name": "cluster",
|
|
5337
5381
|
"type": {
|
|
@@ -5349,7 +5393,7 @@
|
|
|
5349
5393
|
"immutable": true,
|
|
5350
5394
|
"locationInModule": {
|
|
5351
5395
|
"filename": "lib/instance.ts",
|
|
5352
|
-
"line":
|
|
5396
|
+
"line": 486
|
|
5353
5397
|
},
|
|
5354
5398
|
"name": "dbInstanceEndpointAddress",
|
|
5355
5399
|
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseInstanceBase",
|
|
@@ -5368,7 +5412,7 @@
|
|
|
5368
5412
|
"immutable": true,
|
|
5369
5413
|
"locationInModule": {
|
|
5370
5414
|
"filename": "lib/instance.ts",
|
|
5371
|
-
"line":
|
|
5415
|
+
"line": 491
|
|
5372
5416
|
},
|
|
5373
5417
|
"name": "dbInstanceEndpointPort",
|
|
5374
5418
|
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseInstanceBase",
|
|
@@ -5387,7 +5431,7 @@
|
|
|
5387
5431
|
"immutable": true,
|
|
5388
5432
|
"locationInModule": {
|
|
5389
5433
|
"filename": "lib/instance.ts",
|
|
5390
|
-
"line":
|
|
5434
|
+
"line": 481
|
|
5391
5435
|
},
|
|
5392
5436
|
"name": "instanceEndpoint",
|
|
5393
5437
|
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseInstanceBase",
|
|
@@ -5406,7 +5450,7 @@
|
|
|
5406
5450
|
"immutable": true,
|
|
5407
5451
|
"locationInModule": {
|
|
5408
5452
|
"filename": "lib/instance.ts",
|
|
5409
|
-
"line":
|
|
5453
|
+
"line": 476
|
|
5410
5454
|
},
|
|
5411
5455
|
"name": "instanceIdentifier",
|
|
5412
5456
|
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseInstanceBase",
|
|
@@ -5432,7 +5476,7 @@
|
|
|
5432
5476
|
"kind": "interface",
|
|
5433
5477
|
"locationInModule": {
|
|
5434
5478
|
"filename": "lib/instance.ts",
|
|
5435
|
-
"line":
|
|
5479
|
+
"line": 346
|
|
5436
5480
|
},
|
|
5437
5481
|
"name": "DatabaseInstanceAttributes",
|
|
5438
5482
|
"properties": [
|
|
@@ -5445,7 +5489,7 @@
|
|
|
5445
5489
|
"immutable": true,
|
|
5446
5490
|
"locationInModule": {
|
|
5447
5491
|
"filename": "lib/instance.ts",
|
|
5448
|
-
"line":
|
|
5492
|
+
"line": 355
|
|
5449
5493
|
},
|
|
5450
5494
|
"name": "instanceEndpointAddress",
|
|
5451
5495
|
"type": {
|
|
@@ -5461,7 +5505,7 @@
|
|
|
5461
5505
|
"immutable": true,
|
|
5462
5506
|
"locationInModule": {
|
|
5463
5507
|
"filename": "lib/instance.ts",
|
|
5464
|
-
"line":
|
|
5508
|
+
"line": 350
|
|
5465
5509
|
},
|
|
5466
5510
|
"name": "instanceIdentifier",
|
|
5467
5511
|
"type": {
|
|
@@ -5477,7 +5521,7 @@
|
|
|
5477
5521
|
"immutable": true,
|
|
5478
5522
|
"locationInModule": {
|
|
5479
5523
|
"filename": "lib/instance.ts",
|
|
5480
|
-
"line":
|
|
5524
|
+
"line": 360
|
|
5481
5525
|
},
|
|
5482
5526
|
"name": "port",
|
|
5483
5527
|
"type": {
|
|
@@ -5536,7 +5580,7 @@
|
|
|
5536
5580
|
"kind": "class",
|
|
5537
5581
|
"locationInModule": {
|
|
5538
5582
|
"filename": "lib/instance.ts",
|
|
5539
|
-
"line":
|
|
5583
|
+
"line": 411
|
|
5540
5584
|
},
|
|
5541
5585
|
"methods": [
|
|
5542
5586
|
{
|
|
@@ -5546,7 +5590,7 @@
|
|
|
5546
5590
|
},
|
|
5547
5591
|
"locationInModule": {
|
|
5548
5592
|
"filename": "lib/instance.ts",
|
|
5549
|
-
"line":
|
|
5593
|
+
"line": 415
|
|
5550
5594
|
},
|
|
5551
5595
|
"name": "fromDatabaseInstanceAttributes",
|
|
5552
5596
|
"parameters": [
|
|
@@ -5586,7 +5630,7 @@
|
|
|
5586
5630
|
},
|
|
5587
5631
|
"locationInModule": {
|
|
5588
5632
|
"filename": "lib/instance.ts",
|
|
5589
|
-
"line":
|
|
5633
|
+
"line": 449
|
|
5590
5634
|
},
|
|
5591
5635
|
"name": "metric",
|
|
5592
5636
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseInstance",
|
|
@@ -5626,7 +5670,7 @@
|
|
|
5626
5670
|
"immutable": true,
|
|
5627
5671
|
"locationInModule": {
|
|
5628
5672
|
"filename": "lib/instance.ts",
|
|
5629
|
-
"line":
|
|
5673
|
+
"line": 429
|
|
5630
5674
|
},
|
|
5631
5675
|
"name": "dbInstanceEndpointAddress",
|
|
5632
5676
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseInstance",
|
|
@@ -5646,7 +5690,7 @@
|
|
|
5646
5690
|
"immutable": true,
|
|
5647
5691
|
"locationInModule": {
|
|
5648
5692
|
"filename": "lib/instance.ts",
|
|
5649
|
-
"line":
|
|
5693
|
+
"line": 434
|
|
5650
5694
|
},
|
|
5651
5695
|
"name": "dbInstanceEndpointPort",
|
|
5652
5696
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseInstance",
|
|
@@ -5666,7 +5710,7 @@
|
|
|
5666
5710
|
"immutable": true,
|
|
5667
5711
|
"locationInModule": {
|
|
5668
5712
|
"filename": "lib/instance.ts",
|
|
5669
|
-
"line":
|
|
5713
|
+
"line": 439
|
|
5670
5714
|
},
|
|
5671
5715
|
"name": "instanceEndpoint",
|
|
5672
5716
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseInstance",
|
|
@@ -5686,7 +5730,7 @@
|
|
|
5686
5730
|
"immutable": true,
|
|
5687
5731
|
"locationInModule": {
|
|
5688
5732
|
"filename": "lib/instance.ts",
|
|
5689
|
-
"line":
|
|
5733
|
+
"line": 444
|
|
5690
5734
|
},
|
|
5691
5735
|
"name": "instanceIdentifier",
|
|
5692
5736
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseInstance",
|
|
@@ -5712,7 +5756,7 @@
|
|
|
5712
5756
|
"kind": "interface",
|
|
5713
5757
|
"locationInModule": {
|
|
5714
5758
|
"filename": "lib/instance.ts",
|
|
5715
|
-
"line":
|
|
5759
|
+
"line": 366
|
|
5716
5760
|
},
|
|
5717
5761
|
"name": "DatabaseInstanceProps",
|
|
5718
5762
|
"properties": [
|
|
@@ -5725,7 +5769,7 @@
|
|
|
5725
5769
|
"immutable": true,
|
|
5726
5770
|
"locationInModule": {
|
|
5727
5771
|
"filename": "lib/instance.ts",
|
|
5728
|
-
"line":
|
|
5772
|
+
"line": 370
|
|
5729
5773
|
},
|
|
5730
5774
|
"name": "cluster",
|
|
5731
5775
|
"type": {
|
|
@@ -5741,7 +5785,7 @@
|
|
|
5741
5785
|
"immutable": true,
|
|
5742
5786
|
"locationInModule": {
|
|
5743
5787
|
"filename": "lib/instance.ts",
|
|
5744
|
-
"line":
|
|
5788
|
+
"line": 375
|
|
5745
5789
|
},
|
|
5746
5790
|
"name": "instanceType",
|
|
5747
5791
|
"type": {
|
|
@@ -5758,7 +5802,7 @@
|
|
|
5758
5802
|
"immutable": true,
|
|
5759
5803
|
"locationInModule": {
|
|
5760
5804
|
"filename": "lib/instance.ts",
|
|
5761
|
-
"line":
|
|
5805
|
+
"line": 382
|
|
5762
5806
|
},
|
|
5763
5807
|
"name": "availabilityZone",
|
|
5764
5808
|
"optional": true,
|
|
@@ -5777,7 +5821,7 @@
|
|
|
5777
5821
|
"immutable": true,
|
|
5778
5822
|
"locationInModule": {
|
|
5779
5823
|
"filename": "lib/instance.ts",
|
|
5780
|
-
"line":
|
|
5824
|
+
"line": 390
|
|
5781
5825
|
},
|
|
5782
5826
|
"name": "dbInstanceName",
|
|
5783
5827
|
"optional": true,
|
|
@@ -5795,7 +5839,7 @@
|
|
|
5795
5839
|
"immutable": true,
|
|
5796
5840
|
"locationInModule": {
|
|
5797
5841
|
"filename": "lib/instance.ts",
|
|
5798
|
-
"line":
|
|
5842
|
+
"line": 397
|
|
5799
5843
|
},
|
|
5800
5844
|
"name": "parameterGroup",
|
|
5801
5845
|
"optional": true,
|
|
@@ -5813,7 +5857,7 @@
|
|
|
5813
5857
|
"immutable": true,
|
|
5814
5858
|
"locationInModule": {
|
|
5815
5859
|
"filename": "lib/instance.ts",
|
|
5816
|
-
"line":
|
|
5860
|
+
"line": 405
|
|
5817
5861
|
},
|
|
5818
5862
|
"name": "removalPolicy",
|
|
5819
5863
|
"optional": true,
|
|
@@ -5932,7 +5976,7 @@
|
|
|
5932
5976
|
},
|
|
5933
5977
|
"locationInModule": {
|
|
5934
5978
|
"filename": "lib/cluster.ts",
|
|
5935
|
-
"line":
|
|
5979
|
+
"line": 112
|
|
5936
5980
|
},
|
|
5937
5981
|
"parameters": [
|
|
5938
5982
|
{
|
|
@@ -6212,13 +6256,47 @@
|
|
|
6212
6256
|
"const": true,
|
|
6213
6257
|
"docs": {
|
|
6214
6258
|
"stability": "experimental",
|
|
6215
|
-
"summary": "Neptune engine version 1.
|
|
6259
|
+
"summary": "Neptune engine version 1.2.1.1."
|
|
6216
6260
|
},
|
|
6217
6261
|
"immutable": true,
|
|
6218
6262
|
"locationInModule": {
|
|
6219
6263
|
"filename": "lib/cluster.ts",
|
|
6220
6264
|
"line": 82
|
|
6221
6265
|
},
|
|
6266
|
+
"name": "V1_2_1_1",
|
|
6267
|
+
"static": true,
|
|
6268
|
+
"type": {
|
|
6269
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.EngineVersion"
|
|
6270
|
+
}
|
|
6271
|
+
},
|
|
6272
|
+
{
|
|
6273
|
+
"const": true,
|
|
6274
|
+
"docs": {
|
|
6275
|
+
"stability": "experimental",
|
|
6276
|
+
"summary": "Neptune engine version 1.2.1.2."
|
|
6277
|
+
},
|
|
6278
|
+
"immutable": true,
|
|
6279
|
+
"locationInModule": {
|
|
6280
|
+
"filename": "lib/cluster.ts",
|
|
6281
|
+
"line": 86
|
|
6282
|
+
},
|
|
6283
|
+
"name": "V1_2_1_2",
|
|
6284
|
+
"static": true,
|
|
6285
|
+
"type": {
|
|
6286
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.EngineVersion"
|
|
6287
|
+
}
|
|
6288
|
+
},
|
|
6289
|
+
{
|
|
6290
|
+
"const": true,
|
|
6291
|
+
"docs": {
|
|
6292
|
+
"stability": "experimental",
|
|
6293
|
+
"summary": "Neptune engine version 1.3.0.0."
|
|
6294
|
+
},
|
|
6295
|
+
"immutable": true,
|
|
6296
|
+
"locationInModule": {
|
|
6297
|
+
"filename": "lib/cluster.ts",
|
|
6298
|
+
"line": 90
|
|
6299
|
+
},
|
|
6222
6300
|
"name": "V1_3_0_0",
|
|
6223
6301
|
"static": true,
|
|
6224
6302
|
"type": {
|
|
@@ -6234,7 +6312,7 @@
|
|
|
6234
6312
|
"immutable": true,
|
|
6235
6313
|
"locationInModule": {
|
|
6236
6314
|
"filename": "lib/cluster.ts",
|
|
6237
|
-
"line":
|
|
6315
|
+
"line": 94
|
|
6238
6316
|
},
|
|
6239
6317
|
"name": "V1_3_1_0",
|
|
6240
6318
|
"static": true,
|
|
@@ -6242,6 +6320,57 @@
|
|
|
6242
6320
|
"fqn": "@aws-cdk/aws-neptune-alpha.EngineVersion"
|
|
6243
6321
|
}
|
|
6244
6322
|
},
|
|
6323
|
+
{
|
|
6324
|
+
"const": true,
|
|
6325
|
+
"docs": {
|
|
6326
|
+
"stability": "experimental",
|
|
6327
|
+
"summary": "Neptune engine version 1.3.2.0."
|
|
6328
|
+
},
|
|
6329
|
+
"immutable": true,
|
|
6330
|
+
"locationInModule": {
|
|
6331
|
+
"filename": "lib/cluster.ts",
|
|
6332
|
+
"line": 98
|
|
6333
|
+
},
|
|
6334
|
+
"name": "V1_3_2_0",
|
|
6335
|
+
"static": true,
|
|
6336
|
+
"type": {
|
|
6337
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.EngineVersion"
|
|
6338
|
+
}
|
|
6339
|
+
},
|
|
6340
|
+
{
|
|
6341
|
+
"const": true,
|
|
6342
|
+
"docs": {
|
|
6343
|
+
"stability": "experimental",
|
|
6344
|
+
"summary": "Neptune engine version 1.3.2.1."
|
|
6345
|
+
},
|
|
6346
|
+
"immutable": true,
|
|
6347
|
+
"locationInModule": {
|
|
6348
|
+
"filename": "lib/cluster.ts",
|
|
6349
|
+
"line": 102
|
|
6350
|
+
},
|
|
6351
|
+
"name": "V1_3_2_1",
|
|
6352
|
+
"static": true,
|
|
6353
|
+
"type": {
|
|
6354
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.EngineVersion"
|
|
6355
|
+
}
|
|
6356
|
+
},
|
|
6357
|
+
{
|
|
6358
|
+
"const": true,
|
|
6359
|
+
"docs": {
|
|
6360
|
+
"stability": "experimental",
|
|
6361
|
+
"summary": "Neptune engine version 1.3.3.0."
|
|
6362
|
+
},
|
|
6363
|
+
"immutable": true,
|
|
6364
|
+
"locationInModule": {
|
|
6365
|
+
"filename": "lib/cluster.ts",
|
|
6366
|
+
"line": 106
|
|
6367
|
+
},
|
|
6368
|
+
"name": "V1_3_3_0",
|
|
6369
|
+
"static": true,
|
|
6370
|
+
"type": {
|
|
6371
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.EngineVersion"
|
|
6372
|
+
}
|
|
6373
|
+
},
|
|
6245
6374
|
{
|
|
6246
6375
|
"docs": {
|
|
6247
6376
|
"stability": "experimental",
|
|
@@ -6250,7 +6379,7 @@
|
|
|
6250
6379
|
"immutable": true,
|
|
6251
6380
|
"locationInModule": {
|
|
6252
6381
|
"filename": "lib/cluster.ts",
|
|
6253
|
-
"line":
|
|
6382
|
+
"line": 112
|
|
6254
6383
|
},
|
|
6255
6384
|
"name": "version",
|
|
6256
6385
|
"type": {
|
|
@@ -6310,7 +6439,7 @@
|
|
|
6310
6439
|
"kind": "interface",
|
|
6311
6440
|
"locationInModule": {
|
|
6312
6441
|
"filename": "lib/cluster.ts",
|
|
6313
|
-
"line":
|
|
6442
|
+
"line": 367
|
|
6314
6443
|
},
|
|
6315
6444
|
"methods": [
|
|
6316
6445
|
{
|
|
@@ -6322,7 +6451,7 @@
|
|
|
6322
6451
|
},
|
|
6323
6452
|
"locationInModule": {
|
|
6324
6453
|
"filename": "lib/cluster.ts",
|
|
6325
|
-
"line":
|
|
6454
|
+
"line": 398
|
|
6326
6455
|
},
|
|
6327
6456
|
"name": "grant",
|
|
6328
6457
|
"parameters": [
|
|
@@ -6361,7 +6490,7 @@
|
|
|
6361
6490
|
},
|
|
6362
6491
|
"locationInModule": {
|
|
6363
6492
|
"filename": "lib/cluster.ts",
|
|
6364
|
-
"line":
|
|
6493
|
+
"line": 403
|
|
6365
6494
|
},
|
|
6366
6495
|
"name": "grantConnect",
|
|
6367
6496
|
"parameters": [
|
|
@@ -6387,7 +6516,7 @@
|
|
|
6387
6516
|
},
|
|
6388
6517
|
"locationInModule": {
|
|
6389
6518
|
"filename": "lib/cluster.ts",
|
|
6390
|
-
"line":
|
|
6519
|
+
"line": 411
|
|
6391
6520
|
},
|
|
6392
6521
|
"name": "metric",
|
|
6393
6522
|
"parameters": [
|
|
@@ -6426,7 +6555,7 @@
|
|
|
6426
6555
|
"immutable": true,
|
|
6427
6556
|
"locationInModule": {
|
|
6428
6557
|
"filename": "lib/cluster.ts",
|
|
6429
|
-
"line":
|
|
6558
|
+
"line": 383
|
|
6430
6559
|
},
|
|
6431
6560
|
"name": "clusterEndpoint",
|
|
6432
6561
|
"type": {
|
|
@@ -6442,7 +6571,7 @@
|
|
|
6442
6571
|
"immutable": true,
|
|
6443
6572
|
"locationInModule": {
|
|
6444
6573
|
"filename": "lib/cluster.ts",
|
|
6445
|
-
"line":
|
|
6574
|
+
"line": 371
|
|
6446
6575
|
},
|
|
6447
6576
|
"name": "clusterIdentifier",
|
|
6448
6577
|
"type": {
|
|
@@ -6461,7 +6590,7 @@
|
|
|
6461
6590
|
"immutable": true,
|
|
6462
6591
|
"locationInModule": {
|
|
6463
6592
|
"filename": "lib/cluster.ts",
|
|
6464
|
-
"line":
|
|
6593
|
+
"line": 389
|
|
6465
6594
|
},
|
|
6466
6595
|
"name": "clusterReadEndpoint",
|
|
6467
6596
|
"type": {
|
|
@@ -6480,7 +6609,7 @@
|
|
|
6480
6609
|
"immutable": true,
|
|
6481
6610
|
"locationInModule": {
|
|
6482
6611
|
"filename": "lib/cluster.ts",
|
|
6483
|
-
"line":
|
|
6612
|
+
"line": 377
|
|
6484
6613
|
},
|
|
6485
6614
|
"name": "clusterResourceIdentifier",
|
|
6486
6615
|
"type": {
|
|
@@ -6503,7 +6632,7 @@
|
|
|
6503
6632
|
"kind": "interface",
|
|
6504
6633
|
"locationInModule": {
|
|
6505
6634
|
"filename": "lib/instance.ts",
|
|
6506
|
-
"line":
|
|
6635
|
+
"line": 309
|
|
6507
6636
|
},
|
|
6508
6637
|
"methods": [
|
|
6509
6638
|
{
|
|
@@ -6515,7 +6644,7 @@
|
|
|
6515
6644
|
},
|
|
6516
6645
|
"locationInModule": {
|
|
6517
6646
|
"filename": "lib/instance.ts",
|
|
6518
|
-
"line":
|
|
6647
|
+
"line": 340
|
|
6519
6648
|
},
|
|
6520
6649
|
"name": "metric",
|
|
6521
6650
|
"parameters": [
|
|
@@ -6554,7 +6683,7 @@
|
|
|
6554
6683
|
"immutable": true,
|
|
6555
6684
|
"locationInModule": {
|
|
6556
6685
|
"filename": "lib/instance.ts",
|
|
6557
|
-
"line":
|
|
6686
|
+
"line": 325
|
|
6558
6687
|
},
|
|
6559
6688
|
"name": "dbInstanceEndpointAddress",
|
|
6560
6689
|
"type": {
|
|
@@ -6573,7 +6702,7 @@
|
|
|
6573
6702
|
"immutable": true,
|
|
6574
6703
|
"locationInModule": {
|
|
6575
6704
|
"filename": "lib/instance.ts",
|
|
6576
|
-
"line":
|
|
6705
|
+
"line": 332
|
|
6577
6706
|
},
|
|
6578
6707
|
"name": "dbInstanceEndpointPort",
|
|
6579
6708
|
"type": {
|
|
@@ -6589,7 +6718,7 @@
|
|
|
6589
6718
|
"immutable": true,
|
|
6590
6719
|
"locationInModule": {
|
|
6591
6720
|
"filename": "lib/instance.ts",
|
|
6592
|
-
"line":
|
|
6721
|
+
"line": 318
|
|
6593
6722
|
},
|
|
6594
6723
|
"name": "instanceEndpoint",
|
|
6595
6724
|
"type": {
|
|
@@ -6605,7 +6734,7 @@
|
|
|
6605
6734
|
"immutable": true,
|
|
6606
6735
|
"locationInModule": {
|
|
6607
6736
|
"filename": "lib/instance.ts",
|
|
6608
|
-
"line":
|
|
6737
|
+
"line": 313
|
|
6609
6738
|
},
|
|
6610
6739
|
"name": "instanceIdentifier",
|
|
6611
6740
|
"type": {
|
|
@@ -6714,7 +6843,7 @@
|
|
|
6714
6843
|
},
|
|
6715
6844
|
"locationInModule": {
|
|
6716
6845
|
"filename": "lib/instance.ts",
|
|
6717
|
-
"line":
|
|
6846
|
+
"line": 288
|
|
6718
6847
|
},
|
|
6719
6848
|
"name": "of",
|
|
6720
6849
|
"parameters": [
|
|
@@ -6744,7 +6873,7 @@
|
|
|
6744
6873
|
"immutable": true,
|
|
6745
6874
|
"locationInModule": {
|
|
6746
6875
|
"filename": "lib/instance.ts",
|
|
6747
|
-
"line":
|
|
6876
|
+
"line": 258
|
|
6748
6877
|
},
|
|
6749
6878
|
"name": "R4_2XLARGE",
|
|
6750
6879
|
"static": true,
|
|
@@ -6761,7 +6890,7 @@
|
|
|
6761
6890
|
"immutable": true,
|
|
6762
6891
|
"locationInModule": {
|
|
6763
6892
|
"filename": "lib/instance.ts",
|
|
6764
|
-
"line":
|
|
6893
|
+
"line": 263
|
|
6765
6894
|
},
|
|
6766
6895
|
"name": "R4_4XLARGE",
|
|
6767
6896
|
"static": true,
|
|
@@ -6778,7 +6907,7 @@
|
|
|
6778
6907
|
"immutable": true,
|
|
6779
6908
|
"locationInModule": {
|
|
6780
6909
|
"filename": "lib/instance.ts",
|
|
6781
|
-
"line":
|
|
6910
|
+
"line": 268
|
|
6782
6911
|
},
|
|
6783
6912
|
"name": "R4_8XLARGE",
|
|
6784
6913
|
"static": true,
|
|
@@ -6795,7 +6924,7 @@
|
|
|
6795
6924
|
"immutable": true,
|
|
6796
6925
|
"locationInModule": {
|
|
6797
6926
|
"filename": "lib/instance.ts",
|
|
6798
|
-
"line":
|
|
6927
|
+
"line": 248
|
|
6799
6928
|
},
|
|
6800
6929
|
"name": "R4_LARGE",
|
|
6801
6930
|
"static": true,
|
|
@@ -6812,7 +6941,7 @@
|
|
|
6812
6941
|
"immutable": true,
|
|
6813
6942
|
"locationInModule": {
|
|
6814
6943
|
"filename": "lib/instance.ts",
|
|
6815
|
-
"line":
|
|
6944
|
+
"line": 253
|
|
6816
6945
|
},
|
|
6817
6946
|
"name": "R4_XLARGE",
|
|
6818
6947
|
"static": true,
|
|
@@ -6829,7 +6958,7 @@
|
|
|
6829
6958
|
"immutable": true,
|
|
6830
6959
|
"locationInModule": {
|
|
6831
6960
|
"filename": "lib/instance.ts",
|
|
6832
|
-
"line":
|
|
6961
|
+
"line": 193
|
|
6833
6962
|
},
|
|
6834
6963
|
"name": "R5_12XLARGE",
|
|
6835
6964
|
"static": true,
|
|
@@ -6837,6 +6966,23 @@
|
|
|
6837
6966
|
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
6838
6967
|
}
|
|
6839
6968
|
},
|
|
6969
|
+
{
|
|
6970
|
+
"const": true,
|
|
6971
|
+
"docs": {
|
|
6972
|
+
"stability": "experimental",
|
|
6973
|
+
"summary": "db.r5.16xlarge."
|
|
6974
|
+
},
|
|
6975
|
+
"immutable": true,
|
|
6976
|
+
"locationInModule": {
|
|
6977
|
+
"filename": "lib/instance.ts",
|
|
6978
|
+
"line": 198
|
|
6979
|
+
},
|
|
6980
|
+
"name": "R5_16XLARGE",
|
|
6981
|
+
"static": true,
|
|
6982
|
+
"type": {
|
|
6983
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
6984
|
+
}
|
|
6985
|
+
},
|
|
6840
6986
|
{
|
|
6841
6987
|
"const": true,
|
|
6842
6988
|
"docs": {
|
|
@@ -6846,7 +6992,7 @@
|
|
|
6846
6992
|
"immutable": true,
|
|
6847
6993
|
"locationInModule": {
|
|
6848
6994
|
"filename": "lib/instance.ts",
|
|
6849
|
-
"line":
|
|
6995
|
+
"line": 203
|
|
6850
6996
|
},
|
|
6851
6997
|
"name": "R5_24XLARGE",
|
|
6852
6998
|
"static": true,
|
|
@@ -6863,7 +7009,7 @@
|
|
|
6863
7009
|
"immutable": true,
|
|
6864
7010
|
"locationInModule": {
|
|
6865
7011
|
"filename": "lib/instance.ts",
|
|
6866
|
-
"line":
|
|
7012
|
+
"line": 178
|
|
6867
7013
|
},
|
|
6868
7014
|
"name": "R5_2XLARGE",
|
|
6869
7015
|
"static": true,
|
|
@@ -6880,7 +7026,7 @@
|
|
|
6880
7026
|
"immutable": true,
|
|
6881
7027
|
"locationInModule": {
|
|
6882
7028
|
"filename": "lib/instance.ts",
|
|
6883
|
-
"line":
|
|
7029
|
+
"line": 183
|
|
6884
7030
|
},
|
|
6885
7031
|
"name": "R5_4XLARGE",
|
|
6886
7032
|
"static": true,
|
|
@@ -6897,7 +7043,7 @@
|
|
|
6897
7043
|
"immutable": true,
|
|
6898
7044
|
"locationInModule": {
|
|
6899
7045
|
"filename": "lib/instance.ts",
|
|
6900
|
-
"line":
|
|
7046
|
+
"line": 188
|
|
6901
7047
|
},
|
|
6902
7048
|
"name": "R5_8XLARGE",
|
|
6903
7049
|
"static": true,
|
|
@@ -6914,7 +7060,7 @@
|
|
|
6914
7060
|
"immutable": true,
|
|
6915
7061
|
"locationInModule": {
|
|
6916
7062
|
"filename": "lib/instance.ts",
|
|
6917
|
-
"line":
|
|
7063
|
+
"line": 168
|
|
6918
7064
|
},
|
|
6919
7065
|
"name": "R5_LARGE",
|
|
6920
7066
|
"static": true,
|
|
@@ -6931,7 +7077,7 @@
|
|
|
6931
7077
|
"immutable": true,
|
|
6932
7078
|
"locationInModule": {
|
|
6933
7079
|
"filename": "lib/instance.ts",
|
|
6934
|
-
"line":
|
|
7080
|
+
"line": 173
|
|
6935
7081
|
},
|
|
6936
7082
|
"name": "R5_XLARGE",
|
|
6937
7083
|
"static": true,
|
|
@@ -6943,14 +7089,14 @@
|
|
|
6943
7089
|
"const": true,
|
|
6944
7090
|
"docs": {
|
|
6945
7091
|
"stability": "experimental",
|
|
6946
|
-
"summary": "db.
|
|
7092
|
+
"summary": "db.r5d.12xlarge."
|
|
6947
7093
|
},
|
|
6948
7094
|
"immutable": true,
|
|
6949
7095
|
"locationInModule": {
|
|
6950
7096
|
"filename": "lib/instance.ts",
|
|
6951
|
-
"line":
|
|
7097
|
+
"line": 233
|
|
6952
7098
|
},
|
|
6953
|
-
"name": "
|
|
7099
|
+
"name": "R5D_12XLARGE",
|
|
6954
7100
|
"static": true,
|
|
6955
7101
|
"type": {
|
|
6956
7102
|
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
@@ -6960,14 +7106,14 @@
|
|
|
6960
7106
|
"const": true,
|
|
6961
7107
|
"docs": {
|
|
6962
7108
|
"stability": "experimental",
|
|
6963
|
-
"summary": "db.
|
|
7109
|
+
"summary": "db.r5d.16xlarge."
|
|
6964
7110
|
},
|
|
6965
7111
|
"immutable": true,
|
|
6966
7112
|
"locationInModule": {
|
|
6967
7113
|
"filename": "lib/instance.ts",
|
|
6968
|
-
"line":
|
|
7114
|
+
"line": 238
|
|
6969
7115
|
},
|
|
6970
|
-
"name": "
|
|
7116
|
+
"name": "R5D_16XLARGE",
|
|
6971
7117
|
"static": true,
|
|
6972
7118
|
"type": {
|
|
6973
7119
|
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
@@ -6977,14 +7123,14 @@
|
|
|
6977
7123
|
"const": true,
|
|
6978
7124
|
"docs": {
|
|
6979
7125
|
"stability": "experimental",
|
|
6980
|
-
"summary": "db.
|
|
7126
|
+
"summary": "db.r5d.24xlarge."
|
|
6981
7127
|
},
|
|
6982
7128
|
"immutable": true,
|
|
6983
7129
|
"locationInModule": {
|
|
6984
7130
|
"filename": "lib/instance.ts",
|
|
6985
|
-
"line":
|
|
7131
|
+
"line": 243
|
|
6986
7132
|
},
|
|
6987
|
-
"name": "
|
|
7133
|
+
"name": "R5D_24XLARGE",
|
|
6988
7134
|
"static": true,
|
|
6989
7135
|
"type": {
|
|
6990
7136
|
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
@@ -6994,14 +7140,14 @@
|
|
|
6994
7140
|
"const": true,
|
|
6995
7141
|
"docs": {
|
|
6996
7142
|
"stability": "experimental",
|
|
6997
|
-
"summary": "db.
|
|
7143
|
+
"summary": "db.r5d.2xlarge."
|
|
6998
7144
|
},
|
|
6999
7145
|
"immutable": true,
|
|
7000
7146
|
"locationInModule": {
|
|
7001
7147
|
"filename": "lib/instance.ts",
|
|
7002
|
-
"line":
|
|
7148
|
+
"line": 218
|
|
7003
7149
|
},
|
|
7004
|
-
"name": "
|
|
7150
|
+
"name": "R5D_2XLARGE",
|
|
7005
7151
|
"static": true,
|
|
7006
7152
|
"type": {
|
|
7007
7153
|
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
@@ -7011,14 +7157,14 @@
|
|
|
7011
7157
|
"const": true,
|
|
7012
7158
|
"docs": {
|
|
7013
7159
|
"stability": "experimental",
|
|
7014
|
-
"summary": "db.
|
|
7160
|
+
"summary": "db.r5d.4xlarge."
|
|
7015
7161
|
},
|
|
7016
7162
|
"immutable": true,
|
|
7017
7163
|
"locationInModule": {
|
|
7018
7164
|
"filename": "lib/instance.ts",
|
|
7019
|
-
"line":
|
|
7165
|
+
"line": 223
|
|
7020
7166
|
},
|
|
7021
|
-
"name": "
|
|
7167
|
+
"name": "R5D_4XLARGE",
|
|
7022
7168
|
"static": true,
|
|
7023
7169
|
"type": {
|
|
7024
7170
|
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
@@ -7028,14 +7174,14 @@
|
|
|
7028
7174
|
"const": true,
|
|
7029
7175
|
"docs": {
|
|
7030
7176
|
"stability": "experimental",
|
|
7031
|
-
"summary": "db.
|
|
7177
|
+
"summary": "db.r5d.8xlarge."
|
|
7032
7178
|
},
|
|
7033
7179
|
"immutable": true,
|
|
7034
7180
|
"locationInModule": {
|
|
7035
7181
|
"filename": "lib/instance.ts",
|
|
7036
|
-
"line":
|
|
7182
|
+
"line": 228
|
|
7037
7183
|
},
|
|
7038
|
-
"name": "
|
|
7184
|
+
"name": "R5D_8XLARGE",
|
|
7039
7185
|
"static": true,
|
|
7040
7186
|
"type": {
|
|
7041
7187
|
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
@@ -7045,14 +7191,14 @@
|
|
|
7045
7191
|
"const": true,
|
|
7046
7192
|
"docs": {
|
|
7047
7193
|
"stability": "experimental",
|
|
7048
|
-
"summary": "db.
|
|
7194
|
+
"summary": "db.r5d.large."
|
|
7049
7195
|
},
|
|
7050
7196
|
"immutable": true,
|
|
7051
7197
|
"locationInModule": {
|
|
7052
7198
|
"filename": "lib/instance.ts",
|
|
7053
|
-
"line":
|
|
7199
|
+
"line": 208
|
|
7054
7200
|
},
|
|
7055
|
-
"name": "
|
|
7201
|
+
"name": "R5D_LARGE",
|
|
7056
7202
|
"static": true,
|
|
7057
7203
|
"type": {
|
|
7058
7204
|
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
@@ -7062,14 +7208,14 @@
|
|
|
7062
7208
|
"const": true,
|
|
7063
7209
|
"docs": {
|
|
7064
7210
|
"stability": "experimental",
|
|
7065
|
-
"summary": "db.
|
|
7211
|
+
"summary": "db.r5d.xlarge."
|
|
7066
7212
|
},
|
|
7067
7213
|
"immutable": true,
|
|
7068
7214
|
"locationInModule": {
|
|
7069
7215
|
"filename": "lib/instance.ts",
|
|
7070
|
-
"line":
|
|
7216
|
+
"line": 213
|
|
7071
7217
|
},
|
|
7072
|
-
"name": "
|
|
7218
|
+
"name": "R5D_XLARGE",
|
|
7073
7219
|
"static": true,
|
|
7074
7220
|
"type": {
|
|
7075
7221
|
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
@@ -7079,14 +7225,14 @@
|
|
|
7079
7225
|
"const": true,
|
|
7080
7226
|
"docs": {
|
|
7081
7227
|
"stability": "experimental",
|
|
7082
|
-
"summary": "db.
|
|
7228
|
+
"summary": "db.r6g.12xlarge."
|
|
7083
7229
|
},
|
|
7084
7230
|
"immutable": true,
|
|
7085
7231
|
"locationInModule": {
|
|
7086
7232
|
"filename": "lib/instance.ts",
|
|
7087
|
-
"line":
|
|
7233
|
+
"line": 113
|
|
7088
7234
|
},
|
|
7089
|
-
"name": "
|
|
7235
|
+
"name": "R6G_12XLARGE",
|
|
7090
7236
|
"static": true,
|
|
7091
7237
|
"type": {
|
|
7092
7238
|
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
@@ -7096,89 +7242,616 @@
|
|
|
7096
7242
|
"const": true,
|
|
7097
7243
|
"docs": {
|
|
7098
7244
|
"stability": "experimental",
|
|
7099
|
-
"summary": "db.
|
|
7245
|
+
"summary": "db.r6g.16xlarge."
|
|
7100
7246
|
},
|
|
7101
7247
|
"immutable": true,
|
|
7102
7248
|
"locationInModule": {
|
|
7103
7249
|
"filename": "lib/instance.ts",
|
|
7104
|
-
"line":
|
|
7250
|
+
"line": 118
|
|
7105
7251
|
},
|
|
7106
|
-
"name": "
|
|
7252
|
+
"name": "R6G_16XLARGE",
|
|
7107
7253
|
"static": true,
|
|
7108
7254
|
"type": {
|
|
7109
7255
|
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7110
7256
|
}
|
|
7111
|
-
}
|
|
7112
|
-
],
|
|
7113
|
-
"symbolId": "lib/instance:InstanceType"
|
|
7114
|
-
},
|
|
7115
|
-
"@aws-cdk/aws-neptune-alpha.LogType": {
|
|
7116
|
-
"assembly": "@aws-cdk/aws-neptune-alpha",
|
|
7117
|
-
"docs": {
|
|
7118
|
-
"see": "https://docs.aws.amazon.com/neptune/latest/userguide/cloudwatch-logs.html",
|
|
7119
|
-
"stability": "experimental",
|
|
7120
|
-
"summary": "Neptune log types that can be exported to CloudWatch logs.",
|
|
7121
|
-
"example": "// Cluster parameter group with the neptune_enable_audit_log param set to 1\nconst clusterParameterGroup = new neptune.ClusterParameterGroup(this, 'ClusterParams', {\n description: 'Cluster parameter group',\n parameters: {\n neptune_enable_audit_log: '1'\n },\n});\n\nconst cluster = new neptune.DatabaseCluster(this, 'Database', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n // Audit logs are enabled via the clusterParameterGroup\n clusterParameterGroup,\n // Optionally configuring audit logs to be exported to CloudWatch Logs\n cloudwatchLogsExports: [neptune.LogType.AUDIT],\n // Optionally set a retention period on exported CloudWatch Logs\n cloudwatchLogsRetention: logs.RetentionDays.ONE_MONTH,\n});",
|
|
7122
|
-
"custom": {
|
|
7123
|
-
"exampleMetadata": "infused"
|
|
7124
|
-
}
|
|
7125
|
-
},
|
|
7126
|
-
"fqn": "@aws-cdk/aws-neptune-alpha.LogType",
|
|
7127
|
-
"initializer": {
|
|
7128
|
-
"docs": {
|
|
7129
|
-
"stability": "experimental",
|
|
7130
|
-
"summary": "Constructor for specifying a custom log type."
|
|
7131
|
-
},
|
|
7132
|
-
"locationInModule": {
|
|
7133
|
-
"filename": "lib/cluster.ts",
|
|
7134
|
-
"line": 112
|
|
7135
7257
|
},
|
|
7136
|
-
"parameters": [
|
|
7137
|
-
{
|
|
7138
|
-
"docs": {
|
|
7139
|
-
"summary": "the log type."
|
|
7140
|
-
},
|
|
7141
|
-
"name": "value",
|
|
7142
|
-
"type": {
|
|
7143
|
-
"primitive": "string"
|
|
7144
|
-
}
|
|
7145
|
-
}
|
|
7146
|
-
]
|
|
7147
|
-
},
|
|
7148
|
-
"kind": "class",
|
|
7149
|
-
"locationInModule": {
|
|
7150
|
-
"filename": "lib/cluster.ts",
|
|
7151
|
-
"line": 100
|
|
7152
|
-
},
|
|
7153
|
-
"name": "LogType",
|
|
7154
|
-
"properties": [
|
|
7155
7258
|
{
|
|
7156
7259
|
"const": true,
|
|
7157
7260
|
"docs": {
|
|
7158
|
-
"see": "https://docs.aws.amazon.com/neptune/latest/userguide/auditing.html",
|
|
7159
7261
|
"stability": "experimental",
|
|
7160
|
-
"summary": "
|
|
7262
|
+
"summary": "db.r6g.2xlarge."
|
|
7161
7263
|
},
|
|
7162
7264
|
"immutable": true,
|
|
7163
7265
|
"locationInModule": {
|
|
7164
|
-
"filename": "lib/
|
|
7165
|
-
"line":
|
|
7266
|
+
"filename": "lib/instance.ts",
|
|
7267
|
+
"line": 98
|
|
7166
7268
|
},
|
|
7167
|
-
"name": "
|
|
7269
|
+
"name": "R6G_2XLARGE",
|
|
7168
7270
|
"static": true,
|
|
7169
7271
|
"type": {
|
|
7170
|
-
"fqn": "@aws-cdk/aws-neptune-alpha.
|
|
7272
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7171
7273
|
}
|
|
7172
7274
|
},
|
|
7173
7275
|
{
|
|
7276
|
+
"const": true,
|
|
7174
7277
|
"docs": {
|
|
7175
7278
|
"stability": "experimental",
|
|
7176
|
-
"summary": "
|
|
7279
|
+
"summary": "db.r6g.4xlarge."
|
|
7177
7280
|
},
|
|
7178
7281
|
"immutable": true,
|
|
7179
7282
|
"locationInModule": {
|
|
7180
|
-
"filename": "lib/
|
|
7181
|
-
"line":
|
|
7283
|
+
"filename": "lib/instance.ts",
|
|
7284
|
+
"line": 103
|
|
7285
|
+
},
|
|
7286
|
+
"name": "R6G_4XLARGE",
|
|
7287
|
+
"static": true,
|
|
7288
|
+
"type": {
|
|
7289
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7290
|
+
}
|
|
7291
|
+
},
|
|
7292
|
+
{
|
|
7293
|
+
"const": true,
|
|
7294
|
+
"docs": {
|
|
7295
|
+
"stability": "experimental",
|
|
7296
|
+
"summary": "db.r6g.8xlarge."
|
|
7297
|
+
},
|
|
7298
|
+
"immutable": true,
|
|
7299
|
+
"locationInModule": {
|
|
7300
|
+
"filename": "lib/instance.ts",
|
|
7301
|
+
"line": 108
|
|
7302
|
+
},
|
|
7303
|
+
"name": "R6G_8XLARGE",
|
|
7304
|
+
"static": true,
|
|
7305
|
+
"type": {
|
|
7306
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7307
|
+
}
|
|
7308
|
+
},
|
|
7309
|
+
{
|
|
7310
|
+
"const": true,
|
|
7311
|
+
"docs": {
|
|
7312
|
+
"stability": "experimental",
|
|
7313
|
+
"summary": "db.r6g.large."
|
|
7314
|
+
},
|
|
7315
|
+
"immutable": true,
|
|
7316
|
+
"locationInModule": {
|
|
7317
|
+
"filename": "lib/instance.ts",
|
|
7318
|
+
"line": 88
|
|
7319
|
+
},
|
|
7320
|
+
"name": "R6G_LARGE",
|
|
7321
|
+
"static": true,
|
|
7322
|
+
"type": {
|
|
7323
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7324
|
+
}
|
|
7325
|
+
},
|
|
7326
|
+
{
|
|
7327
|
+
"const": true,
|
|
7328
|
+
"docs": {
|
|
7329
|
+
"stability": "experimental",
|
|
7330
|
+
"summary": "db.r6g.xlarge."
|
|
7331
|
+
},
|
|
7332
|
+
"immutable": true,
|
|
7333
|
+
"locationInModule": {
|
|
7334
|
+
"filename": "lib/instance.ts",
|
|
7335
|
+
"line": 93
|
|
7336
|
+
},
|
|
7337
|
+
"name": "R6G_XLARGE",
|
|
7338
|
+
"static": true,
|
|
7339
|
+
"type": {
|
|
7340
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7341
|
+
}
|
|
7342
|
+
},
|
|
7343
|
+
{
|
|
7344
|
+
"const": true,
|
|
7345
|
+
"docs": {
|
|
7346
|
+
"stability": "experimental",
|
|
7347
|
+
"summary": "db.r6i.12xlarge."
|
|
7348
|
+
},
|
|
7349
|
+
"immutable": true,
|
|
7350
|
+
"locationInModule": {
|
|
7351
|
+
"filename": "lib/instance.ts",
|
|
7352
|
+
"line": 148
|
|
7353
|
+
},
|
|
7354
|
+
"name": "R6I_12XLARGE",
|
|
7355
|
+
"static": true,
|
|
7356
|
+
"type": {
|
|
7357
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7358
|
+
}
|
|
7359
|
+
},
|
|
7360
|
+
{
|
|
7361
|
+
"const": true,
|
|
7362
|
+
"docs": {
|
|
7363
|
+
"stability": "experimental",
|
|
7364
|
+
"summary": "db.r6i.16xlarge."
|
|
7365
|
+
},
|
|
7366
|
+
"immutable": true,
|
|
7367
|
+
"locationInModule": {
|
|
7368
|
+
"filename": "lib/instance.ts",
|
|
7369
|
+
"line": 153
|
|
7370
|
+
},
|
|
7371
|
+
"name": "R6I_16XLARGE",
|
|
7372
|
+
"static": true,
|
|
7373
|
+
"type": {
|
|
7374
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7375
|
+
}
|
|
7376
|
+
},
|
|
7377
|
+
{
|
|
7378
|
+
"const": true,
|
|
7379
|
+
"docs": {
|
|
7380
|
+
"stability": "experimental",
|
|
7381
|
+
"summary": "db.r6i.24xlarge."
|
|
7382
|
+
},
|
|
7383
|
+
"immutable": true,
|
|
7384
|
+
"locationInModule": {
|
|
7385
|
+
"filename": "lib/instance.ts",
|
|
7386
|
+
"line": 158
|
|
7387
|
+
},
|
|
7388
|
+
"name": "R6I_24XLARGE",
|
|
7389
|
+
"static": true,
|
|
7390
|
+
"type": {
|
|
7391
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7392
|
+
}
|
|
7393
|
+
},
|
|
7394
|
+
{
|
|
7395
|
+
"const": true,
|
|
7396
|
+
"docs": {
|
|
7397
|
+
"stability": "experimental",
|
|
7398
|
+
"summary": "db.r6i.2xlarge."
|
|
7399
|
+
},
|
|
7400
|
+
"immutable": true,
|
|
7401
|
+
"locationInModule": {
|
|
7402
|
+
"filename": "lib/instance.ts",
|
|
7403
|
+
"line": 133
|
|
7404
|
+
},
|
|
7405
|
+
"name": "R6I_2XLARGE",
|
|
7406
|
+
"static": true,
|
|
7407
|
+
"type": {
|
|
7408
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7409
|
+
}
|
|
7410
|
+
},
|
|
7411
|
+
{
|
|
7412
|
+
"const": true,
|
|
7413
|
+
"docs": {
|
|
7414
|
+
"stability": "experimental",
|
|
7415
|
+
"summary": "db.r6i.32xlarge."
|
|
7416
|
+
},
|
|
7417
|
+
"immutable": true,
|
|
7418
|
+
"locationInModule": {
|
|
7419
|
+
"filename": "lib/instance.ts",
|
|
7420
|
+
"line": 163
|
|
7421
|
+
},
|
|
7422
|
+
"name": "R6I_32XLARGE",
|
|
7423
|
+
"static": true,
|
|
7424
|
+
"type": {
|
|
7425
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7426
|
+
}
|
|
7427
|
+
},
|
|
7428
|
+
{
|
|
7429
|
+
"const": true,
|
|
7430
|
+
"docs": {
|
|
7431
|
+
"stability": "experimental",
|
|
7432
|
+
"summary": "db.r6i.4xlarge."
|
|
7433
|
+
},
|
|
7434
|
+
"immutable": true,
|
|
7435
|
+
"locationInModule": {
|
|
7436
|
+
"filename": "lib/instance.ts",
|
|
7437
|
+
"line": 138
|
|
7438
|
+
},
|
|
7439
|
+
"name": "R6I_4XLARGE",
|
|
7440
|
+
"static": true,
|
|
7441
|
+
"type": {
|
|
7442
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7443
|
+
}
|
|
7444
|
+
},
|
|
7445
|
+
{
|
|
7446
|
+
"const": true,
|
|
7447
|
+
"docs": {
|
|
7448
|
+
"stability": "experimental",
|
|
7449
|
+
"summary": "db.r6i.8xlarge."
|
|
7450
|
+
},
|
|
7451
|
+
"immutable": true,
|
|
7452
|
+
"locationInModule": {
|
|
7453
|
+
"filename": "lib/instance.ts",
|
|
7454
|
+
"line": 143
|
|
7455
|
+
},
|
|
7456
|
+
"name": "R6I_8XLARGE",
|
|
7457
|
+
"static": true,
|
|
7458
|
+
"type": {
|
|
7459
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7460
|
+
}
|
|
7461
|
+
},
|
|
7462
|
+
{
|
|
7463
|
+
"const": true,
|
|
7464
|
+
"docs": {
|
|
7465
|
+
"stability": "experimental",
|
|
7466
|
+
"summary": "db.r6i.large."
|
|
7467
|
+
},
|
|
7468
|
+
"immutable": true,
|
|
7469
|
+
"locationInModule": {
|
|
7470
|
+
"filename": "lib/instance.ts",
|
|
7471
|
+
"line": 123
|
|
7472
|
+
},
|
|
7473
|
+
"name": "R6I_LARGE",
|
|
7474
|
+
"static": true,
|
|
7475
|
+
"type": {
|
|
7476
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7477
|
+
}
|
|
7478
|
+
},
|
|
7479
|
+
{
|
|
7480
|
+
"const": true,
|
|
7481
|
+
"docs": {
|
|
7482
|
+
"stability": "experimental",
|
|
7483
|
+
"summary": "db.r6i.xlarge."
|
|
7484
|
+
},
|
|
7485
|
+
"immutable": true,
|
|
7486
|
+
"locationInModule": {
|
|
7487
|
+
"filename": "lib/instance.ts",
|
|
7488
|
+
"line": 128
|
|
7489
|
+
},
|
|
7490
|
+
"name": "R6I_XLARGE",
|
|
7491
|
+
"static": true,
|
|
7492
|
+
"type": {
|
|
7493
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7494
|
+
}
|
|
7495
|
+
},
|
|
7496
|
+
{
|
|
7497
|
+
"const": true,
|
|
7498
|
+
"docs": {
|
|
7499
|
+
"stability": "experimental",
|
|
7500
|
+
"summary": "db.serverless."
|
|
7501
|
+
},
|
|
7502
|
+
"immutable": true,
|
|
7503
|
+
"locationInModule": {
|
|
7504
|
+
"filename": "lib/instance.ts",
|
|
7505
|
+
"line": 283
|
|
7506
|
+
},
|
|
7507
|
+
"name": "SERVERLESS",
|
|
7508
|
+
"static": true,
|
|
7509
|
+
"type": {
|
|
7510
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7511
|
+
}
|
|
7512
|
+
},
|
|
7513
|
+
{
|
|
7514
|
+
"const": true,
|
|
7515
|
+
"docs": {
|
|
7516
|
+
"stability": "experimental",
|
|
7517
|
+
"summary": "db.t3.medium."
|
|
7518
|
+
},
|
|
7519
|
+
"immutable": true,
|
|
7520
|
+
"locationInModule": {
|
|
7521
|
+
"filename": "lib/instance.ts",
|
|
7522
|
+
"line": 278
|
|
7523
|
+
},
|
|
7524
|
+
"name": "T3_MEDIUM",
|
|
7525
|
+
"static": true,
|
|
7526
|
+
"type": {
|
|
7527
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7528
|
+
}
|
|
7529
|
+
},
|
|
7530
|
+
{
|
|
7531
|
+
"const": true,
|
|
7532
|
+
"docs": {
|
|
7533
|
+
"stability": "experimental",
|
|
7534
|
+
"summary": "db.t4g.medium."
|
|
7535
|
+
},
|
|
7536
|
+
"immutable": true,
|
|
7537
|
+
"locationInModule": {
|
|
7538
|
+
"filename": "lib/instance.ts",
|
|
7539
|
+
"line": 273
|
|
7540
|
+
},
|
|
7541
|
+
"name": "T4G_MEDIUM",
|
|
7542
|
+
"static": true,
|
|
7543
|
+
"type": {
|
|
7544
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7545
|
+
}
|
|
7546
|
+
},
|
|
7547
|
+
{
|
|
7548
|
+
"const": true,
|
|
7549
|
+
"docs": {
|
|
7550
|
+
"stability": "experimental",
|
|
7551
|
+
"summary": "db.x2g.12xlarge."
|
|
7552
|
+
},
|
|
7553
|
+
"immutable": true,
|
|
7554
|
+
"locationInModule": {
|
|
7555
|
+
"filename": "lib/instance.ts",
|
|
7556
|
+
"line": 43
|
|
7557
|
+
},
|
|
7558
|
+
"name": "X2G_12XLARGE",
|
|
7559
|
+
"static": true,
|
|
7560
|
+
"type": {
|
|
7561
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7562
|
+
}
|
|
7563
|
+
},
|
|
7564
|
+
{
|
|
7565
|
+
"const": true,
|
|
7566
|
+
"docs": {
|
|
7567
|
+
"stability": "experimental",
|
|
7568
|
+
"summary": "db.x2g.16xlarge."
|
|
7569
|
+
},
|
|
7570
|
+
"immutable": true,
|
|
7571
|
+
"locationInModule": {
|
|
7572
|
+
"filename": "lib/instance.ts",
|
|
7573
|
+
"line": 48
|
|
7574
|
+
},
|
|
7575
|
+
"name": "X2G_16XLARGE",
|
|
7576
|
+
"static": true,
|
|
7577
|
+
"type": {
|
|
7578
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7579
|
+
}
|
|
7580
|
+
},
|
|
7581
|
+
{
|
|
7582
|
+
"const": true,
|
|
7583
|
+
"docs": {
|
|
7584
|
+
"stability": "experimental",
|
|
7585
|
+
"summary": "db.x2g.2xlarge."
|
|
7586
|
+
},
|
|
7587
|
+
"immutable": true,
|
|
7588
|
+
"locationInModule": {
|
|
7589
|
+
"filename": "lib/instance.ts",
|
|
7590
|
+
"line": 28
|
|
7591
|
+
},
|
|
7592
|
+
"name": "X2G_2XLARGE",
|
|
7593
|
+
"static": true,
|
|
7594
|
+
"type": {
|
|
7595
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7596
|
+
}
|
|
7597
|
+
},
|
|
7598
|
+
{
|
|
7599
|
+
"const": true,
|
|
7600
|
+
"docs": {
|
|
7601
|
+
"stability": "experimental",
|
|
7602
|
+
"summary": "db.x2g.4xlarge."
|
|
7603
|
+
},
|
|
7604
|
+
"immutable": true,
|
|
7605
|
+
"locationInModule": {
|
|
7606
|
+
"filename": "lib/instance.ts",
|
|
7607
|
+
"line": 33
|
|
7608
|
+
},
|
|
7609
|
+
"name": "X2G_4XLARGE",
|
|
7610
|
+
"static": true,
|
|
7611
|
+
"type": {
|
|
7612
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7613
|
+
}
|
|
7614
|
+
},
|
|
7615
|
+
{
|
|
7616
|
+
"const": true,
|
|
7617
|
+
"docs": {
|
|
7618
|
+
"stability": "experimental",
|
|
7619
|
+
"summary": "db.x2g.8xlarge."
|
|
7620
|
+
},
|
|
7621
|
+
"immutable": true,
|
|
7622
|
+
"locationInModule": {
|
|
7623
|
+
"filename": "lib/instance.ts",
|
|
7624
|
+
"line": 38
|
|
7625
|
+
},
|
|
7626
|
+
"name": "X2G_8XLARGE",
|
|
7627
|
+
"static": true,
|
|
7628
|
+
"type": {
|
|
7629
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7630
|
+
}
|
|
7631
|
+
},
|
|
7632
|
+
{
|
|
7633
|
+
"const": true,
|
|
7634
|
+
"docs": {
|
|
7635
|
+
"stability": "experimental",
|
|
7636
|
+
"summary": "db.x2g.large."
|
|
7637
|
+
},
|
|
7638
|
+
"immutable": true,
|
|
7639
|
+
"locationInModule": {
|
|
7640
|
+
"filename": "lib/instance.ts",
|
|
7641
|
+
"line": 18
|
|
7642
|
+
},
|
|
7643
|
+
"name": "X2G_LARGE",
|
|
7644
|
+
"static": true,
|
|
7645
|
+
"type": {
|
|
7646
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7647
|
+
}
|
|
7648
|
+
},
|
|
7649
|
+
{
|
|
7650
|
+
"const": true,
|
|
7651
|
+
"docs": {
|
|
7652
|
+
"stability": "experimental",
|
|
7653
|
+
"summary": "db.x2g.xlarge."
|
|
7654
|
+
},
|
|
7655
|
+
"immutable": true,
|
|
7656
|
+
"locationInModule": {
|
|
7657
|
+
"filename": "lib/instance.ts",
|
|
7658
|
+
"line": 23
|
|
7659
|
+
},
|
|
7660
|
+
"name": "X2G_XLARGE",
|
|
7661
|
+
"static": true,
|
|
7662
|
+
"type": {
|
|
7663
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7664
|
+
}
|
|
7665
|
+
},
|
|
7666
|
+
{
|
|
7667
|
+
"const": true,
|
|
7668
|
+
"docs": {
|
|
7669
|
+
"stability": "experimental",
|
|
7670
|
+
"summary": "db.x2iedn.16xlarge."
|
|
7671
|
+
},
|
|
7672
|
+
"immutable": true,
|
|
7673
|
+
"locationInModule": {
|
|
7674
|
+
"filename": "lib/instance.ts",
|
|
7675
|
+
"line": 73
|
|
7676
|
+
},
|
|
7677
|
+
"name": "X2IEDN_16XLARGE",
|
|
7678
|
+
"static": true,
|
|
7679
|
+
"type": {
|
|
7680
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7681
|
+
}
|
|
7682
|
+
},
|
|
7683
|
+
{
|
|
7684
|
+
"const": true,
|
|
7685
|
+
"docs": {
|
|
7686
|
+
"stability": "experimental",
|
|
7687
|
+
"summary": "db.x2iedn.24xlarge."
|
|
7688
|
+
},
|
|
7689
|
+
"immutable": true,
|
|
7690
|
+
"locationInModule": {
|
|
7691
|
+
"filename": "lib/instance.ts",
|
|
7692
|
+
"line": 78
|
|
7693
|
+
},
|
|
7694
|
+
"name": "X2IEDN_24XLARGE",
|
|
7695
|
+
"static": true,
|
|
7696
|
+
"type": {
|
|
7697
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7698
|
+
}
|
|
7699
|
+
},
|
|
7700
|
+
{
|
|
7701
|
+
"const": true,
|
|
7702
|
+
"docs": {
|
|
7703
|
+
"stability": "experimental",
|
|
7704
|
+
"summary": "db.x2iedn.2xlarge."
|
|
7705
|
+
},
|
|
7706
|
+
"immutable": true,
|
|
7707
|
+
"locationInModule": {
|
|
7708
|
+
"filename": "lib/instance.ts",
|
|
7709
|
+
"line": 58
|
|
7710
|
+
},
|
|
7711
|
+
"name": "X2IEDN_2XLARGE",
|
|
7712
|
+
"static": true,
|
|
7713
|
+
"type": {
|
|
7714
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7715
|
+
}
|
|
7716
|
+
},
|
|
7717
|
+
{
|
|
7718
|
+
"const": true,
|
|
7719
|
+
"docs": {
|
|
7720
|
+
"stability": "experimental",
|
|
7721
|
+
"summary": "db.x2iedn.32xlarge."
|
|
7722
|
+
},
|
|
7723
|
+
"immutable": true,
|
|
7724
|
+
"locationInModule": {
|
|
7725
|
+
"filename": "lib/instance.ts",
|
|
7726
|
+
"line": 83
|
|
7727
|
+
},
|
|
7728
|
+
"name": "X2IEDN_32XLARGE",
|
|
7729
|
+
"static": true,
|
|
7730
|
+
"type": {
|
|
7731
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7732
|
+
}
|
|
7733
|
+
},
|
|
7734
|
+
{
|
|
7735
|
+
"const": true,
|
|
7736
|
+
"docs": {
|
|
7737
|
+
"stability": "experimental",
|
|
7738
|
+
"summary": "db.x2iedn.4xlarge."
|
|
7739
|
+
},
|
|
7740
|
+
"immutable": true,
|
|
7741
|
+
"locationInModule": {
|
|
7742
|
+
"filename": "lib/instance.ts",
|
|
7743
|
+
"line": 63
|
|
7744
|
+
},
|
|
7745
|
+
"name": "X2IEDN_4XLARGE",
|
|
7746
|
+
"static": true,
|
|
7747
|
+
"type": {
|
|
7748
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7749
|
+
}
|
|
7750
|
+
},
|
|
7751
|
+
{
|
|
7752
|
+
"const": true,
|
|
7753
|
+
"docs": {
|
|
7754
|
+
"stability": "experimental",
|
|
7755
|
+
"summary": "db.x2iedn.8xlarge."
|
|
7756
|
+
},
|
|
7757
|
+
"immutable": true,
|
|
7758
|
+
"locationInModule": {
|
|
7759
|
+
"filename": "lib/instance.ts",
|
|
7760
|
+
"line": 68
|
|
7761
|
+
},
|
|
7762
|
+
"name": "X2IEDN_8XLARGE",
|
|
7763
|
+
"static": true,
|
|
7764
|
+
"type": {
|
|
7765
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7766
|
+
}
|
|
7767
|
+
},
|
|
7768
|
+
{
|
|
7769
|
+
"const": true,
|
|
7770
|
+
"docs": {
|
|
7771
|
+
"stability": "experimental",
|
|
7772
|
+
"summary": "db.x2iedn.xlarge."
|
|
7773
|
+
},
|
|
7774
|
+
"immutable": true,
|
|
7775
|
+
"locationInModule": {
|
|
7776
|
+
"filename": "lib/instance.ts",
|
|
7777
|
+
"line": 53
|
|
7778
|
+
},
|
|
7779
|
+
"name": "X2IEDN_XLARGE",
|
|
7780
|
+
"static": true,
|
|
7781
|
+
"type": {
|
|
7782
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.InstanceType"
|
|
7783
|
+
}
|
|
7784
|
+
}
|
|
7785
|
+
],
|
|
7786
|
+
"symbolId": "lib/instance:InstanceType"
|
|
7787
|
+
},
|
|
7788
|
+
"@aws-cdk/aws-neptune-alpha.LogType": {
|
|
7789
|
+
"assembly": "@aws-cdk/aws-neptune-alpha",
|
|
7790
|
+
"docs": {
|
|
7791
|
+
"see": "https://docs.aws.amazon.com/neptune/latest/userguide/cloudwatch-logs.html",
|
|
7792
|
+
"stability": "experimental",
|
|
7793
|
+
"summary": "Neptune log types that can be exported to CloudWatch logs.",
|
|
7794
|
+
"example": "// Cluster parameter group with the neptune_enable_audit_log param set to 1\nconst clusterParameterGroup = new neptune.ClusterParameterGroup(this, 'ClusterParams', {\n description: 'Cluster parameter group',\n parameters: {\n neptune_enable_audit_log: '1'\n },\n});\n\nconst cluster = new neptune.DatabaseCluster(this, 'Database', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n // Audit logs are enabled via the clusterParameterGroup\n clusterParameterGroup,\n // Optionally configuring audit logs to be exported to CloudWatch Logs\n cloudwatchLogsExports: [neptune.LogType.AUDIT],\n // Optionally set a retention period on exported CloudWatch Logs\n cloudwatchLogsRetention: logs.RetentionDays.ONE_MONTH,\n});",
|
|
7795
|
+
"custom": {
|
|
7796
|
+
"exampleMetadata": "infused"
|
|
7797
|
+
}
|
|
7798
|
+
},
|
|
7799
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.LogType",
|
|
7800
|
+
"initializer": {
|
|
7801
|
+
"docs": {
|
|
7802
|
+
"stability": "experimental",
|
|
7803
|
+
"summary": "Constructor for specifying a custom log type."
|
|
7804
|
+
},
|
|
7805
|
+
"locationInModule": {
|
|
7806
|
+
"filename": "lib/cluster.ts",
|
|
7807
|
+
"line": 132
|
|
7808
|
+
},
|
|
7809
|
+
"parameters": [
|
|
7810
|
+
{
|
|
7811
|
+
"docs": {
|
|
7812
|
+
"summary": "the log type."
|
|
7813
|
+
},
|
|
7814
|
+
"name": "value",
|
|
7815
|
+
"type": {
|
|
7816
|
+
"primitive": "string"
|
|
7817
|
+
}
|
|
7818
|
+
}
|
|
7819
|
+
]
|
|
7820
|
+
},
|
|
7821
|
+
"kind": "class",
|
|
7822
|
+
"locationInModule": {
|
|
7823
|
+
"filename": "lib/cluster.ts",
|
|
7824
|
+
"line": 120
|
|
7825
|
+
},
|
|
7826
|
+
"name": "LogType",
|
|
7827
|
+
"properties": [
|
|
7828
|
+
{
|
|
7829
|
+
"const": true,
|
|
7830
|
+
"docs": {
|
|
7831
|
+
"see": "https://docs.aws.amazon.com/neptune/latest/userguide/auditing.html",
|
|
7832
|
+
"stability": "experimental",
|
|
7833
|
+
"summary": "Audit logs."
|
|
7834
|
+
},
|
|
7835
|
+
"immutable": true,
|
|
7836
|
+
"locationInModule": {
|
|
7837
|
+
"filename": "lib/cluster.ts",
|
|
7838
|
+
"line": 126
|
|
7839
|
+
},
|
|
7840
|
+
"name": "AUDIT",
|
|
7841
|
+
"static": true,
|
|
7842
|
+
"type": {
|
|
7843
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.LogType"
|
|
7844
|
+
}
|
|
7845
|
+
},
|
|
7846
|
+
{
|
|
7847
|
+
"docs": {
|
|
7848
|
+
"stability": "experimental",
|
|
7849
|
+
"summary": "the log type."
|
|
7850
|
+
},
|
|
7851
|
+
"immutable": true,
|
|
7852
|
+
"locationInModule": {
|
|
7853
|
+
"filename": "lib/cluster.ts",
|
|
7854
|
+
"line": 132
|
|
7182
7855
|
},
|
|
7183
7856
|
"name": "value",
|
|
7184
7857
|
"type": {
|
|
@@ -7517,7 +8190,7 @@
|
|
|
7517
8190
|
"kind": "interface",
|
|
7518
8191
|
"locationInModule": {
|
|
7519
8192
|
"filename": "lib/cluster.ts",
|
|
7520
|
-
"line":
|
|
8193
|
+
"line": 135
|
|
7521
8194
|
},
|
|
7522
8195
|
"name": "ServerlessScalingConfiguration",
|
|
7523
8196
|
"properties": [
|
|
@@ -7530,7 +8203,7 @@
|
|
|
7530
8203
|
"immutable": true,
|
|
7531
8204
|
"locationInModule": {
|
|
7532
8205
|
"filename": "lib/cluster.ts",
|
|
7533
|
-
"line":
|
|
8206
|
+
"line": 144
|
|
7534
8207
|
},
|
|
7535
8208
|
"name": "maxCapacity",
|
|
7536
8209
|
"type": {
|
|
@@ -7546,7 +8219,7 @@
|
|
|
7546
8219
|
"immutable": true,
|
|
7547
8220
|
"locationInModule": {
|
|
7548
8221
|
"filename": "lib/cluster.ts",
|
|
7549
|
-
"line":
|
|
8222
|
+
"line": 139
|
|
7550
8223
|
},
|
|
7551
8224
|
"name": "minCapacity",
|
|
7552
8225
|
"type": {
|
|
@@ -7777,6 +8450,6 @@
|
|
|
7777
8450
|
"symbolId": "lib/subnet-group:SubnetGroupProps"
|
|
7778
8451
|
}
|
|
7779
8452
|
},
|
|
7780
|
-
"version": "2.
|
|
8453
|
+
"version": "2.157.0-alpha.0",
|
|
7781
8454
|
"fingerprint": "**********"
|
|
7782
8455
|
}
|