@aws-cdk/aws-neptune-alpha 2.8.0-alpha.0 → 2.12.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.jsii CHANGED
@@ -8,7 +8,7 @@
8
8
  "url": "https://aws.amazon.com"
9
9
  },
10
10
  "dependencies": {
11
- "aws-cdk-lib": "^2.8.0",
11
+ "aws-cdk-lib": "^2.12.0",
12
12
  "constructs": "^10.0.0"
13
13
  },
14
14
  "dependencyClosure": {
@@ -1185,6 +1185,19 @@
1185
1185
  }
1186
1186
  }
1187
1187
  },
1188
+ "aws-cdk-lib.aws_forecast": {
1189
+ "targets": {
1190
+ "dotnet": {
1191
+ "namespace": "Amazon.CDK.AWS.Forecast"
1192
+ },
1193
+ "java": {
1194
+ "package": "software.amazon.awscdk.services.forecast"
1195
+ },
1196
+ "python": {
1197
+ "module": "aws_cdk.aws_forecast"
1198
+ }
1199
+ }
1200
+ },
1188
1201
  "aws-cdk-lib.aws_frauddetector": {
1189
1202
  "targets": {
1190
1203
  "dotnet": {
@@ -1367,6 +1380,19 @@
1367
1380
  }
1368
1381
  }
1369
1382
  },
1383
+ "aws-cdk-lib.aws_inspectorv2": {
1384
+ "targets": {
1385
+ "dotnet": {
1386
+ "namespace": "Amazon.CDK.AWS.InspectorV2"
1387
+ },
1388
+ "java": {
1389
+ "package": "software.amazon.awscdk.services.inspectorv2"
1390
+ },
1391
+ "python": {
1392
+ "module": "aws_cdk.aws_inspectorv2"
1393
+ }
1394
+ }
1395
+ },
1370
1396
  "aws-cdk-lib.aws_iot": {
1371
1397
  "targets": {
1372
1398
  "dotnet": {
@@ -1497,6 +1523,19 @@
1497
1523
  }
1498
1524
  }
1499
1525
  },
1526
+ "aws-cdk-lib.aws_kafkaconnect": {
1527
+ "targets": {
1528
+ "dotnet": {
1529
+ "namespace": "Amazon.CDK.AWS.KafkaConnect"
1530
+ },
1531
+ "java": {
1532
+ "package": "software.amazon.awscdk.services.kafkaconnect"
1533
+ },
1534
+ "python": {
1535
+ "module": "aws_cdk.aws_kafkaconnect"
1536
+ }
1537
+ }
1538
+ },
1500
1539
  "aws-cdk-lib.aws_kendra": {
1501
1540
  "targets": {
1502
1541
  "dotnet": {
@@ -1536,6 +1575,19 @@
1536
1575
  }
1537
1576
  }
1538
1577
  },
1578
+ "aws-cdk-lib.aws_kinesisanalyticsv2": {
1579
+ "targets": {
1580
+ "dotnet": {
1581
+ "namespace": "Amazon.CDK.AWS.KinesisAnalyticsV2"
1582
+ },
1583
+ "java": {
1584
+ "package": "software.amazon.awscdk.services.kinesisanalyticsv2"
1585
+ },
1586
+ "python": {
1587
+ "module": "aws_cdk.aws_kinesisanalyticsv2"
1588
+ }
1589
+ }
1590
+ },
1539
1591
  "aws-cdk-lib.aws_kinesisfirehose": {
1540
1592
  "targets": {
1541
1593
  "dotnet": {
@@ -1549,6 +1601,19 @@
1549
1601
  }
1550
1602
  }
1551
1603
  },
