@aws-cdk/aws-neptune-alpha 2.43.1-alpha.0 → 2.45.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +616 -169
- package/.jsii.tabl.json.gz +0 -0
- package/.warnings.jsii.js +7 -1
- package/README.md +47 -1
- package/lib/cluster.d.ts +54 -0
- package/lib/cluster.js +56 -8
- 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/rosetta/default.ts-fixture +1 -0
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.45.0",
|
|
12
12
|
"constructs": "^10.0.0"
|
|
13
13
|
},
|
|
14
14
|
"dependencyClosure": {
|
|
@@ -730,6 +730,19 @@
|
|
|
730
730
|
}
|
|
731
731
|
}
|
|
732
732
|
},
|
|
733
|
+
"aws-cdk-lib.aws_connectcampaigns": {
|
|
734
|
+
"targets": {
|
|
735
|
+
"dotnet": {
|
|
736
|
+
"namespace": "Amazon.CDK.AWS.ConnectCampaigns"
|
|
737
|
+
},
|
|
738
|
+
"java": {
|
|
739
|
+
"package": "software.amazon.awscdk.services.connectcampaigns"
|
|
740
|
+
},
|
|
741
|
+
"python": {
|
|
742
|
+
"module": "aws_cdk.aws_connectcampaigns"
|
|
743
|
+
}
|
|
744
|
+
}
|
|
745
|
+
},
|
|
733
746
|
"aws-cdk-lib.aws_controltower": {
|
|
734
747
|
"targets": {
|
|
735
748
|
"dotnet": {
|
|
@@ -1510,6 +1523,19 @@
|
|
|
1510
1523
|
}
|
|
1511
1524
|
}
|
|
1512
1525
|
},
|
|
1526
|
+
"aws-cdk-lib.aws_iotfleetwise": {
|
|
1527
|
+
"targets": {
|
|
1528
|
+
"dotnet": {
|
|
1529
|
+
"namespace": "Amazon.CDK.AWS.IoTFleetWise"
|
|
1530
|
+
},
|
|
1531
|
+
"java": {
|
|
1532
|
+
"package": "software.amazon.awscdk.services.iotfleetwise"
|
|
1533
|
+
},
|
|
1534
|
+
"python": {
|
|
1535
|
+
"module": "aws_cdk.aws_iotfleetwise"
|
|
1536
|
+
}
|
|
1537
|
+
}
|
|
1538
|
+
},
|
|
1513
1539
|
"aws-cdk-lib.aws_iotsitewise": {
|
|
1514
1540
|
"targets": {
|
|
1515
1541
|
"dotnet": {
|
|
@@ -2303,6 +2329,19 @@
|
|
|
2303
2329
|
}
|
|
2304
2330
|
}
|
|
2305
2331
|
},
|
|
2332
|
+
"aws-cdk-lib.aws_rolesanywhere": {
|
|
2333
|
+
"targets": {
|
|
2334
|
+
"dotnet": {
|
|
2335
|
+
"namespace": "Amazon.CDK.AWS.RolesAnywhere"
|
|
2336
|
+
},
|
|
2337
|
+
"java": {
|
|
2338
|
+
"package": "software.amazon.awscdk.services.rolesanywhere"
|
|
2339
|
+
},
|
|
2340
|
+
"python": {
|
|
2341
|
+
"module": "aws_cdk.aws_rolesanywhere"
|
|
2342
|
+
}
|
|
2343
|
+
}
|
|
2344
|
+
},
|
|
2306
2345
|
"aws-cdk-lib.aws_route53": {
|
|
2307
2346
|
"targets": {
|
|
2308
2347
|
"dotnet": {
|
|
@@ -3084,7 +3123,7 @@
|
|
|
3084
3123
|
},
|
|
3085
3124
|
"name": "@aws-cdk/aws-neptune-alpha",
|
|
3086
3125
|
"readme": {
|
|
3087
|
-
"markdown": "# Amazon Neptune Construct Library\n<!--BEGIN STABILITY BANNER-->\n\n---\n\n\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"
|
|
3126
|
+
"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## Logging\n\nNeptune supports various methods for monitoring performance and usage. One of those methods is logging\n\n1. Neptune provides logs e.g. audit logs which can be viewed or downloaded via the AWS Console. Audit logs can be enabled using the `neptune_enable_audit_log` parameter in `ClusterParameterGroup` or `ParameterGroup`\n2. Neptune provides the ability to export those logs to CloudWatch Logs\n\n```ts\n// Cluster parameter group with the neptune_enable_audit_log param set to 1\nconst clusterParameterGroup = new neptune.ClusterParameterGroup(this, 'ClusterParams', {\n description: 'Cluster parameter group',\n parameters: {\n neptune_enable_audit_log: '1'\n },\n});\n\nconst cluster = new neptune.DatabaseCluster(this, 'Database', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n // Audit logs are enabled via the clusterParameterGroup\n clusterParameterGroup,\n // Optionally configuring audit logs to be exported to CloudWatch Logs\n cloudwatchLogsExports: [neptune.LogType.AUDIT],\n // Optionally set a retention period on exported CloudWatch Logs\n cloudwatchLogsRetention: logs.RetentionDays.ONE_MONTH,\n});\n```\n\nFor more information on monitoring, refer to https://docs.aws.amazon.com/neptune/latest/userguide/monitoring.html.\nFor more information on audit logs, refer to https://docs.aws.amazon.com/neptune/latest/userguide/auditing.html.\nFor more information on exporting logs to CloudWatch Logs, refer to https://docs.aws.amazon.com/neptune/latest/userguide/cloudwatch-logs.html.\n\n## Metrics\n\nBoth `DatabaseCluster` and `DatabaseInstance` provide a `metric()` method to help with cluster-level and instance-level monitoring.\n\n```ts\ndeclare const cluster: neptune.DatabaseCluster;\ndeclare const instance: neptune.DatabaseInstance;\n\ncluster.metric('SparqlRequestsPerSec'); // cluster-level SparqlErrors metric\ninstance.metric('SparqlRequestsPerSec') // instance-level SparqlErrors metric\n```\n\nFor more details on the available metrics, refer to https://docs.aws.amazon.com/neptune/latest/userguide/cw-metrics.html\n"
|
|
3088
3127
|
},
|
|
3089
3128
|
"repository": {
|
|
3090
3129
|
"directory": "packages/individual-packages/aws-neptune",
|
|
@@ -3348,7 +3387,7 @@
|
|
|
3348
3387
|
},
|
|
3349
3388
|
"locationInModule": {
|
|
3350
3389
|
"filename": "lib/cluster.ts",
|
|
3351
|
-
"line":
|
|
3390
|
+
"line": 524
|
|
3352
3391
|
},
|
|
3353
3392
|
"parameters": [
|
|
3354
3393
|
{
|
|
@@ -3377,7 +3416,7 @@
|
|
|
3377
3416
|
"kind": "class",
|
|
3378
3417
|
"locationInModule": {
|
|
3379
3418
|
"filename": "lib/cluster.ts",
|
|
3380
|
-
"line":
|
|
3419
|
+
"line": 477
|
|
3381
3420
|
},
|
|
3382
3421
|
"name": "DatabaseCluster",
|
|
3383
3422
|
"properties": [
|
|
@@ -3390,7 +3429,7 @@
|
|
|
3390
3429
|
"immutable": true,
|
|
3391
3430
|
"locationInModule": {
|
|
3392
3431
|
"filename": "lib/cluster.ts",
|
|
3393
|
-
"line":
|
|
3432
|
+
"line": 483
|
|
3394
3433
|
},
|
|
3395
3434
|
"name": "DEFAULT_NUM_INSTANCES",
|
|
3396
3435
|
"static": true,
|
|
@@ -3406,7 +3445,7 @@
|
|
|
3406
3445
|
"immutable": true,
|
|
3407
3446
|
"locationInModule": {
|
|
3408
3447
|
"filename": "lib/cluster.ts",
|
|
3409
|
-
"line":
|
|
3448
|
+
"line": 486
|
|
3410
3449
|
},
|
|
3411
3450
|
"name": "clusterEndpoint",
|
|
3412
3451
|
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseClusterBase",
|
|
@@ -3422,7 +3461,7 @@
|
|
|
3422
3461
|
"immutable": true,
|
|
3423
3462
|
"locationInModule": {
|
|
3424
3463
|
"filename": "lib/cluster.ts",
|
|
3425
|
-
"line":
|
|
3464
|
+
"line": 485
|
|
3426
3465
|
},
|
|
3427
3466
|
"name": "clusterIdentifier",
|
|
3428
3467
|
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseClusterBase",
|
|
@@ -3438,7 +3477,7 @@
|
|
|
3438
3477
|
"immutable": true,
|
|
3439
3478
|
"locationInModule": {
|
|
3440
3479
|
"filename": "lib/cluster.ts",
|
|
3441
|
-
"line":
|
|
3480
|
+
"line": 487
|
|
3442
3481
|
},
|
|
3443
3482
|
"name": "clusterReadEndpoint",
|
|
3444
3483
|
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseClusterBase",
|
|
@@ -3458,7 +3497,7 @@
|
|
|
3458
3497
|
"immutable": true,
|
|
3459
3498
|
"locationInModule": {
|
|
3460
3499
|
"filename": "lib/cluster.ts",
|
|
3461
|
-
"line":
|
|
3500
|
+
"line": 495
|
|
3462
3501
|
},
|
|
3463
3502
|
"name": "clusterResourceIdentifier",
|
|
3464
3503
|
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseClusterBase",
|
|
@@ -3474,7 +3513,7 @@
|
|
|
3474
3513
|
"immutable": true,
|
|
3475
3514
|
"locationInModule": {
|
|
3476
3515
|
"filename": "lib/cluster.ts",
|
|
3477
|
-
"line":
|
|
3516
|
+
"line": 488
|
|
3478
3517
|
},
|
|
3479
3518
|
"name": "connections",
|
|
3480
3519
|
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseClusterBase",
|
|
@@ -3490,7 +3529,7 @@
|
|
|
3490
3529
|
"immutable": true,
|
|
3491
3530
|
"locationInModule": {
|
|
3492
3531
|
"filename": "lib/cluster.ts",
|
|
3493
|
-
"line":
|
|
3532
|
+
"line": 520
|
|
3494
3533
|
},
|
|
3495
3534
|
"name": "instanceEndpoints",
|
|
3496
3535
|
"type": {
|
|
@@ -3510,7 +3549,7 @@
|
|
|
3510
3549
|
"immutable": true,
|
|
3511
3550
|
"locationInModule": {
|
|
3512
3551
|
"filename": "lib/cluster.ts",
|
|
3513
|
-
"line":
|
|
3552
|
+
"line": 515
|
|
3514
3553
|
},
|
|
3515
3554
|
"name": "instanceIdentifiers",
|
|
3516
3555
|
"type": {
|
|
@@ -3530,7 +3569,7 @@
|
|
|
3530
3569
|
"immutable": true,
|
|
3531
3570
|
"locationInModule": {
|
|
3532
3571
|
"filename": "lib/cluster.ts",
|
|
3533
|
-
"line":
|
|
3572
|
+
"line": 510
|
|
3534
3573
|
},
|
|
3535
3574
|
"name": "subnetGroup",
|
|
3536
3575
|
"type": {
|
|
@@ -3545,7 +3584,7 @@
|
|
|
3545
3584
|
"immutable": true,
|
|
3546
3585
|
"locationInModule": {
|
|
3547
3586
|
"filename": "lib/cluster.ts",
|
|
3548
|
-
"line":
|
|
3587
|
+
"line": 500
|
|
3549
3588
|
},
|
|
3550
3589
|
"name": "vpc",
|
|
3551
3590
|
"type": {
|
|
@@ -3560,7 +3599,7 @@
|
|
|
3560
3599
|
"immutable": true,
|
|
3561
3600
|
"locationInModule": {
|
|
3562
3601
|
"filename": "lib/cluster.ts",
|
|
3563
|
-
"line":
|
|
3602
|
+
"line": 505
|
|
3564
3603
|
},
|
|
3565
3604
|
"name": "vpcSubnets",
|
|
3566
3605
|
"type": {
|
|
@@ -3573,7 +3612,7 @@
|
|
|
3573
3612
|
},
|
|
3574
3613
|
"locationInModule": {
|
|
3575
3614
|
"filename": "lib/cluster.ts",
|
|
3576
|
-
"line":
|
|
3615
|
+
"line": 522
|
|
3577
3616
|
},
|
|
3578
3617
|
"name": "enableIamAuthentication",
|
|
3579
3618
|
"optional": true,
|
|
@@ -3601,7 +3640,7 @@
|
|
|
3601
3640
|
"kind": "interface",
|
|
3602
3641
|
"locationInModule": {
|
|
3603
3642
|
"filename": "lib/cluster.ts",
|
|
3604
|
-
"line":
|
|
3643
|
+
"line": 350
|
|
3605
3644
|
},
|
|
3606
3645
|
"name": "DatabaseClusterAttributes",
|
|
3607
3646
|
"properties": [
|
|
@@ -3614,7 +3653,7 @@
|
|
|
3614
3653
|
"immutable": true,
|
|
3615
3654
|
"locationInModule": {
|
|
3616
3655
|
"filename": "lib/cluster.ts",
|
|
3617
|
-
"line":
|
|
3656
|
+
"line": 374
|
|
3618
3657
|
},
|
|
3619
3658
|
"name": "clusterEndpointAddress",
|
|
3620
3659
|
"type": {
|
|
@@ -3630,7 +3669,7 @@
|
|
|
3630
3669
|
"immutable": true,
|
|
3631
3670
|
"locationInModule": {
|
|
3632
3671
|
"filename": "lib/cluster.ts",
|
|
3633
|
-
"line":
|
|
3672
|
+
"line": 364
|
|
3634
3673
|
},
|
|
3635
3674
|
"name": "clusterIdentifier",
|
|
3636
3675
|
"type": {
|
|
@@ -3646,7 +3685,7 @@
|
|
|
3646
3685
|
"immutable": true,
|
|
3647
3686
|
"locationInModule": {
|
|
3648
3687
|
"filename": "lib/cluster.ts",
|
|
3649
|
-
"line":
|
|
3688
|
+
"line": 369
|
|
3650
3689
|
},
|
|
3651
3690
|
"name": "clusterResourceIdentifier",
|
|
3652
3691
|
"type": {
|
|
@@ -3662,7 +3701,7 @@
|
|
|
3662
3701
|
"immutable": true,
|
|
3663
3702
|
"locationInModule": {
|
|
3664
3703
|
"filename": "lib/cluster.ts",
|
|
3665
|
-
"line":
|
|
3704
|
+
"line": 354
|
|
3666
3705
|
},
|
|
3667
3706
|
"name": "port",
|
|
3668
3707
|
"type": {
|
|
@@ -3678,7 +3717,7 @@
|
|
|
3678
3717
|
"immutable": true,
|
|
3679
3718
|
"locationInModule": {
|
|
3680
3719
|
"filename": "lib/cluster.ts",
|
|
3681
|
-
"line":
|
|
3720
|
+
"line": 379
|
|
3682
3721
|
},
|
|
3683
3722
|
"name": "readerEndpointAddress",
|
|
3684
3723
|
"type": {
|
|
@@ -3694,7 +3733,7 @@
|
|
|
3694
3733
|
"immutable": true,
|
|
3695
3734
|
"locationInModule": {
|
|
3696
3735
|
"filename": "lib/cluster.ts",
|
|
3697
|
-
"line":
|
|
3736
|
+
"line": 359
|
|
3698
3737
|
},
|
|
3699
3738
|
"name": "securityGroup",
|
|
3700
3739
|
"type": {
|
|
@@ -3753,7 +3792,7 @@
|
|
|
3753
3792
|
"kind": "class",
|
|
3754
3793
|
"locationInModule": {
|
|
3755
3794
|
"filename": "lib/cluster.ts",
|
|
3756
|
-
"line":
|
|
3795
|
+
"line": 385
|
|
3757
3796
|
},
|
|
3758
3797
|
"methods": [
|
|
3759
3798
|
{
|
|
@@ -3763,7 +3802,7 @@
|
|
|
3763
3802
|
},
|
|
3764
3803
|
"locationInModule": {
|
|
3765
3804
|
"filename": "lib/cluster.ts",
|
|
3766
|
-
"line":
|
|
3805
|
+
"line": 390
|
|
3767
3806
|
},
|
|
3768
3807
|
"name": "fromDatabaseClusterAttributes",
|
|
3769
3808
|
"parameters": [
|
|
@@ -3800,7 +3839,7 @@
|
|
|
3800
3839
|
},
|
|
3801
3840
|
"locationInModule": {
|
|
3802
3841
|
"filename": "lib/cluster.ts",
|
|
3803
|
-
"line":
|
|
3842
|
+
"line": 434
|
|
3804
3843
|
},
|
|
3805
3844
|
"name": "grant",
|
|
3806
3845
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
|
|
@@ -3833,7 +3872,7 @@
|
|
|
3833
3872
|
},
|
|
3834
3873
|
"locationInModule": {
|
|
3835
3874
|
"filename": "lib/cluster.ts",
|
|
3836
|
-
"line":
|
|
3875
|
+
"line": 456
|
|
3837
3876
|
},
|
|
3838
3877
|
"name": "grantConnect",
|
|
3839
3878
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
|
|
@@ -3850,6 +3889,38 @@
|
|
|
3850
3889
|
"fqn": "aws-cdk-lib.aws_iam.Grant"
|
|
3851
3890
|
}
|
|
3852
3891
|
}
|
|
3892
|
+
},
|
|
3893
|
+
{
|
|
3894
|
+
"docs": {
|
|
3895
|
+
"stability": "experimental",
|
|
3896
|
+
"summary": "Return the given named metric associated with this DatabaseCluster instance."
|
|
3897
|
+
},
|
|
3898
|
+
"locationInModule": {
|
|
3899
|
+
"filename": "lib/cluster.ts",
|
|
3900
|
+
"line": 460
|
|
3901
|
+
},
|
|
3902
|
+
"name": "metric",
|
|
3903
|
+
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
|
|
3904
|
+
"parameters": [
|
|
3905
|
+
{
|
|
3906
|
+
"name": "metricName",
|
|
3907
|
+
"type": {
|
|
3908
|
+
"primitive": "string"
|
|
3909
|
+
}
|
|
3910
|
+
},
|
|
3911
|
+
{
|
|
3912
|
+
"name": "props",
|
|
3913
|
+
"optional": true,
|
|
3914
|
+
"type": {
|
|
3915
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.MetricOptions"
|
|
3916
|
+
}
|
|
3917
|
+
}
|
|
3918
|
+
],
|
|
3919
|
+
"returns": {
|
|
3920
|
+
"type": {
|
|
3921
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.Metric"
|
|
3922
|
+
}
|
|
3923
|
+
}
|
|
3853
3924
|
}
|
|
3854
3925
|
],
|
|
3855
3926
|
"name": "DatabaseClusterBase",
|
|
@@ -3863,7 +3934,7 @@
|
|
|
3863
3934
|
"immutable": true,
|
|
3864
3935
|
"locationInModule": {
|
|
3865
3936
|
"filename": "lib/cluster.ts",
|
|
3866
|
-
"line":
|
|
3937
|
+
"line": 420
|
|
3867
3938
|
},
|
|
3868
3939
|
"name": "clusterEndpoint",
|
|
3869
3940
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
|
|
@@ -3880,7 +3951,7 @@
|
|
|
3880
3951
|
"immutable": true,
|
|
3881
3952
|
"locationInModule": {
|
|
3882
3953
|
"filename": "lib/cluster.ts",
|
|
3883
|
-
"line":
|
|
3954
|
+
"line": 410
|
|
3884
3955
|
},
|
|
3885
3956
|
"name": "clusterIdentifier",
|
|
3886
3957
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
|
|
@@ -3897,7 +3968,7 @@
|
|
|
3897
3968
|
"immutable": true,
|
|
3898
3969
|
"locationInModule": {
|
|
3899
3970
|
"filename": "lib/cluster.ts",
|
|
3900
|
-
"line":
|
|
3971
|
+
"line": 425
|
|
3901
3972
|
},
|
|
3902
3973
|
"name": "clusterReadEndpoint",
|
|
3903
3974
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
|
|
@@ -3914,7 +3985,7 @@
|
|
|
3914
3985
|
"immutable": true,
|
|
3915
3986
|
"locationInModule": {
|
|
3916
3987
|
"filename": "lib/cluster.ts",
|
|
3917
|
-
"line":
|
|
3988
|
+
"line": 415
|
|
3918
3989
|
},
|
|
3919
3990
|
"name": "clusterResourceIdentifier",
|
|
3920
3991
|
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
|
|
@@ -3931,7 +4002,7 @@
|
|
|
3931
4002
|
"immutable": true,
|
|
3932
4003
|
"locationInModule": {
|
|
3933
4004
|
"filename": "lib/cluster.ts",
|
|
3934
|
-
"line":
|
|
4005
|
+
"line": 430
|
|
3935
4006
|
},
|
|
3936
4007
|
"name": "connections",
|
|
3937
4008
|
"overrides": "aws-cdk-lib.aws_ec2.IConnectable",
|
|
@@ -3946,7 +4017,7 @@
|
|
|
3946
4017
|
},
|
|
3947
4018
|
"locationInModule": {
|
|
3948
4019
|
"filename": "lib/cluster.ts",
|
|
3949
|
-
"line":
|
|
4020
|
+
"line": 432
|
|
3950
4021
|
},
|
|
3951
4022
|
"name": "enableIamAuthentication",
|
|
3952
4023
|
"optional": true,
|
|
@@ -3973,7 +4044,7 @@
|
|
|
3973
4044
|
"kind": "interface",
|
|
3974
4045
|
"locationInModule": {
|
|
3975
4046
|
"filename": "lib/cluster.ts",
|
|
3976
|
-
"line":
|
|
4047
|
+
"line": 98
|
|
3977
4048
|
},
|
|
3978
4049
|
"name": "DatabaseClusterProps",
|
|
3979
4050
|
"properties": [
|
|
@@ -3986,7 +4057,7 @@
|
|
|
3986
4057
|
"immutable": true,
|
|
3987
4058
|
"locationInModule": {
|
|
3988
4059
|
"filename": "lib/cluster.ts",
|
|
3989
|
-
"line":
|
|
4060
|
+
"line": 180
|
|
3990
4061
|
},
|
|
3991
4062
|
"name": "instanceType",
|
|
3992
4063
|
"type": {
|
|
@@ -4003,7 +4074,7 @@
|
|
|
4003
4074
|
"immutable": true,
|
|
4004
4075
|
"locationInModule": {
|
|
4005
4076
|
"filename": "lib/cluster.ts",
|
|
4006
|
-
"line":
|
|
4077
|
+
"line": 234
|
|
4007
4078
|
},
|
|
4008
4079
|
"name": "vpc",
|
|
4009
4080
|
"type": {
|
|
@@ -4020,7 +4091,7 @@
|
|
|
4020
4091
|
"immutable": true,
|
|
4021
4092
|
"locationInModule": {
|
|
4022
4093
|
"filename": "lib/cluster.ts",
|
|
4023
|
-
"line":
|
|
4094
|
+
"line": 187
|
|
4024
4095
|
},
|
|
4025
4096
|
"name": "associatedRoles",
|
|
4026
4097
|
"optional": true,
|
|
@@ -4043,7 +4114,7 @@
|
|
|
4043
4114
|
"immutable": true,
|
|
4044
4115
|
"locationInModule": {
|
|
4045
4116
|
"filename": "lib/cluster.ts",
|
|
4046
|
-
"line":
|
|
4117
|
+
"line": 266
|
|
4047
4118
|
},
|
|
4048
4119
|
"name": "autoMinorVersionUpgrade",
|
|
4049
4120
|
"optional": true,
|
|
@@ -4061,7 +4132,7 @@
|
|
|
4061
4132
|
"immutable": true,
|
|
4062
4133
|
"locationInModule": {
|
|
4063
4134
|
"filename": "lib/cluster.ts",
|
|
4064
|
-
"line":
|
|
4135
|
+
"line": 118
|
|
4065
4136
|
},
|
|
4066
4137
|
"name": "backupRetention",
|
|
4067
4138
|
"optional": true,
|
|
@@ -4069,6 +4140,67 @@
|
|
|
4069
4140
|
"fqn": "aws-cdk-lib.Duration"
|
|
4070
4141
|
}
|
|
4071
4142
|
},
|
|
4143
|
+
{
|
|
4144
|
+
"abstract": true,
|
|
4145
|
+
"docs": {
|
|
4146
|
+
"default": "- no log exports",
|
|
4147
|
+
"see": "https://docs.aws.amazon.com/neptune/latest/userguide/auditing.html#auditing-enable",
|
|
4148
|
+
"stability": "experimental",
|
|
4149
|
+
"summary": "The list of log types that need to be enabled for exporting to CloudWatch Logs."
|
|
4150
|
+
},
|
|
4151
|
+
"immutable": true,
|
|
4152
|
+
"locationInModule": {
|
|
4153
|
+
"filename": "lib/cluster.ts",
|
|
4154
|
+
"line": 277
|
|
4155
|
+
},
|
|
4156
|
+
"name": "cloudwatchLogsExports",
|
|
4157
|
+
"optional": true,
|
|
4158
|
+
"type": {
|
|
4159
|
+
"collection": {
|
|
4160
|
+
"elementtype": {
|
|
4161
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.LogType"
|
|
4162
|
+
},
|
|
4163
|
+
"kind": "array"
|
|
4164
|
+
}
|
|
4165
|
+
}
|
|
4166
|
+
},
|
|
4167
|
+
{
|
|
4168
|
+
"abstract": true,
|
|
4169
|
+
"docs": {
|
|
4170
|
+
"default": "- logs never expire",
|
|
4171
|
+
"remarks": "When updating\nthis property, unsetting it doesn't remove the log retention policy. To\nremove the retention policy, set the value to `Infinity`.",
|
|
4172
|
+
"stability": "experimental",
|
|
4173
|
+
"summary": "The number of days log events are kept in CloudWatch Logs."
|
|
4174
|
+
},
|
|
4175
|
+
"immutable": true,
|
|
4176
|
+
"locationInModule": {
|
|
4177
|
+
"filename": "lib/cluster.ts",
|
|
4178
|
+
"line": 286
|
|
4179
|
+
},
|
|
4180
|
+
"name": "cloudwatchLogsRetention",
|
|
4181
|
+
"optional": true,
|
|
4182
|
+
"type": {
|
|
4183
|
+
"fqn": "aws-cdk-lib.aws_logs.RetentionDays"
|
|
4184
|
+
}
|
|
4185
|
+
},
|
|
4186
|
+
{
|
|
4187
|
+
"abstract": true,
|
|
4188
|
+
"docs": {
|
|
4189
|
+
"default": "- a new role is created.",
|
|
4190
|
+
"stability": "experimental",
|
|
4191
|
+
"summary": "The IAM role for the Lambda function associated with the custom resource that sets the retention policy."
|
|
4192
|
+
},
|
|
4193
|
+
"immutable": true,
|
|
4194
|
+
"locationInModule": {
|
|
4195
|
+
"filename": "lib/cluster.ts",
|
|
4196
|
+
"line": 294
|
|
4197
|
+
},
|
|
4198
|
+
"name": "cloudwatchLogsRetentionRole",
|
|
4199
|
+
"optional": true,
|
|
4200
|
+
"type": {
|
|
4201
|
+
"fqn": "aws-cdk-lib.aws_iam.IRole"
|
|
4202
|
+
}
|
|
4203
|
+
},
|
|
4072
4204
|
{
|
|
4073
4205
|
"abstract": true,
|
|
4074
4206
|
"docs": {
|
|
@@ -4079,7 +4211,7 @@
|
|
|
4079
4211
|
"immutable": true,
|
|
4080
4212
|
"locationInModule": {
|
|
4081
4213
|
"filename": "lib/cluster.ts",
|
|
4082
|
-
"line":
|
|
4214
|
+
"line": 213
|
|
4083
4215
|
},
|
|
4084
4216
|
"name": "clusterParameterGroup",
|
|
4085
4217
|
"optional": true,
|
|
@@ -4097,7 +4229,7 @@
|
|
|
4097
4229
|
"immutable": true,
|
|
4098
4230
|
"locationInModule": {
|
|
4099
4231
|
"filename": "lib/cluster.ts",
|
|
4100
|
-
"line":
|
|
4232
|
+
"line": 158
|
|
4101
4233
|
},
|
|
4102
4234
|
"name": "dbClusterName",
|
|
4103
4235
|
"optional": true,
|
|
@@ -4115,7 +4247,7 @@
|
|
|
4115
4247
|
"immutable": true,
|
|
4116
4248
|
"locationInModule": {
|
|
4117
4249
|
"filename": "lib/cluster.ts",
|
|
4118
|
-
"line":
|
|
4250
|
+
"line": 194
|
|
4119
4251
|
},
|
|
4120
4252
|
"name": "deletionProtection",
|
|
4121
4253
|
"optional": true,
|
|
@@ -4133,7 +4265,7 @@
|
|
|
4133
4265
|
"immutable": true,
|
|
4134
4266
|
"locationInModule": {
|
|
4135
4267
|
"filename": "lib/cluster.ts",
|
|
4136
|
-
"line":
|
|
4268
|
+
"line": 104
|
|
4137
4269
|
},
|
|
4138
4270
|
"name": "engineVersion",
|
|
4139
4271
|
"optional": true,
|
|
@@ -4151,7 +4283,7 @@
|
|
|
4151
4283
|
"immutable": true,
|
|
4152
4284
|
"locationInModule": {
|
|
4153
4285
|
"filename": "lib/cluster.ts",
|
|
4154
|
-
"line":
|
|
4286
|
+
"line": 165
|
|
4155
4287
|
},
|
|
4156
4288
|
"name": "iamAuthentication",
|
|
4157
4289
|
"optional": true,
|
|
@@ -4170,7 +4302,7 @@
|
|
|
4170
4302
|
"immutable": true,
|
|
4171
4303
|
"locationInModule": {
|
|
4172
4304
|
"filename": "lib/cluster.ts",
|
|
4173
|
-
"line":
|
|
4305
|
+
"line": 175
|
|
4174
4306
|
},
|
|
4175
4307
|
"name": "instanceIdentifierBase",
|
|
4176
4308
|
"optional": true,
|
|
@@ -4188,7 +4320,7 @@
|
|
|
4188
4320
|
"immutable": true,
|
|
4189
4321
|
"locationInModule": {
|
|
4190
4322
|
"filename": "lib/cluster.ts",
|
|
4191
|
-
"line":
|
|
4323
|
+
"line": 151
|
|
4192
4324
|
},
|
|
4193
4325
|
"name": "instances",
|
|
4194
4326
|
"optional": true,
|
|
@@ -4206,7 +4338,7 @@
|
|
|
4206
4338
|
"immutable": true,
|
|
4207
4339
|
"locationInModule": {
|
|
4208
4340
|
"filename": "lib/cluster.ts",
|
|
4209
|
-
"line":
|
|
4341
|
+
"line": 137
|
|
4210
4342
|
},
|
|
4211
4343
|
"name": "kmsKey",
|
|
4212
4344
|
"optional": true,
|
|
@@ -4224,7 +4356,7 @@
|
|
|
4224
4356
|
"immutable": true,
|
|
4225
4357
|
"locationInModule": {
|
|
4226
4358
|
"filename": "lib/cluster.ts",
|
|
4227
|
-
"line":
|
|
4359
|
+
"line": 220
|
|
4228
4360
|
},
|
|
4229
4361
|
"name": "parameterGroup",
|
|
4230
4362
|
"optional": true,
|
|
@@ -4242,7 +4374,7 @@
|
|
|
4242
4374
|
"immutable": true,
|
|
4243
4375
|
"locationInModule": {
|
|
4244
4376
|
"filename": "lib/cluster.ts",
|
|
4245
|
-
"line":
|
|
4377
|
+
"line": 111
|
|
4246
4378
|
},
|
|
4247
4379
|
"name": "port",
|
|
4248
4380
|
"optional": true,
|
|
@@ -4261,7 +4393,7 @@
|
|
|
4261
4393
|
"immutable": true,
|
|
4262
4394
|
"locationInModule": {
|
|
4263
4395
|
"filename": "lib/cluster.ts",
|
|
4264
|
-
"line":
|
|
4396
|
+
"line": 130
|
|
4265
4397
|
},
|
|
4266
4398
|
"name": "preferredBackupWindow",
|
|
4267
4399
|
"optional": true,
|
|
@@ -4280,7 +4412,7 @@
|
|
|
4280
4412
|
"immutable": true,
|
|
4281
4413
|
"locationInModule": {
|
|
4282
4414
|
"filename": "lib/cluster.ts",
|
|
4283
|
-
"line":
|
|
4415
|
+
"line": 206
|
|
4284
4416
|
},
|
|
4285
4417
|
"name": "preferredMaintenanceWindow",
|
|
4286
4418
|
"optional": true,
|
|
@@ -4299,7 +4431,7 @@
|
|
|
4299
4431
|
"immutable": true,
|
|
4300
4432
|
"locationInModule": {
|
|
4301
4433
|
"filename": "lib/cluster.ts",
|
|
4302
|
-
"line":
|
|
4434
|
+
"line": 258
|
|
4303
4435
|
},
|
|
4304
4436
|
"name": "removalPolicy",
|
|
4305
4437
|
"optional": true,
|
|
@@ -4317,7 +4449,7 @@
|
|
|
4317
4449
|
"immutable": true,
|
|
4318
4450
|
"locationInModule": {
|
|
4319
4451
|
"filename": "lib/cluster.ts",
|
|
4320
|
-
"line":
|
|
4452
|
+
"line": 248
|
|
4321
4453
|
},
|
|
4322
4454
|
"name": "securityGroups",
|
|
4323
4455
|
"optional": true,
|
|
@@ -4340,7 +4472,7 @@
|
|
|
4340
4472
|
"immutable": true,
|
|
4341
4473
|
"locationInModule": {
|
|
4342
4474
|
"filename": "lib/cluster.ts",
|
|
4343
|
-
"line":
|
|
4475
|
+
"line": 144
|
|
4344
4476
|
},
|
|
4345
4477
|
"name": "storageEncrypted",
|
|
4346
4478
|
"optional": true,
|
|
@@ -4358,7 +4490,7 @@
|
|
|
4358
4490
|
"immutable": true,
|
|
4359
4491
|
"locationInModule": {
|
|
4360
4492
|
"filename": "lib/cluster.ts",
|
|
4361
|
-
"line":
|
|
4493
|
+
"line": 227
|
|
4362
4494
|
},
|
|
4363
4495
|
"name": "subnetGroup",
|
|
4364
4496
|
"optional": true,
|
|
@@ -4376,7 +4508,7 @@
|
|
|
4376
4508
|
"immutable": true,
|
|
4377
4509
|
"locationInModule": {
|
|
4378
4510
|
"filename": "lib/cluster.ts",
|
|
4379
|
-
"line":
|
|
4511
|
+
"line": 241
|
|
4380
4512
|
},
|
|
4381
4513
|
"name": "vpcSubnets",
|
|
4382
4514
|
"optional": true,
|
|
@@ -4389,7 +4521,7 @@
|
|
|
4389
4521
|
},
|
|
4390
4522
|
"@aws-cdk/aws-neptune-alpha.DatabaseInstance": {
|
|
4391
4523
|
"assembly": "@aws-cdk/aws-neptune-alpha",
|
|
4392
|
-
"base": "aws-cdk-
|
|
4524
|
+
"base": "@aws-cdk/aws-neptune-alpha.DatabaseInstanceBase",
|
|
4393
4525
|
"docs": {
|
|
4394
4526
|
"custom": {
|
|
4395
4527
|
"resource": "AWS::Neptune::DBInstance",
|
|
@@ -4406,7 +4538,7 @@
|
|
|
4406
4538
|
},
|
|
4407
4539
|
"locationInModule": {
|
|
4408
4540
|
"filename": "lib/instance.ts",
|
|
4409
|
-
"line":
|
|
4541
|
+
"line": 329
|
|
4410
4542
|
},
|
|
4411
4543
|
"parameters": [
|
|
4412
4544
|
{
|
|
@@ -4435,47 +4567,8 @@
|
|
|
4435
4567
|
"kind": "class",
|
|
4436
4568
|
"locationInModule": {
|
|
4437
4569
|
"filename": "lib/instance.ts",
|
|
4438
|
-
"line":
|
|
4570
|
+
"line": 302
|
|
4439
4571
|
},
|
|
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
4572
|
"name": "DatabaseInstance",
|
|
4480
4573
|
"properties": [
|
|
4481
4574
|
{
|
|
@@ -4486,7 +4579,7 @@
|
|
|
4486
4579
|
"immutable": true,
|
|
4487
4580
|
"locationInModule": {
|
|
4488
4581
|
"filename": "lib/instance.ts",
|
|
4489
|
-
"line":
|
|
4582
|
+
"line": 307
|
|
4490
4583
|
},
|
|
4491
4584
|
"name": "cluster",
|
|
4492
4585
|
"type": {
|
|
@@ -4504,10 +4597,10 @@
|
|
|
4504
4597
|
"immutable": true,
|
|
4505
4598
|
"locationInModule": {
|
|
4506
4599
|
"filename": "lib/instance.ts",
|
|
4507
|
-
"line":
|
|
4600
|
+
"line": 322
|
|
4508
4601
|
},
|
|
4509
4602
|
"name": "dbInstanceEndpointAddress",
|
|
4510
|
-
"overrides": "@aws-cdk/aws-neptune-alpha.
|
|
4603
|
+
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseInstanceBase",
|
|
4511
4604
|
"type": {
|
|
4512
4605
|
"primitive": "string"
|
|
4513
4606
|
}
|
|
@@ -4523,10 +4616,10 @@
|
|
|
4523
4616
|
"immutable": true,
|
|
4524
4617
|
"locationInModule": {
|
|
4525
4618
|
"filename": "lib/instance.ts",
|
|
4526
|
-
"line":
|
|
4619
|
+
"line": 327
|
|
4527
4620
|
},
|
|
4528
4621
|
"name": "dbInstanceEndpointPort",
|
|
4529
|
-
"overrides": "@aws-cdk/aws-neptune-alpha.
|
|
4622
|
+
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseInstanceBase",
|
|
4530
4623
|
"type": {
|
|
4531
4624
|
"primitive": "string"
|
|
4532
4625
|
}
|
|
@@ -4542,10 +4635,10 @@
|
|
|
4542
4635
|
"immutable": true,
|
|
4543
4636
|
"locationInModule": {
|
|
4544
4637
|
"filename": "lib/instance.ts",
|
|
4545
|
-
"line":
|
|
4638
|
+
"line": 317
|
|
4546
4639
|
},
|
|
4547
4640
|
"name": "instanceEndpoint",
|
|
4548
|
-
"overrides": "@aws-cdk/aws-neptune-alpha.
|
|
4641
|
+
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseInstanceBase",
|
|
4549
4642
|
"type": {
|
|
4550
4643
|
"fqn": "@aws-cdk/aws-neptune-alpha.Endpoint"
|
|
4551
4644
|
}
|
|
@@ -4561,10 +4654,10 @@
|
|
|
4561
4654
|
"immutable": true,
|
|
4562
4655
|
"locationInModule": {
|
|
4563
4656
|
"filename": "lib/instance.ts",
|
|
4564
|
-
"line":
|
|
4657
|
+
"line": 312
|
|
4565
4658
|
},
|
|
4566
4659
|
"name": "instanceIdentifier",
|
|
4567
|
-
"overrides": "@aws-cdk/aws-neptune-alpha.
|
|
4660
|
+
"overrides": "@aws-cdk/aws-neptune-alpha.DatabaseInstanceBase",
|
|
4568
4661
|
"type": {
|
|
4569
4662
|
"primitive": "string"
|
|
4570
4663
|
}
|
|
@@ -4587,7 +4680,7 @@
|
|
|
4587
4680
|
"kind": "interface",
|
|
4588
4681
|
"locationInModule": {
|
|
4589
4682
|
"filename": "lib/instance.ts",
|
|
4590
|
-
"line":
|
|
4683
|
+
"line": 182
|
|
4591
4684
|
},
|
|
4592
4685
|
"name": "DatabaseInstanceAttributes",
|
|
4593
4686
|
"properties": [
|
|
@@ -4600,7 +4693,7 @@
|
|
|
4600
4693
|
"immutable": true,
|
|
4601
4694
|
"locationInModule": {
|
|
4602
4695
|
"filename": "lib/instance.ts",
|
|
4603
|
-
"line":
|
|
4696
|
+
"line": 191
|
|
4604
4697
|
},
|
|
4605
4698
|
"name": "instanceEndpointAddress",
|
|
4606
4699
|
"type": {
|
|
@@ -4616,7 +4709,7 @@
|
|
|
4616
4709
|
"immutable": true,
|
|
4617
4710
|
"locationInModule": {
|
|
4618
4711
|
"filename": "lib/instance.ts",
|
|
4619
|
-
"line":
|
|
4712
|
+
"line": 186
|
|
4620
4713
|
},
|
|
4621
4714
|
"name": "instanceIdentifier",
|
|
4622
4715
|
"type": {
|
|
@@ -4632,7 +4725,7 @@
|
|
|
4632
4725
|
"immutable": true,
|
|
4633
4726
|
"locationInModule": {
|
|
4634
4727
|
"filename": "lib/instance.ts",
|
|
4635
|
-
"line":
|
|
4728
|
+
"line": 196
|
|
4636
4729
|
},
|
|
4637
4730
|
"name": "port",
|
|
4638
4731
|
"type": {
|
|
@@ -4642,6 +4735,216 @@
|
|
|
4642
4735
|
],
|
|
4643
4736
|
"symbolId": "lib/instance:DatabaseInstanceAttributes"
|
|
4644
4737
|
},
|
|
4738
|
+
"@aws-cdk/aws-neptune-alpha.DatabaseInstanceBase": {
|
|
4739
|
+
"abstract": true,
|
|
4740
|
+
"assembly": "@aws-cdk/aws-neptune-alpha",
|
|
4741
|
+
"base": "aws-cdk-lib.Resource",
|
|
4742
|
+
"docs": {
|
|
4743
|
+
"stability": "experimental",
|
|
4744
|
+
"summary": "A new or imported database instance.",
|
|
4745
|
+
"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});",
|
|
4746
|
+
"custom": {
|
|
4747
|
+
"exampleMetadata": "fixture=_generated"
|
|
4748
|
+
}
|
|
4749
|
+
},
|
|
4750
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.DatabaseInstanceBase",
|
|
4751
|
+
"initializer": {
|
|
4752
|
+
"docs": {
|
|
4753
|
+
"stability": "stable"
|
|
4754
|
+
},
|
|
4755
|
+
"locationInModule": {
|
|
4756
|
+
"filename": "core/lib/resource.ts",
|
|
4757
|
+
"line": 156
|
|
4758
|
+
},
|
|
4759
|
+
"parameters": [
|
|
4760
|
+
{
|
|
4761
|
+
"name": "scope",
|
|
4762
|
+
"type": {
|
|
4763
|
+
"fqn": "constructs.Construct"
|
|
4764
|
+
}
|
|
4765
|
+
},
|
|
4766
|
+
{
|
|
4767
|
+
"name": "id",
|
|
4768
|
+
"type": {
|
|
4769
|
+
"primitive": "string"
|
|
4770
|
+
}
|
|
4771
|
+
},
|
|
4772
|
+
{
|
|
4773
|
+
"name": "props",
|
|
4774
|
+
"optional": true,
|
|
4775
|
+
"type": {
|
|
4776
|
+
"fqn": "aws-cdk-lib.ResourceProps"
|
|
4777
|
+
}
|
|
4778
|
+
}
|
|
4779
|
+
]
|
|
4780
|
+
},
|
|
4781
|
+
"interfaces": [
|
|
4782
|
+
"@aws-cdk/aws-neptune-alpha.IDatabaseInstance"
|
|
4783
|
+
],
|
|
4784
|
+
"kind": "class",
|
|
4785
|
+
"locationInModule": {
|
|
4786
|
+
"filename": "lib/instance.ts",
|
|
4787
|
+
"line": 247
|
|
4788
|
+
},
|
|
4789
|
+
"methods": [
|
|
4790
|
+
{
|
|
4791
|
+
"docs": {
|
|
4792
|
+
"stability": "experimental",
|
|
4793
|
+
"summary": "Import an existing database instance."
|
|
4794
|
+
},
|
|
4795
|
+
"locationInModule": {
|
|
4796
|
+
"filename": "lib/instance.ts",
|
|
4797
|
+
"line": 251
|
|
4798
|
+
},
|
|
4799
|
+
"name": "fromDatabaseInstanceAttributes",
|
|
4800
|
+
"parameters": [
|
|
4801
|
+
{
|
|
4802
|
+
"name": "scope",
|
|
4803
|
+
"type": {
|
|
4804
|
+
"fqn": "constructs.Construct"
|
|
4805
|
+
}
|
|
4806
|
+
},
|
|
4807
|
+
{
|
|
4808
|
+
"name": "id",
|
|
4809
|
+
"type": {
|
|
4810
|
+
"primitive": "string"
|
|
4811
|
+
}
|
|
4812
|
+
},
|
|
4813
|
+
{
|
|
4814
|
+
"name": "attrs",
|
|
4815
|
+
"type": {
|
|
4816
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.DatabaseInstanceAttributes"
|
|
4817
|
+
}
|
|
4818
|
+
}
|
|
4819
|
+
],
|
|
4820
|
+
"returns": {
|
|
4821
|
+
"type": {
|
|
4822
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.IDatabaseInstance"
|
|
4823
|
+
}
|
|
4824
|
+
},
|
|
4825
|
+
"static": true
|
|
4826
|
+
},
|
|
4827
|
+
{
|
|
4828
|
+
"docs": {
|
|
4829
|
+
"custom": {
|
|
4830
|
+
"inheritdoc": "true"
|
|
4831
|
+
},
|
|
4832
|
+
"stability": "experimental",
|
|
4833
|
+
"summary": "Return the given named metric associated with this database instance."
|
|
4834
|
+
},
|
|
4835
|
+
"locationInModule": {
|
|
4836
|
+
"filename": "lib/instance.ts",
|
|
4837
|
+
"line": 285
|
|
4838
|
+
},
|
|
4839
|
+
"name": "metric",
|
|
4840
|
+
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseInstance",
|
|
4841
|
+
"parameters": [
|
|
4842
|
+
{
|
|
4843
|
+
"name": "metricName",
|
|
4844
|
+
"type": {
|
|
4845
|
+
"primitive": "string"
|
|
4846
|
+
}
|
|
4847
|
+
},
|
|
4848
|
+
{
|
|
4849
|
+
"name": "props",
|
|
4850
|
+
"optional": true,
|
|
4851
|
+
"type": {
|
|
4852
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.MetricOptions"
|
|
4853
|
+
}
|
|
4854
|
+
}
|
|
4855
|
+
],
|
|
4856
|
+
"returns": {
|
|
4857
|
+
"type": {
|
|
4858
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.Metric"
|
|
4859
|
+
}
|
|
4860
|
+
}
|
|
4861
|
+
}
|
|
4862
|
+
],
|
|
4863
|
+
"name": "DatabaseInstanceBase",
|
|
4864
|
+
"properties": [
|
|
4865
|
+
{
|
|
4866
|
+
"abstract": true,
|
|
4867
|
+
"docs": {
|
|
4868
|
+
"custom": {
|
|
4869
|
+
"inheritdoc": "true"
|
|
4870
|
+
},
|
|
4871
|
+
"stability": "experimental",
|
|
4872
|
+
"summary": "The instance endpoint address."
|
|
4873
|
+
},
|
|
4874
|
+
"immutable": true,
|
|
4875
|
+
"locationInModule": {
|
|
4876
|
+
"filename": "lib/instance.ts",
|
|
4877
|
+
"line": 265
|
|
4878
|
+
},
|
|
4879
|
+
"name": "dbInstanceEndpointAddress",
|
|
4880
|
+
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseInstance",
|
|
4881
|
+
"type": {
|
|
4882
|
+
"primitive": "string"
|
|
4883
|
+
}
|
|
4884
|
+
},
|
|
4885
|
+
{
|
|
4886
|
+
"abstract": true,
|
|
4887
|
+
"docs": {
|
|
4888
|
+
"custom": {
|
|
4889
|
+
"inheritdoc": "true"
|
|
4890
|
+
},
|
|
4891
|
+
"stability": "experimental",
|
|
4892
|
+
"summary": "The instance endpoint port."
|
|
4893
|
+
},
|
|
4894
|
+
"immutable": true,
|
|
4895
|
+
"locationInModule": {
|
|
4896
|
+
"filename": "lib/instance.ts",
|
|
4897
|
+
"line": 270
|
|
4898
|
+
},
|
|
4899
|
+
"name": "dbInstanceEndpointPort",
|
|
4900
|
+
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseInstance",
|
|
4901
|
+
"type": {
|
|
4902
|
+
"primitive": "string"
|
|
4903
|
+
}
|
|
4904
|
+
},
|
|
4905
|
+
{
|
|
4906
|
+
"abstract": true,
|
|
4907
|
+
"docs": {
|
|
4908
|
+
"custom": {
|
|
4909
|
+
"inheritdoc": "true"
|
|
4910
|
+
},
|
|
4911
|
+
"stability": "experimental",
|
|
4912
|
+
"summary": "The instance endpoint."
|
|
4913
|
+
},
|
|
4914
|
+
"immutable": true,
|
|
4915
|
+
"locationInModule": {
|
|
4916
|
+
"filename": "lib/instance.ts",
|
|
4917
|
+
"line": 275
|
|
4918
|
+
},
|
|
4919
|
+
"name": "instanceEndpoint",
|
|
4920
|
+
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseInstance",
|
|
4921
|
+
"type": {
|
|
4922
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.Endpoint"
|
|
4923
|
+
}
|
|
4924
|
+
},
|
|
4925
|
+
{
|
|
4926
|
+
"abstract": true,
|
|
4927
|
+
"docs": {
|
|
4928
|
+
"custom": {
|
|
4929
|
+
"inheritdoc": "true"
|
|
4930
|
+
},
|
|
4931
|
+
"stability": "experimental",
|
|
4932
|
+
"summary": "The instance identifier."
|
|
4933
|
+
},
|
|
4934
|
+
"immutable": true,
|
|
4935
|
+
"locationInModule": {
|
|
4936
|
+
"filename": "lib/instance.ts",
|
|
4937
|
+
"line": 280
|
|
4938
|
+
},
|
|
4939
|
+
"name": "instanceIdentifier",
|
|
4940
|
+
"overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseInstance",
|
|
4941
|
+
"type": {
|
|
4942
|
+
"primitive": "string"
|
|
4943
|
+
}
|
|
4944
|
+
}
|
|
4945
|
+
],
|
|
4946
|
+
"symbolId": "lib/instance:DatabaseInstanceBase"
|
|
4947
|
+
},
|
|
4645
4948
|
"@aws-cdk/aws-neptune-alpha.DatabaseInstanceProps": {
|
|
4646
4949
|
"assembly": "@aws-cdk/aws-neptune-alpha",
|
|
4647
4950
|
"datatype": true,
|
|
@@ -4657,7 +4960,7 @@
|
|
|
4657
4960
|
"kind": "interface",
|
|
4658
4961
|
"locationInModule": {
|
|
4659
4962
|
"filename": "lib/instance.ts",
|
|
4660
|
-
"line":
|
|
4963
|
+
"line": 202
|
|
4661
4964
|
},
|
|
4662
4965
|
"name": "DatabaseInstanceProps",
|
|
4663
4966
|
"properties": [
|
|
@@ -4670,7 +4973,7 @@
|
|
|
4670
4973
|
"immutable": true,
|
|
4671
4974
|
"locationInModule": {
|
|
4672
4975
|
"filename": "lib/instance.ts",
|
|
4673
|
-
"line":
|
|
4976
|
+
"line": 206
|
|
4674
4977
|
},
|
|
4675
4978
|
"name": "cluster",
|
|
4676
4979
|
"type": {
|
|
@@ -4686,7 +4989,7 @@
|
|
|
4686
4989
|
"immutable": true,
|
|
4687
4990
|
"locationInModule": {
|
|
4688
4991
|
"filename": "lib/instance.ts",
|
|
4689
|
-
"line":
|
|
4992
|
+
"line": 211
|
|
4690
4993
|
},
|
|
4691
4994
|
"name": "instanceType",
|
|
4692
4995
|
"type": {
|
|
@@ -4703,7 +5006,7 @@
|
|
|
4703
5006
|
"immutable": true,
|
|
4704
5007
|
"locationInModule": {
|
|
4705
5008
|
"filename": "lib/instance.ts",
|
|
4706
|
-
"line":
|
|
5009
|
+
"line": 218
|
|
4707
5010
|
},
|
|
4708
5011
|
"name": "availabilityZone",
|
|
4709
5012
|
"optional": true,
|
|
@@ -4722,7 +5025,7 @@
|
|
|
4722
5025
|
"immutable": true,
|
|
4723
5026
|
"locationInModule": {
|
|
4724
5027
|
"filename": "lib/instance.ts",
|
|
4725
|
-
"line":
|
|
5028
|
+
"line": 226
|
|
4726
5029
|
},
|
|
4727
5030
|
"name": "dbInstanceName",
|
|
4728
5031
|
"optional": true,
|
|
@@ -4740,7 +5043,7 @@
|
|
|
4740
5043
|
"immutable": true,
|
|
4741
5044
|
"locationInModule": {
|
|
4742
5045
|
"filename": "lib/instance.ts",
|
|
4743
|
-
"line":
|
|
5046
|
+
"line": 233
|
|
4744
5047
|
},
|
|
4745
5048
|
"name": "parameterGroup",
|
|
4746
5049
|
"optional": true,
|
|
@@ -4758,7 +5061,7 @@
|
|
|
4758
5061
|
"immutable": true,
|
|
4759
5062
|
"locationInModule": {
|
|
4760
5063
|
"filename": "lib/instance.ts",
|
|
4761
|
-
"line":
|
|
5064
|
+
"line": 241
|
|
4762
5065
|
},
|
|
4763
5066
|
"name": "removalPolicy",
|
|
4764
5067
|
"optional": true,
|
|
@@ -4877,7 +5180,7 @@
|
|
|
4877
5180
|
},
|
|
4878
5181
|
"locationInModule": {
|
|
4879
5182
|
"filename": "lib/cluster.ts",
|
|
4880
|
-
"line":
|
|
5183
|
+
"line": 72
|
|
4881
5184
|
},
|
|
4882
5185
|
"parameters": [
|
|
4883
5186
|
{
|
|
@@ -4894,7 +5197,7 @@
|
|
|
4894
5197
|
"kind": "class",
|
|
4895
5198
|
"locationInModule": {
|
|
4896
5199
|
"filename": "lib/cluster.ts",
|
|
4897
|
-
"line":
|
|
5200
|
+
"line": 18
|
|
4898
5201
|
},
|
|
4899
5202
|
"name": "EngineVersion",
|
|
4900
5203
|
"properties": [
|
|
@@ -4907,7 +5210,7 @@
|
|
|
4907
5210
|
"immutable": true,
|
|
4908
5211
|
"locationInModule": {
|
|
4909
5212
|
"filename": "lib/cluster.ts",
|
|
4910
|
-
"line":
|
|
5213
|
+
"line": 22
|
|
4911
5214
|
},
|
|
4912
5215
|
"name": "V1_0_1_0",
|
|
4913
5216
|
"static": true,
|
|
@@ -4924,7 +5227,7 @@
|
|
|
4924
5227
|
"immutable": true,
|
|
4925
5228
|
"locationInModule": {
|
|
4926
5229
|
"filename": "lib/cluster.ts",
|
|
4927
|
-
"line":
|
|
5230
|
+
"line": 26
|
|
4928
5231
|
},
|
|
4929
5232
|
"name": "V1_0_1_1",
|
|
4930
5233
|
"static": true,
|
|
@@ -4941,7 +5244,7 @@
|
|
|
4941
5244
|
"immutable": true,
|
|
4942
5245
|
"locationInModule": {
|
|
4943
5246
|
"filename": "lib/cluster.ts",
|
|
4944
|
-
"line":
|
|
5247
|
+
"line": 30
|
|
4945
5248
|
},
|
|
4946
5249
|
"name": "V1_0_1_2",
|
|
4947
5250
|
"static": true,
|
|
@@ -4958,7 +5261,7 @@
|
|
|
4958
5261
|
"immutable": true,
|
|
4959
5262
|
"locationInModule": {
|
|
4960
5263
|
"filename": "lib/cluster.ts",
|
|
4961
|
-
"line":
|
|
5264
|
+
"line": 34
|
|
4962
5265
|
},
|
|
4963
5266
|
"name": "V1_0_2_1",
|
|
4964
5267
|
"static": true,
|
|
@@ -4975,7 +5278,7 @@
|
|
|
4975
5278
|
"immutable": true,
|
|
4976
5279
|
"locationInModule": {
|
|
4977
5280
|
"filename": "lib/cluster.ts",
|
|
4978
|
-
"line":
|
|
5281
|
+
"line": 38
|
|
4979
5282
|
},
|
|
4980
5283
|
"name": "V1_0_2_2",
|
|
4981
5284
|
"static": true,
|
|
@@ -4992,7 +5295,7 @@
|
|
|
4992
5295
|
"immutable": true,
|
|
4993
5296
|
"locationInModule": {
|
|
4994
5297
|
"filename": "lib/cluster.ts",
|
|
4995
|
-
"line":
|
|
5298
|
+
"line": 42
|
|
4996
5299
|
},
|
|
4997
5300
|
"name": "V1_0_3_0",
|
|
4998
5301
|
"static": true,
|
|
@@ -5009,7 +5312,7 @@
|
|
|
5009
5312
|
"immutable": true,
|
|
5010
5313
|
"locationInModule": {
|
|
5011
5314
|
"filename": "lib/cluster.ts",
|
|
5012
|
-
"line":
|
|
5315
|
+
"line": 46
|
|
5013
5316
|
},
|
|
5014
5317
|
"name": "V1_0_4_0",
|
|
5015
5318
|
"static": true,
|
|
@@ -5026,7 +5329,7 @@
|
|
|
5026
5329
|
"immutable": true,
|
|
5027
5330
|
"locationInModule": {
|
|
5028
5331
|
"filename": "lib/cluster.ts",
|
|
5029
|
-
"line":
|
|
5332
|
+
"line": 50
|
|
5030
5333
|
},
|
|
5031
5334
|
"name": "V1_0_4_1",
|
|
5032
5335
|
"static": true,
|
|
@@ -5043,7 +5346,7 @@
|
|
|
5043
5346
|
"immutable": true,
|
|
5044
5347
|
"locationInModule": {
|
|
5045
5348
|
"filename": "lib/cluster.ts",
|
|
5046
|
-
"line":
|
|
5349
|
+
"line": 54
|
|
5047
5350
|
},
|
|
5048
5351
|
"name": "V1_0_5_0",
|
|
5049
5352
|
"static": true,
|
|
@@ -5060,7 +5363,7 @@
|
|
|
5060
5363
|
"immutable": true,
|
|
5061
5364
|
"locationInModule": {
|
|
5062
5365
|
"filename": "lib/cluster.ts",
|
|
5063
|
-
"line":
|
|
5366
|
+
"line": 58
|
|
5064
5367
|
},
|
|
5065
5368
|
"name": "V1_1_0_0",
|
|
5066
5369
|
"static": true,
|
|
@@ -5077,7 +5380,7 @@
|
|
|
5077
5380
|
"immutable": true,
|
|
5078
5381
|
"locationInModule": {
|
|
5079
5382
|
"filename": "lib/cluster.ts",
|
|
5080
|
-
"line":
|
|
5383
|
+
"line": 62
|
|
5081
5384
|
},
|
|
5082
5385
|
"name": "V1_1_1_0",
|
|
5083
5386
|
"static": true,
|
|
@@ -5094,7 +5397,7 @@
|
|
|
5094
5397
|
"immutable": true,
|
|
5095
5398
|
"locationInModule": {
|
|
5096
5399
|
"filename": "lib/cluster.ts",
|
|
5097
|
-
"line":
|
|
5400
|
+
"line": 66
|
|
5098
5401
|
},
|
|
5099
5402
|
"name": "V1_2_0_0",
|
|
5100
5403
|
"static": true,
|
|
@@ -5110,7 +5413,7 @@
|
|
|
5110
5413
|
"immutable": true,
|
|
5111
5414
|
"locationInModule": {
|
|
5112
5415
|
"filename": "lib/cluster.ts",
|
|
5113
|
-
"line":
|
|
5416
|
+
"line": 72
|
|
5114
5417
|
},
|
|
5115
5418
|
"name": "version",
|
|
5116
5419
|
"type": {
|
|
@@ -5170,7 +5473,7 @@
|
|
|
5170
5473
|
"kind": "interface",
|
|
5171
5474
|
"locationInModule": {
|
|
5172
5475
|
"filename": "lib/cluster.ts",
|
|
5173
|
-
"line":
|
|
5476
|
+
"line": 300
|
|
5174
5477
|
},
|
|
5175
5478
|
"methods": [
|
|
5176
5479
|
{
|
|
@@ -5182,7 +5485,7 @@
|
|
|
5182
5485
|
},
|
|
5183
5486
|
"locationInModule": {
|
|
5184
5487
|
"filename": "lib/cluster.ts",
|
|
5185
|
-
"line":
|
|
5488
|
+
"line": 331
|
|
5186
5489
|
},
|
|
5187
5490
|
"name": "grant",
|
|
5188
5491
|
"parameters": [
|
|
@@ -5221,7 +5524,7 @@
|
|
|
5221
5524
|
},
|
|
5222
5525
|
"locationInModule": {
|
|
5223
5526
|
"filename": "lib/cluster.ts",
|
|
5224
|
-
"line":
|
|
5527
|
+
"line": 336
|
|
5225
5528
|
},
|
|
5226
5529
|
"name": "grantConnect",
|
|
5227
5530
|
"parameters": [
|
|
@@ -5237,6 +5540,39 @@
|
|
|
5237
5540
|
"fqn": "aws-cdk-lib.aws_iam.Grant"
|
|
5238
5541
|
}
|
|
5239
5542
|
}
|
|
5543
|
+
},
|
|
5544
|
+
{
|
|
5545
|
+
"abstract": true,
|
|
5546
|
+
"docs": {
|
|
5547
|
+
"see": "https://docs.aws.amazon.com/neptune/latest/userguide/cw-dimensions.html",
|
|
5548
|
+
"stability": "experimental",
|
|
5549
|
+
"summary": "Return the given named metric associated with this DatabaseCluster instance."
|
|
5550
|
+
},
|
|
5551
|
+
"locationInModule": {
|
|
5552
|
+
"filename": "lib/cluster.ts",
|
|
5553
|
+
"line": 344
|
|
5554
|
+
},
|
|
5555
|
+
"name": "metric",
|
|
5556
|
+
"parameters": [
|
|
5557
|
+
{
|
|
5558
|
+
"name": "metricName",
|
|
5559
|
+
"type": {
|
|
5560
|
+
"primitive": "string"
|
|
5561
|
+
}
|
|
5562
|
+
},
|
|
5563
|
+
{
|
|
5564
|
+
"name": "props",
|
|
5565
|
+
"optional": true,
|
|
5566
|
+
"type": {
|
|
5567
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.MetricOptions"
|
|
5568
|
+
}
|
|
5569
|
+
}
|
|
5570
|
+
],
|
|
5571
|
+
"returns": {
|
|
5572
|
+
"type": {
|
|
5573
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.Metric"
|
|
5574
|
+
}
|
|
5575
|
+
}
|
|
5240
5576
|
}
|
|
5241
5577
|
],
|
|
5242
5578
|
"name": "IDatabaseCluster",
|
|
@@ -5253,7 +5589,7 @@
|
|
|
5253
5589
|
"immutable": true,
|
|
5254
5590
|
"locationInModule": {
|
|
5255
5591
|
"filename": "lib/cluster.ts",
|
|
5256
|
-
"line":
|
|
5592
|
+
"line": 316
|
|
5257
5593
|
},
|
|
5258
5594
|
"name": "clusterEndpoint",
|
|
5259
5595
|
"type": {
|
|
@@ -5269,7 +5605,7 @@
|
|
|
5269
5605
|
"immutable": true,
|
|
5270
5606
|
"locationInModule": {
|
|
5271
5607
|
"filename": "lib/cluster.ts",
|
|
5272
|
-
"line":
|
|
5608
|
+
"line": 304
|
|
5273
5609
|
},
|
|
5274
5610
|
"name": "clusterIdentifier",
|
|
5275
5611
|
"type": {
|
|
@@ -5288,7 +5624,7 @@
|
|
|
5288
5624
|
"immutable": true,
|
|
5289
5625
|
"locationInModule": {
|
|
5290
5626
|
"filename": "lib/cluster.ts",
|
|
5291
|
-
"line":
|
|
5627
|
+
"line": 322
|
|
5292
5628
|
},
|
|
5293
5629
|
"name": "clusterReadEndpoint",
|
|
5294
5630
|
"type": {
|
|
@@ -5307,7 +5643,7 @@
|
|
|
5307
5643
|
"immutable": true,
|
|
5308
5644
|
"locationInModule": {
|
|
5309
5645
|
"filename": "lib/cluster.ts",
|
|
5310
|
-
"line":
|
|
5646
|
+
"line": 310
|
|
5311
5647
|
},
|
|
5312
5648
|
"name": "clusterResourceIdentifier",
|
|
5313
5649
|
"type": {
|
|
@@ -5330,8 +5666,43 @@
|
|
|
5330
5666
|
"kind": "interface",
|
|
5331
5667
|
"locationInModule": {
|
|
5332
5668
|
"filename": "lib/instance.ts",
|
|
5333
|
-
"line":
|
|
5669
|
+
"line": 145
|
|
5334
5670
|
},
|
|
5671
|
+
"methods": [
|
|
5672
|
+
{
|
|
5673
|
+
"abstract": true,
|
|
5674
|
+
"docs": {
|
|
5675
|
+
"see": "https://docs.aws.amazon.com/neptune/latest/userguide/cw-dimensions.html",
|
|
5676
|
+
"stability": "experimental",
|
|
5677
|
+
"summary": "Return the given named metric associated with this database instance."
|
|
5678
|
+
},
|
|
5679
|
+
"locationInModule": {
|
|
5680
|
+
"filename": "lib/instance.ts",
|
|
5681
|
+
"line": 176
|
|
5682
|
+
},
|
|
5683
|
+
"name": "metric",
|
|
5684
|
+
"parameters": [
|
|
5685
|
+
{
|
|
5686
|
+
"name": "metricName",
|
|
5687
|
+
"type": {
|
|
5688
|
+
"primitive": "string"
|
|
5689
|
+
}
|
|
5690
|
+
},
|
|
5691
|
+
{
|
|
5692
|
+
"name": "props",
|
|
5693
|
+
"optional": true,
|
|
5694
|
+
"type": {
|
|
5695
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.MetricOptions"
|
|
5696
|
+
}
|
|
5697
|
+
}
|
|
5698
|
+
],
|
|
5699
|
+
"returns": {
|
|
5700
|
+
"type": {
|
|
5701
|
+
"fqn": "aws-cdk-lib.aws_cloudwatch.Metric"
|
|
5702
|
+
}
|
|
5703
|
+
}
|
|
5704
|
+
}
|
|
5705
|
+
],
|
|
5335
5706
|
"name": "IDatabaseInstance",
|
|
5336
5707
|
"properties": [
|
|
5337
5708
|
{
|
|
@@ -5346,7 +5717,7 @@
|
|
|
5346
5717
|
"immutable": true,
|
|
5347
5718
|
"locationInModule": {
|
|
5348
5719
|
"filename": "lib/instance.ts",
|
|
5349
|
-
"line":
|
|
5720
|
+
"line": 161
|
|
5350
5721
|
},
|
|
5351
5722
|
"name": "dbInstanceEndpointAddress",
|
|
5352
5723
|
"type": {
|
|
@@ -5365,7 +5736,7 @@
|
|
|
5365
5736
|
"immutable": true,
|
|
5366
5737
|
"locationInModule": {
|
|
5367
5738
|
"filename": "lib/instance.ts",
|
|
5368
|
-
"line":
|
|
5739
|
+
"line": 168
|
|
5369
5740
|
},
|
|
5370
5741
|
"name": "dbInstanceEndpointPort",
|
|
5371
5742
|
"type": {
|
|
@@ -5381,7 +5752,7 @@
|
|
|
5381
5752
|
"immutable": true,
|
|
5382
5753
|
"locationInModule": {
|
|
5383
5754
|
"filename": "lib/instance.ts",
|
|
5384
|
-
"line":
|
|
5755
|
+
"line": 154
|
|
5385
5756
|
},
|
|
5386
5757
|
"name": "instanceEndpoint",
|
|
5387
5758
|
"type": {
|
|
@@ -5397,7 +5768,7 @@
|
|
|
5397
5768
|
"immutable": true,
|
|
5398
5769
|
"locationInModule": {
|
|
5399
5770
|
"filename": "lib/instance.ts",
|
|
5400
|
-
"line":
|
|
5771
|
+
"line": 149
|
|
5401
5772
|
},
|
|
5402
5773
|
"name": "instanceIdentifier",
|
|
5403
5774
|
"type": {
|
|
@@ -5496,7 +5867,7 @@
|
|
|
5496
5867
|
"kind": "class",
|
|
5497
5868
|
"locationInModule": {
|
|
5498
5869
|
"filename": "lib/instance.ts",
|
|
5499
|
-
"line":
|
|
5870
|
+
"line": 14
|
|
5500
5871
|
},
|
|
5501
5872
|
"methods": [
|
|
5502
5873
|
{
|
|
@@ -5506,7 +5877,7 @@
|
|
|
5506
5877
|
},
|
|
5507
5878
|
"locationInModule": {
|
|
5508
5879
|
"filename": "lib/instance.ts",
|
|
5509
|
-
"line":
|
|
5880
|
+
"line": 124
|
|
5510
5881
|
},
|
|
5511
5882
|
"name": "of",
|
|
5512
5883
|
"parameters": [
|
|
@@ -5536,7 +5907,7 @@
|
|
|
5536
5907
|
"immutable": true,
|
|
5537
5908
|
"locationInModule": {
|
|
5538
5909
|
"filename": "lib/instance.ts",
|
|
5539
|
-
"line":
|
|
5910
|
+
"line": 104
|
|
5540
5911
|
},
|
|
5541
5912
|
"name": "R4_2XLARGE",
|
|
5542
5913
|
"static": true,
|
|
@@ -5553,7 +5924,7 @@
|
|
|
5553
5924
|
"immutable": true,
|
|
5554
5925
|
"locationInModule": {
|
|
5555
5926
|
"filename": "lib/instance.ts",
|
|
5556
|
-
"line":
|
|
5927
|
+
"line": 109
|
|
5557
5928
|
},
|
|
5558
5929
|
"name": "R4_4XLARGE",
|
|
5559
5930
|
"static": true,
|
|
@@ -5570,7 +5941,7 @@
|
|
|
5570
5941
|
"immutable": true,
|
|
5571
5942
|
"locationInModule": {
|
|
5572
5943
|
"filename": "lib/instance.ts",
|
|
5573
|
-
"line":
|
|
5944
|
+
"line": 114
|
|
5574
5945
|
},
|
|
5575
5946
|
"name": "R4_8XLARGE",
|
|
5576
5947
|
"static": true,
|
|
@@ -5587,7 +5958,7 @@
|
|
|
5587
5958
|
"immutable": true,
|
|
5588
5959
|
"locationInModule": {
|
|
5589
5960
|
"filename": "lib/instance.ts",
|
|
5590
|
-
"line":
|
|
5961
|
+
"line": 94
|
|
5591
5962
|
},
|
|
5592
5963
|
"name": "R4_LARGE",
|
|
5593
5964
|
"static": true,
|
|
@@ -5604,7 +5975,7 @@
|
|
|
5604
5975
|
"immutable": true,
|
|
5605
5976
|
"locationInModule": {
|
|
5606
5977
|
"filename": "lib/instance.ts",
|
|
5607
|
-
"line":
|
|
5978
|
+
"line": 99
|
|
5608
5979
|
},
|
|
5609
5980
|
"name": "R4_XLARGE",
|
|
5610
5981
|
"static": true,
|
|
@@ -5621,7 +5992,7 @@
|
|
|
5621
5992
|
"immutable": true,
|
|
5622
5993
|
"locationInModule": {
|
|
5623
5994
|
"filename": "lib/instance.ts",
|
|
5624
|
-
"line":
|
|
5995
|
+
"line": 84
|
|
5625
5996
|
},
|
|
5626
5997
|
"name": "R5_12XLARGE",
|
|
5627
5998
|
"static": true,
|
|
@@ -5638,7 +6009,7 @@
|
|
|
5638
6009
|
"immutable": true,
|
|
5639
6010
|
"locationInModule": {
|
|
5640
6011
|
"filename": "lib/instance.ts",
|
|
5641
|
-
"line":
|
|
6012
|
+
"line": 89
|
|
5642
6013
|
},
|
|
5643
6014
|
"name": "R5_24XLARGE",
|
|
5644
6015
|
"static": true,
|
|
@@ -5655,7 +6026,7 @@
|
|
|
5655
6026
|
"immutable": true,
|
|
5656
6027
|
"locationInModule": {
|
|
5657
6028
|
"filename": "lib/instance.ts",
|
|
5658
|
-
"line":
|
|
6029
|
+
"line": 69
|
|
5659
6030
|
},
|
|
5660
6031
|
"name": "R5_2XLARGE",
|
|
5661
6032
|
"static": true,
|
|
@@ -5672,7 +6043,7 @@
|
|
|
5672
6043
|
"immutable": true,
|
|
5673
6044
|
"locationInModule": {
|
|
5674
6045
|
"filename": "lib/instance.ts",
|
|
5675
|
-
"line":
|
|
6046
|
+
"line": 74
|
|
5676
6047
|
},
|
|
5677
6048
|
"name": "R5_4XLARGE",
|
|
5678
6049
|
"static": true,
|
|
@@ -5689,7 +6060,7 @@
|
|
|
5689
6060
|
"immutable": true,
|
|
5690
6061
|
"locationInModule": {
|
|
5691
6062
|
"filename": "lib/instance.ts",
|
|
5692
|
-
"line":
|
|
6063
|
+
"line": 79
|
|
5693
6064
|
},
|
|
5694
6065
|
"name": "R5_8XLARGE",
|
|
5695
6066
|
"static": true,
|
|
@@ -5706,7 +6077,7 @@
|
|
|
5706
6077
|
"immutable": true,
|
|
5707
6078
|
"locationInModule": {
|
|
5708
6079
|
"filename": "lib/instance.ts",
|
|
5709
|
-
"line":
|
|
6080
|
+
"line": 59
|
|
5710
6081
|
},
|
|
5711
6082
|
"name": "R5_LARGE",
|
|
5712
6083
|
"static": true,
|
|
@@ -5723,7 +6094,7 @@
|
|
|
5723
6094
|
"immutable": true,
|
|
5724
6095
|
"locationInModule": {
|
|
5725
6096
|
"filename": "lib/instance.ts",
|
|
5726
|
-
"line":
|
|
6097
|
+
"line": 64
|
|
5727
6098
|
},
|
|
5728
6099
|
"name": "R5_XLARGE",
|
|
5729
6100
|
"static": true,
|
|
@@ -5740,7 +6111,7 @@
|
|
|
5740
6111
|
"immutable": true,
|
|
5741
6112
|
"locationInModule": {
|
|
5742
6113
|
"filename": "lib/instance.ts",
|
|
5743
|
-
"line":
|
|
6114
|
+
"line": 44
|
|
5744
6115
|
},
|
|
5745
6116
|
"name": "R6G_12XLARGE",
|
|
5746
6117
|
"static": true,
|
|
@@ -5757,7 +6128,7 @@
|
|
|
5757
6128
|
"immutable": true,
|
|
5758
6129
|
"locationInModule": {
|
|
5759
6130
|
"filename": "lib/instance.ts",
|
|
5760
|
-
"line":
|
|
6131
|
+
"line": 49
|
|
5761
6132
|
},
|
|
5762
6133
|
"name": "R6G_16XLARGE",
|
|
5763
6134
|
"static": true,
|
|
@@ -5774,7 +6145,7 @@
|
|
|
5774
6145
|
"immutable": true,
|
|
5775
6146
|
"locationInModule": {
|
|
5776
6147
|
"filename": "lib/instance.ts",
|
|
5777
|
-
"line":
|
|
6148
|
+
"line": 29
|
|
5778
6149
|
},
|
|
5779
6150
|
"name": "R6G_2XLARGE",
|
|
5780
6151
|
"static": true,
|
|
@@ -5791,7 +6162,7 @@
|
|
|
5791
6162
|
"immutable": true,
|
|
5792
6163
|
"locationInModule": {
|
|
5793
6164
|
"filename": "lib/instance.ts",
|
|
5794
|
-
"line":
|
|
6165
|
+
"line": 34
|
|
5795
6166
|
},
|
|
5796
6167
|
"name": "R6G_4XLARGE",
|
|
5797
6168
|
"static": true,
|
|
@@ -5808,7 +6179,7 @@
|
|
|
5808
6179
|
"immutable": true,
|
|
5809
6180
|
"locationInModule": {
|
|
5810
6181
|
"filename": "lib/instance.ts",
|
|
5811
|
-
"line":
|
|
6182
|
+
"line": 39
|
|
5812
6183
|
},
|
|
5813
6184
|
"name": "R6G_8XLARGE",
|
|
5814
6185
|
"static": true,
|
|
@@ -5825,7 +6196,7 @@
|
|
|
5825
6196
|
"immutable": true,
|
|
5826
6197
|
"locationInModule": {
|
|
5827
6198
|
"filename": "lib/instance.ts",
|
|
5828
|
-
"line":
|
|
6199
|
+
"line": 19
|
|
5829
6200
|
},
|
|
5830
6201
|
"name": "R6G_LARGE",
|
|
5831
6202
|
"static": true,
|
|
@@ -5842,7 +6213,7 @@
|
|
|
5842
6213
|
"immutable": true,
|
|
5843
6214
|
"locationInModule": {
|
|
5844
6215
|
"filename": "lib/instance.ts",
|
|
5845
|
-
"line":
|
|
6216
|
+
"line": 24
|
|
5846
6217
|
},
|
|
5847
6218
|
"name": "R6G_XLARGE",
|
|
5848
6219
|
"static": true,
|
|
@@ -5859,7 +6230,7 @@
|
|
|
5859
6230
|
"immutable": true,
|
|
5860
6231
|
"locationInModule": {
|
|
5861
6232
|
"filename": "lib/instance.ts",
|
|
5862
|
-
"line":
|
|
6233
|
+
"line": 119
|
|
5863
6234
|
},
|
|
5864
6235
|
"name": "T3_MEDIUM",
|
|
5865
6236
|
"static": true,
|
|
@@ -5876,7 +6247,7 @@
|
|
|
5876
6247
|
"immutable": true,
|
|
5877
6248
|
"locationInModule": {
|
|
5878
6249
|
"filename": "lib/instance.ts",
|
|
5879
|
-
"line":
|
|
6250
|
+
"line": 54
|
|
5880
6251
|
},
|
|
5881
6252
|
"name": "T4G_MEDIUM",
|
|
5882
6253
|
"static": true,
|
|
@@ -5887,6 +6258,82 @@
|
|
|
5887
6258
|
],
|
|
5888
6259
|
"symbolId": "lib/instance:InstanceType"
|
|
5889
6260
|
},
|
|
6261
|
+
"@aws-cdk/aws-neptune-alpha.LogType": {
|
|
6262
|
+
"assembly": "@aws-cdk/aws-neptune-alpha",
|
|
6263
|
+
"docs": {
|
|
6264
|
+
"see": "https://docs.aws.amazon.com/neptune/latest/userguide/cloudwatch-logs.html",
|
|
6265
|
+
"stability": "experimental",
|
|
6266
|
+
"summary": "Neptune log types that can be exported to CloudWatch logs.",
|
|
6267
|
+
"example": "// Cluster parameter group with the neptune_enable_audit_log param set to 1\nconst clusterParameterGroup = new neptune.ClusterParameterGroup(this, 'ClusterParams', {\n description: 'Cluster parameter group',\n parameters: {\n neptune_enable_audit_log: '1'\n },\n});\n\nconst cluster = new neptune.DatabaseCluster(this, 'Database', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n // Audit logs are enabled via the clusterParameterGroup\n clusterParameterGroup,\n // Optionally configuring audit logs to be exported to CloudWatch Logs\n cloudwatchLogsExports: [neptune.LogType.AUDIT],\n // Optionally set a retention period on exported CloudWatch Logs\n cloudwatchLogsRetention: logs.RetentionDays.ONE_MONTH,\n});",
|
|
6268
|
+
"custom": {
|
|
6269
|
+
"exampleMetadata": "infused"
|
|
6270
|
+
}
|
|
6271
|
+
},
|
|
6272
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.LogType",
|
|
6273
|
+
"initializer": {
|
|
6274
|
+
"docs": {
|
|
6275
|
+
"stability": "experimental",
|
|
6276
|
+
"summary": "Constructor for specifying a custom log type."
|
|
6277
|
+
},
|
|
6278
|
+
"locationInModule": {
|
|
6279
|
+
"filename": "lib/cluster.ts",
|
|
6280
|
+
"line": 92
|
|
6281
|
+
},
|
|
6282
|
+
"parameters": [
|
|
6283
|
+
{
|
|
6284
|
+
"docs": {
|
|
6285
|
+
"summary": "the log type."
|
|
6286
|
+
},
|
|
6287
|
+
"name": "value",
|
|
6288
|
+
"type": {
|
|
6289
|
+
"primitive": "string"
|
|
6290
|
+
}
|
|
6291
|
+
}
|
|
6292
|
+
]
|
|
6293
|
+
},
|
|
6294
|
+
"kind": "class",
|
|
6295
|
+
"locationInModule": {
|
|
6296
|
+
"filename": "lib/cluster.ts",
|
|
6297
|
+
"line": 80
|
|
6298
|
+
},
|
|
6299
|
+
"name": "LogType",
|
|
6300
|
+
"properties": [
|
|
6301
|
+
{
|
|
6302
|
+
"const": true,
|
|
6303
|
+
"docs": {
|
|
6304
|
+
"see": "https://docs.aws.amazon.com/neptune/latest/userguide/auditing.html",
|
|
6305
|
+
"stability": "experimental",
|
|
6306
|
+
"summary": "Audit logs."
|
|
6307
|
+
},
|
|
6308
|
+
"immutable": true,
|
|
6309
|
+
"locationInModule": {
|
|
6310
|
+
"filename": "lib/cluster.ts",
|
|
6311
|
+
"line": 86
|
|
6312
|
+
},
|
|
6313
|
+
"name": "AUDIT",
|
|
6314
|
+
"static": true,
|
|
6315
|
+
"type": {
|
|
6316
|
+
"fqn": "@aws-cdk/aws-neptune-alpha.LogType"
|
|
6317
|
+
}
|
|
6318
|
+
},
|
|
6319
|
+
{
|
|
6320
|
+
"docs": {
|
|
6321
|
+
"stability": "experimental",
|
|
6322
|
+
"summary": "the log type."
|
|
6323
|
+
},
|
|
6324
|
+
"immutable": true,
|
|
6325
|
+
"locationInModule": {
|
|
6326
|
+
"filename": "lib/cluster.ts",
|
|
6327
|
+
"line": 92
|
|
6328
|
+
},
|
|
6329
|
+
"name": "value",
|
|
6330
|
+
"type": {
|
|
6331
|
+
"primitive": "string"
|
|
6332
|
+
}
|
|
6333
|
+
}
|
|
6334
|
+
],
|
|
6335
|
+
"symbolId": "lib/cluster:LogType"
|
|
6336
|
+
},
|
|
5890
6337
|
"@aws-cdk/aws-neptune-alpha.ParameterGroup": {
|
|
5891
6338
|
"assembly": "@aws-cdk/aws-neptune-alpha",
|
|
5892
6339
|
"base": "aws-cdk-lib.Resource",
|
|
@@ -6406,6 +6853,6 @@
|
|
|
6406
6853
|
"symbolId": "lib/subnet-group:SubnetGroupProps"
|
|
6407
6854
|
}
|
|
6408
6855
|
},
|
|
6409
|
-
"version": "2.
|
|
6856
|
+
"version": "2.45.0-alpha.0",
|
|
6410
6857
|
"fingerprint": "**********"
|
|
6411
6858
|
}
|