types

package
v1.5.8 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 23, 2024 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AccessDeniedException

type AccessDeniedException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised in case of an authentication or authorization failure.

func (*AccessDeniedException) Error

func (e *AccessDeniedException) Error() string

func (*AccessDeniedException) ErrorCode

func (e *AccessDeniedException) ErrorCode() string

func (*AccessDeniedException) ErrorFault

func (e *AccessDeniedException) ErrorFault() smithy.ErrorFault

func (*AccessDeniedException) ErrorMessage

func (e *AccessDeniedException) ErrorMessage() string

type Action

type Action string
const (
	ActionInitializeReset Action = "initiateDatabaseReset"
	ActionPerformReset    Action = "performDatabaseReset"
)

Enum values for Action

func (Action) Values

func (Action) Values() []Action

Values returns all known values for Action. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type BadRequestException

type BadRequestException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when a request is submitted that cannot be processed.

func (*BadRequestException) Error

func (e *BadRequestException) Error() string

func (*BadRequestException) ErrorCode

func (e *BadRequestException) ErrorCode() string

func (*BadRequestException) ErrorFault

func (e *BadRequestException) ErrorFault() smithy.ErrorFault

func (*BadRequestException) ErrorMessage

func (e *BadRequestException) ErrorMessage() string

type BulkLoadIdNotFoundException

type BulkLoadIdNotFoundException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when a specified bulk-load job ID cannot be found.

func (*BulkLoadIdNotFoundException) Error

func (*BulkLoadIdNotFoundException) ErrorCode

func (e *BulkLoadIdNotFoundException) ErrorCode() string

func (*BulkLoadIdNotFoundException) ErrorFault

func (*BulkLoadIdNotFoundException) ErrorMessage

func (e *BulkLoadIdNotFoundException) ErrorMessage() string

type CancelledByUserException

type CancelledByUserException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when a user cancelled a request.

func (*CancelledByUserException) Error

func (e *CancelledByUserException) Error() string

func (*CancelledByUserException) ErrorCode

func (e *CancelledByUserException) ErrorCode() string

func (*CancelledByUserException) ErrorFault

func (e *CancelledByUserException) ErrorFault() smithy.ErrorFault

func (*CancelledByUserException) ErrorMessage

func (e *CancelledByUserException) ErrorMessage() string

type ClientTimeoutException

type ClientTimeoutException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when a request timed out in the client.

func (*ClientTimeoutException) Error

func (e *ClientTimeoutException) Error() string

func (*ClientTimeoutException) ErrorCode

func (e *ClientTimeoutException) ErrorCode() string

func (*ClientTimeoutException) ErrorFault

func (e *ClientTimeoutException) ErrorFault() smithy.ErrorFault

func (*ClientTimeoutException) ErrorMessage

func (e *ClientTimeoutException) ErrorMessage() string

type ConcurrentModificationException

type ConcurrentModificationException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when a request attempts to modify data that is concurrently being modified by another process.

func (*ConcurrentModificationException) Error

func (*ConcurrentModificationException) ErrorCode

func (e *ConcurrentModificationException) ErrorCode() string

func (*ConcurrentModificationException) ErrorFault

func (*ConcurrentModificationException) ErrorMessage

func (e *ConcurrentModificationException) ErrorMessage() string

type ConstraintViolationException

type ConstraintViolationException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when a value in a request field did not satisfy required constraints.

func (*ConstraintViolationException) Error

func (*ConstraintViolationException) ErrorCode

func (e *ConstraintViolationException) ErrorCode() string

func (*ConstraintViolationException) ErrorFault

func (*ConstraintViolationException) ErrorMessage

func (e *ConstraintViolationException) ErrorMessage() string

type CustomModelTrainingParameters

type CustomModelTrainingParameters struct {

	// The path to the Amazon S3 location where the Python module implementing your
	// model is located. This must point to a valid existing Amazon S3 location that
	// contains, at a minimum, a training script, a transform script, and a
	// model-hpo-configuration.json file.
	//
	// This member is required.
	SourceS3DirectoryPath *string

	// The name of the entry point in your module of a script that performs model
	// training and takes hyperparameters as command-line arguments, including fixed
	// hyperparameters. The default is training.py .
	TrainingEntryPointScript *string

	// The name of the entry point in your module of a script that should be run after
	// the best model from the hyperparameter search has been identified, to compute
	// the model artifacts necessary for model deployment. It should be able to run
	// with no command-line arguments.The default is transform.py .
	TransformEntryPointScript *string
	// contains filtered or unexported fields
}