1604
+ "aws-cdk-lib.aws_kinesisvideo": {
1605
+ "targets": {
1606
+ "dotnet": {
1607
+ "namespace": "Amazon.CDK.AWS.KinesisVideo"
1608
+ },
1609
+ "java": {
1610
+ "package": "software.amazon.awscdk.services.kinesisvideo"
1611
+ },
1612
+ "python": {
1613
+ "module": "aws_cdk.aws_kinesisvideo"
1614
+ }
1615
+ }
1616
+ },
1552
1617
  "aws-cdk-lib.aws_kms": {
1553
1618
  "targets": {
1554
1619
  "dotnet": {
@@ -2868,12 +2933,15 @@
2868
2933
  "compiledWithDeprecationWarnings": true,
2869
2934
  "pacmak": {
2870
2935
  "hasDefaultInterfaces": true
2936
+ },
2937
+ "rosetta": {
2938
+ "strict": true
2871
2939
  }
2872
2940
  }
2873
2941
  },
2874
2942
  "name": "@aws-cdk/aws-neptune-alpha",
2875
2943
  "readme": {
2876
- "markdown": "# Amazon Neptune Construct Library\n<!--BEGIN STABILITY BANNER-->\n\n---\n\n![cdk-constructs: Experimental](https://img.shields.io/badge/cdk--constructs-experimental-important.svg?style=for-the-badge)\n\n> The APIs of higher level constructs in this module are experimental and under active development.\n> They are subject to non-backward compatible changes or removal in any future version. These are\n> not subject to the [Semantic Versioning](https://semver.org/) model and breaking changes will be\n> announced in the release notes. This means that while you may use them, you may need to update\n> your source code when upgrading to a newer version of this package.\n\n---\n\n<!--END STABILITY BANNER-->\n\nAmazon Neptune is a fast, reliable, fully managed graph database service that makes it easy to build and run applications that work with highly connected datasets. The core of Neptune is a purpose-built, high-performance graph database engine. This engine is optimized for storing billions of relationships and querying the graph with milliseconds latency. Neptune supports the popular graph query languages Apache TinkerPop Gremlin and W3C’s SPARQL, enabling you to build queries that efficiently navigate highly connected datasets.\n\nThe `@aws-cdk/aws-neptune` 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().\n});\nconst role = new iam.Role(this, 'DBRole', { assumedBy: new iam.AccountPrincipal(this.account) });\ncluster.grantConnect(role); // Grant the role connection access 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\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"
2944
+ "markdown": "# Amazon Neptune Construct Library\n<!--BEGIN STABILITY BANNER-->\n\n---\n\n![cdk-constructs: Experimental](https://img.shields.io/badge/cdk--constructs-experimental-important.svg?style=for-the-badge)\n\n> The APIs of higher level constructs in this module are experimental and under active development.\n> They are subject to non-backward compatible changes or removal in any future version. These are\n> not subject to the [Semantic Versioning](https://semver.org/) model and breaking changes will be\n> announced in the release notes. This means that while you may use them, you may need to update\n> your source code when upgrading to a newer version of this package.\n\n---\n\n<!--END STABILITY BANNER-->\n\nAmazon Neptune is a fast, reliable, fully managed graph database service that makes it easy to build and run applications that work with highly connected datasets. The core of Neptune is a purpose-built, high-performance graph database engine. This engine is optimized for storing billions of relationships and querying the graph with milliseconds latency. Neptune supports the popular graph query languages Apache TinkerPop Gremlin and W3C’s SPARQL, enabling you to build queries that efficiently navigate highly connected datasets.\n\nThe `@aws-cdk/aws-neptune` 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().\n});\nconst role = new iam.Role(this, 'DBRole', { assumedBy: new iam.AccountPrincipal(this.account) });\ncluster.grantConnect(role); // Grant the role connection access 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\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"
2877
2945
  },
2878
2946
  "repository": {
2879
2947
  "directory": "packages/individual-packages/aws-neptune",
@@ -2919,7 +2987,7 @@
2919
2987
  "exampleMetadata": "infused",
2920
2988
  "resource": "AWS::Neptune::DBClusterParameterGroup"
2921
2989
  },
2922
- "example": "const 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});",
2990
+ "example": "const 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});",
2923
2991
  "stability": "experimental",
2924
2992
  "summary": "A cluster parameter group."
2925
2993
  },
@@ -3028,7 +3096,7 @@
3028
3096
  "custom": {
3029
3097
  "exampleMetadata": "infused"
3030
3098
  },
3031
- "example": "const 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});",
3099
+ "example": "const 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});",
3032
3100
  "stability": "experimental",
3033
3101
  "summary": "Marker class for cluster parameter group."
3034
3102
  },
@@ -3108,7 +3176,7 @@
3108
3176
  "exampleMetadata": "infused",
3109
3177
  "resource": "AWS::Neptune::DBCluster"
3110
3178
  },
