class Amazonite::DynamoDB::VectorCapacity

Overview

The consumed capacity for vector index operations, including vector search request bytes and vector write request bytes.

Included Modules

Defined in:

dynamodb/vector_capacity.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(pull : JSON::PullParser) #

[View source]
def self.new(vector_search_request_bytes : Float64 | Nil = nil, vector_write_request_bytes : Float64 | Nil = nil) #

[View source]
def self.new(*, __pull_for_json_serializable pull : JSON::PullParser) #

[View source]

Instance Method Detail

def ==(other : self) #
Description copied from class Reference

Returns true if this reference is the same as other. Invokes same?.


def hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def validate! : Nil #

[View source]
def vector_search_request_bytes : Float64 | Nil #

The number of vector search request bytes consumed by a SearchVectors operation.


[View source]
def vector_search_request_bytes=(vector_search_request_bytes : Float64 | Nil) #

The number of vector search request bytes consumed by a SearchVectors operation.


[View source]
def vector_write_request_bytes : Float64 | Nil #

The number of vector write request bytes consumed when writing to a vector index. Reported for write operations that modify attributes indexed by a vector index.


[View source]
def vector_write_request_bytes=(vector_write_request_bytes : Float64 | Nil) #

The number of vector write request bytes consumed when writing to a vector index. Reported for write operations that modify attributes indexed by a vector index.


[View source]