Contains custom model training parameters. See Custom models in Neptune ML.

type CustomModelTransformParameters

type CustomModelTransformParameters struct {

	// The path to the Amazon S3 location where the Python module implementing your
	// model is located. This must point to a valid existing Amazon S3 location that
	// contains, at a minimum, a training script, a transform script, and a
	// model-hpo-configuration.json file.
	//
	// This member is required.
	SourceS3DirectoryPath *string

	// The name of the entry point in your module of a script that should be run after
	// the best model from the hyperparameter search has been identified, to compute
	// the model artifacts necessary for model deployment. It should be able to run
	// with no command-line arguments. The default is transform.py .
	TransformEntryPointScript *string
	// contains filtered or unexported fields
}

Contains custom model transform parameters. See Use a trained model to generate new model artifacts.

type DeleteStatisticsValueMap

type DeleteStatisticsValueMap struct {

	// The current status of the statistics.
	Active *bool

	// The ID of the statistics generation run that is currently occurring.
	StatisticsId *string
	// contains filtered or unexported fields
}

The payload for DeleteStatistics.

type EdgeStructure

type EdgeStructure struct {

	// The number of edges that have this specific structure.
	Count *int64

	// A list of edge properties present in this specific structure.
	EdgeProperties []string
	// contains filtered or unexported fields
}

An edge structure.

type Encoding

type Encoding string
const (
	EncodingGzip Encoding = "gzip"
)

Enum values for Encoding

func (Encoding) Values

func (Encoding) Values() []Encoding

Values returns all known values for Encoding. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type ExpiredStreamException

type ExpiredStreamException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when a request attempts to access an stream that has expired.

func (*ExpiredStreamException) Error

func (e *ExpiredStreamException) Error() string

func (*ExpiredStreamException) ErrorCode

func (e *ExpiredStreamException) ErrorCode() string

func (*ExpiredStreamException) ErrorFault

func (e *ExpiredStreamException) ErrorFault() smithy.ErrorFault

func (*ExpiredStreamException) ErrorMessage

func (e *ExpiredStreamException) ErrorMessage() string

type FailureByQueryException

type FailureByQueryException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when a request fails.

func (*FailureByQueryException) Error

func (e *FailureByQueryException) Error() string

func (*FailureByQueryException) ErrorCode

func (e *FailureByQueryException) ErrorCode() string

func (*FailureByQueryException) ErrorFault

func (e *FailureByQueryException) ErrorFault() smithy.ErrorFault

func (*FailureByQueryException) ErrorMessage

func (e *FailureByQueryException) ErrorMessage() string

type FastResetToken

type FastResetToken struct {

	// A UUID generated by the database in the initiateDatabaseReset action, and then
	// consumed by the performDatabaseReset to reset the database.
	Token *string
	// contains filtered or unexported fields
}

A structure containing the fast reset token used to initiate a fast reset.

type Format

type Format string
const (
	FormatCsv        Format = "csv"
	FormatOpencypher Format = "opencypher"
	FormatNtriples   Format = "ntriples"
	FormatNquads     Format = "nquads"
	FormatRdfxml     Format = "rdfxml"
	FormatTurtle     Format = "turtle"
)

Enum values for Format

func (Format) Values

func (Format) Values() []Format

Values returns all known values for Format. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type GraphSummaryType

type GraphSummaryType string
const (
	GraphSummaryTypeBasic    GraphSummaryType = "basic"
	GraphSummaryTypeDetailed GraphSummaryType = "detailed"
)

Enum values for GraphSummaryType

func (GraphSummaryType) Values

Values returns all known values for GraphSummaryType. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type GremlinQueryStatus

type GremlinQueryStatus struct {

	// The query statistics of the Gremlin query.
	QueryEvalStats *QueryEvalStats

	// The ID of the Gremlin query.
	QueryId *string

	// The query string of the Gremlin query.
	QueryString *string
	// contains filtered or unexported fields
}

Captures the status of a Gremlin query (see the Gremlin query status API page).

type GremlinQueryStatusAttributes

type GremlinQueryStatusAttributes struct {

	// Attributes of the Gremlin query status.
	Attributes document.Interface

	// The HTTP response code returned fro the Gremlin query request..
	Code *int32

	// The status message.
	Message *string
	// contains filtered or unexported fields
}

Contains status components of a Gremlin query.

type IllegalArgumentException

type IllegalArgumentException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when an argument in a request is not supported.

func (*IllegalArgumentException) Error

