1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
pub use *;
pub use *;
pub use *;
pub use *;
crateimpl_sealed_marker_types!;
/// Ensures that a [`KeySchema`] implementation is internally consistent.
///
/// Prevents invalid key schema declarations — for example, declaring a
/// composite key schema without providing a sort key type. This trait is
/// automatically satisfied for correctly-formed key schemas; you do not
/// implement or call it directly.
/// Defines the key schema for a DynamoDB table or index.
///
/// A key schema specifies the partition key attribute and the key kind
/// ([`SimpleKey`] or [`CompositeKey`]). Implementations are generated by
/// [`key_schema!`](crate::key_schema), [`table_definitions!`](crate::table_definitions),
/// and [`index_definitions!`](crate::index_definitions) — you rarely implement
/// this trait manually.
///
/// For composite key schemas, also implement [`CompositeKeySchema`] to expose
/// the sort key type. For simple key schemas, also implement [`SimpleKeySchema`].
///
/// # Examples
///
/// ```
/// # use dynamodb_facade::test_fixtures::*;
/// use dynamodb_facade::{KeySchema, TableSchema};
///
/// fn _assert<KS: KeySchema>() {}
/// // PlatformTable's KeySchema associated type implements the KeySchema trait.
/// _assert::<TableSchema<PlatformTable>>();
/// ```
/// A [`KeySchema`] with only a partition key (no sort key).
///
/// Implemented automatically by [`key_schema!`](crate::key_schema),
/// [`table_definitions!`](crate::table_definitions) and
/// [`index_definitions!`](crate::index_definitions) when no `SortKey` is
/// declared. Tables and indexes with this schema do not expose sort-key
/// methods on their query builders at compile time.
///
/// # Examples
///
/// ```
/// # use dynamodb_facade::test_fixtures::*;
/// use dynamodb_facade::{IndexSchema, SimpleKeySchema};
///
/// fn _assert_simple<KS: SimpleKeySchema>() {}
/// // TypeIndex has only a PartitionKey.
/// _assert_simple::<IndexSchema<PlatformTable, TypeIndex>>();
/// ```
/// A [`KeySchema`] with both a partition key and a sort key.
///
/// Implemented automatically by [`key_schema!`](crate::key_schema),
/// [`table_definitions!`](crate::table_definitions) and
/// [`index_definitions!`](crate::index_definitions) when both `PartitionKey`
/// and `SortKey` are declared. Tables and indexes with this schema expose
/// sort-key methods on their query builders (e.g. `sk_eq`, `sk_begins_with`).
///
/// # Examples
///
/// ```
/// # use dynamodb_facade::test_fixtures::*;
/// use dynamodb_facade::{CompositeKeySchema, TableSchema};
///
/// fn _assert_composite<KS: CompositeKeySchema>() {}
/// // PlatformTable's key schema has both PK and SK.
/// _assert_composite::<TableSchema<PlatformTable>>();
/// ```
/// Defines a DynamoDB table: its name and key schema.
///
/// Implementations are generated by [`table_definitions!`](crate::table_definitions).
/// The associated [`KeySchema`] determines whether the table uses a simple or
/// composite key, and which attribute definitions serve as partition and sort keys.
///
/// All items, keys, and operation builders are scoped to a specific table
/// through this trait, ensuring you cannot accidentally mix items or keys
/// from different tables.
///
/// # Examples
///
/// ```
/// # use dynamodb_facade::test_fixtures::*;
/// use dynamodb_facade::{table_definitions, TableDefinition};
///
/// table_definitions! {
/// MyTable {
/// type PartitionKey = PK;
/// type SortKey = SK;
/// fn table_name() -> String { "platform".to_owned() }
/// }
/// }
///
/// fn expect_table<TD: TableDefinition>() {}
/// expect_table::<MyTable>();
/// assert_eq!(MyTable::table_name(), "platform");
/// ```
/// Convenience alias for the [`KeySchema`] of a [`TableDefinition`].
///
/// Use this alias in generic bounds and function signatures to avoid
/// spelling out the full associated-type projection every time you need
/// to refer to a table's key schema type.
///
/// # Examples
///
/// ```
/// # use dynamodb_facade::test_fixtures::*;
/// use dynamodb_facade::{CompositeKeySchema, TableDefinition, TableSchema};
///
/// // Require that a table's key schema is composite (has both PK and SK).
/// fn requires_composite_table<TD: TableDefinition>()
/// where
/// TableSchema<TD>: CompositeKeySchema,
/// {}
///
/// // PlatformTable has PK + SK, so this compiles.
/// requires_composite_table::<PlatformTable>();
/// ```
pub type TableSchema<TD> = KeySchema;
/// Defines a DynamoDB Global Secondary Index (GSI) or Local Secondary Index (GSI) on
/// a specific table.
///
/// Implementations are generated by [`index_definitions!`](crate::index_definitions).
/// Each index is associated with a parent table and has its own [`KeySchema`]
/// describing the index's partition (and optional sort) key.
///
/// Index types are used as turbofish parameters on query methods such as
/// `T::query_index::<MyIndex>(client, key_condition)`.
///
/// # Examples
///
/// ```
/// # use dynamodb_facade::test_fixtures::*;
/// use dynamodb_facade::{index_definitions, IndexDefinition};
///
/// index_definitions! {
/// #[table = PlatformTable]
/// MyIndex {
/// type PartitionKey = ItemType;
/// fn index_name() -> String { "iCustomIndex".to_owned() }
/// }
/// }
///
/// fn expect_index<TD: IndexDefinition<PlatformTable>>() {}
/// expect_index::<MyIndex>();
/// assert_eq!(MyIndex::index_name(), "iCustomIndex");
/// ```
/// Convenience alias for the [`KeySchema`] of an [`IndexDefinition`].
///
/// Use this alias in generic bounds and function signatures to avoid
/// spelling out the full associated-type projection every time you need
/// to refer to an index's key schema type.
///
/// # Examples
///
/// ```
/// # use dynamodb_facade::test_fixtures::*;
/// use dynamodb_facade::{IndexDefinition, IndexSchema, SimpleKeySchema};
///
/// // Require that an index's key schema is simple (partition key only).
/// fn requires_simple_index<I: IndexDefinition<PlatformTable>>()
/// where
/// IndexSchema<PlatformTable, I>: SimpleKeySchema,
/// {}
///
/// // TypeIndex has only a partition key, so this compiles.
/// requires_simple_index::<TypeIndex>();
/// ```
pub type IndexSchema<TD, I> = KeySchema;