@@ -29,36 +29,26 @@ var scanner = Scanner(System.`in`)
29
29
private val pollInterval: Duration = Duration .ofSeconds(20 )
30
30
private val timeout: Duration = Duration .ofMinutes(30 )
31
31
suspend fun main (args : Array <String >) {
32
- val subnetGroupName = " neptuneSubnetGroup61 "
33
- val clusterName = " neptuneCluster61 "
34
- val dbInstanceId = " neptuneDB61 "
32
+ val subnetGroupName = " neptuneSubnetGroup200 "
33
+ val clusterName = " neptuneCluster200 "
34
+ val dbInstanceId = " neptuneDB200 "
35
35
36
36
println (
37
37
"""
38
- Amazon Neptune is a fully managed graph
39
- database service by AWS, designed specifically
40
- for handling complex relationships and connected
41
- datasets at scale. It supports two popular graph models:
42
- property graphs (via openCypher and Gremlin) and RDF
43
- graphs (via SPARQL). This makes Neptune ideal for
44
- use cases such as knowledge graphs, fraud detection,
45
- social networking, recommendation engines, and
46
- network management, where relationships between
47
- entities are central to the data.
38
+ Amazon Neptune is a fully managed AWS graph database optimized for complex, connected datasets.
39
+ It supports property graphs (Gremlin, openCypher)
40
+ and RDF graphs (SPARQL), making it ideal for knowledge
41
+ graphs, fraud detection, social networks,
42
+ recommendations, and network management.
43
+
44
+ Neptune handles provisioning, patching, backups, a
45
+ nd replication, offering high availability by default
46
+ .
47
+ Developers can build relationship-aware apps using the
48
+ AWS SDK for Kotlin and automate infrastructure with
49
+ NeptuneClient.
48
50
49
- Being fully managed, Neptune handles database
50
- provisioning, patching, backups, and replication,
51
- while also offering high availability and durability
52
- within AWS's infrastructure.
53
-
54
- For developers, programming with Neptune allows
55
- for building intelligent, relationship-aware
56
- applications that go beyond traditional tabular
57
- databases. Developers can use the AWS SDK for Kotlin
58
- to automate infrastructure operations
59
- (via NeptuneClient).
60
-
61
- Let's get started...
51
+ Let's get started...
62
52
63
53
"""
64
54
)
0 commit comments