func (e *IllegalArgumentException) Error() string

func (*IllegalArgumentException) ErrorCode

func (e *IllegalArgumentException) ErrorCode() string

func (*IllegalArgumentException) ErrorFault

func (e *IllegalArgumentException) ErrorFault() smithy.ErrorFault

func (*IllegalArgumentException) ErrorMessage

func (e *IllegalArgumentException) ErrorMessage() string

type InternalFailureException

type InternalFailureException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when the processing of the request failed unexpectedly.

func (*InternalFailureException) Error

func (e *InternalFailureException) Error() string

func (*InternalFailureException) ErrorCode

func (e *InternalFailureException) ErrorCode() string

func (*InternalFailureException) ErrorFault

func (e *InternalFailureException) ErrorFault() smithy.ErrorFault

func (*InternalFailureException) ErrorMessage

func (e *InternalFailureException) ErrorMessage() string

type InvalidArgumentException

type InvalidArgumentException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when an argument in a request has an invalid value.

func (*InvalidArgumentException) Error

func (e *InvalidArgumentException) Error() string

func (*InvalidArgumentException) ErrorCode

func (e *InvalidArgumentException) ErrorCode() string

func (*InvalidArgumentException) ErrorFault

func (e *InvalidArgumentException) ErrorFault() smithy.ErrorFault

func (*InvalidArgumentException) ErrorMessage

func (e *InvalidArgumentException) ErrorMessage() string

type InvalidNumericDataException

type InvalidNumericDataException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when invalid numerical data is encountered when servicing a request.

func (*InvalidNumericDataException) Error

func (*InvalidNumericDataException) ErrorCode

func (e *InvalidNumericDataException) ErrorCode() string

func (*InvalidNumericDataException) ErrorFault

func (*InvalidNumericDataException) ErrorMessage

func (e *InvalidNumericDataException) ErrorMessage() string

type InvalidParameterException

type InvalidParameterException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when a parameter value is not valid.

func (*InvalidParameterException) Error

func (e *InvalidParameterException) Error() string

func (*InvalidParameterException) ErrorCode

func (e *InvalidParameterException) ErrorCode() string

func (*InvalidParameterException) ErrorFault

func (*InvalidParameterException) ErrorMessage

func (e *InvalidParameterException) ErrorMessage() string

type IteratorType

type IteratorType string
const (
	IteratorTypeAtSequenceNumber    IteratorType = "AT_SEQUENCE_NUMBER"
	IteratorTypeAfterSequenceNumber IteratorType = "AFTER_SEQUENCE_NUMBER"
	IteratorTypeTrimHorizon         IteratorType = "TRIM_HORIZON"
	IteratorTypeLatest              IteratorType = "LATEST"
)

Enum values for IteratorType

func (IteratorType) Values

func (IteratorType) Values() []IteratorType

Values returns all known values for IteratorType. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type LoadUrlAccessDeniedException

type LoadUrlAccessDeniedException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when access is denied to a specified load URL.

func (*LoadUrlAccessDeniedException) Error

func (*LoadUrlAccessDeniedException) ErrorCode

func (e *LoadUrlAccessDeniedException) ErrorCode() string

func (*LoadUrlAccessDeniedException) ErrorFault

func (*LoadUrlAccessDeniedException) ErrorMessage

func (e *LoadUrlAccessDeniedException) ErrorMessage() string

type LoaderIdResult

type LoaderIdResult struct {

	// A list of load IDs.
	LoadIds []string
	// contains filtered or unexported fields
}

Contains a list of load IDs.

type MLResourceNotFoundException

type MLResourceNotFoundException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when a specified machine-learning resource could not be found.

func (*MLResourceNotFoundException) Error

func (*MLResourceNotFoundException) ErrorCode

func (e *MLResourceNotFoundException) ErrorCode() string

func (*MLResourceNotFoundException) ErrorFault

func (*MLResourceNotFoundException) ErrorMessage

func (e *MLResourceNotFoundException) ErrorMessage() string

type MalformedQueryException

type MalformedQueryException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when a query is submitted that is syntactically incorrect or does not pass additional validation.

func (*MalformedQueryException) Error

func (e *MalformedQueryException) Error() string

func (*MalformedQueryException) ErrorCode

func (e *MalformedQueryException) ErrorCode() string

func (*MalformedQueryException) ErrorFault

func (e *MalformedQueryException) ErrorFault() smithy.ErrorFault

func (*MalformedQueryException) ErrorMessage

func (e *MalformedQueryException) ErrorMessage() string

