Module Values.CreateGraphOutputSource

Creates a new Neptune Analytics graph.

Sourcetype nonrec t = {
  1. id : GraphId.t option;
    (*

    The ID of the graph.

    *)
  2. name : GraphName.t option;
    (*

    The graph name. For example: my-graph-1. The name must contain from 1 to 63 letters, numbers, or hyphens, and its first character must be a letter. It cannot end with a hyphen or contain two consecutive hyphens. Only lowercase letters are allowed.

    *)
  3. arn : String_.t option;
    (*

    The ARN of the graph.

    *)
  4. status : GraphStatus.t option;
    (*

    The current status of the graph.

    *)
  5. statusReason : String_.t option;
    (*

    The reason the status was given.

    *)
  6. createTime : Timestamp.t option;
    (*

    The time when the graph was created.

    *)
  7. provisionedMemory : ProvisionedMemory.t option;
    (*

    The provisioned memory-optimized Neptune Capacity Units (m-NCUs) to use for the graph. Min = 16

    *)
  8. endpoint : String_.t option;
    (*

    The graph endpoint.

    *)
  9. publicConnectivity : Boolean.t option;
    (*

    Specifies whether or not the graph can be reachable over the internet. All access to graphs is IAM authenticated. If enabling public connectivity for the first time, there will be a delay while it is enabled.

    *)
  10. vectorSearchConfiguration : VectorSearchConfiguration.t option;
    (*

    The vector-search configuration for the graph, which specifies the vector dimension to use in the vector index, if any.

    *)
  11. replicaCount : ReplicaCount.t option;
    (*

    The number of replicas in other AZs. Default: If not specified, the default value is 1.

    *)
  12. kmsKeyIdentifier : KmsKeyArn.t option;
    (*

    Specifies the KMS key used to encrypt data in the new graph.

    *)
  13. sourceSnapshotId : SnapshotId.t option;
    (*

    The ID of the source graph.

    *)
  14. deletionProtection : Boolean.t option;
    (*

    A value that indicates whether the graph has deletion protection enabled. The graph can't be deleted when deletion protection is enabled.

    *)
  15. buildNumber : String_.t option;
    (*

    The build number of the graph software.

    *)
}
Sourcetype nonrec error = [
  1. | `ConflictException of ConflictException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ServiceQuotaExceededException of ServiceQuotaExceededException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?id:??? -> ?name:??? -> ?arn:??? -> ?status:??? -> ?statusReason:??? -> ?createTime:??? -> ?provisionedMemory:??? -> ?endpoint:??? -> ?publicConnectivity:??? -> ?vectorSearchConfiguration:??? -> ?replicaCount:??? -> ?kmsKeyIdentifier:??? -> ?sourceSnapshotId:??? -> ?deletionProtection:??? -> ?buildNumber:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval 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 ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t