You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 20, 2025. It is now read-only.
Below is a sequence diagram showing the sequence of events when a developer registers a Key/Value store with Nitric.
76
+
77
+
```mermaid
78
+
sequenceDiagram
79
+
participant Worker as App Worker(s)
80
+
participant SDK as Nitric SDK
81
+
participant Nitric as Nitric CLI
82
+
participant Provider as Nitric Provider
83
+
participant IAC as IaC
84
+
85
+
Worker->>SDK: Register Key/Value Store
86
+
Worker->>SDK: Register Access Requirements
87
+
SDK->>Nitric: Register Key/Value Store
88
+
SDK->>Nitric: Register Access Requirements
89
+
90
+
Nitric->>Provider: Forward Nitric Spec
91
+
Provider->>IAC: Provision Key/Value Store
92
+
Provider->>IAC: Provision IAM
93
+
```
94
+
95
+
### Runtime Sequence
96
+
97
+
Below is a sequence diagram showing the runtime flow of a key/value store operation using Nitric. The example shows a Get operation, which reads a value by its key.
98
+
73
99
```mermaid
74
100
sequenceDiagram
75
-
participant Client as Client
76
-
participant NitricSDK as Nitric SDK
77
-
participant NitricRuntime as Nitric Runtime
78
-
participant DynamoDB as DynamoDB
79
-
80
-
Client->>NitricSDK: Request to set/get/delete a key-value
81
-
NitricSDK->>NitricRuntime: Forward API call with key, value, or operation
0 commit comments