type MemoryLimitExceededException

type MemoryLimitExceededException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when a request fails because of insufficient memory resources. The request can be retried.

func (*MemoryLimitExceededException) Error

func (*MemoryLimitExceededException) ErrorCode

func (e *MemoryLimitExceededException) ErrorCode() string

func (*MemoryLimitExceededException) ErrorFault

func (*MemoryLimitExceededException) ErrorMessage

func (e *MemoryLimitExceededException) ErrorMessage() string

type MethodNotAllowedException

type MethodNotAllowedException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when the HTTP method used by a request is not supported by the endpoint being used.

func (*MethodNotAllowedException) Error

func (e *MethodNotAllowedException) Error() string

func (*MethodNotAllowedException) ErrorCode

func (e *MethodNotAllowedException) ErrorCode() string

func (*MethodNotAllowedException) ErrorFault

func (*MethodNotAllowedException) ErrorMessage

func (e *MethodNotAllowedException) ErrorMessage() string

type MissingParameterException

type MissingParameterException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when a required parameter is missing.

func (*MissingParameterException) Error

func (e *MissingParameterException) Error() string

func (*MissingParameterException) ErrorCode

func (e *MissingParameterException) ErrorCode() string

func (*MissingParameterException) ErrorFault

func (*MissingParameterException) ErrorMessage

func (e *MissingParameterException) ErrorMessage() string

type MlConfigDefinition

type MlConfigDefinition struct {

	// The ARN for the configuration.
	Arn *string

	// The configuration name.
	Name *string
	// contains filtered or unexported fields
}

Contains a Neptune ML configuration.

type MlResourceDefinition

type MlResourceDefinition struct {

	// The resource ARN.
	Arn *string

	// The CloudWatch log URL for the resource.
	CloudwatchLogUrl *string

	// The failure reason, in case of a failure.
	FailureReason *string

	// The resource name.
	Name *string

	// The output location.
	OutputLocation *string

	// The resource status.
	Status *string
	// contains filtered or unexported fields
}

Defines a Neptune ML resource.

type Mode

type Mode string
const (
	ModeResume Mode = "RESUME"
	ModeNew    Mode = "NEW"
	ModeAuto   Mode = "AUTO"
)

Enum values for Mode

func (Mode) Values

func (Mode) Values() []Mode

Values returns all known values for Mode. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type NodeStructure

type NodeStructure struct {

	// Number of nodes that have this specific structure.
	Count *int64

	// A list of distinct outgoing edge labels present in this specific structure.
	DistinctOutgoingEdgeLabels []string

	// A list of the node properties present in this specific structure.
	NodeProperties []string
	// contains filtered or unexported fields
}

A node structure.

type OpenCypherExplainMode

type OpenCypherExplainMode string
const (
	OpenCypherExplainModeStatic  OpenCypherExplainMode = "static"
	OpenCypherExplainModeDynamic OpenCypherExplainMode = "dynamic"
	OpenCypherExplainModeDetails OpenCypherExplainMode = "details"
)

Enum values for OpenCypherExplainMode

func (OpenCypherExplainMode) Values

Values returns all known values for OpenCypherExplainMode. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type Parallelism

type Parallelism string
const (
	ParallelismLow           Parallelism = "LOW"
	ParallelismMedium        Parallelism = "MEDIUM"
	ParallelismHigh          Parallelism = "HIGH"
	ParallelismOversubscribe Parallelism = "OVERSUBSCRIBE"
)

Enum values for Parallelism

func (Parallelism) Values

func (Parallelism) Values() []Parallelism

Values returns all known values for Parallelism. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type ParsingException

type ParsingException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when a parsing issue is encountered.

func (*ParsingException) Error

func (e *ParsingException) Error() string

func (*ParsingException) ErrorCode

func (e *ParsingException) ErrorCode() string

func (*ParsingException) ErrorFault

func (e *ParsingException) ErrorFault() smithy.ErrorFault

func (*ParsingException) ErrorMessage

func (e *ParsingException) ErrorMessage() string

type PreconditionsFailedException

type PreconditionsFailedException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when a precondition for processing a request is not satisfied.

func (*PreconditionsFailedException) Error

func (*PreconditionsFailedException) ErrorCode

func (e *PreconditionsFailedException) ErrorCode() string

func (*PreconditionsFailedException) ErrorFault

func (*PreconditionsFailedException) ErrorMessage

func (e *PreconditionsFailedException) ErrorMessage() string

type PropertygraphData

