@aws-cdk/aws-neptune-alpha 2.43.1-alpha.0 → 2.44.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 +440 -169
- package/.jsii.tabl.json.gz +0 -0
- package/.warnings.jsii.js +3 -1
- package/README.md +15 -1
- package/lib/cluster.d.ts +9 -0
- package/lib/cluster.js +15 -4
- package/lib/endpoint.js +1 -1
- package/lib/instance.d.ts +37 -4
- package/lib/instance.js +54 -32
- package/lib/parameter-group.js +3 -3
- package/lib/subnet-group.js +1 -1
- package/package.json +8 -8
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.44.0",
|
|
12
12
|
"constructs": "^10.0.0"
|
|
13
13
|
},
|
|
14
14
|
"dependencyClosure": {
|
|
@@ -3084,7 +3084,7 @@
|
|
|
3084
3084
|
},
|
|
3085
3085
|
"name": "@aws-cdk/aws-neptune-alpha",
|
|
3086
3086
|
"readme": {
|
|
3087
|
-
"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` package contains primitives for setting up Neptune database clusters and instances.\n\n```ts nofixture\nimport * as neptune from '@aws-cdk/aws-neptune-alpha';\n```\n\n## Starting a Neptune Database\n\nTo set up a Neptune database, define a `DatabaseCluster`. You must always launch a database in a VPC.\n\n```ts\nconst cluster = new neptune.DatabaseCluster(this, 'Database', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n});\n```\n\nBy default only writer instance is provisioned with this construct.\n\n## Connecting\n\nTo control who can access the cluster, use the `.connections` attribute. Neptune databases have a default port, so\nyou don't need to specify the port:\n\n```ts fixture=with-cluster\ncluster.connections.allowDefaultPortFromAnyIpv4('Open to the world');\n```\n\nThe endpoints to access your database cluster will be available as the `.clusterEndpoint` and `.clusterReadEndpoint`\nattributes:\n\n```ts fixture=with-cluster\nconst writeAddress = cluster.clusterEndpoint.socketAddress; // \"HOSTNAME:PORT\"\n```\n\n## IAM Authentication\n\nYou can also authenticate to a database cluster using AWS Identity and Access Management (IAM) database authentication;\nSee <https://docs.aws.amazon.com/neptune/latest/userguide/iam-auth.html> for more information and a list of supported\nversions and limitations.\n\nThe following example shows enabling IAM authentication for a database cluster and granting connection access to an IAM role.\n\n```ts\nconst cluster = new neptune.DatabaseCluster(this, 'Cluster', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n iamAuthentication: true, // Optional - will be automatically set if you call grantConnect() or grant().\n});\nconst role = new iam.Role(this, 'DBRole', { assumedBy: new iam.AccountPrincipal(this.account) });\n// Use one of the following statements to grant the role the necessary permissions\ncluster.grantConnect(role); // Grant the role neptune-db:* access to the DB\ncluster.grant(role, 'neptune-db:ReadDataViaQuery', 'neptune-db:WriteDataViaQuery'); // Grant the role the specified actions to the DB\n```\n\n## Customizing parameters\n\nNeptune allows configuring database behavior by supplying custom parameter groups. For more details, refer to the\nfollowing link: <https://docs.aws.amazon.com/neptune/latest/userguide/parameters.html>\n\n```ts\nconst clusterParams = new neptune.ClusterParameterGroup(this, 'ClusterParams', {\n description: 'Cluster parameter group',\n parameters: {\n neptune_enable_audit_log: '1'\n },\n});\n\nconst dbParams = new neptune.ParameterGroup(this, 'DbParams', {\n description: 'Db parameter group',\n parameters: {\n neptune_query_timeout: '120000',\n },\n});\n\nconst cluster = new neptune.DatabaseCluster(this, 'Database', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n clusterParameterGroup: clusterParams,\n parameterGroup: dbParams,\n});\n```\n\nNote: if you want to use Neptune engine `1.2.0.0` or later, you need to specify the corresponding `engineVersion` prop to `neptune.DatabaseCluster` and `family` prop of `ParameterGroupFamily.NEPTUNE_1_2` to `neptune.ClusterParameterGroup` and `neptune.ParameterGroup`.\n\n## Adding replicas\n\n`DatabaseCluster` allows launching replicas along with the writer instance. This can be specified using the `instanceCount`\nattribute.\n\n```ts\nconst cluster = new neptune.DatabaseCluster(this, 'Database', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n instances: 2,\n});\n```\n\nAdditionally it is also possible to add replicas using `DatabaseInstance` for an existing cluster.\n\n```ts fixture=with-cluster\nconst replica1 = new neptune.DatabaseInstance(this, 'Instance', {\n cluster,\n instanceType: neptune.InstanceType.R5_LARGE,\n});\n```\n\n## Automatic minor version upgrades\n\nBy setting `autoMinorVersionUpgrade` to true, Neptune will automatically update\nthe engine of the entire cluster to the latest minor version after a stabilization\nwindow of 2 to 3 weeks.\n\n```ts\nnew neptune.DatabaseCluster(this, 'Cluster', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n autoMinorVersionUpgrade: true,\n});\n```\n"
|
|
3087
|
+
"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` package contains primitives for setting up Neptune database clusters and instances.\n\n```ts nofixture\nimport * as neptune from '@aws-cdk/aws-neptune-alpha';\n```\n\n## Starting a Neptune Database\n\nTo set up a Neptune database, define a `DatabaseCluster`. You must always launch a database in a VPC.\n\n```ts\nconst cluster = new neptune.DatabaseCluster(this, 'Database', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n});\n```\n\nBy default only writer instance is provisioned with this construct.\n\n## Connecting\n\nTo control who can access the cluster, use the `.connections` attribute. Neptune databases have a default port, so\nyou don't need to specify the port:\n\n```ts fixture=with-cluster\ncluster.connections.allowDefaultPortFromAnyIpv4('Open to the world');\n```\n\nThe endpoints to access your database cluster will be available as the `.clusterEndpoint` and `.clusterReadEndpoint`\nattributes:\n\n```ts fixture=with-cluster\nconst writeAddress = cluster.clusterEndpoint.socketAddress; // \"HOSTNAME:PORT\"\n```\n\n## IAM Authentication\n\nYou can also authenticate to a database cluster using AWS Identity and Access Management (IAM) database authentication;\nSee <https://docs.aws.amazon.com/neptune/latest/userguide/iam-auth.html> for more information and a list of supported\nversions and limitations.\n\nThe following example shows enabling IAM authentication for a database cluster and granting connection access to an IAM role.\n\n```ts\nconst cluster = new neptune.DatabaseCluster(this, 'Cluster', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n iamAuthentication: true, // Optional - will be automatically set if you call grantConnect() or grant().\n});\nconst role = new iam.Role(this, 'DBRole', { assumedBy: new iam.AccountPrincipal(this.account) });\n// Use one of the following statements to grant the role the necessary permissions\ncluster.grantConnect(role); // Grant the role neptune-db:* access to the DB\ncluster.grant(role, 'neptune-db:ReadDataViaQuery', 'neptune-db:WriteDataViaQuery'); // Grant the role the specified actions to the DB\n```\n\n## Customizing parameters\n\nNeptune allows configuring database behavior by supplying custom parameter groups. For more details, refer to the\nfollowing link: <https://docs.aws.amazon.com/neptune/latest/userguide/parameters.html>\n\n```ts\nconst clusterParams = new neptune.ClusterParameterGroup(this, 'ClusterParams', {\n description: 'Cluster parameter group',\n parameters: {\n neptune_enable_audit_log: '1'\n },\n});\n\nconst dbParams = new neptune.ParameterGroup(this, 'DbParams', {\n description: 'Db parameter group',\n parameters: {\n neptune_query_timeout: '120000',\n },\n});\n\nconst cluster = new neptune.DatabaseCluster(this, 'Database', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n clusterParameterGroup: clusterParams,\n parameterGroup: dbParams,\n});\n```\n\nNote: if you want to use Neptune engine `1.2.0.0` or later, you need to specify the corresponding `engineVersion` prop to `neptune.DatabaseCluster` and `family` prop of `ParameterGroupFamily.NEPTUNE_1_2` to `neptune.ClusterParameterGroup` and `neptune.ParameterGroup`.\n\n## Adding replicas\n\n`DatabaseCluster` allows launching replicas along with the writer instance. This can be specified using the `instanceCount`\nattribute.\n\n```ts\nconst cluster = new neptune.DatabaseCluster(this, 'Database', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n instances: 2,\n});\n```\n\nAdditionally, it is also possible to add replicas using `DatabaseInstance` for an existing cluster.\n\n```ts fixture=with-cluster\nconst replica1 = new neptune.DatabaseInstance(this, 'Instance', {\n cluster,\n instanceType: neptune.InstanceType.R5_LARGE,\n});\n```\n\n## Automatic minor version upgrades\n\nBy setting `autoMinorVersionUpgrade` to true, Neptune will automatically update\nthe engine of the entire cluster to the latest minor version after a stabilization\nwindow of 2 to 3 weeks.\n\n```ts\nnew neptune.DatabaseCluster(this, 'Cluster', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n autoMinorVersionUpgrade: true,\n});\n```\n\n## Metrics\n\nBoth `DatabaseCluster` and `DatabaseInstance` provide a `metric()` method to help with cluster-level and instance-level monitoring.\n\n```ts\ndeclare const cluster: neptune.DatabaseCluster;\ndeclare const instance: neptune.DatabaseInstance;\n\ncluster.metric('SparqlRequestsPerSec'); // cluster-level SparqlErrors metric\ninstance.metric('SparqlRequestsPerSec') // instance-level SparqlErrors metric\n```\n\nFor more details on the available metrics, refer to https://docs.aws.amazon.com/neptune/latest/userguide/cw-metrics.html\n"
|
|
3088
3088
|
},
|
|
3089
3089
|
"repository": {
|
|
3090
3090
|
"directory": "packages/individual-packages/aws-neptune",
|
|
@@ -3348,7 +3348,7 @@
|
|
|
3348
3348
|
},
|
|
3349
3349
|
"locationInModule": {
|
|
3350
3350
|
"filename": "lib/cluster.ts",
|
|
3351
|
-
"line":
|
|
3351
|
+
"line": 475
|
|
3352
3352
|
},
|
|
3353
3353
|
"parameters": [
|
|
3354
3354
|
{
|
|
@@ -3377,7 +3377,7 @@
|
|
|
3377
3377
|
"kind": "class",
|
|
3378
3378
|
"locationInModule": {
|
|
3379
3379
|
"filename": "lib/cluster.ts",
|
|
3380
|
-
"line":
|
|
3380
|
+
"line": 428
|
|
3381
3381
|
},
|
|
3382
3382
|
"name": "DatabaseCluster",
|
|
3383
3383
|
"properties": [
|
|
@@ -3390,7 +3390,7 @@
|
|
|
3390
3390
|
"immutable": true,
|
|
3391
3391
|
"locationInModule": {
|
|
3392
3392
|
"filename": "lib/cluster.ts",
|
|
3393
|
-
"line":
|
|
3393
|
+
"line": 434
|
|
3394
3394
|
},
|
|
3395
3395
|
"name": "DEFAULT_NUM_INSTANCES",
|
|
3396
3396
|
"static": true,
|
|
@@ -3406,7 +3406,7 @@
|
|
|
3406
3406
|
"immutable": true,
|
|
3407
3407
|
"locationInModule": {
|
|
3408
3408
|
"filename": "lib/cluster.ts",
|
|
3409
|
-
"line":
|
|
3409
|
+
"line": 437
|
|
3410
3410
|
},
|
|
3411
3411
|
"name": "clusterEndpoint",
|
|
3412
3412
|
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseClusterBase",
|
|
@@ -3422,7 +3422,7 @@
|
|
|
3422
3422
|
"immutable": true,
|
|
3423
3423
|
"locationInModule": {
|
|
3424
3424
|
"filename": "lib/cluster.ts",
|
|
3425
|
-
"line":
|
|
3425
|
+
"line": 436
|
|
3426
3426
|
},
|
|
3427
3427
|
"name": "clusterIdentifier",
|
|
3428
3428
|
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseClusterBase",
|
|
@@ -3438,7 +3438,7 @@
|
|
|
3438
3438
|
"immutable": true,
|
|
3439
3439
|
"locationInModule": {
|
|
3440
3440
|
"filename": "lib/cluster.ts",
|
|
3441
|
-
"line":
|
|
3441
|
+
"line": 438
|
|
3442
3442
|
},
|
|
3443
3443
|
"name": "clusterReadEndpoint",
|
|
3444
3444
|
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseClusterBase",
|
|
@@ -3458,7 +3458,7 @@
|
|
|
3458
3458
|
"immutable": true,
|
|
3459
3459
|
"locationInModule": {
|
|
3460
3460
|
"filename": "lib/cluster.ts",
|
|
3461
|
-
"line":
|
|
3461
|
+
"line": 446
|
|
3462
3462
|
},
|
|
3463
3463
|
"name": "clusterResourceIdentifier",
|
|
3464
3464
|
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseClusterBase",
|
|
@@ -3474,7 +3474,7 @@
|
|
|
3474
3474
|
"immutable": true,
|
|
3475
3475
|
"locationInModule": {
|
|
3476
3476
|
"filename": "lib/cluster.ts",
|
|
3477
|
-
"line":
|
|
3477
|
+
"line": 439
|
|
3478
3478
|
},
|
|
3479
3479
|
"name": "connections",
|
|
3480
3480
|
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseClusterBase",
|
|
@@ -3490,7 +3490,7 @@
|
|
|
3490
3490
|
"immutable": true,
|
|
3491
3491
|
"locationInModule": {
|
|
3492
3492
|
"filename": "lib/cluster.ts",
|
|
3493
|
-
"line":
|
|
3493
|
+
"line": 471
|
|
3494
3494
|
},
|
|
3495
3495
|
"name": "instanceEndpoints",
|
|
3496
3496
|
"type": {
|
|
@@ -3510,7 +3510,7 @@
|
|
|
3510
3510
|
"immutable": true,
|
|
3511
3511
|
"locationInModule": {
|
|
3512
3512
|
"filename": "lib/cluster.ts",
|
|
3513
|
-
"line":
|
|
3513
|
+
"line": 466
|
|
3514
3514
|
},
|
|
3515
3515
|
"name": "instanceIdentifiers",
|
|
3516
3516
|
"type": {
|
|
@@ -3530,7 +3530,7 @@
|
|
|
3530
3530
|
"immutable": true,
|
|
3531
3531
|
"locationInModule": {
|
|
3532
3532
|
"filename": "lib/cluster.ts",
|
|
3533
|
-
"line":
|
|
3533
|
+
"line": 461
|
|
3534
3534
|
},
|
|
3535
3535
|
"name": "subnetGroup",
|
|
3536
3536
|
"type": {
|
|
@@ -3545,7 +3545,7 @@
|
|
|
3545
3545
|
"immutable": true,
|
|
3546
3546
|
"locationInModule": {
|
|
3547
3547
|
"filename": "lib/cluster.ts",
|
|
3548
|
-
"line":
|
|
3548
|
+
"line": 451
|
|
3549
3549
|
},
|
|
3550
3550
|
"name": "vpc",
|
|
3551
3551
|
"type": {
|
|
@@ -3560,7 +3560,7 @@
|
|
|
3560
3560
|
"immutable": true,
|
|
3561
3561
|
"locationInModule": {
|
|
3562
3562
|
"filename": "lib/cluster.ts",
|
|
3563
|
-
"line":
|
|
3563
|
+
"line": 456
|
|
3564
3564
|
},
|
|
3565
3565
|
"name": "vpcSubnets",
|
|
3566
3566
|
"type": {
|
|
@@ -3573,7 +3573,7 @@
|
|
|
3573
3573
|
},
|
|
3574
3574
|
"locationInModule": {
|
|
3575
3575
|
"filename": "lib/cluster.ts",
|
|
3576
|
-
"line":
|
|
3576
|
+
"line": 473
|
|
3577
3577
|
},
|
|
3578
3578
|
"name": "enableIamAuthentication",
|
|
3579
3579
|
"optional": true,
|
|
@@ -3601,7 +3601,7 @@
|
|
|
3601
3601
|
"kind": "interface",
|
|
3602
3602
|
"locationInModule": {
|
|
3603
3603
|
"filename": "lib/cluster.ts",
|
|
3604
|
-
"line":
|
|
3604
|
+
"line": 301
|
|
3605
3605
|
},
|
|
3606
3606
|
"name": "DatabaseClusterAttributes",
|
|
3607
3607
|
"properties": [
|
|
@@ -3614,7 +3614,7 @@
|
|
|
3614
3614
|
"immutable": true,
|
|
3615
3615
|
"locationInModule": {
|
|
3616
3616
|
"filename": "lib/cluster.ts",
|
|
3617
|
-
"line":
|
|
3617
|
+
"line": 325
|
|
3618
3618
|
},
|
|
3619
3619
|
"name": "clusterEndpointAddress",
|
|
3620
3620
|
"type": {
|
|
@@ -3630,7 +3630,7 @@
|
|
|
3630
3630
|
"immutable": true,
|
|
3631
3631
|
"locationInModule": {
|
|
3632
3632
|
"filename": "lib/cluster.ts",
|
|
3633
|
-
"line":
|
|
3633
|
+
"line": 315
|
|
3634
3634
|
},
|
|
3635
3635
|
"name": "clusterIdentifier",
|
|
3636
3636
|
"type": {
|
|
@@ -3646,7 +3646,7 @@
|
|
|
3646
3646
|
"immutable": true,
|
|
3647
3647
|
"locationInModule": {
|
|
3648
3648
|
"filename": "lib/cluster.ts",
|
|
3649
|
-
"line":
|
|
3649
|
+
"line": 320
|
|
3650
3650
|
},
|
|
3651
3651
|
"name": "clusterResourceIdentifier",
|
|
3652
3652
|
"type": {
|
|
@@ -3662,7 +3662,7 @@
|
|
|
3662
3662
|
"immutable": true,
|
|
3663
3663
|
"locationInModule": {
|
|
3664
3664
|
"filename": "lib/cluster.ts",
|
|
3665
|
-
"line":
|
|
3665
|
+
"line": 305
|
|
3666
3666
|
},
|
|
3667
3667
|
"name": "port",
|
|
3668
3668
|
"type": {
|
|
@@ -3678,7 +3678,7 @@
|
|
|
3678
3678
|
"immutable": true,
|
|
3679
3679
|
"locationInModule": {
|
|
3680
3680
|
"filename": "lib/cluster.ts",
|
|
3681
|
-
"line":
|
|
3681
|
+
"line": 330
|
|
3682
3682
|
},
|
|
3683
3683
|
"name": "readerEndpointAddress",
|
|
3684
3684
|
"type": {
|
|
@@ -3694,7 +3694,7 @@
|
|
|
3694
3694
|
"immutable": true,
|
|
3695
3695
|
"locationInModule": {
|
|
3696
3696
|
"filename": "lib/cluster.ts",
|
|
3697
|
-
"line":
|
|
3697
|
+
"line": 310
|
|
3698
3698
|
},
|
|
3699
3699
|
"name": "securityGroup",
|
|
3700
3700
|
"type": {
|
|
@@ -3753,7 +3753,7 @@
|
|
|
3753
3753
|
"kind": "class",
|
|
3754
3754
|
"locationInModule": {
|
|
3755
3755
|
"filename": "lib/cluster.ts",
|
|
3756
|
-
"line":
|
|
3756
|
+
"line": 336
|
|
3757
3757
|
},
|
|
3758
3758
|
"methods": [
|
|
3759
3759
|
{
|
|
@@ -3763,7 +3763,7 @@
|
|
|
3763
3763
|
},
|
|
3764
3764
|
"locationInModule": {
|
|
3765
3765
|
"filename": "lib/cluster.ts",
|
|
3766
|
-
"line":
|
|
3766
|
+
"line": 341
|
|
3767
3767
|
},
|
|
3768
3768
|
"name": "fromDatabaseClusterAttributes",
|
|
3769
3769
|
"parameters": [
|
|
@@ -3800,7 +3800,7 @@
|
|
|
3800
3800
|
},
|
|
3801
3801
|
"locationInModule": {
|
|
3802
3802
|
"filename": "lib/cluster.ts",
|
|
3803
|
-
"line":
|
|
3803
|
+
"line": 385
|
|
3804
3804
|
},
|
|
3805
3805
|
"name": "grant",
|
|
3806
3806
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
|
|
@@ -3833,7 +3833,7 @@
|
|
|
3833
3833
|
},
|
|
3834
3834
|
"locationInModule": {
|
|
3835
3835
|
"filename": "lib/cluster.ts",
|
|
3836
|
-
"line":
|
|
3836
|
+
"line": 407
|
|
3837
3837
|
},
|
|
3838
3838
|
"name": "grantConnect",
|
|
3839
3839
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
|
|
@@ -3850,6 +3850,38 @@
|
|
|
3850
3850
|
"fqn": "aws-cdk-lib.aws_iam.Grant"
|
|
3851
3851
|
}
|
|
3852
3852
|
}
|
|
3853
|
+
},
|
|
3854
|
+
{
|
|
3855
|
+
"docs": {
|
|
3856
|
+
"stability": "experimental",
|
|
3857
|
+
"summary": "Return the given named metric associated with this DatabaseCluster instance."
|
|
3858
|
+
},
|
|
3859
|
+
"locationInModule": {
|
|
3860
|
+
"filename": "lib/cluster.ts",
|
|
3861
|
+
"line": 411
|
|
3862
|
+
},
|
|
3863
|
+
"name": "metric",
|
|
3864
|
+
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
|
|
3865
|
+
"parameters": [
|
|
3866
|
+
{
|
|
3867
|
+
"name": "metricName",
|
|
3868
|
+
"type": {
|
|
3869
|
+
"primitive": "string"
|
|
3870
|
+
}
|
|
3871
|
+
},
|
|
3872
|
+
{
|
|
3873
|
+
"name": "props",
|
|
3874
|
+
"optional": true,
|
|
3875
|
+
"type": {
|
|
3876
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.MetricOptions"
|
|
3877
|
+
}
|
|
3878
|
+
}
|
|
3879
|
+
],
|
|
3880
|
+
"returns": {
|
|
3881
|
+
"type": {
|
|
3882
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.Metric"
|
|
3883
|
+
}
|
|
3884
|
+
}
|
|
3853
3885
|
}
|
|
3854
3886
|
],
|
|
3855
3887
|
"name": "DatabaseClusterBase",
|
|
@@ -3863,7 +3895,7 @@
|
|
|
3863
3895
|
"immutable": true,
|
|
3864
3896
|
"locationInModule": {
|
|
3865
3897
|
"filename": "lib/cluster.ts",
|
|
3866
|
-
"line":
|
|
3898
|
+
"line": 371
|
|
3867
3899
|
},
|
|
3868
3900
|
"name": "clusterEndpoint",
|
|
3869
3901
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
|
|
@@ -3880,7 +3912,7 @@
|
|
|
3880
3912
|
"immutable": true,
|
|
3881
3913
|
"locationInModule": {
|
|
3882
3914
|
"filename": "lib/cluster.ts",
|
|
3883
|
-
"line":
|
|
3915
|
+
"line": 361
|
|
3884
3916
|
},
|
|
3885
3917
|
"name": "clusterIdentifier",
|
|
3886
3918
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
|
|
@@ -3897,7 +3929,7 @@
|
|
|
3897
3929
|
"immutable": true,
|
|
3898
3930
|
"locationInModule": {
|
|
3899
3931
|
"filename": "lib/cluster.ts",
|
|
3900
|
-
"line":
|
|
3932
|
+
"line": 376
|
|
3901
3933
|
},
|
|
3902
3934
|
"name": "clusterReadEndpoint",
|
|
3903
3935
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
|
|
@@ -3914,7 +3946,7 @@
|
|
|
3914
3946
|
"immutable": true,
|
|
3915
3947
|
"locationInModule": {
|
|
3916
3948
|
"filename": "lib/cluster.ts",
|
|
3917
|
-
"line":
|
|
3949
|
+
"line": 366
|
|
3918
3950
|
},
|
|
3919
3951
|
"name": "clusterResourceIdentifier",
|
|
3920
3952
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
|
|
@@ -3931,7 +3963,7 @@
|
|
|
3931
3963
|
"immutable": true,
|
|
3932
3964
|
"locationInModule": {
|
|
3933
3965
|
"filename": "lib/cluster.ts",
|
|
3934
|
-
"line":
|
|
3966
|
+
"line": 381
|
|
3935
3967
|
},
|
|
3936
3968
|
"name": "connections",
|
|
3937
3969
|
"overrides": "aws-cdk-lib.aws_ec2.IConnectable",
|
|
@@ -3946,7 +3978,7 @@
|
|
|
3946
3978
|
},
|
|
3947
3979
|
"locationInModule": {
|
|
3948
3980
|
"filename": "lib/cluster.ts",
|
|
3949
|
-
"line":
|
|
3981
|
+
"line": 383
|
|
3950
3982
|
},
|
|
3951
3983
|
"name": "enableIamAuthentication",
|
|
3952
3984
|
"optional": true,
|
|
@@ -3973,7 +4005,7 @@
|
|
|
3973
4005
|
"kind": "interface",
|
|
3974
4006
|
"locationInModule": {
|
|
3975
4007
|
"filename": "lib/cluster.ts",
|
|
3976
|
-
"line":
|
|
4008
|
+
"line": 77
|
|
3977
4009
|
},
|
|
3978
4010
|
"name": "DatabaseClusterProps",
|
|
3979
4011
|
"properties": [
|
|
@@ -3986,7 +4018,7 @@
|
|
|
3986
4018
|
"immutable": true,
|
|
3987
4019
|
"locationInModule": {
|
|
3988
4020
|
"filename": "lib/cluster.ts",
|
|
3989
|
-
"line":
|
|
4021
|
+
"line": 159
|
|
3990
4022
|
},
|
|
3991
4023
|
"name": "instanceType",
|
|
3992
4024
|
"type": {
|
|
@@ -4003,7 +4035,7 @@
|
|
|
4003
4035
|
"immutable": true,
|
|
4004
4036
|
"locationInModule": {
|
|
4005
4037
|
"filename": "lib/cluster.ts",
|
|
4006
|
-
"line":
|
|
4038
|
+
"line": 213
|
|
4007
4039
|
},
|
|
4008
4040
|
"name": "vpc",
|
|
4009
4041
|
"type": {
|
|
@@ -4020,7 +4052,7 @@
|
|
|
4020
4052
|
"immutable": true,
|
|
4021
4053
|
"locationInModule": {
|
|
4022
4054
|
"filename": "lib/cluster.ts",
|
|
4023
|
-
"line":
|
|
4055
|
+
"line": 166
|
|
4024
4056
|
},
|
|
4025
4057
|
"name": "associatedRoles",
|
|
4026
4058
|
"optional": true,
|
|
@@ -4043,7 +4075,7 @@
|
|
|
4043
4075
|
"immutable": true,
|
|
4044
4076
|
"locationInModule": {
|
|
4045
4077
|
"filename": "lib/cluster.ts",
|
|
4046
|
-
"line":
|
|
4078
|
+
"line": 245
|
|
4047
4079
|
},
|
|
4048
4080
|
"name": "autoMinorVersionUpgrade",
|
|
4049
4081
|
"optional": true,
|
|
@@ -4061,7 +4093,7 @@
|
|
|
4061
4093
|
"immutable": true,
|
|
4062
4094
|
"locationInModule": {
|
|
4063
4095
|
"filename": "lib/cluster.ts",
|
|
4064
|
-
"line":
|
|
4096
|
+
"line": 97
|
|
4065
4097
|
},
|
|
4066
4098
|
"name": "backupRetention",
|
|
4067
4099
|
"optional": true,
|
|
@@ -4079,7 +4111,7 @@
|
|
|
4079
4111
|
"immutable": true,
|
|
4080
4112
|
"locationInModule": {
|
|
4081
4113
|
"filename": "lib/cluster.ts",
|
|
4082
|
-
"line":
|
|
4114
|
+
"line": 192
|
|
4083
4115
|
},
|
|
4084
4116
|
"name": "clusterParameterGroup",
|
|
4085
4117
|
"optional": true,
|
|
@@ -4097,7 +4129,7 @@
|
|
|
4097
4129
|
"immutable": true,
|
|
4098
4130
|
"locationInModule": {
|
|
4099
4131
|
"filename": "lib/cluster.ts",
|
|
4100
|
-
"line":
|
|
4132
|
+
"line": 137
|
|
4101
4133
|
},
|
|
4102
4134
|
"name": "dbClusterName",
|
|
4103
4135
|
"optional": true,
|
|
@@ -4115,7 +4147,7 @@
|
|
|
4115
4147
|
"immutable": true,
|
|
4116
4148
|
"locationInModule": {
|
|
4117
4149
|
"filename": "lib/cluster.ts",
|
|
4118
|
-
"line":
|
|
4150
|
+
"line": 173
|
|
4119
4151
|
},
|
|
4120
4152
|
"name": "deletionProtection",
|
|
4121
4153
|
"optional": true,
|
|
@@ -4133,7 +4165,7 @@
|
|
|
4133
4165
|
"immutable": true,
|
|
4134
4166
|
"locationInModule": {
|
|
4135
4167
|
"filename": "lib/cluster.ts",
|
|
4136
|
-
"line":
|
|
4168
|
+
"line": 83
|
|
4137
4169
|
},
|
|
4138
4170
|
"name": "engineVersion",
|
|
4139
4171
|
"optional": true,
|
|
@@ -4151,7 +4183,7 @@
|
|
|
4151
4183
|
"immutable": true,
|
|
4152
4184
|
"locationInModule": {
|
|
4153
4185
|
"filename": "lib/cluster.ts",
|
|
4154
|
-
"line":
|
|
4186
|
+
"line": 144
|
|
4155
4187
|
},
|
|
4156
4188
|
"name": "iamAuthentication",
|
|
4157
4189
|
"optional": true,
|
|
@@ -4170,7 +4202,7 @@
|
|
|
4170
4202
|
"immutable": true,
|
|
4171
4203
|
"locationInModule": {
|
|
4172
4204
|
"filename": "lib/cluster.ts",
|
|
4173
|
-
"line":
|
|
4205
|
+
"line": 154
|
|
4174
4206
|
},
|
|
4175
4207
|
"name": "instanceIdentifierBase",
|
|
4176
4208
|
"optional": true,
|
|
@@ -4188,7 +4220,7 @@
|
|
|
4188
4220
|
"immutable": true,
|
|
4189
4221
|
"locationInModule": {
|
|
4190
4222
|
"filename": "lib/cluster.ts",
|
|
4191
|
-
"line":
|
|
4223
|
+
"line": 130
|
|
4192
4224
|
},
|
|
4193
4225
|
"name": "instances",
|
|
4194
4226
|
"optional": true,
|
|
@@ -4206,7 +4238,7 @@
|
|
|
4206
4238
|
"immutable": true,
|
|
4207
4239
|
"locationInModule": {
|
|
4208
4240
|
"filename": "lib/cluster.ts",
|
|
4209
|
-
"line":
|
|
4241
|
+
"line": 116
|
|
4210
4242
|
},
|
|
4211
4243
|
"name": "kmsKey",
|
|
4212
4244
|
"optional": true,
|
|
@@ -4224,7 +4256,7 @@
|
|
|
4224
4256
|
"immutable": true,
|
|
4225
4257
|
"locationInModule": {
|
|
4226
4258
|
"filename": "lib/cluster.ts",
|
|
4227
|
-
"line":
|
|
4259
|
+
"line": 199
|
|
4228
4260
|
},
|
|
4229
4261
|
"name": "parameterGroup",
|
|
4230
4262
|
"optional": true,
|
|
@@ -4242,7 +4274,7 @@
|
|
|
4242
4274
|
"immutable": true,
|
|
4243
4275
|
"locationInModule": {
|
|
4244
4276
|
"filename": "lib/cluster.ts",
|
|
4245
|
-
"line":
|
|
4277
|
+
"line": 90
|
|
4246
4278
|
},
|
|
4247
4279
|
"name": "port",
|
|
4248
4280
|
"optional": true,
|
|
@@ -4261,7 +4293,7 @@
|
|
|
4261
4293
|
"immutable": true,
|
|
4262
4294
|
"locationInModule": {
|
|
4263
4295
|
"filename": "lib/cluster.ts",
|
|
4264
|
-
"line":
|
|
4296
|
+
"line": 109
|
|
4265
4297
|
},
|
|
4266
4298
|
"name": "preferredBackupWindow",
|
|
4267
4299
|
"optional": true,
|
|
@@ -4280,7 +4312,7 @@
|
|
|
4280
4312
|
"immutable": true,
|
|
4281
4313
|
"locationInModule": {
|
|
4282
4314
|
"filename": "lib/cluster.ts",
|
|
4283
|
-
"line":
|
|
4315
|
+
"line": 185
|
|
4284
4316
|
},
|
|
4285
4317
|
"name": "preferredMaintenanceWindow",
|
|
4286
4318
|
"optional": true,
|
|
@@ -4299,7 +4331,7 @@
|
|
|
4299
4331
|
"immutable": true,
|
|
4300
4332
|
"locationInModule": {
|
|
4301
4333
|
"filename": "lib/cluster.ts",
|
|
4302
|
-
"line":
|
|
4334
|
+
"line": 237
|
|
4303
4335
|
},
|
|
4304
4336
|
"name": "removalPolicy",
|
|
4305
4337
|
"optional": true,
|
|
@@ -4317,7 +4349,7 @@
|
|
|
4317
4349
|
"immutable": true,
|
|
4318
4350
|
"locationInModule": {
|
|
4319
4351
|
"filename": "lib/cluster.ts",
|
|
4320
|
-
"line":
|
|
4352
|
+
"line": 227
|
|
4321
4353
|
},
|
|
4322
4354
|
"name": "securityGroups",
|
|
4323
4355
|
"optional": true,
|
|
@@ -4340,7 +4372,7 @@
|
|
|
4340
4372
|
"immutable": true,
|
|
4341
4373
|
"locationInModule": {
|
|
4342
4374
|
"filename": "lib/cluster.ts",
|
|
4343
|
-
"line":
|
|
4375
|
+
"line": 123
|
|
4344
4376
|
},
|
|
4345
4377
|
"name": "storageEncrypted",
|
|
4346
4378
|
"optional": true,
|
|
@@ -4358,7 +4390,7 @@
|
|
|
4358
4390
|
"immutable": true,
|
|
4359
4391
|
"locationInModule": {
|
|
4360
4392
|
"filename": "lib/cluster.ts",
|
|
4361
|
-
"line":
|
|
4393
|
+
"line": 206
|
|
4362
4394
|
},
|
|
4363
4395
|
"name": "subnetGroup",
|
|
4364
4396
|
"optional": true,
|
|
@@ -4376,7 +4408,7 @@
|
|
|
4376
4408
|
"immutable": true,
|
|
4377
4409
|
"locationInModule": {
|
|
4378
4410
|
"filename": "lib/cluster.ts",
|
|
4379
|
-
"line":
|
|
4411
|
+
"line": 220
|
|
4380
4412
|
},
|
|
4381
4413
|
"name": "vpcSubnets",
|
|
4382
4414
|
"optional": true,
|
|
@@ -4389,7 +4421,7 @@
|
|
|
4389
4421
|
},
|
|
4390
4422
|
"@aws-cdk/aws-neptune-alpha.DatabaseInstance": {
|
|
4391
4423
|
"assembly": "@aws-cdk/aws-neptune-alpha",
|
|
4392
|
-
"base": "aws-cdk-
|
|
4424
|
+
"base": "@aws-cdk/aws-neptune-alpha.DatabaseInstanceBase",
|
|
4393
4425
|
"docs": {
|
|
4394
4426
|
"custom": {
|
|
4395
4427
|
"resource": "AWS::Neptune::DBInstance",
|
|
@@ -4406,7 +4438,7 @@
|
|
|
4406
4438
|
},
|
|
4407
4439
|
"locationInModule": {
|
|
4408
4440
|
"filename": "lib/instance.ts",
|
|
4409
|
-
"line":
|
|
4441
|
+
"line": 329
|
|
4410
4442
|
},
|
|
4411
4443
|
"parameters": [
|
|
4412
4444
|
{
|
|
@@ -4435,47 +4467,8 @@
|
|
|
4435
4467
|
"kind": "class",
|
|
4436
4468
|
"locationInModule": {
|
|
4437
4469
|
"filename": "lib/instance.ts",
|
|
4438
|
-
"line":
|
|
4470
|
+
"line": 302
|
|
4439
4471
|
},
|
|
4440
|
-
"methods": [
|
|
4441
|
-
{
|
|
4442
|
-
"docs": {
|
|
4443
|
-
"stability": "experimental",
|
|
4444
|
-
"summary": "Import an existing database instance."
|
|
4445
|
-
},
|
|
4446
|
-
"locationInModule": {
|
|
4447
|
-
"filename": "lib/instance.ts",
|
|
4448
|
-
"line": 245
|
|
4449
|
-
},
|
|
4450
|
-
"name": "fromDatabaseInstanceAttributes",
|
|
4451
|
-
"parameters": [
|
|
4452
|
-
{
|
|
4453
|
-
"name": "scope",
|
|
4454
|
-
"type": {
|
|
4455
|
-
"fqn": "constructs.Construct"
|
|
4456
|
-
}
|
|
4457
|
-
},
|
|
4458
|
-
{
|
|
4459
|
-
"name": "id",
|
|
4460
|
-
"type": {
|
|
4461
|
-
"primitive": "string"
|
|
4462
|
-
}
|
|
4463
|
-
},
|
|
4464
|
-
{
|
|
4465
|
-
"name": "attrs",
|
|
4466
|
-
"type": {
|
|
4467
|
-
"fqn": "@aws-cdk/aws-neptune-alpha.DatabaseInstanceAttributes"
|
|
4468
|
-
}
|
|
4469
|
-
}
|
|
4470
|
-
],
|
|
4471
|
-
"returns": {
|
|
4472
|
-
"type": {
|
|
4473
|
-
"fqn": "@aws-cdk/aws-neptune-alpha.IDatabaseInstance"
|
|
4474
|
-
}
|
|
4475
|
-
},
|
|
4476
|
-
"static": true
|
|
4477
|
-
}
|
|
4478
|
-
],
|
|
4479
4472
|
"name": "DatabaseInstance",
|
|
4480
4473
|
"properties": [
|
|
4481
4474
|
{
|
|
@@ -4486,7 +4479,7 @@
|
|
|
4486
4479
|
"immutable": true,
|
|
4487
4480
|
"locationInModule": {
|
|
4488
4481
|
"filename": "lib/instance.ts",
|
|
4489
|
-
"line":
|
|
4482
|
+
"line": 307
|
|
4490
4483
|
},
|
|
4491
4484
|
"name": "cluster",
|
|
4492
4485
|
"type": {
|
|
@@ -4504,10 +4497,10 @@
|
|
|
4504
4497
|
"immutable": true,
|
|
4505
4498
|
"locationInModule": {
|
|
4506
4499
|
"filename": "lib/instance.ts",
|
|
4507
|
-
"line":
|
|
4500
|
+
"line": 322
|
|
4508
4501
|
},
|
|
4509
4502
|
"name": "dbInstanceEndpointAddress",
|
|
4510
|
-
"overrides": "@aws-cdk/aws-neptune-alpha.
|
|
4503
|
+
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseInstanceBase",
|
|
4511
4504
|
"type": {
|
|
4512
4505
|
"primitive": "string"
|
|
4513
4506
|
}
|
|
@@ -4523,10 +4516,10 @@
|
|
|
4523
4516
|
"immutable": true,
|
|
4524
4517
|
"locationInModule": {
|
|
4525
4518
|
"filename": "lib/instance.ts",
|
|
4526
|
-
"line":
|
|
4519
|
+
"line": 327
|
|
4527
4520
|
},
|
|
4528
4521
|
"name": "dbInstanceEndpointPort",
|
|
4529
|
-
"overrides": "@aws-cdk/aws-neptune-alpha.
|
|
4522
|
+
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseInstanceBase",
|
|
4530
4523
|
"type": {
|
|
4531
4524
|
"primitive": "string"
|
|
4532
4525
|
}
|
|
@@ -4542,10 +4535,10 @@
|
|
|
4542
4535
|
"immutable": true,
|
|
4543
4536
|
"locationInModule": {
|
|
4544
4537
|
"filename": "lib/instance.ts",
|
|
4545
|
-
"line":
|
|
4538
|
+
"line": 317
|
|
4546
4539
|
},
|
|
4547
4540
|
"name": "instanceEndpoint",
|
|
4548
|
-
"overrides": "@aws-cdk/aws-neptune-alpha.
|
|
4541
|
+
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseInstanceBase",
|
|
4549
4542
|
"type": {
|
|
4550
4543
|
"fqn": "@aws-cdk/aws-neptune-alpha.Endpoint"
|
|
4551
4544
|
}
|
|
@@ -4561,10 +4554,10 @@
|
|
|
4561
4554
|
"immutable": true,
|
|
4562
4555
|
"locationInModule": {
|
|
4563
4556
|
"filename": "lib/instance.ts",
|
|
4564
|
-
"line":
|
|
4557
|
+
"line": 312
|
|
4565
4558
|
},
|
|
4566
4559
|
"name": "instanceIdentifier",
|
|
4567
|
-
"overrides": "@aws-cdk/aws-neptune-alpha.
|
|
4560
|
+
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseInstanceBase",
|
|
4568
4561
|
"type": {
|
|
4569
4562
|
"primitive": "string"
|
|
4570
4563
|
}
|
|
@@ -4587,7 +4580,7 @@
|
|
|
4587
4580
|
"kind": "interface",
|
|
4588
4581
|
"locationInModule": {
|
|
4589
4582
|
"filename": "lib/instance.ts",
|
|
4590
|
-
"line":
|
|
4583
|
+
"line": 182
|
|
4591
4584
|
},
|
|
4592
4585
|
"name": "DatabaseInstanceAttributes",
|
|
4593
4586
|
"properties": [
|
|
@@ -4600,7 +4593,7 @@
|
|
|
4600
4593
|
"immutable": true,
|
|
4601
4594
|
"locationInModule": {
|
|
4602
4595
|
"filename": "lib/instance.ts",
|
|
4603
|
-
"line":
|
|
4596
|
+
"line": 191
|
|
4604
4597
|
},
|
|
4605
4598
|
"name": "instanceEndpointAddress",
|
|
4606
4599
|
"type": {
|
|
@@ -4616,7 +4609,7 @@
|
|
|
4616
4609
|
"immutable": true,
|
|
4617
4610
|
"locationInModule": {
|
|
4618
4611
|
"filename": "lib/instance.ts",
|
|
4619
|
-
"line":
|
|
4612
|
+
"line": 186
|
|
4620
4613
|
},
|
|
4621
4614
|
"name": "instanceIdentifier",
|
|
4622
4615
|
"type": {
|
|
@@ -4632,7 +4625,7 @@
|
|
|
4632
4625
|
"immutable": true,
|
|
4633
4626
|
"locationInModule": {
|
|
4634
4627
|
"filename": "lib/instance.ts",
|
|
4635
|
-
"line":
|
|
4628
|
+
"line": 196
|
|
4636
4629
|
},
|
|
4637
4630
|
"name": "port",
|
|
4638
4631
|
"type": {
|
|
@@ -4642,6 +4635,216 @@
|
|
|
4642
4635
|
],
|
|
4643
4636
|
"symbolId": "lib/instance:DatabaseInstanceAttributes"
|
|
4644
4637
|
},
|
|
4638
|
+
"@aws-cdk/aws-neptune-alpha.DatabaseInstanceBase": {
|
|
4639
|
+
"abstract": true,
|
|
4640
|
+
"assembly": "@aws-cdk/aws-neptune-alpha",
|
|
4641
|
+
"base": "aws-cdk-lib.Resource",
|
|
4642
|
+
"docs": {
|
|
4643
|
+
"stability": "experimental",
|
|
4644
|
+
"summary": "A new or imported database instance.",
|
|
4645
|
+
"example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as neptune_alpha from '@aws-cdk/aws-neptune-alpha';\nconst databaseInstanceBase = neptune_alpha.DatabaseInstanceBase.fromDatabaseInstanceAttributes(this, 'MyDatabaseInstanceBase', {\n instanceEndpointAddress: 'instanceEndpointAddress',\n instanceIdentifier: 'instanceIdentifier',\n port: 123,\n});",
|
|
4646
|
+
"custom": {
|
|
4647
|
+
"exampleMetadata": "fixture=_generated"
|
|
4648
|
+
}
|
|
4649
|
+
},
|
|
4650
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.DatabaseInstanceBase",
|
|
4651
|
+
"initializer": {
|
|
4652
|
+
"docs": {
|
|
4653
|
+
"stability": "stable"
|
|
4654
|
+
},
|
|
4655
|
+
"locationInModule": {
|
|
4656
|
+
"filename": "core/lib/resource.ts",
|
|
4657
|
+
"line": 156
|
|
4658
|
+
},
|
|
4659
|
+
"parameters": [
|
|
4660
|
+
{
|
|
4661
|
+
"name": "scope",
|
|
4662
|
+
"type": {
|
|
4663
|
+
"fqn": "constructs.Construct"
|
|
4664
|
+
}
|
|
4665
|
+
},
|
|
4666
|
+
{
|
|
4667
|
+
"name": "id",
|
|
4668
|
+
"type": {
|
|
4669
|
+
"primitive": "string"
|
|
4670
|
+
}
|
|
4671
|
+
},
|
|
4672
|
+
{
|
|
4673
|
+
"name": "props",
|
|
4674
|
+
"optional": true,
|
|
4675
|
+
"type": {
|
|
4676
|
+
"fqn": "aws-cdk-lib.ResourceProps"
|
|
4677
|
+
}
|
|
4678
|
+
}
|
|
4679
|
+
]
|
|
4680
|
+
},
|
|
4681
|
+
"interfaces": [
|
|
4682
|
+
"@aws-cdk/aws-neptune-alpha.IDatabaseInstance"
|
|
4683
|
+
],
|
|
4684
|
+
"kind": "class",
|
|
4685
|
+
"locationInModule": {
|
|
4686
|
+
"filename": "lib/instance.ts",
|
|
4687
|
+
"line": 247
|
|
4688
|
+
},
|
|
4689
|
+
"methods": [
|
|
4690
|
+
{
|
|
4691
|
+
"docs": {
|
|
4692
|
+
"stability": "experimental",
|
|
4693
|
+
"summary": "Import an existing database instance."
|
|
4694
|
+
},
|
|
4695
|
+
"locationInModule": {
|
|
4696
|
+
"filename": "lib/instance.ts",
|
|
4697
|
+
"line": 251
|
|
4698
|
+
},
|
|
4699
|
+
"name": "fromDatabaseInstanceAttributes",
|
|
4700
|
+
"parameters": [
|
|
4701
|
+
{
|
|
4702
|
+
"name": "scope",
|
|
4703
|
+
"type": {
|
|
4704
|
+
"fqn": "constructs.Construct"
|
|
4705
|
+
}
|
|
4706
|
+
},
|
|
4707
|
+
{
|
|
4708
|
+
"name": "id",
|
|
4709
|
+
"type": {
|
|
4710
|
+
"primitive": "string"
|
|
4711
|
+
}
|
|
4712
|
+
},
|
|
4713
|
+
{
|
|
4714
|
+
"name": "attrs",
|
|
4715
|
+
"type": {
|
|
4716
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.DatabaseInstanceAttributes"
|
|
4717
|
+
}
|
|
4718
|
+
}
|
|
4719
|
+
],
|
|
4720
|
+
"returns": {
|
|
4721
|
+
"type": {
|
|
4722
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.IDatabaseInstance"
|
|
4723
|
+
}
|
|
4724
|
+
},
|
|
4725
|
+
"static": true
|
|
4726
|
+
},
|
|
4727
|
+
{
|
|
4728
|
+
"docs": {
|
|
4729
|
+
"custom": {
|
|
4730
|
+
"inheritdoc": "true"
|
|
4731
|
+
},
|
|
4732
|
+
"stability": "experimental",
|
|
4733
|
+
"summary": "Return the given named metric associated with this database instance."
|
|
4734
|
+
},
|
|
4735
|
+
"locationInModule": {
|
|
4736
|
+
"filename": "lib/instance.ts",
|
|
4737
|
+
"line": 285
|
|
4738
|
+
},
|
|
4739
|
+
"name": "metric",
|
|
4740
|
+
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseInstance",
|
|
4741
|
+
"parameters": [
|
|
4742
|
+
{
|
|
4743
|
+
"name": "metricName",
|
|
4744
|
+
"type": {
|
|
4745
|
+
"primitive": "string"
|
|
4746
|
+
}
|
|
4747
|
+
},
|
|
4748
|
+
{
|
|
4749
|
+
"name": "props",
|
|
4750
|
+
"optional": true,
|
|
4751
|
+
"type": {
|
|
4752
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.MetricOptions"
|
|
4753
|
+
}
|
|
4754
|
+
}
|
|
4755
|
+
],
|
|
4756
|
+
"returns": {
|
|
4757
|
+
"type": {
|
|
4758
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.Metric"
|
|
4759
|
+
}
|
|
4760
|
+
}
|
|
4761
|
+
}
|
|
4762
|
+
],
|
|
4763
|
+
"name": "DatabaseInstanceBase",
|
|
4764
|
+
"properties": [
|
|
4765
|
+
{
|
|
4766
|
+
"abstract": true,
|
|
4767
|
+
"docs": {
|
|
4768
|
+
"custom": {
|
|
4769
|
+
"inheritdoc": "true"
|
|
4770
|
+
},
|
|
4771
|
+
"stability": "experimental",
|
|
4772
|
+
"summary": "The instance endpoint address."
|
|
4773
|
+
},
|
|
4774
|
+
"immutable": true,
|
|
4775
|
+
"locationInModule": {
|
|
4776
|
+
"filename": "lib/instance.ts",
|
|
4777
|
+
"line": 265
|
|
4778
|
+
},
|
|
4779
|
+
"name": "dbInstanceEndpointAddress",
|
|
4780
|
+
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseInstance",
|
|
4781
|
+
"type": {
|
|
4782
|
+
"primitive": "string"
|
|
4783
|
+
}
|
|
4784
|
+
},
|
|
4785
|
+
{
|
|
4786
|
+
"abstract": true,
|
|
4787
|
+
"docs": {
|
|
4788
|
+
"custom": {
|
|
4789
|
+
"inheritdoc": "true"
|
|
4790
|
+
},
|
|
4791
|
+
"stability": "experimental",
|
|
4792
|
+
"summary": "The instance endpoint port."
|
|
4793
|
+
},
|
|
4794
|
+
"immutable": true,
|
|
4795
|
+
"locationInModule": {
|
|
4796
|
+
"filename": "lib/instance.ts",
|
|
4797
|
+
"line": 270
|
|
4798
|
+
},
|
|
4799
|
+
"name": "dbInstanceEndpointPort",
|
|
4800
|
+
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseInstance",
|
|
4801
|
+
"type": {
|
|
4802
|
+
"primitive": "string"
|
|
4803
|
+
}
|
|
4804
|
+
},
|
|
4805
|
+
{
|
|
4806
|
+
"abstract": true,
|
|
4807
|
+
"docs": {
|
|
4808
|
+
"custom": {
|
|
4809
|
+
"inheritdoc": "true"
|
|
4810
|
+
},
|
|
4811
|
+
"stability": "experimental",
|
|
4812
|
+
"summary": "The instance endpoint."
|
|
4813
|
+
},
|
|
4814
|
+
"immutable": true,
|
|
4815
|
+
"locationInModule": {
|
|
4816
|
+
"filename": "lib/instance.ts",
|
|
4817
|
+
"line": 275
|
|
4818
|
+
},
|
|
4819
|
+
"name": "instanceEndpoint",
|
|
4820
|
+
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseInstance",
|
|
4821
|
+
"type": {
|
|
4822
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.Endpoint"
|
|
4823
|
+
}
|
|
4824
|
+
},
|
|
4825
|
+
{
|
|
4826
|
+
"abstract": true,
|
|
4827
|
+
"docs": {
|
|
4828
|
+
"custom": {
|
|
4829
|
+
"inheritdoc": "true"
|
|
4830
|
+
},
|
|
4831
|
+
"stability": "experimental",
|
|
4832
|
+
"summary": "The instance identifier."
|
|
4833
|
+
},
|
|
4834
|
+
"immutable": true,
|
|
4835
|
+
"locationInModule": {
|
|
4836
|
+
"filename": "lib/instance.ts",
|
|
4837
|
+
"line": 280
|
|
4838
|
+
},
|
|
4839
|
+
"name": "instanceIdentifier",
|
|
4840
|
+
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseInstance",
|
|
4841
|
+
"type": {
|
|
4842
|
+
"primitive": "string"
|
|
4843
|
+
}
|
|
4844
|
+
}
|
|
4845
|
+
],
|
|
4846
|
+
"symbolId": "lib/instance:DatabaseInstanceBase"
|
|
4847
|
+
},
|
|
4645
4848
|
"@aws-cdk/aws-neptune-alpha.DatabaseInstanceProps": {
|
|
4646
4849
|
"assembly": "@aws-cdk/aws-neptune-alpha",
|
|
4647
4850
|
"datatype": true,
|
|
@@ -4657,7 +4860,7 @@
|
|
|
4657
4860
|
"kind": "interface",
|
|
4658
4861
|
"locationInModule": {
|
|
4659
4862
|
"filename": "lib/instance.ts",
|
|
4660
|
-
"line":
|
|
4863
|
+
"line": 202
|
|
4661
4864
|
},
|
|
4662
4865
|
"name": "DatabaseInstanceProps",
|
|
4663
4866
|
"properties": [
|
|
@@ -4670,7 +4873,7 @@
|
|
|
4670
4873
|
"immutable": true,
|
|
4671
4874
|
"locationInModule": {
|
|
4672
4875
|
"filename": "lib/instance.ts",
|
|
4673
|
-
"line":
|
|
4876
|
+
"line": 206
|
|
4674
4877
|
},
|
|
4675
4878
|
"name": "cluster",
|
|
4676
4879
|
"type": {
|
|
@@ -4686,7 +4889,7 @@
|
|
|
4686
4889
|
"immutable": true,
|
|
4687
4890
|
"locationInModule": {
|
|
4688
4891
|
"filename": "lib/instance.ts",
|
|
4689
|
-
"line":
|
|
4892
|
+
"line": 211
|
|
4690
4893
|
},
|
|
4691
4894
|
"name": "instanceType",
|
|
4692
4895
|
"type": {
|
|
@@ -4703,7 +4906,7 @@
|
|
|
4703
4906
|
"immutable": true,
|
|
4704
4907
|
"locationInModule": {
|
|
4705
4908
|
"filename": "lib/instance.ts",
|
|
4706
|
-
"line":
|
|
4909
|
+
"line": 218
|
|
4707
4910
|
},
|
|
4708
4911
|
"name": "availabilityZone",
|
|
4709
4912
|
"optional": true,
|
|
@@ -4722,7 +4925,7 @@
|
|
|
4722
4925
|
"immutable": true,
|
|
4723
4926
|
"locationInModule": {
|
|
4724
4927
|
"filename": "lib/instance.ts",
|
|
4725
|
-
"line":
|
|
4928
|
+
"line": 226
|
|
4726
4929
|
},
|
|
4727
4930
|
"name": "dbInstanceName",
|
|
4728
4931
|
"optional": true,
|
|
@@ -4740,7 +4943,7 @@
|
|
|
4740
4943
|
"immutable": true,
|
|
4741
4944
|
"locationInModule": {
|
|
4742
4945
|
"filename": "lib/instance.ts",
|
|
4743
|
-
"line":
|
|
4946
|
+
"line": 233
|
|
4744
4947
|
},
|
|
4745
4948
|
"name": "parameterGroup",
|
|
4746
4949
|
"optional": true,
|
|
@@ -4758,7 +4961,7 @@
|
|
|
4758
4961
|
"immutable": true,
|
|
4759
4962
|
"locationInModule": {
|
|
4760
4963
|
"filename": "lib/instance.ts",
|
|
4761
|
-
"line":
|
|
4964
|
+
"line": 241
|
|
4762
4965
|
},
|
|
4763
4966
|
"name": "removalPolicy",
|
|
4764
4967
|
"optional": true,
|
|
@@ -4877,7 +5080,7 @@
|
|
|
4877
5080
|
},
|
|
4878
5081
|
"locationInModule": {
|
|
4879
5082
|
"filename": "lib/cluster.ts",
|
|
4880
|
-
"line":
|
|
5083
|
+
"line": 71
|
|
4881
5084
|
},
|
|
4882
5085
|
"parameters": [
|
|
4883
5086
|
{
|
|
@@ -4894,7 +5097,7 @@
|
|
|
4894
5097
|
"kind": "class",
|
|
4895
5098
|
"locationInModule": {
|
|
4896
5099
|
"filename": "lib/cluster.ts",
|
|
4897
|
-
"line":
|
|
5100
|
+
"line": 17
|
|
4898
5101
|
},
|
|
4899
5102
|
"name": "EngineVersion",
|
|
4900
5103
|
"properties": [
|
|
@@ -4907,7 +5110,7 @@
|
|
|
4907
5110
|
"immutable": true,
|
|
4908
5111
|
"locationInModule": {
|
|
4909
5112
|
"filename": "lib/cluster.ts",
|
|
4910
|
-
"line":
|
|
5113
|
+
"line": 21
|
|
4911
5114
|
},
|
|
4912
5115
|
"name": "V1_0_1_0",
|
|
4913
5116
|
"static": true,
|
|
@@ -4924,7 +5127,7 @@
|
|
|
4924
5127
|
"immutable": true,
|
|
4925
5128
|
"locationInModule": {
|
|
4926
5129
|
"filename": "lib/cluster.ts",
|
|
4927
|
-
"line":
|
|
5130
|
+
"line": 25
|
|
4928
5131
|
},
|
|
4929
5132
|
"name": "V1_0_1_1",
|
|
4930
5133
|
"static": true,
|
|
@@ -4941,7 +5144,7 @@
|
|
|
4941
5144
|
"immutable": true,
|
|
4942
5145
|
"locationInModule": {
|
|
4943
5146
|
"filename": "lib/cluster.ts",
|
|
4944
|
-
"line":
|
|
5147
|
+
"line": 29
|
|
4945
5148
|
},
|
|
4946
5149
|
"name": "V1_0_1_2",
|
|
4947
5150
|
"static": true,
|
|
@@ -4958,7 +5161,7 @@
|
|
|
4958
5161
|
"immutable": true,
|
|
4959
5162
|
"locationInModule": {
|
|
4960
5163
|
"filename": "lib/cluster.ts",
|
|
4961
|
-
"line":
|
|
5164
|
+
"line": 33
|
|
4962
5165
|
},
|
|
4963
5166
|
"name": "V1_0_2_1",
|
|
4964
5167
|
"static": true,
|
|
@@ -4975,7 +5178,7 @@
|
|
|
4975
5178
|
"immutable": true,
|
|
4976
5179
|
"locationInModule": {
|
|
4977
5180
|
"filename": "lib/cluster.ts",
|
|
4978
|
-
"line":
|
|
5181
|
+
"line": 37
|
|
4979
5182
|
},
|
|
4980
5183
|
"name": "V1_0_2_2",
|
|
4981
5184
|
"static": true,
|
|
@@ -4992,7 +5195,7 @@
|
|
|
4992
5195
|
"immutable": true,
|
|
4993
5196
|
"locationInModule": {
|
|
4994
5197
|
"filename": "lib/cluster.ts",
|
|
4995
|
-
"line":
|
|
5198
|
+
"line": 41
|
|
4996
5199
|
},
|
|
4997
5200
|
"name": "V1_0_3_0",
|
|
4998
5201
|
"static": true,
|
|
@@ -5009,7 +5212,7 @@
|
|
|
5009
5212
|
"immutable": true,
|
|
5010
5213
|
"locationInModule": {
|
|
5011
5214
|
"filename": "lib/cluster.ts",
|
|
5012
|
-
"line":
|
|
5215
|
+
"line": 45
|
|
5013
5216
|
},
|
|
5014
5217
|
"name": "V1_0_4_0",
|
|
5015
5218
|
"static": true,
|
|
@@ -5026,7 +5229,7 @@
|
|
|
5026
5229
|
"immutable": true,
|
|
5027
5230
|
"locationInModule": {
|
|
5028
5231
|
"filename": "lib/cluster.ts",
|
|
5029
|
-
"line":
|
|
5232
|
+
"line": 49
|
|
5030
5233
|
},
|
|
5031
5234
|
"name": "V1_0_4_1",
|
|
5032
5235
|
"static": true,
|
|
@@ -5043,7 +5246,7 @@
|
|
|
5043
5246
|
"immutable": true,
|
|
5044
5247
|
"locationInModule": {
|
|
5045
5248
|
"filename": "lib/cluster.ts",
|
|
5046
|
-
"line":
|
|
5249
|
+
"line": 53
|
|
5047
5250
|
},
|
|
5048
5251
|
"name": "V1_0_5_0",
|
|
5049
5252
|
"static": true,
|
|
@@ -5060,7 +5263,7 @@
|
|
|
5060
5263
|
"immutable": true,
|
|
5061
5264
|
"locationInModule": {
|
|
5062
5265
|
"filename": "lib/cluster.ts",
|
|
5063
|
-
"line":
|
|
5266
|
+
"line": 57
|
|
5064
5267
|
},
|
|
5065
5268
|
"name": "V1_1_0_0",
|
|
5066
5269
|
"static": true,
|
|
@@ -5077,7 +5280,7 @@
|
|
|
5077
5280
|
"immutable": true,
|
|
5078
5281
|
"locationInModule": {
|
|
5079
5282
|
"filename": "lib/cluster.ts",
|
|
5080
|
-
"line":
|
|
5283
|
+
"line": 61
|
|
5081
5284
|
},
|
|
5082
5285
|
"name": "V1_1_1_0",
|
|
5083
5286
|
"static": true,
|
|
@@ -5094,7 +5297,7 @@
|
|
|
5094
5297
|
"immutable": true,
|
|
5095
5298
|
"locationInModule": {
|
|
5096
5299
|
"filename": "lib/cluster.ts",
|
|
5097
|
-
"line":
|
|
5300
|
+
"line": 65
|
|
5098
5301
|
},
|
|
5099
5302
|
"name": "V1_2_0_0",
|
|
5100
5303
|
"static": true,
|
|
@@ -5110,7 +5313,7 @@
|
|
|
5110
5313
|
"immutable": true,
|
|
5111
5314
|
"locationInModule": {
|
|
5112
5315
|
"filename": "lib/cluster.ts",
|
|
5113
|
-
"line":
|
|
5316
|
+
"line": 71
|
|
5114
5317
|
},
|
|
5115
5318
|
"name": "version",
|
|
5116
5319
|
"type": {
|
|
@@ -5170,7 +5373,7 @@
|
|
|
5170
5373
|
"kind": "interface",
|
|
5171
5374
|
"locationInModule": {
|
|
5172
5375
|
"filename": "lib/cluster.ts",
|
|
5173
|
-
"line":
|
|
5376
|
+
"line": 251
|
|
5174
5377
|
},
|
|
5175
5378
|
"methods": [
|
|
5176
5379
|
{
|
|
@@ -5182,7 +5385,7 @@
|
|
|
5182
5385
|
},
|
|
5183
5386
|
"locationInModule": {
|
|
5184
5387
|
"filename": "lib/cluster.ts",
|
|
5185
|
-
"line":
|
|
5388
|
+
"line": 282
|
|
5186
5389
|
},
|
|
5187
5390
|
"name": "grant",
|
|
5188
5391
|
"parameters": [
|
|
@@ -5221,7 +5424,7 @@
|
|
|
5221
5424
|
},
|
|
5222
5425
|
"locationInModule": {
|
|
5223
5426
|
"filename": "lib/cluster.ts",
|
|
5224
|
-
"line":
|
|
5427
|
+
"line": 287
|
|
5225
5428
|
},
|
|
5226
5429
|
"name": "grantConnect",
|
|
5227
5430
|
"parameters": [
|
|
@@ -5237,6 +5440,39 @@
|
|
|
5237
5440
|
"fqn": "aws-cdk-lib.aws_iam.Grant"
|
|
5238
5441
|
}
|
|
5239
5442
|
}
|
|
5443
|
+
},
|
|
5444
|
+
{
|
|
5445
|
+
"abstract": true,
|
|
5446
|
+
"docs": {
|
|
5447
|
+
"see": "https://docs.aws.amazon.com/neptune/latest/userguide/cw-dimensions.html",
|
|
5448
|
+
"stability": "experimental",
|
|
5449
|
+
"summary": "Return the given named metric associated with this DatabaseCluster instance."
|
|
5450
|
+
},
|
|
5451
|
+
"locationInModule": {
|
|
5452
|
+
"filename": "lib/cluster.ts",
|
|
5453
|
+
"line": 295
|
|
5454
|
+
},
|
|
5455
|
+
"name": "metric",
|
|
5456
|
+
"parameters": [
|
|
5457
|
+
{
|
|
5458
|
+
"name": "metricName",
|
|
5459
|
+
"type": {
|
|
5460
|
+
"primitive": "string"
|
|
5461
|
+
}
|
|
5462
|
+
},
|
|
5463
|
+
{
|
|
5464
|
+
"name": "props",
|
|
5465
|
+
"optional": true,
|
|
5466
|
+
"type": {
|
|
5467
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.MetricOptions"
|
|
5468
|
+
}
|
|
5469
|
+
}
|
|
5470
|
+
],
|
|
5471
|
+
"returns": {
|
|
5472
|
+
"type": {
|
|
5473
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.Metric"
|
|
5474
|
+
}
|
|
5475
|
+
}
|
|
5240
5476
|
}
|
|
5241
5477
|
],
|
|
5242
5478
|
"name": "IDatabaseCluster",
|
|
@@ -5253,7 +5489,7 @@
|
|
|
5253
5489
|
"immutable": true,
|
|
5254
5490
|
"locationInModule": {
|
|
5255
5491
|
"filename": "lib/cluster.ts",
|
|
5256
|
-
"line":
|
|
5492
|
+
"line": 267
|
|
5257
5493
|
},
|
|
5258
5494
|
"name": "clusterEndpoint",
|
|
5259
5495
|
"type": {
|
|
@@ -5269,7 +5505,7 @@
|
|
|
5269
5505
|
"immutable": true,
|
|
5270
5506
|
"locationInModule": {
|
|
5271
5507
|
"filename": "lib/cluster.ts",
|
|
5272
|
-
"line":
|
|
5508
|
+
"line": 255
|
|
5273
5509
|
},
|
|
5274
5510
|
"name": "clusterIdentifier",
|
|
5275
5511
|
"type": {
|
|
@@ -5288,7 +5524,7 @@
|
|
|
5288
5524
|
"immutable": true,
|
|
5289
5525
|
"locationInModule": {
|
|
5290
5526
|
"filename": "lib/cluster.ts",
|
|
5291
|
-
"line":
|
|
5527
|
+
"line": 273
|
|
5292
5528
|
},
|
|
5293
5529
|
"name": "clusterReadEndpoint",
|
|
5294
5530
|
"type": {
|
|
@@ -5307,7 +5543,7 @@
|
|
|
5307
5543
|
"immutable": true,
|
|
5308
5544
|
"locationInModule": {
|
|
5309
5545
|
"filename": "lib/cluster.ts",
|
|
5310
|
-
"line":
|
|
5546
|
+
"line": 261
|
|
5311
5547
|
},
|
|
5312
5548
|
"name": "clusterResourceIdentifier",
|
|
5313
5549
|
"type": {
|
|
@@ -5330,8 +5566,43 @@
|
|
|
5330
5566
|
"kind": "interface",
|
|
5331
5567
|
"locationInModule": {
|
|
5332
5568
|
"filename": "lib/instance.ts",
|
|
5333
|
-
"line":
|
|
5569
|
+
"line": 145
|
|
5334
5570
|
},
|
|
5571
|
+
"methods": [
|
|
5572
|
+
{
|
|
5573
|
+
"abstract": true,
|
|
5574
|
+
"docs": {
|
|
5575
|
+
"see": "https://docs.aws.amazon.com/neptune/latest/userguide/cw-dimensions.html",
|
|
5576
|
+
"stability": "experimental",
|
|
5577
|
+
"summary": "Return the given named metric associated with this database instance."
|
|
5578
|
+
},
|
|
5579
|
+
"locationInModule": {
|
|
5580
|
+
"filename": "lib/instance.ts",
|
|
5581
|
+
"line": 176
|
|
5582
|
+
},
|
|
5583
|
+
"name": "metric",
|
|
5584
|
+
"parameters": [
|
|
5585
|
+
{
|
|
5586
|
+
"name": "metricName",
|
|
5587
|
+
"type": {
|
|
5588
|
+
"primitive": "string"
|
|
5589
|
+
}
|
|
5590
|
+
},
|
|
5591
|
+
{
|
|
5592
|
+
"name": "props",
|
|
5593
|
+
"optional": true,
|
|
5594
|
+
"type": {
|
|
5595
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.MetricOptions"
|
|
5596
|
+
}
|
|
5597
|
+
}
|
|
5598
|
+
],
|
|
5599
|
+
"returns": {
|
|
5600
|
+
"type": {
|
|
5601
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.Metric"
|
|
5602
|
+
}
|
|
5603
|
+
}
|
|
5604
|
+
}
|
|
5605
|
+
],
|
|
5335
5606
|
"name": "IDatabaseInstance",
|
|
5336
5607
|
"properties": [
|
|
5337
5608
|
{
|
|
@@ -5346,7 +5617,7 @@
|
|
|
5346
5617
|
"immutable": true,
|
|
5347
5618
|
"locationInModule": {
|
|
5348
5619
|
"filename": "lib/instance.ts",
|
|
5349
|
-
"line":
|
|
5620
|
+
"line": 161
|
|
5350
5621
|
},
|
|
5351
5622
|
"name": "dbInstanceEndpointAddress",
|
|
5352
5623
|
"type": {
|
|
@@ -5365,7 +5636,7 @@
|
|
|
5365
5636
|
"immutable": true,
|
|
5366
5637
|
"locationInModule": {
|
|
5367
5638
|
"filename": "lib/instance.ts",
|
|
5368
|
-
"line":
|
|
5639
|
+
"line": 168
|
|
5369
5640
|
},
|
|
5370
5641
|
"name": "dbInstanceEndpointPort",
|
|
5371
5642
|
"type": {
|
|
@@ -5381,7 +5652,7 @@
|
|
|
5381
5652
|
"immutable": true,
|
|
5382
5653
|
"locationInModule": {
|
|
5383
5654
|
"filename": "lib/instance.ts",
|
|
5384
|
-
"line":
|
|
5655
|
+
"line": 154
|
|
5385
5656
|
},
|
|
5386
5657
|
"name": "instanceEndpoint",
|
|
5387
5658
|
"type": {
|
|
@@ -5397,7 +5668,7 @@
|
|
|
5397
5668
|
"immutable": true,
|
|
5398
5669
|
"locationInModule": {
|
|
5399
5670
|
"filename": "lib/instance.ts",
|
|
5400
|
-
"line":
|
|
5671
|
+
"line": 149
|
|
5401
5672
|
},
|
|
5402
5673
|
"name": "instanceIdentifier",
|
|
5403
5674
|
"type": {
|
|
@@ -5496,7 +5767,7 @@
|
|
|
5496
5767
|
"kind": "class",
|
|
5497
5768
|
"locationInModule": {
|
|
5498
5769
|
"filename": "lib/instance.ts",
|
|
5499
|
-
"line":
|
|
5770
|
+
"line": 14
|
|
5500
5771
|
},
|
|
5501
5772
|
"methods": [
|
|
5502
5773
|
{
|
|
@@ -5506,7 +5777,7 @@
|
|
|
5506
5777
|
},
|
|
5507
5778
|
"locationInModule": {
|
|
5508
5779
|
"filename": "lib/instance.ts",
|
|
5509
|
-
"line":
|
|
5780
|
+
"line": 124
|
|
5510
5781
|
},
|
|
5511
5782
|
"name": "of",
|
|
5512
5783
|
"parameters": [
|
|
@@ -5536,7 +5807,7 @@
|
|
|
5536
5807
|
"immutable": true,
|
|
5537
5808
|
"locationInModule": {
|
|
5538
5809
|
"filename": "lib/instance.ts",
|
|
5539
|
-
"line":
|
|
5810
|
+
"line": 104
|
|
5540
5811
|
},
|
|
5541
5812
|
"name": "R4_2XLARGE",
|
|
5542
5813
|
"static": true,
|
|
@@ -5553,7 +5824,7 @@
|
|
|
5553
5824
|
"immutable": true,
|
|
5554
5825
|
"locationInModule": {
|
|
5555
5826
|
"filename": "lib/instance.ts",
|
|
5556
|
-
"line":
|
|
5827
|
+
"line": 109
|
|
5557
5828
|
},
|
|
5558
5829
|
"name": "R4_4XLARGE",
|
|
5559
5830
|
"static": true,
|
|
@@ -5570,7 +5841,7 @@
|
|
|
5570
5841
|
"immutable": true,
|
|
5571
5842
|
"locationInModule": {
|
|
5572
5843
|
"filename": "lib/instance.ts",
|
|
5573
|
-
"line":
|
|
5844
|
+
"line": 114
|
|
5574
5845
|
},
|
|
5575
5846
|
"name": "R4_8XLARGE",
|
|
5576
5847
|
"static": true,
|
|
@@ -5587,7 +5858,7 @@
|
|
|
5587
5858
|
"immutable": true,
|
|
5588
5859
|
"locationInModule": {
|
|
5589
5860
|
"filename": "lib/instance.ts",
|
|
5590
|
-
"line":
|
|
5861
|
+
"line": 94
|
|
5591
5862
|
},
|
|
5592
5863
|
"name": "R4_LARGE",
|
|
5593
5864
|
"static": true,
|
|
@@ -5604,7 +5875,7 @@
|
|
|
5604
5875
|
"immutable": true,
|
|
5605
5876
|
"locationInModule": {
|
|
5606
5877
|
"filename": "lib/instance.ts",
|
|
5607
|
-
"line":
|
|
5878
|
+
"line": 99
|
|
5608
5879
|
},
|
|
5609
5880
|
"name": "R4_XLARGE",
|
|
5610
5881
|
"static": true,
|
|
@@ -5621,7 +5892,7 @@
|
|
|
5621
5892
|
"immutable": true,
|
|
5622
5893
|
"locationInModule": {
|
|
5623
5894
|
"filename": "lib/instance.ts",
|
|
5624
|
-
"line":
|
|
5895
|
+
"line": 84
|
|
5625
5896
|
},
|
|
5626
5897
|
"name": "R5_12XLARGE",
|
|
5627
5898
|
"static": true,
|
|
@@ -5638,7 +5909,7 @@
|
|
|
5638
5909
|
"immutable": true,
|
|
5639
5910
|
"locationInModule": {
|
|
5640
5911
|
"filename": "lib/instance.ts",
|
|
5641
|
-
"line":
|
|
5912
|
+
"line": 89
|
|
5642
5913
|
},
|
|
5643
5914
|
"name": "R5_24XLARGE",
|
|
5644
5915
|
"static": true,
|
|
@@ -5655,7 +5926,7 @@
|
|
|
5655
5926
|
"immutable": true,
|
|
5656
5927
|
"locationInModule": {
|
|
5657
5928
|
"filename": "lib/instance.ts",
|
|
5658
|
-
"line":
|
|
5929
|
+
"line": 69
|
|
5659
5930
|
},
|
|
5660
5931
|
"name": "R5_2XLARGE",
|
|
5661
5932
|
"static": true,
|
|
@@ -5672,7 +5943,7 @@
|
|
|
5672
5943
|
"immutable": true,
|
|
5673
5944
|
"locationInModule": {
|
|
5674
5945
|
"filename": "lib/instance.ts",
|
|
5675
|
-
"line":
|
|
5946
|
+
"line": 74
|
|
5676
5947
|
},
|
|
5677
5948
|
"name": "R5_4XLARGE",
|
|
5678
5949
|
"static": true,
|
|
@@ -5689,7 +5960,7 @@
|
|
|
5689
5960
|
"immutable": true,
|
|
5690
5961
|
"locationInModule": {
|
|
5691
5962
|
"filename": "lib/instance.ts",
|
|
5692
|
-
"line":
|
|
5963
|
+
"line": 79
|
|
5693
5964
|
},
|
|
5694
5965
|
"name": "R5_8XLARGE",
|
|
5695
5966
|
"static": true,
|
|
@@ -5706,7 +5977,7 @@
|
|
|
5706
5977
|
"immutable": true,
|
|
5707
5978
|
"locationInModule": {
|
|
5708
5979
|
"filename": "lib/instance.ts",
|
|
5709
|
-
"line":
|
|
5980
|
+
"line": 59
|
|
5710
5981
|
},
|
|
5711
5982
|
"name": "R5_LARGE",
|
|
5712
5983
|
"static": true,
|
|
@@ -5723,7 +5994,7 @@
|
|
|
5723
5994
|
"immutable": true,
|
|
5724
5995
|
"locationInModule": {
|
|
5725
5996
|
"filename": "lib/instance.ts",
|
|
5726
|
-
"line":
|
|
5997
|
+
"line": 64
|
|
5727
5998
|
},
|
|
5728
5999
|
"name": "R5_XLARGE",
|
|
5729
6000
|
"static": true,
|
|
@@ -5740,7 +6011,7 @@
|
|
|
5740
6011
|
"immutable": true,
|
|
5741
6012
|
"locationInModule": {
|
|
5742
6013
|
"filename": "lib/instance.ts",
|
|
5743
|
-
"line":
|
|
6014
|
+
"line": 44
|
|
5744
6015
|
},
|
|
5745
6016
|
"name": "R6G_12XLARGE",
|
|
5746
6017
|
"static": true,
|
|
@@ -5757,7 +6028,7 @@
|
|
|
5757
6028
|
"immutable": true,
|
|
5758
6029
|
"locationInModule": {
|
|
5759
6030
|
"filename": "lib/instance.ts",
|
|
5760
|
-
"line":
|
|
6031
|
+
"line": 49
|
|
5761
6032
|
},
|
|
5762
6033
|
"name": "R6G_16XLARGE",
|
|
5763
6034
|
"static": true,
|
|
@@ -5774,7 +6045,7 @@
|
|
|
5774
6045
|
"immutable": true,
|
|
5775
6046
|
"locationInModule": {
|
|
5776
6047
|
"filename": "lib/instance.ts",
|
|
5777
|
-
"line":
|
|
6048
|
+
"line": 29
|
|
5778
6049
|
},
|
|
5779
6050
|
"name": "R6G_2XLARGE",
|
|
5780
6051
|
"static": true,
|
|
@@ -5791,7 +6062,7 @@
|
|
|
5791
6062
|
"immutable": true,
|
|
5792
6063
|
"locationInModule": {
|
|
5793
6064
|
"filename": "lib/instance.ts",
|
|
5794
|
-
"line":
|
|
6065
|
+
"line": 34
|
|
5795
6066
|
},
|
|
5796
6067
|
"name": "R6G_4XLARGE",
|
|
5797
6068
|
"static": true,
|
|
@@ -5808,7 +6079,7 @@
|
|
|
5808
6079
|
"immutable": true,
|
|
5809
6080
|
"locationInModule": {
|
|
5810
6081
|
"filename": "lib/instance.ts",
|
|
5811
|
-
"line":
|
|
6082
|
+
"line": 39
|
|
5812
6083
|
},
|
|
5813
6084
|
"name": "R6G_8XLARGE",
|
|
5814
6085
|
"static": true,
|
|
@@ -5825,7 +6096,7 @@
|
|
|
5825
6096
|
"immutable": true,
|
|
5826
6097
|
"locationInModule": {
|
|
5827
6098
|
"filename": "lib/instance.ts",
|
|
5828
|
-
"line":
|
|
6099
|
+
"line": 19
|
|
5829
6100
|
},
|
|
5830
6101
|
"name": "R6G_LARGE",
|
|
5831
6102
|
"static": true,
|
|
@@ -5842,7 +6113,7 @@
|
|
|
5842
6113
|
"immutable": true,
|
|
5843
6114
|
"locationInModule": {
|
|
5844
6115
|
"filename": "lib/instance.ts",
|
|
5845
|
-
"line":
|
|
6116
|
+
"line": 24
|
|
5846
6117
|
},
|
|
5847
6118
|
"name": "R6G_XLARGE",
|
|
5848
6119
|
"static": true,
|
|
@@ -5859,7 +6130,7 @@
|
|
|
5859
6130
|
"immutable": true,
|
|
5860
6131
|
"locationInModule": {
|
|
5861
6132
|
"filename": "lib/instance.ts",
|
|
5862
|
-
"line":
|
|
6133
|
+
"line": 119
|
|
5863
6134
|
},
|
|
5864
6135
|
"name": "T3_MEDIUM",
|
|
5865
6136
|
"static": true,
|
|
@@ -5876,7 +6147,7 @@
|
|
|
5876
6147
|
"immutable": true,
|
|
5877
6148
|
"locationInModule": {
|
|
5878
6149
|
"filename": "lib/instance.ts",
|
|
5879
|
-
"line":
|
|
6150
|
+
"line": 54
|
|
5880
6151
|
},
|
|
5881
6152
|
"name": "T4G_MEDIUM",
|
|
5882
6153
|
"static": true,
|
|
@@ -6406,6 +6677,6 @@
|
|
|
6406
6677
|
"symbolId": "lib/subnet-group:SubnetGroupProps"
|
|
6407
6678
|
}
|
|
6408
6679
|
},
|
|
6409
|
-
"version": "2.
|
|
6680
|
+
"version": "2.44.0-alpha.0",
|
|
6410
6681
|
"fingerprint": "**********"
|
|
6411
6682
|
}
|