Values.UpdateGraphOutputSourceUpdates the configuration of a specified Neptune Analytics graph
type nonrec t = {id : GraphId.t option;The unique identifier of the graph.
*)name : GraphName.t option;The name of the graph.
*)arn : String_.t option;The ARN associated with the graph.
*)status : GraphStatus.t option;The status of the graph.
*)statusReason : String_.t option;The reason that the graph has this status.
*)createTime : Timestamp.t option;The time at which the graph was created.
*)provisionedMemory : ProvisionedMemory.t option;The number of memory-optimized Neptune Capacity Units (m-NCUs) allocated to the graph.
*)endpoint : String_.t option;The graph endpoint.
*)publicConnectivity : Boolean.t option;If true, the graph has a public endpoint, otherwise not.
*)vectorSearchConfiguration : VectorSearchConfiguration.t option;replicaCount : ReplicaCount.t option;The number of replicas for the graph.
*)kmsKeyIdentifier : KmsKeyArn.t option;The ID of the KMS key used to encrypt and decrypt graph data.
*)sourceSnapshotId : SnapshotId.t option;The ID of the snapshot from which the graph was created, if any.
*)deletionProtection : Boolean.t option;If true, deletion protection is enabled for the graph.
*)buildNumber : String_.t option;The build number of the graph.
*)}type nonrec error = [ | `ConflictException of ConflictException.t| `InternalServerException of InternalServerException.t| `ResourceNotFoundException of ResourceNotFoundException.t| `ThrottlingException of ThrottlingException.t| `ValidationException of ValidationException.t| `Unknown_operation_error of string * string option ]val make :
?id:??? ->
?name:??? ->
?arn:??? ->
?status:??? ->
?statusReason:??? ->
?createTime:??? ->
?provisionedMemory:??? ->
?endpoint:??? ->
?publicConnectivity:??? ->
?vectorSearchConfiguration:??? ->
?replicaCount:??? ->
?kmsKeyIdentifier:??? ->
?sourceSnapshotId:??? ->
?deletionProtection:??? ->
?buildNumber:??? ->
unit ->
tval error_of_json :
string ->
Yojson.Safe.t ->
[> `ConflictException of ConflictException.t
| `InternalServerException of InternalServerException.t
| `ResourceNotFoundException of ResourceNotFoundException.t
| `ThrottlingException of ThrottlingException.t
| `Unknown_operation_error of string * string option
| `ValidationException of ValidationException.t ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `ConflictException of ConflictException.t
| `InternalServerException of InternalServerException.t
| `ResourceNotFoundException of ResourceNotFoundException.t
| `ThrottlingException of ThrottlingException.t
| `Unknown_operation_error of string * string option
| `ValidationException of ValidationException.t ]val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Enum of string
| `Integer of ProvisionedMemory.t
| `String of GraphId.t
| `Structure of
(string * [> `Integer of VectorSearchDimension.t ]) list
| `Timestamp of Timestamp.t ])
list ]