type PropertygraphData struct {

	// The ID of the Gremlin or openCypher element.
	//
	// This member is required.
	Id *string

	// The property name. For element labels, this is label .
	//
	// This member is required.
	Key *string

	// The type of this Gremlin or openCypher element. Must be one of:
	//
	//   - v1 - Vertex label for Gremlin, or node label for openCypher.
	//
	//   - vp - Vertex properties for Gremlin, or node properties for openCypher.
	//
	//   - e - Edge and edge label for Gremlin, or relationship and relationship type
	//   for openCypher.
	//
	//   - ep - Edge properties for Gremlin, or relationship properties for openCypher.
	//
	// This member is required.
	Type *string

	// This is a JSON object that contains a value field for the value itself, and a
	// datatype field for the JSON data type of that value:
	//
	// This member is required.
	Value document.Interface

	// If this is an edge (type = e ), the ID of the corresponding from vertex or
	// source node.
	From *string

	// If this is an edge (type = e ), the ID of the corresponding to vertex or target
	// node.
	To *string
	// contains filtered or unexported fields
}

A Gremlin or openCypher change record.

type PropertygraphRecord

type PropertygraphRecord struct {

	// The time at which the commit for the transaction was requested, in milliseconds
	// from the Unix epoch.
	//
	// This member is required.
	CommitTimestampInMillis *int64

	// The serialized Gremlin or openCypher change record.
	//
	// This member is required.
	Data *PropertygraphData

	// The sequence identifier of the stream change record.
	//
	// This member is required.
	EventId map[string]string

	// The operation that created the change.
	//
	// This member is required.
	Op *string

	// Only present if this operation is the last one in its transaction. If present,
	// it is set to true. It is useful for ensuring that an entire transaction is
	// consumed.
	IsLastOp *bool
	// contains filtered or unexported fields
}

Structure of a property graph record.

type PropertygraphSummary

type PropertygraphSummary struct {

	// A list of the distinct edge labels in the graph.
	EdgeLabels []string

	// A list of the distinct edge properties in the graph, along with the count of
	// edges where each property is used.
	EdgeProperties []map[string]int64

	// This field is only present when the requested mode is DETAILED . It contains a
	// list of edge structures.
	EdgeStructures []EdgeStructure

	// A list of the distinct node labels in the graph.
	NodeLabels []string

	// The number of distinct node properties in the graph.
	NodeProperties []map[string]int64

	// This field is only present when the requested mode is DETAILED . It contains a
	// list of node structures.
	NodeStructures []NodeStructure

	// The number of distinct edge labels in the graph.
	NumEdgeLabels *int64

	// The number of distinct edge properties in the graph.
	NumEdgeProperties *int64

	// The number of edges in the graph.
	NumEdges *int64

	// The number of distinct node labels in the graph.
	NumNodeLabels *int64

	// A list of the distinct node properties in the graph, along with the count of
	// nodes where each property is used.
	NumNodeProperties *int64

	// The number of nodes in the graph.
	NumNodes *int64

	// The total number of usages of all edge properties.
	TotalEdgePropertyValues *int64

	// The total number of usages of all node properties.
	TotalNodePropertyValues *int64
	// contains filtered or unexported fields
}

The graph summary API returns a read-only list of node and edge labels and property keys, along with counts of nodes, edges, and properties. See Graph summary response for a property graph (PG).

type PropertygraphSummaryValueMap

type PropertygraphSummaryValueMap struct {

	// The graph summary.
	GraphSummary *PropertygraphSummary

	// The timestamp, in ISO 8601 format, of the time at which Neptune last computed
	// statistics.
	LastStatisticsComputationTime *time.Time

	// The version of this graph summary response.
	Version *string
	// contains filtered or unexported fields
}

Payload for the property graph summary response.

type QueryEvalStats

type QueryEvalStats struct {

	// Set to TRUE if the query was cancelled, or FALSE otherwise.
	Cancelled *bool

	// The number of milliseconds the query has been running so far.
	Elapsed *int32

	// The number of subqueries in this query.
	Subqueries document.Interface

	// Indicates how long the query waited, in milliseconds.
	Waited *int32
	// contains filtered or unexported fields
}

Structure to capture query statistics such as how many queries are running, accepted or waiting and their details.

type QueryLanguageVersion

type QueryLanguageVersion struct {

	// The version of the query language.
	//
	// This member is required.
	Version *string
	// contains filtered or unexported fields
}

Structure for expressing the query language version.

type QueryLimitExceededException

