pub struct Projection {
pub non_key_attributes: Option<Vec<String>>,
pub projection_type: Option<String>,
}
Expand description
Represents attributes that are copied (projected) from the table into an index. These are in addition to the primary key attributes and index key attributes, which are automatically projected.
Fields§
§non_key_attributes: Option<Vec<String>>
Represents the non-key attribute names which will be projected into the index.
For local secondary indexes, the total count of NonKeyAttributes
summed across all of the local secondary indexes, must not exceed 20. If you project the same attribute into two different indexes, this counts as two distinct attributes when determining the total.
projection_type: Option<String>
The set of attributes that are projected into the index:
-
KEYSONLY
- Only the index and primary keys are projected into the index. -
INCLUDE
- In addition to the attributes described inKEYSONLY
, the secondary index will include other non-key attributes that you specify. -
ALL
- All of the table attributes are projected into the index.
Trait Implementations§
Source§impl Clone for Projection
impl Clone for Projection
Source§fn clone(&self) -> Projection
fn clone(&self) -> Projection
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more