3111
- "example": "const 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().\n});\nconst role = new iam.Role(this, 'DBRole', { assumedBy: new iam.AccountPrincipal(this.account) });\ncluster.grantConnect(role); // Grant the role connection access to the DB.",
3179
+ "example": "const cluster = new neptune.DatabaseCluster(this, 'Database', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n instances: 2,\n});",
3112
3180
  "stability": "experimental",
3113
3181
  "summary": "Create a clustered database with a given number of instances."
3114
3182
  },
@@ -3119,7 +3187,7 @@
3119
3187
  },
3120
3188
  "locationInModule": {
3121
3189
  "filename": "lib/cluster.ts",
3122
- "line": 426
3190
+ "line": 434
3123
3191
  },
3124
3192
  "parameters": [
3125
3193
  {
@@ -3148,7 +3216,7 @@
3148
3216
  "kind": "class",
3149
3217
  "locationInModule": {
3150
3218
  "filename": "lib/cluster.ts",
3151
- "line": 379
3219
+ "line": 387
3152
3220
  },
3153
3221
  "name": "DatabaseCluster",
3154
3222
  "properties": [
@@ -3161,7 +3229,7 @@
3161
3229
  "immutable": true,
3162
3230
  "locationInModule": {
3163
3231
  "filename": "lib/cluster.ts",
3164
- "line": 385
3232
+ "line": 393
3165
3233
  },
3166
3234
  "name": "DEFAULT_NUM_INSTANCES",
3167
3235
  "static": true,
@@ -3177,7 +3245,7 @@
3177
3245
  "immutable": true,
3178
3246
  "locationInModule": {
3179
3247
  "filename": "lib/cluster.ts",
3180
- "line": 388
3248
+ "line": 396
3181
3249
  },
3182
3250
  "name": "clusterEndpoint",
3183
3251
  "overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
@@ -3193,7 +3261,7 @@
3193
3261
  "immutable": true,
3194
3262
  "locationInModule": {
3195
3263
  "filename": "lib/cluster.ts",
3196
- "line": 387
3264
+ "line": 395
3197
3265
  },
3198
3266
  "name": "clusterIdentifier",
3199
3267
  "overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
@@ -3209,7 +3277,7 @@
3209
3277
  "immutable": true,
3210
3278
  "locationInModule": {
3211
3279
  "filename": "lib/cluster.ts",
3212
- "line": 389
3280
+ "line": 397
3213
3281
  },
3214
3282
  "name": "clusterReadEndpoint",
3215
3283
  "overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
@@ -3229,7 +3297,7 @@
3229
3297
  "immutable": true,
3230
3298
  "locationInModule": {
3231
3299
  "filename": "lib/cluster.ts",
3232
- "line": 397
3300
+ "line": 405
3233
3301
  },
3234
3302
  "name": "clusterResourceIdentifier",
3235
3303
  "overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
@@ -3245,7 +3313,7 @@
3245
3313
  "immutable": true,
3246
3314
  "locationInModule": {
3247
3315
  "filename": "lib/cluster.ts",
3248
- "line": 390
3316
+ "line": 398
3249
3317
  },
3250
3318
  "name": "connections",
3251
3319
  "overrides": "aws-cdk-lib.aws_ec2.IConnectable",
@@ -3261,7 +3329,7 @@
3261
3329
  "immutable": true,
3262
3330
  "locationInModule": {
3263
3331
  "filename": "lib/cluster.ts",
3264
- "line": 422
3332
+ "line": 430
3265
3333
  },
3266
3334
  "name": "instanceEndpoints",
3267
3335
  "type": {
@@ -3281,7 +3349,7 @@
3281
3349
  "immutable": true,
3282
3350
  "locationInModule": {
3283
3351
  "filename": "lib/cluster.ts",
3284
- "line": 417
3352
+ "line": 425
3285
3353
  },
3286
3354
  "name": "instanceIdentifiers",
3287
3355
  "type": {
@@ -3301,7 +3369,7 @@
3301
3369
  "immutable": true,
3302
3370
  "locationInModule": {
3303
3371
  "filename": "lib/cluster.ts",
3304
- "line": 412
3372
+ "line": 420
3305
3373
  },
3306
3374
  "name": "subnetGroup",
3307
3375
  "type": {
@@ -3316,7 +3384,7 @@
3316
3384
  "immutable": true,
3317
3385
  "locationInModule": {
3318
3386
  "filename": "lib/cluster.ts",
3319
- "line": 402
3387
+ "line": 410
3320
3388
  },
3321
3389
  "name": "vpc",
3322
3390
  "type": {
@@ -3331,7 +3399,7 @@
3331
3399
  "immutable": true,
3332
3400
  "locationInModule": {
3333
3401
  "filename": "lib/cluster.ts",
3334
- "line": 407
3402
+ "line": 415
3335
3403
  },
3336
3404
  "name": "vpcSubnets",
3337
3405
  "type": {
@@ -3344,7 +3412,7 @@
3344
3412
  },
3345
3413
  "locationInModule": {
3346
3414
  "filename": "lib/cluster.ts",
3347
- "line": 424
3415
+ "line": 432
3348
3416
  },
3349
3417
  "name": "enableIamAuthentication",
3350
3418
  "optional": true,
@@ -3372,7 +3440,7 @@
3372
3440
  "kind": "interface",
3373
3441
  "locationInModule": {
3374
3442
  "filename": "lib/cluster.ts",
3375
- "line": 267
3443
+ "line": 275
3376
3444
  },
3377
3445
  "name": "DatabaseClusterAttributes",
3378
3446
  "properties": [
@@ -3385,7 +3453,7 @@
3385
3453
  "immutable": true,
3386
3454
  "locationInModule": {
3387
3455
  "filename": "lib/cluster.ts",
3388
- "line": 291
3456
+ "line": 299
3389
3457
  },
3390
3458
  "name": "clusterEndpointAddress",
3391
3459
  "type": {
@@ -3401,7 +3469,7 @@
3401
3469
  "immutable": true,
3402
3470
  "locationInModule": {
3403
3471
  "filename": "lib/cluster.ts",
3404
- "line": 281
3472
+ "line": 289
3405
3473
  },
3406
3474
  "name": "clusterIdentifier",
3407
3475
  "type": {
@@ -3417,7 +3485,7 @@
3417
3485
  "immutable": true,
3418
3486
  "locationInModule": {
3419
3487
  "filename": "lib/cluster.ts",
3420
- "line": 286
3488
+ "line": 294
3421
3489
  },
3422
3490
  "name": "clusterResourceIdentifier",
3423
3491
  "type": {
@@ -3433,7 +3501,7 @@
3433
3501
  "immutable": true,
3434
3502
  "locationInModule": {
3435
3503
  "filename": "lib/cluster.ts",
3436
- "line": 271
3504
+ "line": 279
3437
3505
  },
3438
3506
  "name": "port",
3439
3507
  "type": {
@@ -3449,7 +3517,7 @@
3449
3517
  "immutable": true,
3450
3518
  "locationInModule": {
3451
3519
  "filename": "lib/cluster.ts",
3452
- "line": 296
3520
+ "line": 304
3453
3521
  },
3454
3522
  "name": "readerEndpointAddress",
3455
3523
  "type": {
@@ -3465,7 +3533,7 @@
3465
3533
  "immutable": true,
3466
3534
  "locationInModule": {
3467
3535
  "filename": "lib/cluster.ts",
3468
- "line": 276
3536
+ "line": 284
3469
3537
  },
3470
3538
  "name": "securityGroup",
3471
3539
  "type": {
@@ -3524,7 +3592,7 @@
3524
3592
  "kind": "class",
3525
3593
  "locationInModule": {
3526
3594
  "filename": "lib/cluster.ts",
3527
- "line": 302
3595
+ "line": 310
3528
3596
  },
3529
3597
  "methods": [
3530
3598
  {
@@ -3534,7 +3602,7 @@
3534
3602
  },
3535
3603
  "locationInModule": {
3536
3604
  "filename": "lib/cluster.ts",
3537
- "line": 307
3605
+ "line": 315
3538
3606
  },
3539
3607
  "name": "fromDatabaseClusterAttributes",
3540
3608
  "parameters": [
@@ -3571,7 +3639,7 @@
3571
3639
  },
3572
3640
  "locationInModule": {
3573
3641
  "filename": "lib/cluster.ts",
3574
- "line": 351
3642
+ "line": 359
3575
3643
  },
3576
3644
  "name": "grantConnect",
3577
3645
  "overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
@@ -3601,7 +3669,7 @@
3601
3669
  "immutable": true,
3602
3670
  "locationInModule": {
3603
3671
  "filename": "lib/cluster.ts",
3604
- "line": 337
3672
+ "line": 345
3605
3673
  },
3606
3674
  "name": "clusterEndpoint",
3607
3675
  "overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
@@ -3618,7 +3686,7 @@
3618
3686
  "immutable": true,
3619
3687
  "locationInModule": {
3620
3688
  "filename": "lib/cluster.ts",
3621
- "line": 327
3689
+ "line": 335
3622
3690
  },
3623
3691
  "name": "clusterIdentifier",
3624
3692
  "overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
@@ -3635,7 +3703,7 @@
3635
3703
  "immutable": true,
3636
3704
  "locationInModule": {
3637
3705
  "filename": "lib/cluster.ts",
3638
- "line": 342
3706
+ "line": 350
3639
3707
  },
3640
3708
  "name": "clusterReadEndpoint",
3641
3709
  "overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
@@ -3652,7 +3720,7 @@
3652
3720
  "immutable": true,
3653
3721
  "locationInModule": {
3654
3722
  "filename": "lib/cluster.ts",
3655
- "line": 332
3723
+ "line": 340
3656
3724
  },
3657
3725
  "name": "clusterResourceIdentifier",
3658
3726
  "overrides": "@aws-cdk/aws-neptune-alpha.IDatabaseCluster",
@@ -3669,7 +3737,7 @@
3669
3737
  "immutable": true,
3670
3738
  "locationInModule": {
3671
3739
  "filename": "lib/cluster.ts",
3672
- "line": 347
3740
+ "line": 355
3673
3741
  },
3674
3742
  "name": "connections",
3675
3743
  "overrides": "aws-cdk-lib.aws_ec2.IConnectable",
@@ -3684,7 +3752,7 @@
3684
3752
  },
3685
3753
  "locationInModule": {
3686
3754
  "filename": "lib/cluster.ts",
3687
- "line": 349
3755
+ "line": 357
3688
3756
  },
3689
3757
  "name": "enableIamAuthentication",
3690
3758
  "optional": true,
@@ -3703,7 +3771,7 @@
3703
3771
  "custom": {
3704
3772
  "exampleMetadata": "infused"
3705
3773
  },
3706
- "example": "const 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().\n});\nconst role = new iam.Role(this, 'DBRole', { assumedBy: new iam.AccountPrincipal(this.account) });\ncluster.grantConnect(role); // Grant the role connection access to the DB.",
3774
+ "example": "const cluster = new neptune.DatabaseCluster(this, 'Database', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n instances: 2,\n});",
3707
3775
  "stability": "experimental",
3708
3776
  "summary": "Properties for a new database cluster."
3709
3777
  },
@@ -3771,6 +3839,24 @@
3771
3839
  }
3772
3840
  }
3773
3841
  },
3842
+ {
3843
+ "abstract": true,
3844
+ "docs": {
3845
+ "default": "- false",
3846
+ "stability": "experimental",
3847
+ "summary": "If set to true, Neptune will automatically update the engine of the entire cluster to the latest minor version after a stabilization window of 2 to 3 weeks."
3848
+ },
3849
+ "immutable": true,
3850
+ "locationInModule": {
3851
+ "filename": "lib/cluster.ts",
3852
+ "line": 236
3853
+ },
3854
+ "name": "autoMinorVersionUpgrade",
3855
+ "optional": true,
3856
+ "type": {
3857
+ "primitive": "boolean"
3858
+ }
3859
+ },
3774
3860
  {
3775
3861
  "abstract": true,
3776
3862
  "docs": {
@@ -4115,7 +4201,7 @@
4115
4201
  "exampleMetadata": "fixture=with-cluster infused",
4116
4202
  "resource": "AWS::Neptune::DBInstance"
4117
4203
  },
4118
- "example": "const replica1 = new neptune.DatabaseInstance(this, 'Instance', {\n cluster,\n instanceType: neptune.InstanceType.R5_LARGE\n});",
4204
+ "example": "const replica1 = new neptune.DatabaseInstance(this, 'Instance', {\n cluster,\n instanceType: neptune.InstanceType.R5_LARGE,\n});",
4119
4205
  "stability": "experimental",
4120
4206
  "summary": "A database instance."
4121
4207
  },
@@ -4369,7 +4455,7 @@
4369
4455
  "custom": {
4370
4456
  "exampleMetadata": "fixture=with-cluster infused"
4371
4457
  },
4372
- "example": "const replica1 = new neptune.DatabaseInstance(this, 'Instance', {\n cluster,\n instanceType: neptune.InstanceType.R5_LARGE\n});",
4458
+ "example": "const replica1 = new neptune.DatabaseInstance(this, 'Instance', {\n cluster,\n instanceType: neptune.InstanceType.R5_LARGE,\n});",
4373
4459
  "stability": "experimental",
4374
4460
  "summary": "Construction properties for a DatabaseInstanceNew."
4375
4461
  },
@@ -4856,7 +4942,7 @@
4856
4942
  "kind": "interface",
4857
4943
  "locationInModule": {
4858
4944
  "filename": "lib/cluster.ts",
4859
- "line": 234
4945
+ "line": 242
4860
4946
  },
4861
4947
  "methods": [
4862
4948
  {
@@ -4867,7 +4953,7 @@
4867
4953
  },
4868
4954
  "locationInModule": {
4869
4955
  "filename": "lib/cluster.ts",
4870
- "line": 261
4956
+ "line": 269
4871
4957
  },
4872
4958
  "name": "grantConnect",
4873
4959
  "parameters": [
@@ -4899,7 +4985,7 @@
4899
4985
  "immutable": true,
4900
4986
  "locationInModule": {
4901
4987
  "filename": "lib/cluster.ts",
4902
- "line": 250
4988
+ "line": 258
4903
4989
  },
4904
4990
  "name": "clusterEndpoint",
4905
4991
  "type": {
@@ -4915,7 +5001,7 @@
4915
5001
  "immutable": true,
4916
5002
  "locationInModule": {
4917
5003
  "filename": "lib/cluster.ts",
4918
- "line": 238
5004
+ "line": 246
4919
5005
  },
4920
5006
  "name": "clusterIdentifier",
4921
5007
  "type": {
@@ -4934,7 +5020,7 @@
4934
5020
  "immutable": true,
4935
5021
  "locationInModule": {
4936
5022
  "filename": "lib/cluster.ts",
4937
- "line": 256
5023
+ "line": 264
4938
5024
  },
4939
5025
  "name": "clusterReadEndpoint",
4940
5026
  "type": {
@@ -4953,7 +5039,7 @@
4953
5039
  "immutable": true,
4954
5040
  "locationInModule": {
4955
5041
  "filename": "lib/cluster.ts",
4956
- "line": 244
5042
+ "line": 252
4957
5043
  },
4958
5044
  "name": "clusterResourceIdentifier",
4959
5045
  "type": {
@@ -5134,7 +5220,7 @@
5134
5220
  "custom": {
5135
5221
  "exampleMetadata": "infused"
5136
5222
  },
5137
- "example": "const cluster = new neptune.DatabaseCluster(this, 'Database', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n instances: 2\n});",
5223
+ "example": "const cluster = new neptune.DatabaseCluster(this, 'Database', {\n vpc,\n instanceType: neptune.InstanceType.R5_LARGE,\n instances: 2,\n});",
5138
5224
  "stability": "experimental",
5139
5225
  "summary": "Possible Instances Types to use in Neptune cluster used for defining {@link DatabaseInstanceProps.instanceType}."
5140
5226
  },
@@ -5541,7 +5627,7 @@
5541
5627
  "exampleMetadata": "infused",
5542
5628
  "resource": "AWS::Neptune::DBParameterGroup"
5543
5629
  },
5544
- "example": "const 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});",
5630
+ "example": "const 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});",
5545
5631
  "stability": "experimental",
5546
5632
  "summary": "DB parameter group."
5547
5633
  },
@@ -5650,7 +5736,7 @@
5650
5736
  "custom": {
5651
5737
  "exampleMetadata": "infused"
5652
5738
  },
5653
- "example": "const 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});",
5739
+ "example": "const 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});",
5654
5740
  "stability": "experimental",
5655
5741
  "summary": "Marker class for cluster parameter group."
5656
5742
  },
@@ -5943,6 +6029,6 @@
5943
6029
  "symbolId": "lib/subnet-group:SubnetGroupProps"
5944
6030
  }
5945
6031
  },
5946
- "version": "2.8.0-alpha.0",
6032
+ "version": "2.12.0-alpha.0",
5947
6033
  "fingerprint": "**********"
5948
6034
  }