type QueryLimitExceededException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when the number of active queries exceeds what the server can process. The query in question can be retried when the system is less busy.

func (*QueryLimitExceededException) Error

func (*QueryLimitExceededException) ErrorCode

func (e *QueryLimitExceededException) ErrorCode() string

func (*QueryLimitExceededException) ErrorFault

func (*QueryLimitExceededException) ErrorMessage

func (e *QueryLimitExceededException) ErrorMessage() string

type QueryLimitException

type QueryLimitException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when the size of a query exceeds the system limit.

func (*QueryLimitException) Error

func (e *QueryLimitException) Error() string

func (*QueryLimitException) ErrorCode

func (e *QueryLimitException) ErrorCode() string

func (*QueryLimitException) ErrorFault

func (e *QueryLimitException) ErrorFault() smithy.ErrorFault

func (*QueryLimitException) ErrorMessage

func (e *QueryLimitException) ErrorMessage() string

type QueryTooLargeException

type QueryTooLargeException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when the body of a query is too large.

func (*QueryTooLargeException) Error

func (e *QueryTooLargeException) Error() string

func (*QueryTooLargeException) ErrorCode

func (e *QueryTooLargeException) ErrorCode() string

func (*QueryTooLargeException) ErrorFault

func (e *QueryTooLargeException) ErrorFault() smithy.ErrorFault

func (*QueryTooLargeException) ErrorMessage

func (e *QueryTooLargeException) ErrorMessage() string

type RDFGraphSummary

type RDFGraphSummary struct {

	// A list of the classes in the graph.
	Classes []string

	// The number of classes in the graph.
	NumClasses *int64

	// The number of distinct predicates in the graph.
	NumDistinctPredicates *int64

	// The number of distinct subjects in the graph.
	NumDistinctSubjects *int64

	// The number of quads in the graph.
	NumQuads *int64

	// "A list of predicates in the graph, along with the predicate counts.
	Predicates []map[string]int64

	// This field is only present when the request mode is DETAILED . It contains a
	// list of subject structures.
	SubjectStructures []SubjectStructure
	// contains filtered or unexported fields
}

The RDF graph summary API returns a read-only list of classes and predicate keys, along with counts of quads, subjects, and predicates.

type RDFGraphSummaryValueMap

type RDFGraphSummaryValueMap struct {

	// The graph summary of an RDF graph. See [Graph summary response for an RDF graph].
	//
	// [Graph summary response for an RDF graph]: https://docs.aws.amazon.com/neptune/latest/userguide/neptune-graph-summary.html#neptune-graph-summary-rdf-response
	GraphSummary *RDFGraphSummary

	// The timestamp, in ISO 8601 format, of the time at which Neptune last computed
	// statistics.
	LastStatisticsComputationTime *time.Time

	// The version of this graph summary response.
	Version *string
	// contains filtered or unexported fields
}

Payload for an RDF graph summary response.

type ReadOnlyViolationException

type ReadOnlyViolationException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when a request attempts to write to a read-only resource.

func (*ReadOnlyViolationException) Error

func (*ReadOnlyViolationException) ErrorCode

func (e *ReadOnlyViolationException) ErrorCode() string

func (*ReadOnlyViolationException) ErrorFault

func (*ReadOnlyViolationException) ErrorMessage

func (e *ReadOnlyViolationException) ErrorMessage() string

type RefreshStatisticsIdMap

type RefreshStatisticsIdMap struct {

	// The ID of the statistics generation run that is currently occurring.
	StatisticsId *string
	// contains filtered or unexported fields
}

Statistics for REFRESH mode.

type S3BucketRegion

type S3BucketRegion string
const (
	S3BucketRegionUsEast1      S3BucketRegion = "us-east-1"
	S3BucketRegionUsEast2      S3BucketRegion = "us-east-2"
	S3BucketRegionUsWest1      S3BucketRegion = "us-west-1"
	S3BucketRegionUsWest2      S3BucketRegion = "us-west-2"
	S3BucketRegionCaCentral1   S3BucketRegion = "ca-central-1"
	S3BucketRegionSaEast1      S3BucketRegion = "sa-east-1"
	S3BucketRegionEuNorth1     S3BucketRegion = "eu-north-1"
	S3BucketRegionEuWest1      S3BucketRegion = "eu-west-1"
	S3BucketRegionEuWest2      S3BucketRegion = "eu-west-2"
	S3BucketRegionEuWest3      S3BucketRegion = "eu-west-3"
	S3BucketRegionEuCentral1   S3BucketRegion = "eu-central-1"
	S3BucketRegionMeSouth1     S3BucketRegion = "me-south-1"
	S3BucketRegionAfSouth1     S3BucketRegion = "af-south-1"
	S3BucketRegionApEast1      S3BucketRegion = "ap-east-1"
	S3BucketRegionApNortheast1 S3BucketRegion = "ap-northeast-1"
	S3BucketRegionApNortheast2 S3BucketRegion = "ap-northeast-2"
	S3BucketRegionApSoutheast1 S3BucketRegion = "ap-southeast-1"
	S3BucketRegionApSoutheast2 S3BucketRegion = "ap-southeast-2"
	S3BucketRegionApSouth1     S3BucketRegion = "ap-south-1"
	S3BucketRegionCnNorth1     S3BucketRegion = "cn-north-1"
	S3BucketRegionCnNorthwest1 S3BucketRegion = "cn-northwest-1"
	S3BucketRegionUsGovWest1   S3BucketRegion = "us-gov-west-1"
	S3BucketRegionUsGovEast1   S3BucketRegion = "us-gov-east-1"
)

Enum values for S3BucketRegion

func (S3BucketRegion) Values

func (S3BucketRegion) Values() []S3BucketRegion

Values returns all known values for S3BucketRegion. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type S3Exception

type S3Exception struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when there is a problem accessing Amazon S3.

func (*S3Exception) Error

func (e *S3Exception) Error() string

func (*S3Exception) ErrorCode

func (e *S3Exception) ErrorCode() string

func (*S3Exception) ErrorFault

func (e *S3Exception) ErrorFault() smithy.ErrorFault

func (*S3Exception) ErrorMessage

func (e *S3Exception) ErrorMessage() string

type ServerShutdownException

type ServerShutdownException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when the server shuts down while processing a request.

func (*ServerShutdownException) Error

func (e *ServerShutdownException) Error() string

func (*ServerShutdownException) ErrorCode

func (e *ServerShutdownException) ErrorCode() string

func (*ServerShutdownException) ErrorFault

func (e *ServerShutdownException) ErrorFault() smithy.ErrorFault

func (*ServerShutdownException) ErrorMessage

func (e *ServerShutdownException) ErrorMessage() string

type SparqlData

type SparqlData struct {

	// Holds an [N-QUADS] statement expressing the changed quad.
	//
	// [N-QUADS]: https://www.w3.org/TR/n-quads/
	//
	// This member is required.
	Stmt *string
	// contains filtered or unexported fields
}

Neptune logs are converted to SPARQL quads in the graph using the Resource Description Framework (RDF) N-QUADSlanguage defined in the W3C RDF 1.1 N-Quads specification

type SparqlRecord

type SparqlRecord struct {

	// The time at which the commit for the transaction was requested, in milliseconds
	// from the Unix epoch.
	//
	// This member is required.
	CommitTimestampInMillis *int64

	// The serialized SPARQL change record. The serialization formats of each record
	// are described in more detail in [Serialization Formats in Neptune Streams].
	//
	// [Serialization Formats in Neptune Streams]: https://docs.aws.amazon.com/neptune/latest/userguide/streams-change-formats.html
	//
	// This member is required.
	Data *SparqlData

	// The sequence identifier of the stream change record.
	//
	// This member is required.
	EventId map[string]string

	// The operation that created the change.
	//
	// This member is required.
	Op *string

	// Only present if this operation is the last one in its transaction. If present,
	// it is set to true. It is useful for ensuring that an entire transaction is
	// consumed.
	IsLastOp *bool
	// contains filtered or unexported fields
}

A serialized SPARQL stream record capturing a change-log entry for the RDF graph.

type Statistics

type Statistics struct {

	// Indicates whether or not DFE statistics generation is enabled at all.
	Active *bool

	// Indicates whether or not automatic statistics generation is enabled.
	AutoCompute *bool

	// The UTC time at which DFE statistics have most recently been generated.
	Date *time.Time

	// A note about problems in the case where statistics are invalid.
	Note *string

	// A StatisticsSummary structure that contains:
	//
	//   - signatureCount - The total number of signatures across all characteristic
	//   sets.
	//
	//   - instanceCount - The total number of characteristic-set instances.
	//
	//   - predicateCount - The total number of unique predicates.
	SignatureInfo *StatisticsSummary

	// Reports the ID of the current statistics generation run. A value of -1
	// indicates that no statistics have been generated.
	StatisticsId *string
	// contains filtered or unexported fields
}

Contains statistics information. The DFE engine uses information about the data in your Neptune graph to make effective trade-offs when planning query execution. This information takes the form of statistics that include so-called characteristic sets and predicate statistics that can guide query planning. See Managing statistics for the Neptune DFE to use .

type StatisticsAutoGenerationMode

type StatisticsAutoGenerationMode string
const (
	StatisticsAutoGenerationModeDisableAutocompute StatisticsAutoGenerationMode = "disableAutoCompute"
	StatisticsAutoGenerationModeEnableAutocompute  StatisticsAutoGenerationMode = "enableAutoCompute"
	StatisticsAutoGenerationModeRefresh            StatisticsAutoGenerationMode = "refresh"
)

Enum values for StatisticsAutoGenerationMode

func (StatisticsAutoGenerationMode) Values

Values returns all known values for StatisticsAutoGenerationMode. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type StatisticsNotAvailableException

type StatisticsNotAvailableException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when statistics needed to satisfy a request are not available.

func (*StatisticsNotAvailableException) Error

func (*StatisticsNotAvailableException) ErrorCode

func (e *StatisticsNotAvailableException) ErrorCode() string

func (*StatisticsNotAvailableException) ErrorFault

func (*StatisticsNotAvailableException) ErrorMessage

func (e *StatisticsNotAvailableException) ErrorMessage() string

type StatisticsSummary

type StatisticsSummary struct {

	// The total number of characteristic-set instances.
	InstanceCount *int32

	// The total number of unique predicates.
	PredicateCount *int32

	// The total number of signatures across all characteristic sets.
	SignatureCount *int32
	// contains filtered or unexported fields
}

Information about the characteristic sets generated in the statistics.

type StreamRecordsNotFoundException

type StreamRecordsNotFoundException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when stream records requested by a query cannot be found.

func (*StreamRecordsNotFoundException) Error

func (*StreamRecordsNotFoundException) ErrorCode

func (e *StreamRecordsNotFoundException) ErrorCode() string

func (*StreamRecordsNotFoundException) ErrorFault

func (*StreamRecordsNotFoundException) ErrorMessage

func (e *StreamRecordsNotFoundException) ErrorMessage() string

type SubjectStructure

type SubjectStructure struct {

	// Number of occurrences of this specific structure.
	Count *int64

	// A list of predicates present in this specific structure.
	Predicates []string
	// contains filtered or unexported fields
}

A subject structure.

type ThrottlingException

type ThrottlingException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when the rate of requests exceeds the maximum throughput. Requests can be retried after encountering this exception.

func (*ThrottlingException) Error

func (e *ThrottlingException) Error() string

func (*ThrottlingException) ErrorCode

func (e *ThrottlingException) ErrorCode() string

func (*ThrottlingException) ErrorFault

func (e *ThrottlingException) ErrorFault() smithy.ErrorFault

func (*ThrottlingException) ErrorMessage

func (e *ThrottlingException) ErrorMessage() string

type TimeLimitExceededException

type TimeLimitExceededException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when the an operation exceeds the time limit allowed for it.

func (*TimeLimitExceededException) Error

func (*TimeLimitExceededException) ErrorCode

func (e *TimeLimitExceededException) ErrorCode() string

func (*TimeLimitExceededException) ErrorFault

func (*TimeLimitExceededException) ErrorMessage

func (e *TimeLimitExceededException) ErrorMessage() string

type TooManyRequestsException

type TooManyRequestsException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when the number of requests being processed exceeds the limit.

func (*TooManyRequestsException) Error

func (e *TooManyRequestsException) Error() string

func (*TooManyRequestsException) ErrorCode

func (e *TooManyRequestsException) ErrorCode() string

func (*TooManyRequestsException) ErrorFault

func (e *TooManyRequestsException) ErrorFault() smithy.ErrorFault

func (*TooManyRequestsException) ErrorMessage

func (e *TooManyRequestsException) ErrorMessage() string

type UnsupportedOperationException

type UnsupportedOperationException struct {
	Message *string

	ErrorCodeOverride *string

	DetailedMessage *string
	RequestId       *string
	Code            *string
	// contains filtered or unexported fields
}

Raised when a request attempts to initiate an operation that is not supported.

func (*UnsupportedOperationException) Error

func (*UnsupportedOperationException) ErrorCode

func (e *UnsupportedOperationException) ErrorCode() string

func (*UnsupportedOperationException) ErrorFault

func (*UnsupportedOperationException) ErrorMessage

func (e *UnsupportedOperationException) ErrorMessage() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL